-@@ -197,7 +198,7 @@
- echoImage(regexp.cap(1), regexp.cap(2), url.queryItem("size"));
- } else {
- echoHead();
-- echo("" + i18n("Wrong request: %1",path) + "
");
-+ echo("" + i18n("Bad request: %1", Qt::escape(Qt::escape(url.prettyUrl()))) + "
");
- }
- finished();
- }
diff --git a/pkgs/desktops/kde-4.14/default.nix b/pkgs/desktops/kde-4.14/default.nix
deleted file mode 100644
index 02cd509537d..00000000000
--- a/pkgs/desktops/kde-4.14/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ callPackage, callPackageOrig, stdenv, qt48, release ? "4.14.3", kdelibs }:
-
-let
- branch = "4.14";
-
- # Need callPackageOrig to avoid infinite cycle
- kde = callPackageOrig ./kde-package {
- inherit release branch ignoreList extraSubpkgs callPackage;
- };
-
- # The list of igored individual modules
- ignoreList = {
- # Doesn't work yet
- kdeutils = [ "ksecrets" ];
- # kdeadmin/strigi-analyzer has no real code
- kdeadmin = [ "strigi-analyzer" ];
- # Most of kdebindings do not compile due to a bug in the buildsystem
- kdebindings = [ "kimono" "korundum" "kross-interpreters" "perlkde" "qyoto" ];
- };
-
- # Extra subpackages in the manifest format
- extraSubpkgs = {};
-
-in
-
-kde.modules // kde.individual //
-{
- akonadi = callPackage ./support/akonadi { };
-
- inherit release;
-
- l10n = callPackage ./l10n {
- inherit release branch;
- inherit (kde.manifest) stable;
- };
-}
diff --git a/pkgs/desktops/kde-4.14/files/ksysguard-0001-disable-signalplottertest.patch b/pkgs/desktops/kde-4.14/files/ksysguard-0001-disable-signalplottertest.patch
deleted file mode 100644
index cd19b7e2d72..00000000000
--- a/pkgs/desktops/kde-4.14/files/ksysguard-0001-disable-signalplottertest.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 38f35dcec38458f7192424b3d63bc0c614bb86e0 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Mon, 7 Sep 2015 18:55:44 -0500
-Subject: [PATCH] ksysguard disable signalplottertest
-
----
- libs/ksysguard/tests/CMakeLists.txt | 16 ----------------
- 1 file changed, 16 deletions(-)
-
-diff --git a/libs/ksysguard/tests/CMakeLists.txt b/libs/ksysguard/tests/CMakeLists.txt
-index d472fd7..f178b71 100644
---- a/libs/ksysguard/tests/CMakeLists.txt
-+++ b/libs/ksysguard/tests/CMakeLists.txt
-@@ -14,19 +14,3 @@ target_link_libraries(processtest processui ${KDE4_KDECORE_LIBS} ${QT_QTTEST_LIB
- set( signalplotterbenchmark_SRCS signalplotterbenchmark.cpp ../signalplotter/ksignalplotter.cpp)
- kde4_add_unit_test( signalplotterbenchmark TESTNAME ksysguard-signalplottertest ${signalplotterbenchmark_SRCS} )
- target_link_libraries( signalplotterbenchmark ${KDE4_KDEUI_LIBS} ${QT_QTTEST_LIBRARY} ${QT_QTBENCHMARK_LIBRARY} )
--
--
--# KGraphicsSignalPlotter benchmark
--set( graphicssignalplotterbenchmark_SRCS graphicssignalplotterbenchmark.cpp ../signalplotter/kgraphicssignalplotter.cpp)
--kde4_add_unit_test( graphicssignalplotterbenchmark TESTNAME ksysguard-signalplottertest ${graphicssignalplotterbenchmark_SRCS} )
--target_link_libraries( graphicssignalplotterbenchmark ${KDE4_KDEUI_LIBS} ${QT_QTTEST_LIBRARY} ${QT_QTBENCHMARK_LIBRARY} )
--
--
--# KSignalPlotter unit test
--set( signalplottertest_SRCS signalplottertest.cpp ../signalplotter/ksignalplotter.cpp)
--kde4_add_unit_test( signalplottertest TESTNAME ksysguard-signalplottertest ${signalplottertest_SRCS} )
--target_link_libraries( signalplottertest ${KDE4_KDEUI_LIBS} ${QT_QTTEST_LIBRARY} )
--
--
--
--
---
-2.5.0
-
diff --git a/pkgs/desktops/kde-4.14/kactivities.nix b/pkgs/desktops/kde-4.14/kactivities.nix
deleted file mode 100644
index dd14e0429dd..00000000000
--- a/pkgs/desktops/kde-4.14/kactivities.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ fetchurl, kde, kdelibs }:
-
-kde {
-
- src = fetchurl {
- url = "mirror://kde/stable/4.13.3/src/kactivities-4.13.3.tar.xz";
- sha256 = "12l9brpq8mr9hqqmnlz9xfsfr8ry6283b32nfqfx0p3f7w19vjy7";
- };
-
- outputs = [ "out" "dev" ];
-
- outputInclude = "out";
-
- setOutputFlags = false;
-
- propagatedBuildInputs = [ kdelibs ];
-
- meta = {
- description = "KDE activities library and daemon";
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kde-baseapps/kde-baseapps.nix b/pkgs/desktops/kde-4.14/kde-baseapps/kde-baseapps.nix
deleted file mode 100644
index df211f49199..00000000000
--- a/pkgs/desktops/kde-4.14/kde-baseapps/kde-baseapps.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ stdenv, kde, kdelibs, html-tidy, kactivities, libXt }:
-
-kde {
- postPatch = ''
- substituteInPlace konq-plugins/validators/tidy_validator.cpp \
- --replace buffio.h tidybuffio.h
- '';
-
- buildInputs = [ kdelibs html-tidy kactivities libXt ];
-
- meta = {
- description = "Base KDE applications, including the Dolphin file manager and Konqueror web browser";
- license = stdenv.lib.licenses.gpl2;
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kde-package/4.14.3.nix b/pkgs/desktops/kde-4.14/kde-package/4.14.3.nix
deleted file mode 100644
index 5d9e2401ca8..00000000000
--- a/pkgs/desktops/kde-4.14/kde-package/4.14.3.nix
+++ /dev/null
@@ -1,71 +0,0 @@
-{stable=true;
-hashes=builtins.listToAttrs[
- {name="baloo";value="0p3awsrc20q79kq04x0vjz84acxz6gjm9jc7j2al4kybkyzx5p4y";}
- {name="kde-baseapps";value="1nz6mm257rd916dklnbrix4r25scylvjil99b1djb35blx1aynqj";}
- {name="kdepimlibs";value="1mv8k0wr0wr0hnlb1al50nmz8d77vbm73p2hhipipgliq6zb3vb5";}
- {name="kfilemetadata";value="0wak1nphnphcam8r6pba7m2gld4w04dkk8qn23myjammv3myc59i";}
- {name="libkcddb";value="0xrmg53p5lh4ral2l5zh96angaf9czhih3zzvwr9qr9h9ks5vrn1";}
- {name="libkdcraw";value="0ksarwq8aaxc77cp0ryfnw1n311wkykzdlhj03rln8jjlbdm3j3q";}
- {name="libkexiv2";value="1z8fmxfphx7szf4a17fs7zfjyxj6wncbvsphfvf6i5rlqy60g1y4";}
- {name="marble";value="1w603miykq0s84jk6j17b7pg44rd4az0dhzgq7j7d6dfcz7nfrjd";}
- {name="okular";value="0ijw71vkk1lj873hqczc23vllhkc9s0miipsbllxblx57rgi5qp6";}
- {name="svgpart";value="1bj9gaaj6nqdgchmqnn381288aqw09ky0kbm1naddqa82pk196f6";}
-];
-versions=builtins.listToAttrs[
- {name="baloo";value="4.14.3";}
- {name="kactivities";value="4.13.3";}
- {name="kde-baseapps";value="4.14.3";}
- {name="kdepimlibs";value="4.14.3";}
- {name="kde-runtime";value="4.14.3";}
- {name="kfilemetadata";value="4.14.3";}
- {name="libkcddb";value="4.14.3";}
- {name="libkdcraw";value="4.14.3";}
- {name="libkexiv2";value="4.14.3";}
- {name="marble";value="4.14.3";}
- {name="okular";value="4.14.3";}
- {name="svgpart";value="4.14.3";}
-];
-modules=[
-{
- module="kdemultimedia";
- split=true;
- pkgs=[
- { name="libkcddb"; }
- ];
-}
-{
- module="kdegraphics";
- split=true;
- pkgs=[
- { name="libkdcraw"; }
- { name="libkexiv2"; }
- { name="okular"; }
- { name="svgpart"; }
- ];
-}
-{
- module="kdelibs";
- split=true;
- pkgs=[
- { name = "baloo"; }
- { name = "kfilemetadata"; }
- ];
-}
-{
- module="kdeedu";
- split=true;
- pkgs=[
- { name="marble"; }
- ];
-}
-{
- module="kde-baseapps";
-sane="kde_baseapps"; split=true;
- pkgs=[
- { name="kde-baseapps"; sane="kde_baseapps"; }
- ];
-}
-{ module="kactivities"; split=false;}
-{ module="kdepimlibs"; split=false;}
-];
-}
diff --git a/pkgs/desktops/kde-4.14/kde-package/default.nix b/pkgs/desktops/kde-4.14/kde-package/default.nix
deleted file mode 100644
index 94f878097de..00000000000
--- a/pkgs/desktops/kde-4.14/kde-package/default.nix
+++ /dev/null
@@ -1,138 +0,0 @@
-{ callPackage, runCommand, stdenv, fetchurl, qt4, cmake_2_8, automoc4, perl, pkgconfig
-, release, branch, ignoreList, extraSubpkgs
-}:
-
-let
- inherit (stdenv.lib) filter fold;
- inherit (builtins) getAttr hasAttr remoteAttrs listToAttrs tail head;
- cmake = cmake_2_8;
-in
-rec {
- manifest = import (./. + "/${release}.nix");
-
- # src attribute for $name tarball
- kdesrc = name: version: fetchurl {
- url = "mirror://kde/" + (if manifest.stable then "" else "un")
- + "stable/${release}/src/${name}-${version}.tar.xz";
- sha256 = getAttr name manifest.hashes;
- };
-
- # Default meta attribute
- defMeta = {
- homepage = http://www.kde.org;
- inherit branch;
- platforms = stdenv.lib.platforms.linux;
- inherit (qt4.meta) maintainers;
- };
-
- # KDE package built from the whole tarball
- # This function is used both for monolithic modules and modules which are
- # released as individual tarballs
- kdeMonoPkg = name:
- let n_ = name; v_ = getAttr name manifest.versions; in
- a@{meta, name ? n_, version ? v_, nativeBuildInputs ? [], ...}:
- stdenv.mkDerivation ({
- name = "${name}-${version}";
- src = kdesrc name version;
- nativeBuildInputs = nativeBuildInputs ++ [ automoc4 cmake perl pkgconfig ];
- meta = defMeta // meta;
- enableParallelBuilding = true;
- } // (removeAttrs a [ "meta" "name" "nativeBuildInputs" ]));
-
- # kdeMonoPkg wrapper for modules splitted upstream compatible with combinePkgs
- # API.
- kdeSplittedPkg = module: {name, sane ? name}: kdeMonoPkg name;
-
- # Build subdirectory ${subdir} of tarball ${module}-${release}.tar.xz
- kdeSubdirPkg = module:
- {name, subdir ? name, sane ? name}:
- let name_ = name; version_ = getAttr module manifest.versions; in
- a@{cmakeFlags ? [], name ? name_, version ? version_, meta ? {}, nativeBuildInputs ? [], ...}:
- stdenv.mkDerivation ({
- name = "${name}-${release}";
- src = kdesrc module version;
- nativeBuildInputs = nativeBuildInputs ++ [ automoc4 cmake perl pkgconfig ];
- cmakeFlags =
- [ "-DDISABLE_ALL_OPTIONAL_SUBDIRECTORIES=TRUE"
- "-DBUILD_doc=TRUE"
- "-DBUILD_${subdir}=TRUE"
- ] ++ cmakeFlags;
- meta = defMeta // meta;
- enableParallelBuilding = module.enableParallelBuilding or true;
- } // (removeAttrs a [ "meta" "name" "cmakeFlags" "nativeBuildInputs" ]));
-
- # A KDE monolithic module
- kdeMonoModule = name: path: callPackage path { kde = kdeMonoPkg name; };
-
- # Combine packages in one module.
- # Arguments:
- # * pkgFun --- a function of the following signature:
- # module: manifest_attrs: manual_attrs: derivation;
- # * module --- name of the module
- # * pkgs --- list of packages in manifest format
- combinePkgs = pkgFun: module: pkgs:
- let
- f = p@{name, ...}:
- callPackage (./.. + "/${module}/${name}.nix") { kde = pkgFun module p; };
- list = map f pkgs;
- attrs = listToAttrs (map
- ({name, sane ? name, ...}@p: { name = sane; value = f p; })
- pkgs);
- in
- runCommand "${module}-${release}"
- ({passthru = attrs // {
- propagatedUserEnvPackages = list;
- projects = attrs;
- };})
- ''
- mkdir -pv $out/nix-support
- printWords ${toString list} | tee $out/nix-support/propagated-user-env-packages
- '';
-
- # Given manifest module data, return the module
- kdeModule = { module, sane ? module, split, pkgs ? [] }:
- let
- pkgs_ = filterPkgs module pkgs;
- in
- # Module is splitted by upstream
- if split then combinePkgs kdeSplittedPkg module pkgs_
- # Monolithic module
- else if pkgs == [] then kdeMonoModule module (./.. + "/${module}.nix")
- # Module is splitted by us
- else combinePkgs kdeSubdirPkg module pkgs_;
-
- # The same, as nameValuePair with sane name
- kdeModuleNV = a@{ module, sane ? module, ... }:
- { name = sane; value = kdeModule a; };
-
- filterPkgs = module: (p:
- removeNames (stdenv.lib.attrByPath [module] [] ignoreList) p
- ++ (stdenv.lib.attrByPath [module] [] extraSubpkgs));
-
- # Remove attrsets with x.name in subst. Optimized for empty subst.
- removeNames = subst: big:
- fold (s: out: filter (x: x.name != s) out) big subst;
-
- allModules = listToAttrs (map kdeModuleNV manifest.modules);
-
- modules =
- let unsplit = filter (a: ! (a ? pkgs)) manifest.modules;
- in listToAttrs (map kdeModuleNV unsplit);
-
- splittedModuleList =
- let
- splitted = filter (a: a ? pkgs) manifest.modules;
- names = map ({module, sane ? module, ...}: sane) splitted;
- in
- map (m: m.projects) (stdenv.lib.attrVals names allModules);
-
- individual =
- stdenv.lib.zipAttrsWith
- (
- name: list:
- if tail list == []
- then head list
- else abort "Multiple modules define ${name}"
- )
- splittedModuleList;
-}
diff --git a/pkgs/desktops/kde-4.14/kde-package/kde-manifest.sh b/pkgs/desktops/kde-4.14/kde-package/kde-manifest.sh
deleted file mode 100755
index 1da7bc810c3..00000000000
--- a/pkgs/desktops/kde-4.14/kde-package/kde-manifest.sh
+++ /dev/null
@@ -1,173 +0,0 @@
-#! /bin/sh
-
-# Usage: download kde release to $dir, then run
-# $0 $dir
-
-dir="$1"
-
-
-if [[ -z $(type -p xsltproc) ]]; then
- echo "Please provide libxslt" >&2
- exit 1
-fi
-
-release=$(ls "${dir}"/kdelibs-*.tar.xz | \
- sed -e 's/.*kdelibs-//' -e 's/\.tar\.xz//')
-
-# Detect release number & whether it is a stable release
-if [[ $? -ne 0 || -z $release ]]; then
- echo "'${dir}' is not a directory (or kdelibs...tar.xz doesn't exist)!" >&2
- exit 1
-fi
-
-if [[ ${release##*.} -gt 50 ]]; then
- stable="false"
-else
- stable="true"
-fi
-
-echo "Detected release ${release}" >&2
-
-declare -A hash
-declare -A version
-declare -A modules
-declare -a packages
-declare -a top_level
-
-if [[ ! -f ${dir}/kde_projects.xml ]]; then
- if ! curl -o "${dir}/kde_projects.xml" -J http://projects.kde.org/kde_projects.xml; then
- echo "Could not download http://projects.kde.org/kde_projects.xml to ${dir}/kde_projects.xml" >&2
- exit 1
- fi
-fi
-# xsltproc output declares -A module
-eval `xsltproc kde-submodules.xslt ${dir}/kde_projects.xml`
-
-module[kde-baseapps]=kde-baseapps
-unset module[kactivities]
-
-print_sane() {
- echo "Called print_sane $1" >&2
- sane="${1//[^a-z0-9_]/_}"
- if [[ "$sane" != "$1" ]]; then
- echo "Sane version is $sane" >&2
- echo -n "sane=\"$sane\";"
- fi
-}
-
-for i in `cd "${dir}"; ls *.tar.xz`; do
- package=${i%.tar.xz}
- v=${package##*-}
- package=${i%-*}
- packages+=( "$package" )
- echo -n "${package}.. " >&2
- hash[$package]=$(nix-hash --type sha256 --flat --base32 "${dir}/${i}")
- echo -n ${hash[$package]} >&2
-
- version[$package]=$v
-
- if [ -n "${module[$package]}" ]; then
- m="${module[$package]}"
- echo " (${m})" >&2
- modules[$m]=1
- else
- top_level+=( "$package" )
- echo " (top-level)" >&2
- fi
- nix-store --add-fixed sha256 "${dir}/${i}" >&2
-done
-
-
-print_pkg_hash() {
- echo " {name=\"${1}\";value=\"${hash[$1]}\";}"
-}
-
-print_pkg_version() {
- echo " {name=\"${1}\";value=\"${version[$1]}\";}"
-}
-
-print_hashes(){
- echo "hashes=builtins.listToAttrs["
- for p in "${packages[@]}"; do print_pkg_hash "$p"; done
- echo "];"
-}
-
-print_versions(){
- echo "versions=builtins.listToAttrs["
- for p in "${packages[@]}"; do print_pkg_version "$p"; done
- echo "];"
-}
-
-print_split_module(){
- echo -n "$1:" >&2
- echo -e "{\n module=\"$1\";"
- print_sane "$1"
- echo " split=true;"
- echo " pkgs=["
- for p in "${packages[@]}"; do
- if [[ "${module[$p]}" == "$1" ]]; then
- echo -n " { name=\"$p\"; "
- print_sane "$p"
- echo " }"
- echo -n " $p" >&2
- fi
- done
- echo " ];"
- echo "}"
- echo >&2
-}
-
-print_mono_module(){
- echo -en "{ module=\"$1\"; "
- print_sane "$1"
- echo -n "$1 ... " >&2
- pkg=$(cd "$dir"; echo "$1"-*.tar.xz)
- pkg="${pkg%.tar.xz}"
- echo -n " split=false;"
- cml="$pkg/CMakeLists.txt"
- tar -xf "${dir}/$pkg.tar.xz" "$cml"
- if grep '^[^#]*add_subdirectory' $cml >/dev/null; then
- if grep '^[^#]*add_subdirectory' $cml | grep -v macro_optional_add_subdirectory >/dev/null; then
- echo " is monolithic (has unconditionally added subdirs)" >&2
- else
- subdirs=( `grep '^[^#]*add_subdirectory' $cml |
- sed -e 's/[^#]*add_subdirectory *( *\(.*\) *)/\1/' |
- grep -v '\(doc\|cmake\)'` )
- echo " seems splittable, subdirs: ${subdirs[*]}" >&2
- echo -e "\n pkgs=["
- for s in "${subdirs[@]}"; do
- echo -en " {"
- echo -n " name=\"${s//\//-}\"; "
- print_sane "$s"
- if [[ $s != "${s//\//-}" ]]; then
- echo -n "subdir=\"$s\"; "
- fi
- echo "}"
- done
- echo -e " ];\n"
- fi
- else
- echo " is monolithic (has no subdirs)" >&2
- fi
- rm $cml
- rmdir "$pkg"
- echo "}"
-}
-
-print_modules(){
- echo "modules=["
- echo "Printing modules splitted by upstream" >&2
- for m in "${!modules[@]}"; do print_split_module "$m"; done
- echo >&2
- echo "Printing modules not splitted by upstream (${top_level[*]})" >&2
- for m in "${top_level[@]}"; do print_mono_module "$m"; done
- echo "];"
-}
-
-echo "Writing ${release}.nix" >&2
-exec > "${release}.nix"
-echo "{stable=${stable};"
-print_hashes
-print_versions
-print_modules
-echo "}"
diff --git a/pkgs/desktops/kde-4.14/kde-package/kde-submodules.xslt b/pkgs/desktops/kde-4.14/kde-package/kde-submodules.xslt
deleted file mode 100644
index 952a05a9d27..00000000000
--- a/pkgs/desktops/kde-4.14/kde-package/kde-submodules.xslt
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
- declare -A module
-
-
-
- module["
-
- "]="
-
- "
-
-
-
-
-
diff --git a/pkgs/desktops/kde-4.14/kdeedu/marble.nix b/pkgs/desktops/kde-4.14/kdeedu/marble.nix
deleted file mode 100644
index 2dc07d14a0d..00000000000
--- a/pkgs/desktops/kde-4.14/kdeedu/marble.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ kde, kdelibs, gpsd }:
-
-kde {
-
-# TODO: package QextSerialPort, libshp(shapelib), QtMobility, QtLocation, libwlocate, quazip
-
- buildInputs = [ kdelibs gpsd ];
-
- meta = {
- description = "Marble Virtual Globe";
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kdegraphics/libkdcraw.nix b/pkgs/desktops/kde-4.14/kdegraphics/libkdcraw.nix
deleted file mode 100644
index 18697e13b66..00000000000
--- a/pkgs/desktops/kde-4.14/kdegraphics/libkdcraw.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ stdenv, kde, kdelibs, pkgconfig, libraw, lcms2 }:
-
-kde {
-
- buildInputs = [ kdelibs libraw lcms2 ];
-
- meta = {
- description = "Library for decoding RAW images";
- license = stdenv.lib.licenses.gpl2;
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kdegraphics/libkexiv2.nix b/pkgs/desktops/kde-4.14/kdegraphics/libkexiv2.nix
deleted file mode 100644
index 46ec45fad01..00000000000
--- a/pkgs/desktops/kde-4.14/kdegraphics/libkexiv2.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{ stdenv, kde, kdelibs, exiv2 }:
-
-kde {
- buildInputs = [ kdelibs exiv2 ];
-
- meta = {
- description = "Exiv2 support library";
- license = stdenv.lib.licenses.gpl2;
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kdegraphics/okular.nix b/pkgs/desktops/kde-4.14/kdegraphics/okular.nix
deleted file mode 100644
index de7b7799993..00000000000
--- a/pkgs/desktops/kde-4.14/kdegraphics/okular.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ stdenv, chmlib, djvulibre, ebook_tools, kde, kdelibs, libspectre, poppler_qt4, qca2
-, qimageblitz, libtiff, kactivities, pkgconfig, libkexiv2 }:
-
-kde {
-
-# TODO: package activeapp, qmobipocket
-
- buildInputs = [ kdelibs chmlib djvulibre ebook_tools libspectre poppler_qt4
- qca2 qimageblitz libtiff kactivities libkexiv2 ];
-
- nativeBuildInputs = [ pkgconfig ];
-
- meta = {
- description = "Okular, the KDE document viewer";
- license = stdenv.lib.licenses.gpl2;
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kdegraphics/svgpart.nix b/pkgs/desktops/kde-4.14/kdegraphics/svgpart.nix
deleted file mode 100644
index 2fc0e373dbd..00000000000
--- a/pkgs/desktops/kde-4.14/kdegraphics/svgpart.nix
+++ /dev/null
@@ -1,10 +0,0 @@
-{ stdenv, kde, kdelibs }:
-
-kde {
- buildInputs = [ kdelibs ];
-
- meta = {
- description = "SVG KPart";
- license = stdenv.lib.licenses.gpl2;
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kdelibs/baloo.nix b/pkgs/desktops/kde-4.14/kdelibs/baloo.nix
deleted file mode 100644
index 8883c03274d..00000000000
--- a/pkgs/desktops/kde-4.14/kdelibs/baloo.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ stdenv, kde, kdelibs, pkgconfig, doxygen, kdepimlibs, xapian, qjson, akonadi, kfilemetadata, boost
-}:
-
-kde {
-
-# TODO: qmobipocket
-
- buildInputs = [
- kdelibs kdepimlibs xapian qjson akonadi kfilemetadata boost
- ];
-
- nativeBuildInputs = [ pkgconfig doxygen ];
-
- meta = {
- description = "Baloo";
- license = stdenv.lib.licenses.gpl2;
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kdelibs/kfilemetadata.nix b/pkgs/desktops/kde-4.14/kdelibs/kfilemetadata.nix
deleted file mode 100644
index 6068516ba2b..00000000000
--- a/pkgs/desktops/kde-4.14/kdelibs/kfilemetadata.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ stdenv, kde, kdelibs, pkgconfig, doxygen, poppler_qt4, taglib, exiv2, ffmpeg }:
-
-kde {
- buildInputs = [
- kdelibs poppler_qt4 taglib exiv2 ffmpeg
- ];
-
- nativeBuildInputs = [ pkgconfig doxygen ];
-
- meta = {
- description = "KFileMetaData";
- license = stdenv.lib.licenses.gpl2;
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kdemultimedia/libkcddb.nix b/pkgs/desktops/kde-4.14/kdemultimedia/libkcddb.nix
deleted file mode 100644
index 66b0cfe869f..00000000000
--- a/pkgs/desktops/kde-4.14/kdemultimedia/libkcddb.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{ kde, kdelibs }:
-kde {
-#todo: libmusicbrainz5
- buildInputs = [ kdelibs ];
- meta = {
- description = "A library used to retrieve audio CD meta data from the internet";
- };
-}
diff --git a/pkgs/desktops/kde-4.14/kdepimlibs.nix b/pkgs/desktops/kde-4.14/kdepimlibs.nix
deleted file mode 100644
index 1f412d3c766..00000000000
--- a/pkgs/desktops/kde-4.14/kdepimlibs.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ kde, pkgconfig, boost, cyrus_sasl, gpgme, libical, openldap, prison
-, kdelibs, akonadi, libxslt
-, shared_mime_info, shared_desktop_ontologies, qjson
-, automoc4, cmake_2_8, perl
-}:
-
-kde {
- outputs = [ "out" "dev" ];
-
- outputInclude = "out";
-
- setOutputFlags = false;
-
- nativeBuildInputs = [ automoc4 cmake_2_8 perl pkgconfig ];
-
- cmakeFlags = [
- "-DCMAKE_MINIMUM_REQUIRED_VERSION=3.3"
- ];
-
- buildInputs =
- [ boost gpgme libical libxslt qjson prison
- openldap cyrus_sasl akonadi shared_desktop_ontologies
- shared_mime_info
- ];
-
- propagatedBuildInputs = [ kdelibs ];
-
- # Prevent a dependency on boost.dev. FIXME: move this cmake file to .dev.
- postInstall = "rm $out/lib/gpgmepp/GpgmeppConfig.cmake";
-
- meta = {
- description = "KDE PIM libraries";
- license = "LGPL";
- };
-}
diff --git a/pkgs/desktops/kde-4.14/l10n/default.nix b/pkgs/desktops/kde-4.14/l10n/default.nix
deleted file mode 100644
index b4c272cb328..00000000000
--- a/pkgs/desktops/kde-4.14/l10n/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{ stdenv, fetchurl, automoc4, cmake, perl, pkgconfig
-, kdelibs, gettext, release, branch, stable
-}:
-
-let
-
- inherit (stdenv.lib) attrByPath singleton;
-
- kdeL10nDerivation =
- { lang, saneName, sha256 }:
-
- stdenv.mkDerivation rec {
- name = "kde-l10n-${saneName}-${release}";
-
- src = fetchurl {
- url = "mirror://kde/${if stable then "" else "un"}stable/${release}/src/kde-l10n/kde-l10n-${lang}-${release}.tar.xz";
- name = "${name}.tar.xz";
- inherit sha256;
- };
-
- buildInputs = [ gettext kdelibs ];
-
- nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
-
- cmakeFlags = [
- "-Wno-dev"
- ];
-
- meta = {
- description = "KDE translation for ${lang}";
- inherit branch;
- license = "GPL";
- platforms = stdenv.lib.platforms.linux;
- inherit (kdelibs.meta) maintainers homepage;
- };
- };
-
- kdeL10nRelease =
- builtins.listToAttrs (
- map ({lang, saneName, sha256}:
- {
- name = saneName;
- value = kdeL10nDerivation { inherit lang saneName sha256; };
- }
- ) (import (./manifest + "-${release}.nix"))
- );
-
-in
-{
- inherit kdeL10nDerivation;
- recurseForDerivations = true;
-} // kdeL10nRelease
diff --git a/pkgs/desktops/kde-4.14/l10n/l10n-manifest.sh b/pkgs/desktops/kde-4.14/l10n/l10n-manifest.sh
deleted file mode 100755
index ec159a1e204..00000000000
--- a/pkgs/desktops/kde-4.14/l10n/l10n-manifest.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-# Usage: download kde-l10n to $dir, then run
-# $0 $dir
-
-dir=$1
-
-if [[ ! -d "${dir}" ]]; then
- echo "${dir} is not a directory (or doesn't exist)!" >&2
- exit 1
-fi
-
-release=$(ls "${dir}"/kde-l10n-en_GB-*.tar.xz | \
- sed -e 's/.*en_GB-//' -e 's/\.tar\.xz//')
-
-echo "Detected release ${release}" >&2
-
-exec > "manifest-${release}.nix"
-echo "["
-for i in `cd "${dir}"; ls kde-l10n-*-${release}.tar.xz`; do
- lang=${i%-${release}.tar.xz}
- lang=${lang#kde-l10n-}
- echo -n "${lang}.. " >&2
- hash=$(nix-hash --type sha256 --flat --base32 "${dir}/${i}")
- echo "{"
- echo " lang = \"${lang}\";"
- echo " saneName = \"$(echo $lang | sed s^@^_^g)\";"
- echo " sha256 = \"${hash}\";"
- echo "}"
- echo $hash >&2
-done
-echo "]"
diff --git a/pkgs/desktops/kde-4.14/l10n/manifest-4.14.3.nix b/pkgs/desktops/kde-4.14/l10n/manifest-4.14.3.nix
deleted file mode 100644
index a6d48ae51bf..00000000000
--- a/pkgs/desktops/kde-4.14/l10n/manifest-4.14.3.nix
+++ /dev/null
@@ -1,267 +0,0 @@
-[
-{
- lang = "ar";
- saneName = "ar";
- sha256 = "1amzzwa4zhwm0r1b1fdi0fjp883wpbjh12wn9q42g04xzza6nq04";
-}
-{
- lang = "bg";
- saneName = "bg";
- sha256 = "1x1yx6lw86bwv2d7lcfb061k1pqgqw6abqwrga7pnzfmk2fcaawb";
-}
-{
- lang = "bs";
- saneName = "bs";
- sha256 = "148195dk6wmymk6jib467a10w9jajh3bmx1igxl29l7vp33xpgng";
-}
-{
- lang = "ca";
- saneName = "ca";
- sha256 = "04bgjfwr5pwn79lh3wixajswmccfcqll5dnjhf84zw7p09138m0v";
-}
-{
- lang = "ca@valencia";
- saneName = "ca_valencia";
- sha256 = "0p257jjilkmjrq9ddvwfdh41911b2yrcrid1j31g7gg9gp7iriq4";
-}
-{
- lang = "cs";
- saneName = "cs";
- sha256 = "0kjn9pq9p8bfja6ca4pcpqgli9k1mfyh77j6i8p28i37wfmgv0cn";
-}
-{
- lang = "da";
- saneName = "da";
- sha256 = "1w0ylqnxkbqz6camk8045nrxpz1n4dbz8cgl559l31m7zacq1rmb";
-}
-{
- lang = "de";
- saneName = "de";
- sha256 = "0i97h1jcm8lpv3pap7wiz8nvjwf00jav5z5ymsbklagvmbmwyfyk";
-}
-{
- lang = "el";
- saneName = "el";
- sha256 = "1br19741hmn08g3vzmx8dilx2kdfbg5zv1rjxnigdfwi0zphqyw9";
-}
-{
- lang = "en_GB";
- saneName = "en_GB";
- sha256 = "1flp57prc12ri2rhh6vwf6hb5mqj8w1sj94pnji02ylmkghcc466";
-}
-{
- lang = "es";
- saneName = "es";
- sha256 = "0waccr5mih5nv4q31k6xn07iws2by8n67riij6k9nsfsrlrxv21g";
-}
-{
- lang = "et";
- saneName = "et";
- sha256 = "1bqd4jaws8890r2zjzpf6pw1k9v7h2lr7xk1dzfs8ak7gny32fm9";
-}
-{
- lang = "eu";
- saneName = "eu";
- sha256 = "0q4cac4vp1s7fda328xxyzhqll0iqinn5v9syb93xfj29kij4ja2";
-}
-{
- lang = "fa";
- saneName = "fa";
- sha256 = "0avabmdm9bxyb5b5d0mrv8mmwp6j1r4ch7y0ab7b4zl380blw7d3";
-}
-{
- lang = "fi";
- saneName = "fi";
- sha256 = "0lk0r03r2wmqpf8n9zvwpsbl7s11dipa8kc3lmkh1yrjk8c4z2sw";
-}
-{
- lang = "fr";
- saneName = "fr";
- sha256 = "1gzwc6yj7x7x3jx0270ap5nf70ckl25lqccrxiyzwx3mqfxgfbx2";
-}
-{
- lang = "ga";
- saneName = "ga";
- sha256 = "0bkf62cqj4rfgz81yj9jspv5jfa932hsyhk4kq0r2hqsm8gndddd";
-}
-{
- lang = "gl";
- saneName = "gl";
- sha256 = "00m4m480fqls5i1cvdidkq3nb8xzqhgyqqp0zk3j3qybxfq98yg5";
-}
-{
- lang = "he";
- saneName = "he";
- sha256 = "1488lk7jniv0hj77wcfxplxw10srp3df6lv6llss8b5m3yqb061a";
-}
-{
- lang = "hi";
- saneName = "hi";
- sha256 = "16ni7257b1ch0wabncvq17569c57ncz7pzqgqm830bj8ldpk9zzv";
-}
-{
- lang = "hr";
- saneName = "hr";
- sha256 = "1si90cnwjsvw553pmppb0aakfk7fan2jk44ag0j191kdiir2b3xk";
-}
-{
- lang = "hu";
- saneName = "hu";
- sha256 = "1x2s2cd521ffp5azzrzq2w2cr4sjz6gpg1a1h9jg4749xwqfhc1a";
-}
-{
- lang = "ia";
- saneName = "ia";
- sha256 = "1ybaihygv0lviw6bq3a6ki40glgs49gsk29abq4y95bi9ymlrryc";
-}
-{
- lang = "id";
- saneName = "id";
- sha256 = "1s8zliwc737avc04n2l27rhhh9isz9ag81nsajai27yxif0ncn7x";
-}
-{
- lang = "is";
- saneName = "is";
- sha256 = "1x2mag8jwlmbh8v8y3rmvp9n69sv2xfwwsxw7c9vb8qg4cybax1c";
-}
-{
- lang = "it";
- saneName = "it";
- sha256 = "1ng2hzrbvcak3nhbmlb3h64a15h34zfrgabzwrjvi2b0fv8liycw";
-}
-{
- lang = "ja";
- saneName = "ja";
- sha256 = "01klhf9bmha9x6s39r4wnd0hxn35jg5bh7h9rwqij3nf06rddfrj";
-}
-{
- lang = "kk";
- saneName = "kk";
- sha256 = "149fi65z1x64svs00rn82njmw6l0pncgs4b5d66fb18ah3bjlfg2";
-}
-{
- lang = "km";
- saneName = "km";
- sha256 = "17hjv0gi2fqa5gkjgmqkxb4k7z3zizrxax6inq8s03g4f2vfibaz";
-}
-{
- lang = "ko";
- saneName = "ko";
- sha256 = "19yhacc0v5grxc35bmks9r4qy091qij26yfi2qvs3rca7cc374jp";
-}
-{
- lang = "lt";
- saneName = "lt";
- sha256 = "0y0nkvqidc12paf8ghk4p6z213gxcyv27nvglk120l2602980idj";
-}
-{
- lang = "lv";
- saneName = "lv";
- sha256 = "0msw54v8d9p08c7prw6m20w29qf8f0yb32s378knhsql6abv5gln";
-}
-{
- lang = "mr";
- saneName = "mr";
- sha256 = "05kcm7x7jj4lppn6fd1jlzl37r3gs9wrz0cckwpscc2m6y2g7p55";
-}
-{
- lang = "nb";
- saneName = "nb";
- sha256 = "0wsdr8yyjjik2h30xy7y38i5hagy4jya98cqjbcrrab35i677l9a";
-}
-{
- lang = "nds";
- saneName = "nds";
- sha256 = "0lr5z1r8v3fkqpkcjvnml2s9jh50wmqsqiyls9ivr46ygwm8wcbq";
-}
-{
- lang = "nl";
- saneName = "nl";
- sha256 = "09w8cniq3z11900axjcdlm24jbzjjsqcpdwpvhvc9z78hfsjqp36";
-}
-{
- lang = "nn";
- saneName = "nn";
- sha256 = "1b304wg1143pk7ib8k451g2riq87c1h0611khslghy428q4rviwd";
-}
-{
- lang = "pa";
- saneName = "pa";
- sha256 = "02y56ld5hiywph88khh55hqg0gpcvmqcqrbpsidzx3qdgh5j40nl";
-}
-{
- lang = "pl";
- saneName = "pl";
- sha256 = "137mfrr7wza2pg4yzqqi93bsmsrjvj0ar27gi3lk1qh6zniwyjai";
-}
-{
- lang = "pt";
- saneName = "pt";
- sha256 = "1zb454rg4pigkldg9jp97r2r7k8azwxbal77zscky2q6rbw0sjcn";
-}
-{
- lang = "pt_BR";
- saneName = "pt_BR";
- sha256 = "1zrn09k99pfscnc5zyxh1jzyrbirhy8ilwacbgg913maaanjprny";
-}
-{
- lang = "ro";
- saneName = "ro";
- sha256 = "1lkr14if7jmfcxmb10pf11a6xjxxqxrq45lwdx19kj3djgr5l4pc";
-}
-{
- lang = "ru";
- saneName = "ru";
- sha256 = "1ldf4y9wck339n0jq8x43x9h57jvfg3qk0spfv9d5fw9qyxygwwi";
-}
-{
- lang = "sk";
- saneName = "sk";
- sha256 = "1n4qjwvpkddwizl8k3gr1xwv8icwd6lqsg09cypax049g3q2sy4p";
-}
-{
- lang = "sl";
- saneName = "sl";
- sha256 = "1k111r9ssprgali6sg3wpbvp635hb56ckmcgpdhyvk6bbkcbnbmr";
-}
-{
- lang = "sr";
- saneName = "sr";
- sha256 = "0pini77jlnrv2fhl0j99wjxylwlj77bihcbfvnkf5bganffgwc11";
-}
-{
- lang = "sv";
- saneName = "sv";
- sha256 = "0ykxy95a4q0pp5ibmw20ckg33b3h89g2m86p6fcfnqf6350nxs2v";
-}
-{
- lang = "tr";
- saneName = "tr";
- sha256 = "15vcfpyc30ia6bsjgwv3zhydv2nlnmggr8i2yjpnb5dlynn3sywh";
-}
-{
- lang = "ug";
- saneName = "ug";
- sha256 = "0qhzfbd3j0d7grg4ghzn7y5vrl031iz9krifv7dv6jgp68fzz1h0";
-}
-{
- lang = "uk";
- saneName = "uk";
- sha256 = "03n2myhwx9lvm1vzqvrg2sgl3y1m0rrrskqa22m06fjmh4vxawhx";
-}
-{
- lang = "wa";
- saneName = "wa";
- sha256 = "11b7gyy31n2zfhkaj304pd4lkr14sp1sgi4pzv86c824sr6lp01v";
-}
-{
- lang = "zh_CN";
- saneName = "zh_CN";
- sha256 = "1r5gxadd94ckdpkwcchwa8k735g2y9x7bi6px6hm7qlxdbi9sjmq";
-}
-{
- lang = "zh_TW";
- saneName = "zh_TW";
- sha256 = "04bvvb3na4arns483fz27npjs045hf3s53p2rkd2nvq9gwvn0kmi";
-}
-]
diff --git a/pkgs/desktops/kde-4.14/support/akonadi/default.nix b/pkgs/desktops/kde-4.14/support/akonadi/default.nix
deleted file mode 100644
index ecfb4913a42..00000000000
--- a/pkgs/desktops/kde-4.14/support/akonadi/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, fetchurl, cmake, qt4, shared_mime_info, libxslt, boost, automoc4, soprano, sqlite, pkgconfig }:
-
-stdenv.mkDerivation rec {
- name = "akonadi-1.13.0";
-
- src = fetchurl {
- url = "mirror://kde/stable/akonadi/src/${name}.tar.bz2";
- sha256 = "8c7f690002ea22c139f3a64394aef2e816e00ca47fd971af7d54a66087356dd2";
- };
-
- buildInputs = [ qt4 soprano libxslt boost sqlite ];
-
- nativeBuildInputs = [ cmake automoc4 shared_mime_info pkgconfig ];
-
- enableParallelBuilding = true;
-
- meta = with stdenv.lib; {
- description = "KDE PIM Storage Service";
- license = "LGPL";
- homepage = http://pim.kde.org/akonadi;
- maintainers = [ maintainers.sander maintainers.phreedom ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/desktops/lxde/core/lxappearance/default.nix b/pkgs/desktops/lxde/core/lxappearance/default.nix
index aece5fefaec..c06a99eb36c 100644
--- a/pkgs/desktops/lxde/core/lxappearance/default.nix
+++ b/pkgs/desktops/lxde/core/lxappearance/default.nix
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
meta = {
description = "A lightweight program for configuring the theme and fonts of gtk applications";
- homepage = http://lxde.org/;
+ homepage = https://lxde.org/;
maintainers = [ stdenv.lib.maintainers.hinton ];
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.gpl2;
diff --git a/pkgs/desktops/lxqt/optional/qlipper/default.nix b/pkgs/desktops/lxqt/optional/qlipper/default.nix
index 04b0cd3e6ac..e09c8bc09d5 100644
--- a/pkgs/desktops/lxqt/optional/qlipper/default.nix
+++ b/pkgs/desktops/lxqt/optional/qlipper/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "qlipper";
- version = "5.0.0";
+ version = "5.1.1";
src = fetchFromGitHub {
owner = "pvanek";
repo = pname;
rev = version;
- sha256 = "1y34vadxxjg2l7021y1rpvb8x6pzhk2sk9p35wfm9inilwi8bg8j";
+ sha256 = "0vlm4ab9isi7i2bimnyrk6083j2dfdrs14qj59vjcjri7mcwmf76";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/desktops/mate/atril/default.nix b/pkgs/desktops/mate/atril/default.nix
index 5b02c6ad117..ab00cdce671 100644
--- a/pkgs/desktops/mate/atril/default.nix
+++ b/pkgs/desktops/mate/atril/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libxml2, libsecret, poppler, itstool, mate, hicolor_icon_theme, wrapGAppsHook }:
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libxml2, libsecret, poppler, itstool, caja, mate-desktop, hicolor_icon_theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "atril-${version}";
@@ -23,12 +23,13 @@ stdenv.mkDerivation rec {
libsecret
libxml2
poppler
+ caja
+ mate-desktop
hicolor_icon_theme
- mate.mate-desktop
];
-
- configureFlags = [ "--disable-caja" ];
+ makeFlags = [ "cajaextensiondir=$$out/lib/caja/extensions-2.0" ];
+
meta = {
description = "A simple multi-page document viewer for the MATE desktop";
homepage = http://mate-desktop.org;
diff --git a/pkgs/desktops/mate/caja-dropbox/default.nix b/pkgs/desktops/mate/caja-dropbox/default.nix
new file mode 100644
index 00000000000..da5200eb3b3
--- /dev/null
+++ b/pkgs/desktops/mate/caja-dropbox/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, fetchurl, pkgconfig, gtk3, caja, pythonPackages }:
+
+stdenv.mkDerivation rec {
+ name = "caja-dropbox-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "0";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "18wd8abjaxa68n1yjmvh9az1m8lqa2wing73xdymz0d5gmxmk25g";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ ];
+
+ buildInputs = [
+ gtk3
+ caja
+ pythonPackages.python
+ pythonPackages.pygtk
+ pythonPackages.docutils
+ ];
+
+ configureFlags = [ "--with-caja-extension-dir=$$out/lib/caja/extensions-2.0" ];
+
+ meta = with stdenv.lib; {
+ description = "Dropbox extension for Caja file manager";
+ homepage = https://github.com/mate-desktop/caja-dropbox;
+ license = with licenses; [ gpl3 cc-by-nd-30 ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/caja-extensions/default.nix b/pkgs/desktops/mate/caja-extensions/default.nix
index d3b2a558bc9..9bd86d962ec 100644
--- a/pkgs/desktops/mate/caja-extensions/default.nix
+++ b/pkgs/desktops/mate/caja-extensions/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk3, dbus_glib, gupnp, mate, imagemagick }:
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, dbus_glib, gupnp, caja, mate-desktop, imagemagick, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "caja-extensions-${version}";
@@ -14,14 +14,15 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
pkgconfig
intltool
+ wrapGAppsHook
];
buildInputs = [
gtk3
dbus_glib
gupnp
- mate.caja
- mate.mate-desktop
+ caja
+ mate-desktop
imagemagick
];
diff --git a/pkgs/desktops/mate/caja/cajaWithExtensions.nix b/pkgs/desktops/mate/caja/cajaWithExtensions.nix
deleted file mode 100644
index cb315d7f09a..00000000000
--- a/pkgs/desktops/mate/caja/cajaWithExtensions.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ buildEnv, makeWrapper, caja, extensions ? [] }:
-
-buildEnv {
- name = "cajaWithExtensions-${caja.version}";
- meta = caja.meta // { description = "File manager (including extensions) for the MATE desktop"; };
- paths = [ caja ] ++ extensions;
- buildInputs = [ makeWrapper ];
- postBuild = ''
- wrapProgram "$out/bin/caja" --set CAJA_EXTENSION_DIRS "$out/lib/caja/extensions-2.0"
- '';
-}
diff --git a/pkgs/desktops/mate/caja/default.nix b/pkgs/desktops/mate/caja/default.nix
index d0383fcc5eb..3c872e72091 100644
--- a/pkgs/desktops/mate/caja/default.nix
+++ b/pkgs/desktops/mate/caja/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libnotify, libxml2, libexif, exempi, mate, wrapGAppsHook }:
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libnotify, libxml2, libexif, exempi, mate, hicolor_icon_theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
name = "caja-${version}";
@@ -24,6 +24,7 @@ stdenv.mkDerivation rec {
libexif
exempi
mate.mate-desktop
+ hicolor_icon_theme
];
patches = [
diff --git a/pkgs/desktops/mate/default.nix b/pkgs/desktops/mate/default.nix
index acb3b31e801..0c495fd190e 100644
--- a/pkgs/desktops/mate/default.nix
+++ b/pkgs/desktops/mate/default.nix
@@ -7,31 +7,43 @@ let
atril = callPackage ./atril { };
caja = callPackage ./caja { };
+ caja-dropbox = callPackage ./caja-dropbox { };
caja-extensions = callPackage ./caja-extensions { };
- cajaWithExtensions = callPackage ./caja/cajaWithExtensions.nix {
- extensions = [ caja-extensions ];
- };
engrampa = callPackage ./engrampa { };
eom = callPackage ./eom { };
libmatekbd = callPackage ./libmatekbd { };
libmatemixer = callPackage ./libmatemixer { };
libmateweather = callPackage ./libmateweather { };
marco = callPackage ./marco { };
+ mate-applets = callPackage ./mate-applets { };
+ mate-backgrounds = callPackage ./mate-backgrounds { };
+ mate-calc = callPackage ./mate-calc { };
mate-common = callPackage ./mate-common { };
mate-control-center = callPackage ./mate-control-center { };
mate-desktop = callPackage ./mate-desktop { };
mate-icon-theme = callPackage ./mate-icon-theme { };
mate-icon-theme-faenza = callPackage ./mate-icon-theme-faenza { };
+ mate-indicator-applet = callPackage ./mate-indicator-applet { };
mate-media = callPackage ./mate-media { };
mate-menus = callPackage ./mate-menus { };
+ mate-netbook = callPackage ./mate-netbook { };
mate-notification-daemon = callPackage ./mate-notification-daemon { };
mate-panel = callPackage ./mate-panel { };
+ mate-polkit = callPackage ./mate-polkit { };
mate-power-manager = callPackage ./mate-power-manager { };
+ mate-sensors-applet = callPackage ./mate-sensors-applet { };
mate-session-manager = callPackage ./mate-session-manager { };
mate-settings-daemon = callPackage ./mate-settings-daemon { };
+ mate-screensaver = callPackage ./mate-screensaver { };
+ mate-system-monitor = callPackage ./mate-system-monitor { };
mate-terminal = callPackage ./mate-terminal { };
mate-themes = callPackage ./mate-themes { };
+ mate-user-guide = callPackage ./mate-user-guide { };
+ mate-user-share = callPackage ./mate-user-share { };
+ mate-utils = callPackage ./mate-utils { };
+ mozo = callPackage ./mozo { };
pluma = callPackage ./pluma { };
+ python-caja = callPackage ./python-caja { };
basePackages = [
caja
@@ -46,6 +58,7 @@ let
mate-menus
mate-notification-daemon
mate-panel
+ mate-polkit
mate-session-manager
mate-settings-daemon
mate-themes
@@ -53,13 +66,25 @@ let
extraPackages = [
atril
- cajaWithExtensions
+ caja-extensions
engrampa
eom
+ mate-applets
+ mate-backgrounds
+ mate-calc
mate-icon-theme-faenza
+ mate-indicator-applet
mate-media
+ mate-netbook
mate-power-manager
+ mate-screensaver
+ mate-sensors-applet
+ mate-system-monitor
mate-terminal
+ mate-user-guide
+ #mate-user-share
+ mate-utils
+ mozo
pluma
];
diff --git a/pkgs/desktops/mate/eom/default.nix b/pkgs/desktops/mate/eom/default.nix
index b7df66d520b..e4d52183ab4 100644
--- a/pkgs/desktops/mate/eom/default.nix
+++ b/pkgs/desktops/mate/eom/default.nix
@@ -15,7 +15,6 @@ stdenv.mkDerivation rec {
pkgconfig
intltool
itstool
- hicolor_icon_theme
wrapGAppsHook
];
@@ -31,6 +30,7 @@ stdenv.mkDerivation rec {
gnome3.gtk
gnome3.libpeas
mate.mate-desktop
+ hicolor_icon_theme
];
meta = {
diff --git a/pkgs/desktops/mate/mate-applets/default.nix b/pkgs/desktops/mate/mate-applets/default.nix
new file mode 100644
index 00000000000..ba5ef927fb6
--- /dev/null
+++ b/pkgs/desktops/mate/mate-applets/default.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, gnome3, libwnck3, libgtop, libxml2, libnotify, dbus_glib, polkit, upower, wirelesstools, libmateweather, mate-panel, pythonPackages, hicolor_icon_theme, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-applets-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "2";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "045cl62nnfsl14vnfydwqjssdakgdrahh5h0xiz5afmdcbq6cqgw";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ itstool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gnome3.gtk
+ gnome3.gtksourceview
+ gnome3.gucharmap
+ libwnck3
+ libgtop
+ libxml2
+ libnotify
+ dbus_glib
+ polkit
+ upower
+ wirelesstools
+ libmateweather
+ mate-panel
+ pythonPackages.python
+ pythonPackages.pygobject3
+ hicolor_icon_theme
+ ];
+
+ configureFlags = [ "--enable-suid=no" ];
+
+ NIX_CFLAGS_COMPILE = "-I${gnome3.glib.dev}/include/gio-unix-2.0";
+
+ meta = with stdenv.lib; {
+ description = "Applets for use with the MATE panel";
+ homepage = http://mate-desktop.org;
+ license = with licenses; [ gpl2Plus lgpl2Plus ];
+ platforms = platforms.linux;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-backgrounds/default.nix b/pkgs/desktops/mate/mate-backgrounds/default.nix
new file mode 100644
index 00000000000..6ce78491d03
--- /dev/null
+++ b/pkgs/desktops/mate/mate-backgrounds/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchurl, intltool }:
+
+stdenv.mkDerivation rec {
+ name = "mate-backgrounds-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "0";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "06q8ksjisijps2wn959arywsimhzd3j35mqkr048c26ck24d60zi";
+ };
+
+ nativeBuildInputs = [ intltool ];
+
+ meta = with stdenv.lib; {
+ description = "Background images and data for MATE";
+ homepage = http://mate-desktop.org;
+ license = licenses.gpl2;
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-calc/default.nix b/pkgs/desktops/mate/mate-calc/default.nix
new file mode 100644
index 00000000000..b00bcc27ac5
--- /dev/null
+++ b/pkgs/desktops/mate/mate-calc/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-calc-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "1";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "1h6kr9qb1kaw8jvfm7xmqm1wqnxsw2iwha5vl38b986x4zm2b712";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ itstool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk3
+ libxml2
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Calculator for the MATE desktop";
+ homepage = http://mate-desktop.org;
+ license = [ licenses.gpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-indicator-applet/default.nix b/pkgs/desktops/mate/mate-indicator-applet/default.nix
new file mode 100644
index 00000000000..7d863a929e7
--- /dev/null
+++ b/pkgs/desktops/mate/mate-indicator-applet/default.nix
@@ -0,0 +1,45 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libindicator-gtk3, mate-panel, hicolor_icon_theme, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-indicator-applet-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "1";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "1h77f1gbz1a8l9xyq5fk75bs58mcwx6pbk6db33v0v1mwq6cidiv";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk3
+ libindicator-gtk3
+ mate-panel
+ hicolor_icon_theme
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/mate-desktop/mate-indicator-applet;
+ description = "MATE panel indicator applet";
+ longDescription = ''
+ A small applet to display information from various applications
+ consistently in the panel.
+
+ The indicator applet exposes Ayatana Indicators in the MATE Panel.
+ Ayatana Indicators are an initiative by Canonical to provide crisp and
+ clean system and application status indication. They take the form of
+ an icon and associated menu, displayed (usually) in the desktop panel.
+ Existing indicators include the Message Menu, Battery Menu and Sound
+ menu.
+ '';
+ license = with licenses; [ gpl3Plus lgpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-netbook/default.nix b/pkgs/desktops/mate/mate-netbook/default.nix
new file mode 100644
index 00000000000..0a2a0e47202
--- /dev/null
+++ b/pkgs/desktops/mate/mate-netbook/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libwnck3, libfakekey, libXtst, mate-panel, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-netbook-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "2";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "0xy5mhkg0xfgyr7gnnjrfzqhmdnhyqscrl2h496p06cflknm17vb";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk3
+ libwnck3
+ libfakekey
+ libXtst
+ mate-panel
+ ];
+
+ meta = with stdenv.lib; {
+ description = "MATE utilities for netbooks";
+ longDescription = ''
+ MATE utilities for netbooks are an applet and a daemon to maximize
+ windows and move their titles on the panel.
+
+ Installing these utilities is recommended for netbooks and similar
+ devices with low resolution displays.
+ '';
+ homepage = http://mate-desktop.org;
+ license = with licenses; [ gpl3 lgpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-panel/default.nix b/pkgs/desktops/mate/mate-panel/default.nix
index 1ca20047fa1..ec934b1fc63 100644
--- a/pkgs/desktops/mate/mate-panel/default.nix
+++ b/pkgs/desktops/mate/mate-panel/default.nix
@@ -4,11 +4,11 @@ stdenv.mkDerivation rec {
name = "mate-panel-${version}";
version = "${major-ver}.${minor-ver}";
major-ver = "1.18";
- minor-ver = "6";
+ minor-ver = "7";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
- sha256 = "0cyfqq7i3qilw6qfxay4j9rl9y03s611nrqy5bh7lkdx1y0l16kx";
+ sha256 = "1m0fxyzbvg239dddmz3ksd8871lhkd7n3fxvdgdf4hv9rlvm1klv";
};
nativeBuildInputs = [
@@ -24,12 +24,12 @@ stdenv.mkDerivation rec {
libwnck3
librsvg
libxml2
- hicolor_icon_theme
gnome3.gtk
gnome3.dconf
mate.libmateweather
mate.mate-desktop
mate.mate-menus
+ hicolor_icon_theme
];
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
diff --git a/pkgs/desktops/mate/mate-polkit/default.nix b/pkgs/desktops/mate/mate-polkit/default.nix
new file mode 100644
index 00000000000..94fb5ef43e8
--- /dev/null
+++ b/pkgs/desktops/mate/mate-polkit/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, gobjectIntrospection, libappindicator-gtk3, libindicator-gtk3, polkit }:
+
+stdenv.mkDerivation rec {
+ name = "mate-polkit-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "2";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "01mxl7wj1501d3clrwlwa54970vpkahp5968xpaxwfb2zbnqgjbd";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ ];
+
+ buildInputs = [
+ gtk3
+ gobjectIntrospection
+ libappindicator-gtk3
+ libindicator-gtk3
+ polkit
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Integrates polkit authentication for MATE desktop";
+ homepage = http://mate-desktop.org;
+ license = [ licenses.gpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-screensaver/default.nix b/pkgs/desktops/mate/mate-screensaver/default.nix
new file mode 100644
index 00000000000..dbaebb4c7be
--- /dev/null
+++ b/pkgs/desktops/mate/mate-screensaver/default.nix
@@ -0,0 +1,42 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, dbus_glib, libXScrnSaver, libnotify, pam, systemd, mate-desktop, mate-menus, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-screensaver-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "2";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "03za7ssww095i49braaq0di5ir9g6wxh1n5hfgy6b3w9nb0j1y2p";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk3
+ dbus_glib
+ libXScrnSaver
+ libnotify
+ pam
+ systemd
+ mate-desktop
+ mate-menus
+ ];
+
+ configureFlags = "--without-console-kit";
+
+ makeFlags = "DBUS_SESSION_SERVICE_DIR=$(out)/etc";
+
+ meta = with stdenv.lib; {
+ description = "Screen saver and locker for the MATE desktop";
+ homepage = http://mate-desktop.org;
+ license = with licenses; [ gpl2Plus lgpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-sensors-applet/default.nix b/pkgs/desktops/mate/mate-sensors-applet/default.nix
new file mode 100644
index 00000000000..ed98ffaa645
--- /dev/null
+++ b/pkgs/desktops/mate/mate-sensors-applet/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libxslt, libatasmart, libnotify, dbus_glib, lm_sensors, mate-panel, hicolor_icon_theme, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-sensors-applet-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "3";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "1nm68rhp73kgvs7wwsgs5zbvq3lzaanl5s5nnn28saiknjbz1mcx";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ itstool
+ wrapGAppsHook
+ ];
+
+ # maybe add nvidia-settings later on
+ buildInputs = [
+ gtk3
+ libxml2
+ libxslt
+ libatasmart
+ libnotify
+ dbus_glib
+ lm_sensors
+ mate-panel
+ hicolor_icon_theme
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/mate-desktop/mate-sensors-applet;
+ description = "MATE panel applet for hardware sensors";
+ license = with licenses; [ gpl2Plus ];
+ platforms = platforms.linux;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-session-manager/default.nix b/pkgs/desktops/mate/mate-session-manager/default.nix
index 6b4abbeff00..f15a78120cb 100644
--- a/pkgs/desktops/mate/mate-session-manager/default.nix
+++ b/pkgs/desktops/mate/mate-session-manager/default.nix
@@ -1,4 +1,7 @@
-{ stdenv, fetchurl, pkgconfig, intltool, itstool, dbus_glib, systemd, xtrans, xorg, gnome3, mate, hicolor_icon_theme, wrapGAppsHook }:
+{ stdenv, fetchurl, pkgconfig, intltool, xtrans, dbus_glib, systemd,
+ libSM, libXtst, gtk3, mate-desktop, hicolor_icon_theme,
+ wrapGAppsHook
+}:
stdenv.mkDerivation rec {
name = "mate-session-manager-${version}";
@@ -14,18 +17,18 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
pkgconfig
intltool
+ xtrans
wrapGAppsHook
];
buildInputs = [
dbus_glib
systemd
- xtrans
+ libSM
+ libXtst
+ gtk3
+ mate-desktop
hicolor_icon_theme
- xorg.libSM
- gnome3.gtk3
- gnome3.gsettings_desktop_schemas
- mate.mate-desktop
];
meta = with stdenv.lib; {
diff --git a/pkgs/desktops/mate/mate-system-monitor/default.nix b/pkgs/desktops/mate/mate-system-monitor/default.nix
new file mode 100644
index 00000000000..1378cc7f3ba
--- /dev/null
+++ b/pkgs/desktops/mate/mate-system-monitor/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtkmm3, libxml2, libgtop, libwnck3, librsvg, systemd, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-system-monitor-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "1";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "1xhz7d9045xfh431rn27kh1sd1clbzkfrw1zkjgfnpad6v3aaaks";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ itstool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtkmm3
+ libxml2
+ libgtop
+ libwnck3
+ librsvg
+ systemd
+ ];
+
+ configureFlags = "--enable-systemd";
+
+ meta = with stdenv.lib; {
+ description = "System monitor for the MATE desktop";
+ homepage = http://mate-desktop.org;
+ license = [ licenses.gpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-user-guide/default.nix b/pkgs/desktops/mate/mate-user-guide/default.nix
new file mode 100644
index 00000000000..ce8029fb215
--- /dev/null
+++ b/pkgs/desktops/mate/mate-user-guide/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, intltool, itstool, libxml2, yelp }:
+
+stdenv.mkDerivation rec {
+ name = "mate-user-guide-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "0";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "0f3b46r9a3cywm7rpj08xlkfnlfr9db58xfcpix8i33qp50fxqmb";
+ };
+
+ nativeBuildInputs = [ itstool intltool libxml2 ];
+
+ buildInputs = [ yelp ];
+
+ meta = with stdenv.lib; {
+ description = "MATE User Guide";
+ homepage = http://mate-desktop.org;
+ license = with licenses; [ gpl2Plus fdl12 ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-user-share/default.nix b/pkgs/desktops/mate/mate-user-share/default.nix
new file mode 100644
index 00000000000..afacad52778
--- /dev/null
+++ b/pkgs/desktops/mate/mate-user-share/default.nix
@@ -0,0 +1,54 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, dbus_glib, libnotify, libxml2, libcanberra_gtk3, caja, mod_dnssd, apacheHttpd, hicolor_icon_theme, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-user-share-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "0";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "0w7r7jmm12n41hcxj1pfk3f0xy69cddx7ga490x191rdpcb3ry1n";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ itstool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk3
+ dbus_glib
+ libnotify
+ libcanberra_gtk3
+ libxml2
+ caja
+ hicolor_icon_theme
+ # Should mod_dnssd and apacheHttpd be runtime dependencies?
+ # In gnome-user-share they are not.
+ #mod_dnssd
+ #apacheHttpd
+ ];
+
+ preConfigure = ''
+ sed -e 's,^LoadModule dnssd_module.\+,LoadModule dnssd_module ${mod_dnssd}/modules/mod_dnssd.so,' \
+ -e 's,''${HTTP_MODULES_PATH},${apacheHttpd}/modules,' \
+ -i data/dav_user_2.4.conf
+ '';
+
+ configureFlags = [
+ "--with-httpd=${apacheHttpd.out}/bin/httpd"
+ "--with-modules-path=${apacheHttpd.dev}/modules"
+ "--with-cajadir=$(out)/lib/caja/extensions-2.0"
+ ];
+
+ meta = with stdenv.lib; {
+ description = "User level public file sharing for the MATE desktop";
+ homepage = https://github.com/mate-desktop/mate-user-share;
+ license = with licenses; [ gpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mate-utils/default.nix b/pkgs/desktops/mate/mate-utils/default.nix
new file mode 100644
index 00000000000..281fef42e61
--- /dev/null
+++ b/pkgs/desktops/mate/mate-utils/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libgtop, libcanberra_gtk3, mate-panel, hicolor_icon_theme, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "mate-utils-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "3";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "1nw8rcq3x67v73cmy44zz6r2ikz46wsx834qzkbq4i2ac96kdkfz";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ itstool
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ gtk3
+ libgtop
+ libcanberra_gtk3
+ libxml2
+ mate-panel
+ hicolor_icon_theme
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Utilities for the MATE desktop";
+ homepage = http://mate-desktop.org;
+ license = with licenses; [ gpl2Plus lgpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/mozo/default.nix b/pkgs/desktops/mate/mozo/default.nix
new file mode 100644
index 00000000000..b376736c473
--- /dev/null
+++ b/pkgs/desktops/mate/mozo/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, pkgconfig, intltool, mate-menus, pythonPackages }:
+
+stdenv.mkDerivation rec {
+ name = "mozo-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "0";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "04yn9bw64q5a5kvpmkb7rb3mlp11pmnvkbphficsgb0368fj895b";
+ };
+
+ pythonPath = [ mate-menus pythonPackages.pygobject3 ];
+
+ nativeBuildInputs = [ pkgconfig intltool pythonPackages.wrapPython ];
+
+ buildInputs = [ pythonPackages.python ] ++ pythonPath;
+
+ preFixup = "wrapPythonPrograms";
+
+ meta = with stdenv.lib; {
+ description = "MATE Desktop menu editor";
+ homepage = https://github.com/mate-desktop/mozo;
+ license = with licenses; [ lgpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/mate/python-caja/default.nix b/pkgs/desktops/mate/python-caja/default.nix
new file mode 100644
index 00000000000..4eb9b72b8b5
--- /dev/null
+++ b/pkgs/desktops/mate/python-caja/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, fetchurl, pkgconfig, intltool, gtk3, caja, pythonPackages }:
+
+stdenv.mkDerivation rec {
+ name = "python-caja-${version}";
+ version = "${major-ver}.${minor-ver}";
+ major-ver = "1.18";
+ minor-ver = "1";
+
+ src = fetchurl {
+ url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
+ sha256 = "0n43cvvv29gq31hgrsf9al184cr87c3hzskrh2593rid52kwyz44";
+ };
+
+ nativeBuildInputs = [
+ pkgconfig
+ intltool
+ pythonPackages.wrapPython
+ ];
+
+ buildInputs = [
+ gtk3
+ caja
+ pythonPackages.python
+ pythonPackages.pygobject3
+ ];
+
+ configureFlags = [ "--with-cajadir=$$out/lib/caja/extensions-2.0" ];
+
+ meta = with stdenv.lib; {
+ description = "Python binding for Caja components";
+ homepage = https://github.com/mate-desktop/python-caja;
+ license = [ licenses.gpl2Plus ];
+ platforms = platforms.unix;
+ maintainers = [ maintainers.romildo ];
+ };
+}
diff --git a/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix b/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
index b7c27ec3d0a..13a34f90fcd 100644
--- a/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
+++ b/pkgs/desktops/pantheon/apps/pantheon-terminal/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perl, cmake, vala_0_38, pkgconfig, glib, gtk3, granite, gnome3, libnotify, gettext, makeWrapper }:
+{ stdenv, fetchurl, perl, cmake, vala_0_38, pkgconfig, glib, gtk3, granite, gnome3, libnotify, gettext, makeWrapper, gobjectIntrospection }:
stdenv.mkDerivation rec {
majorVersion = "0.4";
@@ -20,7 +20,11 @@ stdenv.mkDerivation rec {
done
'';
- nativeBuildInputs = [ perl cmake vala_0_38 pkgconfig makeWrapper ];
+ nativeBuildInputs = [
+ perl cmake vala_0_38 pkgconfig makeWrapper
+ # For setup hook
+ gobjectIntrospection
+ ];
buildInputs = with gnome3; [
glib gtk3 granite libnotify gettext vte_290 libgee
gsettings_desktop_schemas defaultIconTheme
diff --git a/pkgs/desktops/plasma-5/breeze-qt4.nix b/pkgs/desktops/plasma-5/breeze-qt4.nix
deleted file mode 100644
index 6c31398037b..00000000000
--- a/pkgs/desktops/plasma-5/breeze-qt4.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{
- mkDerivation, lib,
- automoc4, cmake, perl, pkgconfig,
- kdelibs4, qt4, xproto
-}:
-
-mkDerivation {
- name = "breeze-qt4";
- sname = "breeze";
- buildInputs = [ kdelibs4 qt4 xproto ];
- nativeBuildInputs = [ automoc4 cmake perl pkgconfig ];
- outputs = [ "out" "dev" ];
- cmakeFlags = [
- "-DUSE_KDE4=ON"
- "-DQT_QMAKE_EXECUTABLE=${qt4}/bin/qmake"
- ];
-}
diff --git a/pkgs/desktops/plasma-5/default.nix b/pkgs/desktops/plasma-5/default.nix
index cae5c74b442..0972673b7b8 100644
--- a/pkgs/desktops/plasma-5/default.nix
+++ b/pkgs/desktops/plasma-5/default.nix
@@ -100,7 +100,6 @@ let
in {
bluedevil = callPackage ./bluedevil.nix {};
breeze-gtk = callPackage ./breeze-gtk.nix {};
- breeze-qt4 = callPackage ./breeze-qt4.nix {};
breeze-qt5 = callPackage ./breeze-qt5.nix {};
breeze-grub = callPackage ./breeze-grub.nix {};
breeze-plymouth = callPackage ./breeze-plymouth {};
diff --git a/pkgs/desktops/plasma-5/fetch.sh b/pkgs/desktops/plasma-5/fetch.sh
index 0469589e48c..921441c0292 100644
--- a/pkgs/desktops/plasma-5/fetch.sh
+++ b/pkgs/desktops/plasma-5/fetch.sh
@@ -1 +1 @@
-WGET_ARGS=( https://download.kde.org/stable/plasma/5.11.4/ -A '*.tar.xz' )
+WGET_ARGS=( https://download.kde.org/stable/plasma/5.11.5/ -A '*.tar.xz' )
diff --git a/pkgs/desktops/plasma-5/kwin/default.nix b/pkgs/desktops/plasma-5/kwin/default.nix
index f31294e00d6..289d5a812f7 100644
--- a/pkgs/desktops/plasma-5/kwin/default.nix
+++ b/pkgs/desktops/plasma-5/kwin/default.nix
@@ -30,8 +30,8 @@ mkDerivation {
];
outputs = [ "bin" "dev" "out" ];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
- NIX_CFLAGS_COMPILE = [
- ''-DNIXPKGS_XWAYLAND="${lib.getBin xwayland}/bin/Xwayland"''
+ CXXFLAGS = [
+ ''-DNIXPKGS_XWAYLAND=\"${lib.getBin xwayland}/bin/Xwayland\"''
];
cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ];
postInstall = ''
diff --git a/pkgs/desktops/plasma-5/plasma-desktop/default.nix b/pkgs/desktops/plasma-5/plasma-desktop/default.nix
index 18675159df6..318d416d885 100644
--- a/pkgs/desktops/plasma-5/plasma-desktop/default.nix
+++ b/pkgs/desktops/plasma-5/plasma-desktop/default.nix
@@ -34,9 +34,9 @@ mkDerivation rec {
postPatch = ''
sed '1i#include ' -i kcms/touchpad/src/backends/x11/synapticstouchpad.cpp
'';
- NIX_CFLAGS_COMPILE = [
+ CXXFLAGS = [
"-I${lib.getDev xorgserver}/include/xorg"
- ''-DNIXPKGS_HWCLOCK="${lib.getBin utillinux}/sbin/hwclock"''
+ ''-DNIXPKGS_HWCLOCK=\"${lib.getBin utillinux}/sbin/hwclock\"''
];
cmakeFlags = [
"-DEvdev_INCLUDE_DIRS=${lib.getDev xf86inputevdev}/include/xorg"
diff --git a/pkgs/desktops/plasma-5/plasma-vault/default.nix b/pkgs/desktops/plasma-5/plasma-vault/default.nix
index 203ff50d735..300627163e5 100644
--- a/pkgs/desktops/plasma-5/plasma-vault/default.nix
+++ b/pkgs/desktops/plasma-5/plasma-vault/default.nix
@@ -26,13 +26,13 @@ mkDerivation {
kactivities plasma-framework kwindowsystem libksysguard
];
- NIX_CFLAGS_COMPILE = [
- ''-DNIXPKGS_ENCFS="${lib.getBin encfs}/bin/encfs"''
- ''-DNIXPKGS_ENCFSCTL="${lib.getBin encfs}/bin/encfsctl"''
+ CXXFLAGS = [
+ ''-DNIXPKGS_ENCFS=\"${lib.getBin encfs}/bin/encfs\"''
+ ''-DNIXPKGS_ENCFSCTL=\"${lib.getBin encfs}/bin/encfsctl\"''
- ''-DNIXPKGS_CRYFS="${lib.getBin cryfs}/bin/cryfs"''
+ ''-DNIXPKGS_CRYFS=\"${lib.getBin cryfs}/bin/cryfs\"''
- ''-DNIXPKGS_FUSERMOUNT="${lib.getBin fuse}/bin/fusermount"''
+ ''-DNIXPKGS_FUSERMOUNT=\"${lib.getBin fuse}/bin/fusermount\"''
];
}
diff --git a/pkgs/desktops/plasma-5/srcs.nix b/pkgs/desktops/plasma-5/srcs.nix
index 4b71e314fba..ee605bdba8a 100644
--- a/pkgs/desktops/plasma-5/srcs.nix
+++ b/pkgs/desktops/plasma-5/srcs.nix
@@ -3,355 +3,355 @@
{
bluedevil = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/bluedevil-5.11.4.tar.xz";
- sha256 = "1xjvx5w2pkwj63hdxjkh4fdqyydxvc2sqg1pwkwqnw58z78lhq20";
- name = "bluedevil-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/bluedevil-5.11.5.tar.xz";
+ sha256 = "0xzdf1qrf2nlpvn2hr9zk72hw027i318s9pnzgmqg1lwhdr276h5";
+ name = "bluedevil-5.11.5.tar.xz";
};
};
breeze = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/breeze-5.11.4.tar.xz";
- sha256 = "0nxp13x5326ahkrb37rbrsn7xhl9gbrrpnbhhflmr9zdx2af7700";
- name = "breeze-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/breeze-5.11.5.tar.xz";
+ sha256 = "0xxwnhxpkdf4nyc1rvsjrnqsv1cgzs3a88mwfwpvci4snfva8jp1";
+ name = "breeze-5.11.5.tar.xz";
};
};
breeze-grub = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/breeze-grub-5.11.4.tar.xz";
- sha256 = "1yz31j3dgzkliz8sk80d6fs0afnd45nw6xkhrws2aar2rnn9d1w4";
- name = "breeze-grub-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/breeze-grub-5.11.5.tar.xz";
+ sha256 = "1l3dv1acgs6ssydg985d90136p9n4h0xry3xlx12g5wg07i8s89g";
+ name = "breeze-grub-5.11.5.tar.xz";
};
};
breeze-gtk = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/breeze-gtk-5.11.4.tar.xz";
- sha256 = "0n9fn3jp610g617561c8pr7i9v4k6cdpyqi7kl4f56h6cwq6b0ga";
- name = "breeze-gtk-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/breeze-gtk-5.11.5.tar.xz";
+ sha256 = "0mkd1gqih5irmabxly2y744sr1iwxy7r7hx68jrd452nbvqvyrqq";
+ name = "breeze-gtk-5.11.5.tar.xz";
};
};
breeze-plymouth = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/breeze-plymouth-5.11.4.tar.xz";
- sha256 = "099hl3dfcc3n4yh94hdhgnwy01a74s6as2yma57idcqw2akf6d0v";
- name = "breeze-plymouth-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/breeze-plymouth-5.11.5.tar.xz";
+ sha256 = "0ydfrrsqvzn71j9x1f26771x99yiq59h745k476dcqajj2m0ari3";
+ name = "breeze-plymouth-5.11.5.tar.xz";
};
};
discover = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/discover-5.11.4.tar.xz";
- sha256 = "1n6s52n8ynsymcwjckkfxrnzsj15f10if8r3ka5qhd7w6nb2x2iz";
- name = "discover-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/discover-5.11.5.tar.xz";
+ sha256 = "0yxsp4jimyrsxf72hinqa51ycg4hmfxrxdicm9n8qfz47srcgkml";
+ name = "discover-5.11.5.tar.xz";
};
};
drkonqi = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/drkonqi-5.11.4.tar.xz";
- sha256 = "0vnfx8sha9mdsdb5baw5xwlswm32wmd96kv8yzm3zr67fkz95n3s";
- name = "drkonqi-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/drkonqi-5.11.5.tar.xz";
+ sha256 = "1kngafr1hdq6r02mpd4bj5lgbgzk2cd10f5zqsvdfgsirz91vfsf";
+ name = "drkonqi-5.11.5.tar.xz";
};
};
kactivitymanagerd = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kactivitymanagerd-5.11.4.tar.xz";
- sha256 = "10942fzaai30agzmbldwiwycpb7198qhgk3jr2p5wlfrawl1sl4q";
- name = "kactivitymanagerd-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kactivitymanagerd-5.11.5.tar.xz";
+ sha256 = "11nnmqpw4kq96912rys2a539yzgncc5vp7b52wgc4is9i5czsr50";
+ name = "kactivitymanagerd-5.11.5.tar.xz";
};
};
kde-cli-tools = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kde-cli-tools-5.11.4.tar.xz";
- sha256 = "07415ssr25lnr9klv6r7jclf9l5mca6dxf6xskwgixcap1fl5vdg";
- name = "kde-cli-tools-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kde-cli-tools-5.11.5.tar.xz";
+ sha256 = "0d4d360pq6winykjp6lgq77k9yc435d5g71dj7bivkyilqc4cp8c";
+ name = "kde-cli-tools-5.11.5.tar.xz";
};
};
kdecoration = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kdecoration-5.11.4.tar.xz";
- sha256 = "0vvhhdd3jlb7x9zdc3bjalchhvjkg411ip379rifn9z7zxbrsq9m";
- name = "kdecoration-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kdecoration-5.11.5.tar.xz";
+ sha256 = "0hl9mqwyfkh1r5nbl46g5axi446fdf7fw09b7v6l3jg9c5xbx89d";
+ name = "kdecoration-5.11.5.tar.xz";
};
};
kde-gtk-config = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kde-gtk-config-5.11.4.tar.xz";
- sha256 = "08s5z7lck37cyzkkg5v9qrnlfxjrpfd565y2i1ng9k6vm9m39172";
- name = "kde-gtk-config-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kde-gtk-config-5.11.5.tar.xz";
+ sha256 = "1y9ji82qlvp2z00xw0l32zj8asbg85n6azw8ringg2l6376r01l6";
+ name = "kde-gtk-config-5.11.5.tar.xz";
};
};
kdeplasma-addons = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kdeplasma-addons-5.11.4.tar.xz";
- sha256 = "19ywc3ryjax7g7wg969j256n4cr3n51lzxsw4gklf4n0px4pk2pi";
- name = "kdeplasma-addons-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kdeplasma-addons-5.11.5.tar.xz";
+ sha256 = "1vp9r7ia5wriw5srpyq89nqdp82akz3jnh7dcbh2h0gdagw7hb94";
+ name = "kdeplasma-addons-5.11.5.tar.xz";
};
};
kgamma5 = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kgamma5-5.11.4.tar.xz";
- sha256 = "1njzb06hk0lpj3s6i2hmlww0k7122dca9mi0rbr0ilfwha36ib2s";
- name = "kgamma5-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kgamma5-5.11.5.tar.xz";
+ sha256 = "16vlx51n52j5q1nfsz4ji6bz4x6sfagxzn6q3r6ckj41rkwmp9gg";
+ name = "kgamma5-5.11.5.tar.xz";
};
};
khotkeys = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/khotkeys-5.11.4.tar.xz";
- sha256 = "0wszl7bzjl6gszvg9n4p8x3m6h0x5xx3qz3yi1y6g5mplfg7h0c6";
- name = "khotkeys-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/khotkeys-5.11.5.tar.xz";
+ sha256 = "051yjqkf5bigz6cz2qbq0lggw9i6ydfaxrvy4xh40mw2c6x3xmvh";
+ name = "khotkeys-5.11.5.tar.xz";
};
};
kinfocenter = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kinfocenter-5.11.4.tar.xz";
- sha256 = "0ff3v90fj187glb22rvp27kp1b83br71vshcq2cpfzrbv97wrqf4";
- name = "kinfocenter-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kinfocenter-5.11.5.tar.xz";
+ sha256 = "0ym7i64k48x8dcln0lajj0379blp3c3a0axfcjibp3ya2xcaqdif";
+ name = "kinfocenter-5.11.5.tar.xz";
};
};
kmenuedit = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kmenuedit-5.11.4.tar.xz";
- sha256 = "0kbqrri7mnnarfw45k7j3ckxdpkasc25prvn1zlhci0acqhz0skk";
- name = "kmenuedit-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kmenuedit-5.11.5.tar.xz";
+ sha256 = "0wh4hk51k2mz1gqm9brvdy16gp2ap2iz5b6yjiqbkpz6giy88kwc";
+ name = "kmenuedit-5.11.5.tar.xz";
};
};
kscreen = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kscreen-5.11.4.tar.xz";
- sha256 = "0rjy594qj9825gan3r4iw4qphnksnrfn2f1dgyvd63ds70xm272h";
- name = "kscreen-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kscreen-5.11.5.tar.xz";
+ sha256 = "0qa23qs8v8hm91190ssdnlg7dyljra7csgykb7d8la30yxa9vzc7";
+ name = "kscreen-5.11.5.tar.xz";
};
};
kscreenlocker = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kscreenlocker-5.11.4.tar.xz";
- sha256 = "0r2438s7gs39qbkprx90smvb8mlgqm486qgv34ljx9vi0zm4kq47";
- name = "kscreenlocker-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kscreenlocker-5.11.5.tar.xz";
+ sha256 = "0qrby8jxmvmnr1abkry8h5xapdswabj27n35s9l71d9lp9p96naz";
+ name = "kscreenlocker-5.11.5.tar.xz";
};
};
ksshaskpass = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/ksshaskpass-5.11.4.tar.xz";
- sha256 = "1wqzwvlimw5mkq1hfzjjw9az3g9bdqkiw9m7vrxfb67asgmmbrbx";
- name = "ksshaskpass-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/ksshaskpass-5.11.5.tar.xz";
+ sha256 = "08jf6f1i9xn0zsz2j2czgdzcr203wrlj1nlam26dakrphhaj8vm2";
+ name = "ksshaskpass-5.11.5.tar.xz";
};
};
ksysguard = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/ksysguard-5.11.4.tar.xz";
- sha256 = "1dl5q6k2ipdwlg8i5bh2xsz20wg5dwn8401rba9jzp3la97id2sc";
- name = "ksysguard-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/ksysguard-5.11.5.tar.xz";
+ sha256 = "161bcmsw4bjlsgkr3izfsqbiwambmm3za8mln3m96nf70gpqpa6i";
+ name = "ksysguard-5.11.5.tar.xz";
};
};
kwallet-pam = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kwallet-pam-5.11.4.tar.xz";
- sha256 = "0xkgm0i0x1kcw4rcsv762pqs1vk2gxi09n421whq9ibmj8cm2ky2";
- name = "kwallet-pam-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kwallet-pam-5.11.5.tar.xz";
+ sha256 = "0wqnaszvwclz2gn74nmhqmci39525hwvpc3igxzjhdccnkfb5ac4";
+ name = "kwallet-pam-5.11.5.tar.xz";
};
};
kwayland-integration = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kwayland-integration-5.11.4.tar.xz";
- sha256 = "03azlds5iv3mq7g1livrqca4k30znac088qllzl4rh0mfmw4bmcy";
- name = "kwayland-integration-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kwayland-integration-5.11.5.tar.xz";
+ sha256 = "0xisgzymlhmbngvmv3dkh6a51dqnhcwrjj2480f0yxsmhvknxrps";
+ name = "kwayland-integration-5.11.5.tar.xz";
};
};
kwin = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kwin-5.11.4.tar.xz";
- sha256 = "0lfp2nyh28mlqbm3qjhd9adgp8w8j2gfn6xzw8ckxmkrzpdv52gr";
- name = "kwin-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kwin-5.11.5.tar.xz";
+ sha256 = "06bz2vm78i1x0i0ljdqd2a0bnnrfwz9zvlg7r86qlmhkzn2dpc4z";
+ name = "kwin-5.11.5.tar.xz";
};
};
kwrited = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/kwrited-5.11.4.tar.xz";
- sha256 = "16l280dh3fw0sn3h9yprb74wmc0adsqq092s4dyka55md06qzqif";
- name = "kwrited-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/kwrited-5.11.5.tar.xz";
+ sha256 = "0sx5v1apambb8w6mndkkp2lvwlqwzbpxxp5d5zsz96lxndjx6sbv";
+ name = "kwrited-5.11.5.tar.xz";
};
};
libkscreen = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/libkscreen-5.11.4.tar.xz";
- sha256 = "0sv3q6zmplm0iz6ax87763mg771zvk1dfdh2gmiz2dn2lnxbkrzd";
- name = "libkscreen-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/libkscreen-5.11.5.tar.xz";
+ sha256 = "03cnr7z74j2kjwbg1ddavmj0l8hpxg7bg2ipglirnzvp2ihv1wzg";
+ name = "libkscreen-5.11.5.tar.xz";
};
};
libksysguard = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/libksysguard-5.11.4.tar.xz";
- sha256 = "1ry4478fv7blp80zyhz0xr3qragsddrkzjzmxkdarh01f4p987aq";
- name = "libksysguard-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/libksysguard-5.11.5.tar.xz";
+ sha256 = "0f2py4zkqzpxxf3mqaij0q8ka0v3nschj17dv6rbzzmr5mjv825f";
+ name = "libksysguard-5.11.5.tar.xz";
};
};
milou = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/milou-5.11.4.tar.xz";
- sha256 = "1zq6gcmjc4wa23b2c94nwsxranpangl2b3apj56qpl68bjfvlrbq";
- name = "milou-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/milou-5.11.5.tar.xz";
+ sha256 = "0ja7a668wv67vb3mgsd2nbjdcp0lm7aix5dpc496wr1jy47pxv8a";
+ name = "milou-5.11.5.tar.xz";
};
};
oxygen = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/oxygen-5.11.4.tar.xz";
- sha256 = "0vfs220w6rc0vf5y2qshqby1jmd5kgm0gqkzg9ckgvjm0skbk75z";
- name = "oxygen-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/oxygen-5.11.5.tar.xz";
+ sha256 = "1n2xr3a0002xfiy99gjqlny76nxjlss1d3sgcj8adpza44j91228";
+ name = "oxygen-5.11.5.tar.xz";
};
};
plasma-desktop = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-desktop-5.11.4.tar.xz";
- sha256 = "0adc9fi582x7gkxsxz3xhs0h6ardxbcxsl5xxzi3y2bmhd4f7vrq";
- name = "plasma-desktop-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-desktop-5.11.5.tar.xz";
+ sha256 = "0djzs80mr0radmhai3k7jnlwlp76maf7vvrgkfckzs63n1jhdhb3";
+ name = "plasma-desktop-5.11.5.tar.xz";
};
};
plasma-integration = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-integration-5.11.4.tar.xz";
- sha256 = "0wialbswpgf03paxfr4473sgb11fymxw34xvwdql6wwks86xyf6k";
- name = "plasma-integration-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-integration-5.11.5.tar.xz";
+ sha256 = "1rmq8i0flrvqcl21fnn94d58zyw55scagrzbjw92p34i1mllhif1";
+ name = "plasma-integration-5.11.5.tar.xz";
};
};
plasma-nm = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-nm-5.11.4.tar.xz";
- sha256 = "1kjbad69s3dfqgv1zyfzq7bmfyhr0hd4xwhf6bljad8d2l5azydi";
- name = "plasma-nm-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-nm-5.11.5.tar.xz";
+ sha256 = "11lw26nd1rp2wbmqlf37wgk8qzv4fcc5x04g1i1h7c6hmjf5svqv";
+ name = "plasma-nm-5.11.5.tar.xz";
};
};
plasma-pa = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-pa-5.11.4.tar.xz";
- sha256 = "0zg34xs3fbxig63i1lf0hyfsmsis3d5gmlgyqc0vkdbwg6l2qpbw";
- name = "plasma-pa-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-pa-5.11.5.tar.xz";
+ sha256 = "1gdkz9yx21skg3c95nwh1mwacvrklgpfl0cspsmyyfnbnv93cz94";
+ name = "plasma-pa-5.11.5.tar.xz";
};
};
plasma-sdk = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-sdk-5.11.4.tar.xz";
- sha256 = "0vis5psn2zyglkd6gcgqsnf99b38dcjpq3rwbyhj8rfjcakdg4nx";
- name = "plasma-sdk-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-sdk-5.11.5.tar.xz";
+ sha256 = "013dc8dg0nhgdjlflgpqi28jsyparnwrj5am8lzvc0kkd9f69yhk";
+ name = "plasma-sdk-5.11.5.tar.xz";
};
};
plasma-tests = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-tests-5.11.4.tar.xz";
- sha256 = "1kifka84csqsm3qjycagwx093hv3n5wsxl8p6xpa44cxjg4xjqfa";
- name = "plasma-tests-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-tests-5.11.5.tar.xz";
+ sha256 = "00n1i6s1811w5h37i2iyy924495d2w24vfsl348cxplfxpxhcqf0";
+ name = "plasma-tests-5.11.5.tar.xz";
};
};
plasma-vault = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-vault-5.11.4.tar.xz";
- sha256 = "1pymr6hiz0j4x98dchrzsq17ddlbcj5f9dggzr0fiw4sm5yvyxz0";
- name = "plasma-vault-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-vault-5.11.5.tar.xz";
+ sha256 = "1pg891fahslnjn5jdsjjlw8i2l71ddznxjg96l9wycvh6nn7k0v6";
+ name = "plasma-vault-5.11.5.tar.xz";
};
};
plasma-workspace = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-workspace-5.11.4.tar.xz";
- sha256 = "1qin68zcczgf3rwa8gg4i3rcsy6i8na9z8kk4bm9q3mfagbzqfx8";
- name = "plasma-workspace-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-workspace-5.11.5.tar.xz";
+ sha256 = "1ipklc6v2ml095sy80rgq4123vkk3famjwf8s3rgkk172s76qm98";
+ name = "plasma-workspace-5.11.5.tar.xz";
};
};
plasma-workspace-wallpapers = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plasma-workspace-wallpapers-5.11.4.tar.xz";
- sha256 = "09q63i85d82fdq9vafv55wiflndil048ryn9n3kpa4v9s0yjklkh";
- name = "plasma-workspace-wallpapers-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plasma-workspace-wallpapers-5.11.5.tar.xz";
+ sha256 = "0zhcpbb74phnmr24kxcp0k6gr7gjzdfbrrv4xjjb2qpg2d00l3pm";
+ name = "plasma-workspace-wallpapers-5.11.5.tar.xz";
};
};
plymouth-kcm = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/plymouth-kcm-5.11.4.tar.xz";
- sha256 = "17jyg6133xb0f1dm1c0cpys2008aa65k1y1ap4b3y29xyv1p79rd";
- name = "plymouth-kcm-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/plymouth-kcm-5.11.5.tar.xz";
+ sha256 = "152fyg5hc3rzvqw0z88pgapnhc64jx34vcqgsslsfja8mwk9h0ql";
+ name = "plymouth-kcm-5.11.5.tar.xz";
};
};
polkit-kde-agent = {
- version = "1-5.11.4";
+ version = "1-5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/polkit-kde-agent-1-5.11.4.tar.xz";
- sha256 = "004ra4nb6dh3b1lmpfg303fg7201d2sm9f4glkj0mk3a0s9fkfcw";
- name = "polkit-kde-agent-1-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/polkit-kde-agent-1-5.11.5.tar.xz";
+ sha256 = "0bwv567czi9h3rxgn19aw10nq5c674zd8wgk9nj006km1yyxrgy6";
+ name = "polkit-kde-agent-1-5.11.5.tar.xz";
};
};
powerdevil = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/powerdevil-5.11.4.tar.xz";
- sha256 = "0cncn8xv5sqv1wqmnmhmqn2jznzy7yik4hvq0vadsrh4blyzwyrj";
- name = "powerdevil-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/powerdevil-5.11.5.tar.xz";
+ sha256 = "0jqf85bain8vj5plxvvbdwiwc2jyb1r6idajhr6igcpjryfa75hj";
+ name = "powerdevil-5.11.5.tar.xz";
};
};
sddm-kcm = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/sddm-kcm-5.11.4.tar.xz";
- sha256 = "1jhm5gbz296hk1dc7476kw23v73l7s939baln5v5pax349w40l23";
- name = "sddm-kcm-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/sddm-kcm-5.11.5.tar.xz";
+ sha256 = "1ln1h4r614rg4w6b7g5l7yqqijkaaj04s4g4m41d8rg8z5ywq4v0";
+ name = "sddm-kcm-5.11.5.tar.xz";
};
};
systemsettings = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/systemsettings-5.11.4.tar.xz";
- sha256 = "1j555f505hbc2zmg7biv05llzd2bb58z5ccspdgcvmskkwm2rlb3";
- name = "systemsettings-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/systemsettings-5.11.5.tar.xz";
+ sha256 = "0ycdfl585853481bjix63nnj7qvg767qpbyr015k32c1v3vllx8y";
+ name = "systemsettings-5.11.5.tar.xz";
};
};
user-manager = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/user-manager-5.11.4.tar.xz";
- sha256 = "0mz6kaqwns57bwp2gl7qzm7mwq3w2qh6kyp7m5qqh96wgq133c55";
- name = "user-manager-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/user-manager-5.11.5.tar.xz";
+ sha256 = "1r4q411g2r6cz4z6bm5jwygfbvrfrl8dawdd69s6h93ixs7697s4";
+ name = "user-manager-5.11.5.tar.xz";
};
};
xdg-desktop-portal-kde = {
- version = "5.11.4";
+ version = "5.11.5";
src = fetchurl {
- url = "${mirror}/stable/plasma/5.11.4/xdg-desktop-portal-kde-5.11.4.tar.xz";
- sha256 = "162gc6bfsxlj5rc4yz94sv41p75gf2kgayxa534gw3zhvry1jb52";
- name = "xdg-desktop-portal-kde-5.11.4.tar.xz";
+ url = "${mirror}/stable/plasma/5.11.5/xdg-desktop-portal-kde-5.11.5.tar.xz";
+ sha256 = "07xwb4zbf0cp4a672vs631dh9cqyvn0j9wwlknc21jzr619mnkap";
+ name = "xdg-desktop-portal-kde-5.11.5.tar.xz";
};
};
}
diff --git a/pkgs/desktops/xfce/default.nix b/pkgs/desktops/xfce/default.nix
index b18f3466770..d83e51a676c 100644
--- a/pkgs/desktops/xfce/default.nix
+++ b/pkgs/desktops/xfce/default.nix
@@ -1,106 +1,208 @@
-{ config, pkgs, newScope }:
+{ lib, pkgs }:
-let
+lib.makeScope pkgs.newScope (self: with self; {
+ #### NixOS support
-callPackage = newScope (deps // xfce_self);
-
-deps = { # xfce-global dependency overrides should be here
inherit (pkgs.gnome2) libglade libwnck vte gtksourceview;
inherit (pkgs.gnome3) dconf;
inherit (pkgs.perlPackages) URI;
+
gtk = pkgs.gtk2;
-};
-xfce_self = rec { # the lines are very long but it seems better than the even-odd line approach
+ # Samba is a rather heavy dependency
+ gvfs = pkgs.gvfs.override { samba = null; };
- #### NixOS support
+ xinitrc = "${xfce4-session}/etc/xdg/xfce4/xinitrc";
- gvfs = pkgs.gvfs.override { samba = null; }; # samba is a rather heavy dependency
- xinitrc = "${xfce4session}/etc/xdg/xfce4/xinitrc";
+ #### CORE
- #### CORE from "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"
+ exo = callPackage ./core/exo.nix { };
- exo = callPackage ./core/exo.nix { };
- garcon = callPackage ./core/garcon.nix { };
- gtk_xfce_engine = callPackage ./core/gtk-xfce-engine.nix
- { withGtk3 = false; }; # = true; was completely breaking GTK3 app layout
- libxfce4ui = callPackage ./core/libxfce4ui.nix { };
- libxfce4ui_gtk3 = libxfce4ui.override { withGtk3 = true; };
- libxfce4util = callPackage ./core/libxfce4util.nix { };
- libxfcegui4 = callPackage ./core/libxfcegui4.nix { };
- thunar-build = callPackage ./core/thunar-build.nix { };
- thunar = callPackage ./core/thunar.nix { };
- thunarx-2-dev = thunar-build; # Plugins need only the `thunarx-2` part of the package. Awaiting multiple outputs.
- thunar_volman = callPackage ./core/thunar-volman.nix { }; # ToDo: probably inside Thunar now
- thunar-archive-plugin
- = callPackage ./thunar-plugins/archive { };
- thunar-dropbox-plugin
- = callPackage ./thunar-plugins/dropbox { };
- tumbler = callPackage ./core/tumbler.nix { };
- xfce4panel = callPackage ./core/xfce4-panel.nix { }; # ToDo: impure plugins from /run/current-system/sw/lib/xfce4
- xfce4panel_gtk3 = xfce4panel.override { withGtk3 = true; };
- xfce4session = callPackage ./core/xfce4-session.nix { };
- xfce4settings = callPackage ./core/xfce4-settings.nix { };
- xfce4_power_manager = callPackage ./core/xfce4-power-manager.nix { };
- xfce4_power_manager_gtk3 = callPackage ./core/xfce4-power-manager.nix { withGtk3 = true; };
- xfconf = callPackage ./core/xfconf.nix { };
- xfdesktop = callPackage ./core/xfdesktop.nix { };
- xfwm4 = callPackage ./core/xfwm4.nix { };
+ garcon = callPackage ./core/garcon.nix { };
- xfce4_appfinder = callPackage ./core/xfce4-appfinder.nix { };
- xfce4_dev_tools = callPackage ./core/xfce4-dev-tools.nix { }; # only if autotools are needed
+ # When built with GTK+3, it was breaking GTK+3 app layout
+ gtk-xfce-engine = callPackage ./core/gtk-xfce-engine.nix { withGtk3 = false; };
- #### APPLICATIONS from "mirror://xfce/src/apps/${p_name}/${ver_maj}/${name}.tar.bz2"
+ libxfce4ui = callPackage ./core/libxfce4ui.nix { };
+
+ libxfce4util = callPackage ./core/libxfce4util.nix { };
+
+ libxfcegui4 = callPackage ./core/libxfcegui4.nix { };
+
+ thunar-bare = callPackage ./core/thunar-build.nix { };
+
+ thunar = callPackage ./core/thunar.nix { };
+
+ # NB: thunar already has it
+ thunar-volman = callPackage ./core/thunar-volman.nix { };
+
+ thunar-archive-plugin = callPackage ./thunar-plugins/archive { };
+
+ thunar-dropbox-plugin = callPackage ./thunar-plugins/dropbox { };
+
+ tumbler = callPackage ./core/tumbler.nix { };
+
+ # TODO: impure plugins from /run/current-system/sw/lib/xfce4
+ xfce4-panel = callPackage ./core/xfce4-panel.nix { };
+
+ xfce4-session = callPackage ./core/xfce4-session.nix { };
+
+ xfce4-settings = callPackage ./core/xfce4-settings.nix { };
+
+ xfce4-power-manager = callPackage ./core/xfce4-power-manager.nix { };
+
+ xfconf = callPackage ./core/xfconf.nix { };
+
+ xfdesktop = callPackage ./core/xfdesktop.nix { };
+
+ xfwm4 = callPackage ./core/xfwm4.nix { };
+
+ xfce4-appfinder = callPackage ./core/xfce4-appfinder.nix { };
+
+ xfce4-dev-tools = callPackage ./core/xfce4-dev-tools.nix { };
+
+ #### APPLICATIONS
+
+ gigolo = callPackage ./applications/gigolo.nix { };
+
+ mousepad = callPackage ./applications/mousepad.nix { };
+
+ orage = callPackage ./applications/orage.nix { };
+
+ parole = callPackage ./applications/parole.nix { };
+
+ ristretto = callPackage ./applications/ristretto.nix { };
+
+ xfce4-mixer = callPackage ./applications/xfce4-mixer.nix { };
+
+ xfce4-mixer-pulse = callPackage ./applications/xfce4-mixer.nix { pulseaudioSupport = true; };
+
+ xfce4-notifyd = callPackage ./applications/xfce4-notifyd.nix { };
+
+ xfce4-taskmanager = callPackage ./applications/xfce4-taskmanager.nix { };
+
+ xfce4-terminal = callPackage ./applications/terminal.nix { };
- gigolo = callPackage ./applications/gigolo.nix { };
- mousepad = callPackage ./applications/mousepad.nix { };
- orage = callPackage ./applications/orage.nix { };
- parole = callPackage ./applications/parole.nix { };
- ristretto = callPackage ./applications/ristretto.nix { };
- terminal = xfce4terminal; # it has changed its name
- xfce4mixer = callPackage ./applications/xfce4-mixer.nix { };
- xfce4mixer_pulse = callPackage ./applications/xfce4-mixer.nix { pulseaudioSupport = true; };
- xfce4notifyd = callPackage ./applications/xfce4-notifyd.nix { };
- xfce4taskmanager= callPackage ./applications/xfce4-taskmanager.nix { };
- xfce4terminal = callPackage ./applications/terminal.nix { };
xfce4-screenshooter = callPackage ./applications/xfce4-screenshooter.nix { };
- xfce4volumed = callPackage ./applications/xfce4-volumed.nix { };
- xfce4volumed_pulse = callPackage ./applications/xfce4-volumed-pulse.nix { };
- #### ART from "mirror://xfce/src/art/${p_name}/${ver_maj}/${name}.tar.bz2"
+ xfce4-volumed = callPackage ./applications/xfce4-volumed.nix { };
- xfce4icontheme = callPackage ./art/xfce4-icon-theme.nix { };
- xfwm4themes = callPackage ./art/xfwm4-themes.nix { };
+ xfce4-volumed-pulse = callPackage ./applications/xfce4-volumed-pulse.nix { };
- #### PANEL PLUGINS from "mirror://xfce/src/panel-plugins/${p_name}/${ver_maj}/${name}.tar.{bz2,gz}"
+ #### ART
+
+ xfce4-icon-theme = callPackage ./art/xfce4-icon-theme.nix { };
+
+ xfwm4-themes = callPackage ./art/xfwm4-themes.nix { };
+
+ #### PANEL PLUGINS
+
+ xfce4-battery-plugin = callPackage ./panel-plugins/xfce4-battery-plugin.nix { };
+
+ xfce4-clipman-plugin = callPackage ./panel-plugins/xfce4-clipman-plugin.nix { };
+
+ xfce4-cpufreq-plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
+
+ xfce4-cpugraph-plugin = callPackage ./panel-plugins/xfce4-cpugraph-plugin.nix { };
+
+ xfce4-datetime-plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { };
+
+ xfce4-dict-plugin = callPackage ./panel-plugins/xfce4-dict-plugin.nix { };
+
+ xfce4-dockbarx-plugin = callPackage ./panel-plugins/xfce4-dockbarx-plugin.nix { };
+
+ xfce4-embed-plugin = callPackage ./panel-plugins/xfce4-embed-plugin.nix { };
+
+ xfce4-eyes-plugin = callPackage ./panel-plugins/xfce4-eyes-plugin.nix { };
+
+ xfce4-fsguard-plugin = callPackage ./panel-plugins/xfce4-fsguard-plugin.nix { };
+
+ xfce4-genmon-plugin = callPackage ./panel-plugins/xfce4-genmon-plugin.nix { };
- xfce4_battery_plugin = callPackage ./panel-plugins/xfce4-battery-plugin.nix { };
- xfce4_clipman_plugin = callPackage ./panel-plugins/xfce4-clipman-plugin.nix { };
- xfce4_cpufreq_plugin = callPackage ./panel-plugins/xfce4-cpufreq-plugin.nix { };
- xfce4_cpugraph_plugin = callPackage ./panel-plugins/xfce4-cpugraph-plugin.nix { };
- xfce4_datetime_plugin = callPackage ./panel-plugins/xfce4-datetime-plugin.nix { };
- xfce4_dict_plugin = callPackage ./panel-plugins/xfce4-dict-plugin.nix { };
- xfce4_dockbarx_plugin = callPackage ./panel-plugins/xfce4-dockbarx-plugin.nix { };
- xfce4_embed_plugin = callPackage ./panel-plugins/xfce4-embed-plugin.nix { };
- xfce4_eyes_plugin = callPackage ./panel-plugins/xfce4-eyes-plugin.nix { };
- xfce4_fsguard_plugin = callPackage ./panel-plugins/xfce4-fsguard-plugin.nix { };
- xfce4_genmon_plugin = callPackage ./panel-plugins/xfce4-genmon-plugin.nix { };
xfce4-hardware-monitor-plugin = callPackage ./panel-plugins/xfce4-hardware-monitor-plugin.nix { };
- xfce4_namebar_plugin = callPackage ./panel-plugins/xfce4-namebar-plugin.nix { };
- xfce4_netload_plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { };
- xfce4_notes_plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { };
- xfce4_mailwatch_plugin = callPackage ./panel-plugins/xfce4-mailwatch-plugin.nix { };
- xfce4_mpc_plugin = callPackage ./panel-plugins/xfce4-mpc-plugin.nix { };
- xfce4-sensors-plugin = callPackage ./panel-plugins/xfce4-sensors-plugin.nix { };
- xfce4_systemload_plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
- xfce4_timer_plugin = callPackage ./panel-plugins/xfce4-timer-plugin.nix { };
- xfce4_verve_plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { };
- xfce4_xkb_plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
- xfce4_weather_plugin = callPackage ./panel-plugins/xfce4-weather-plugin.nix { };
- xfce4_whiskermenu_plugin = callPackage ./panel-plugins/xfce4-whiskermenu-plugin.nix { };
- xfce4_windowck_plugin = callPackage ./panel-plugins/xfce4-windowck-plugin.nix { };
- xfce4_pulseaudio_plugin = callPackage ./panel-plugins/xfce4-pulseaudio-plugin.nix { };
-}; # xfce_self
+ xfce4-namebar-plugin = callPackage ./panel-plugins/xfce4-namebar-plugin.nix { };
-in xfce_self
+ xfce4-netload-plugin = callPackage ./panel-plugins/xfce4-netload-plugin.nix { };
+
+ xfce4-notes-plugin = callPackage ./panel-plugins/xfce4-notes-plugin.nix { };
+
+ xfce4-mailwatch-plugin = callPackage ./panel-plugins/xfce4-mailwatch-plugin.nix { };
+
+ xfce4-mpc-plugin = callPackage ./panel-plugins/xfce4-mpc-plugin.nix { };
+
+ xfce4-sensors-plugin = callPackage ./panel-plugins/xfce4-sensors-plugin.nix { };
+
+ xfce4-systemload-plugin = callPackage ./panel-plugins/xfce4-systemload-plugin.nix { };
+
+ xfce4-timer-plugin = callPackage ./panel-plugins/xfce4-timer-plugin.nix { };
+
+ xfce4-verve-plugin = callPackage ./panel-plugins/xfce4-verve-plugin.nix { };
+
+ xfce4-xkb-plugin = callPackage ./panel-plugins/xfce4-xkb-plugin.nix { };
+
+ xfce4-weather-plugin = callPackage ./panel-plugins/xfce4-weather-plugin.nix { };
+
+ xfce4-whiskermenu-plugin = callPackage ./panel-plugins/xfce4-whiskermenu-plugin.nix { };
+
+ xfce4-windowck-plugin = callPackage ./panel-plugins/xfce4-windowck-plugin.nix { };
+
+ xfce4-pulseaudio-plugin = callPackage ./panel-plugins/xfce4-pulseaudio-plugin.nix { };
+
+ #### GTK+3 (deprecated, see NixOS/nixpkgs#32763)
+
+ libxfce4ui_gtk3 = libxfce4ui.override { withGtk3 = true; };
+
+ xfce4panel_gtk3 = xfce4-panel.override { withGtk3 = true; };
+
+ xfce4_power_manager_gtk3 = xfce4-power-manager.override { withGtk3 = true; };
+
+ #### ALIASES - added 2018-01
+
+ terminal = xfce4-terminal;
+ thunar-build = thunar-bare;
+ thunarx-2-dev = thunar-build;
+ thunar_volman = thunar-volman;
+ xfce4panel = xfce4-panel;
+ xfce4session = xfce4-session;
+ xfce4settings = xfce4-settings;
+ xfce4_power_manager = xfce4-power-manager;
+ xfce4_appfinder = xfce4-appfinder;
+ xfce4_dev_tools = xfce4-dev-tools;
+ xfce4mixer = xfce4-mixer;
+ xfce4mixer_pulse = xfce4-mixer-pulse;
+ xfce4notifyd = xfce4-notifyd;
+ xfce4taskmanager = xfce4-taskmanager;
+ xfce4terminal = xfce4-terminal;
+ xfce4volumed = xfce4-volumed;
+ xfce4volumed_pulse = xfce4-volumed-pulse;
+ xfce4icontheme = xfce4-icon-theme;
+ xfwm4themes = xfwm4-themes;
+
+ xfce4_battery_plugin = xfce4-battery-plugin;
+ xfce4_clipman_plugin = xfce4-clipman-plugin;
+ xfce4_cpufreq_plugin = xfce4-cpufreq-plugin;
+ xfce4_cpugraph_plugin = xfce4-cpugraph-plugin;
+ xfce4_datetime_plugin = xfce4-datetime-plugin;
+ xfce4_dict_plugin = xfce4-dict-plugin;
+ xfce4_dockbarx_plugin = xfce4-dockbarx-plugin;
+ xfce4_embed_plugin = xfce4-embed-plugin;
+ xfce4_eyes_plugin = xfce4-eyes-plugin;
+ xfce4_fsguard_plugin = xfce4-fsguard-plugin;
+ xfce4_genmon_plugin = xfce4-genmon-plugin;
+ xfce4_hardware_monitor_plugin = xfce4-hardware-monitor-plugin;
+ xfce4_namebar_plugin = xfce4-namebar-plugin;
+ xfce4_netload_plugin = xfce4-netload-plugin;
+ xfce4_notes_plugin = xfce4-notes-plugin;
+ xfce4_mailwatch_plugin = xfce4-mailwatch-plugin;
+ xfce4_mpc_plugin = xfce4-mpc-plugin;
+ xfce4_sensors_plugin = xfce4-sensors-plugin;
+ xfce4_systemload_plugin = xfce4-systemload-plugin;
+ xfce4_timer_plugin = xfce4-timer-plugin;
+ xfce4_verve_plugin = xfce4-verve-plugin;
+ xfce4_xkb_plugin = xfce4-xkb-plugin;
+ xfce4_weather_plugin = xfce4-weather-plugin;
+ xfce4_whiskermenu_plugin = xfce4-whiskermenu-plugin;
+ xfce4_windowck_plugin = xfce4-windowck-plugin;
+ xfce4_pulseaudio_plugin = xfce4-pulseaudio-plugin;
+})
diff --git a/pkgs/development/arduino/arduino-core/default.nix b/pkgs/development/arduino/arduino-core/default.nix
index fdb9d1be6ad..a427023df56 100644
--- a/pkgs/development/arduino/arduino-core/default.nix
+++ b/pkgs/development/arduino/arduino-core/default.nix
@@ -20,8 +20,8 @@ let
externalDownloads = import ./downloads.nix {inherit fetchurl; inherit (lib) optionalAttrs; inherit (stdenv) system;};
# Some .so-files are later copied from .jar-s to $HOME, so patch them beforehand
patchelfInJars =
- lib.optional (stdenv.system == "x86_64-linux") {jar = "share/arduino/lib/jssc-2.8.0.jar"; file = "libs/linux/libjSSC-2.8_x86_64.so";}
- ++ lib.optional (stdenv.system == "i686-linux") {jar = "share/arduino/lib/jssc-2.8.0.jar"; file = "libs/linux/libjSSC-2.8_x86.so";}
+ lib.optional (stdenv.system == "x86_64-linux") {jar = "share/arduino/lib/jssc-2.8.0-arduino1.jar"; file = "libs/linux/libjSSC-2.8_x86_64.so";}
+ ++ lib.optional (stdenv.system == "i686-linux") {jar = "share/arduino/lib/jssc-2.8.0-arduino1.jar"; file = "libs/linux/libjSSC-2.8_x86.so";}
;
# abiVersion 6 is default, but we need 5 for `avrdude_bin` executable
ncurses5 = ncurses.override { abiVersion = "5"; };
@@ -54,25 +54,25 @@ let
+ stdenv.lib.optionalString (!withGui) "-core";
in
stdenv.mkDerivation rec {
- version = "1.8.2";
+ version = "1.8.5";
name = "${flavor}-${version}";
src = fetchFromGitHub {
owner = "arduino";
repo = "Arduino";
rev = "${version}";
- sha256 = "1ssznjmzmahayslj2xnci9b5wpsl53nyg85say54akng93qipmfb";
+ sha256 = "0ww72qfk7fyvprz15lc80i1axfdacb5fij4h5j5pakrg76mng2c3";
};
teensyduino_src = fetchurl {
- url = "https://www.pjrc.com/teensy/td_136/TeensyduinoInstall.${teensy_architecture}";
+ url = "https://www.pjrc.com/teensy/td_140/TeensyduinoInstall.${teensy_architecture}";
sha256 =
lib.optionalString ("${teensy_architecture}" == "linux64")
- "0qvb5z9y6nsqy0kzib9fvvbn8dakl50vib6r3nm6bnpvyxzwjl2r"
+ "0127a1ak31252dbmr5niqa5mkvbm8dnz1cfcnmydzx9qn9rk00ir"
+ lib.optionalString ("${teensy_architecture}" == "linux32")
- "14ca62vq7cpx269vfd92shi80qj8spf0dzli8gfcb39ss2zc4jf1"
+ "01mxj5xsr7gka652c9rp4szy5mkcka8mljk044v4agk3sxvx3v3i"
+ lib.optionalString ("${teensy_architecture}" == "linuxarm")
- "122z1gxcgkmwjb8wdklb2w8c3qkj5rc1ap5n4a8fi3kjz29va9rx";
+ "1dff3alhvk9x8qzy3n85qrg6rfmy6l9pj6fmrlzpli63lzykvv4i";
};
buildInputs = [ jdk ant libusb libusb1 unzip zlib ncurses5 readline
diff --git a/pkgs/development/arduino/arduino-core/downloads.nix b/pkgs/development/arduino/arduino-core/downloads.nix
index f74da977372..e71c898dd55 100644
--- a/pkgs/development/arduino/arduino-core/downloads.nix
+++ b/pkgs/development/arduino/arduino-core/downloads.nix
@@ -1,5 +1,8 @@
{fetchurl, optionalAttrs, system}:
-
+# This file preloads all the archives which Arduino's build/build.xml
+# would otherwise try to download itself. When updating this for a new
+# version of Arduino, check build.xml for version numbers and new
+# urls.
{
"build/shared/reference-1.6.6-3.zip" = fetchurl {
url = "https://downloads.arduino.cc/reference-1.6.6-3.zip";
@@ -21,17 +24,17 @@
url = "https://github.com/arduino-libraries/Bridge/archive/1.6.3.zip";
sha256 = "1lha5wkzz63bgcn7bhx4rmgsh9ywa47lffycpyz6qjnl1pvm5mmj";
};
- "build/Robot_Control-1.0.3.zip" = fetchurl {
- url = "https://github.com/arduino-libraries/Robot_Control/archive/1.0.3.zip";
- sha256 = "1pc3b8skbpx7j32jnxa67mfqhnsmfz3876pc9mdyzpsad4mmcn62";
+ "build/Robot_Control-1.0.4.zip" = fetchurl {
+ url = "https://github.com/arduino-libraries/Robot_Control/archive/1.0.4.zip";
+ sha256 = "1pkabrghx3h8l60x571vwkbhfm02nhyn5x2vqz4vhx9cczr70zq7";
};
- "build/Robot_Motor-1.0.2.zip" = fetchurl {
- url = "https://github.com/arduino-libraries/Robot_Motor/archive/1.0.2.zip";
- sha256 = "0da21kfzy07kk2qnkprs3lj214fgkcjxlkk3hdp306jfv8ilmvy2";
+ "build/Robot_Motor-1.0.3.zip" = fetchurl {
+ url = "https://github.com/arduino-libraries/Robot_Motor/archive/1.0.3.zip";
+ sha256 = "1pkvrimg77jrhdsz4l81y59hv50h6cl7hvhk9w8ac7ckg70lvxkw";
};
- "build/RobotIRremote-1.0.2.zip" = fetchurl {
- url = "https://github.com/arduino-libraries/RobotIRremote/archive/1.0.2.zip";
- sha256 = "0wkya7dy4x0xyi7wn5aghmr1gj0d0wszd61pq18zgfdspz1gi6xn";
+ "build/RobotIRremote-2.0.0.zip" = fetchurl {
+ url = "https://github.com/arduino-libraries/RobotIRremote/archive/2.0.0.zip";
+ sha256 = "0j5smap74j8p3wc6k0h73b1skj4gkr7r25jbjh1j1cg052dxri86";
};
"build/SpacebrewYun-1.0.1.zip" = fetchurl {
url = "https://github.com/arduino-libraries/SpacebrewYun/archive/1.0.1.zip";
@@ -61,9 +64,13 @@
url = "https://github.com/arduino-libraries/Servo/archive/1.1.2.zip";
sha256 = "14k1883qrx425wnm0r8kszzq32yvvs3jwxf3g7ybp7v0ga0q47l7";
};
- "build/Adafruit_CircuitPlayground-1.6.4.zip" = fetchurl {
- url = "https://github.com/Adafruit/Adafruit_CircuitPlayground/archive/1.6.4.zip";
- sha256 = "1ph7m0l1sfx9db56n2h6vi78pn3zyah813lfhqiqghncx34amrhj";
+ "build/LiquidCrystal-1.0.7.zip" = fetchurl {
+ url = "https://github.com/arduino-libraries/LiquidCrystal/archive/1.0.7.zip";
+ sha256 = "1wrxrqz3n4yrj9j1a2b7pdd7a1rlyi974ra7crv5amjng8817x9n";
+ };
+ "build/Adafruit_CircuitPlayground-1.6.8.zip" = fetchurl {
+ url = "https://github.com/Adafruit/Adafruit_CircuitPlayground/archive/1.6.8.zip";
+ sha256 = "0zm667xiaygx8v1ygcls43s6qd5n7pf21n0998n1z7nf18s35j41";
};
"build/libastylej-2.05.1-3.zip" = fetchurl {
url = "https://downloads.arduino.cc/libastylej-2.05.1-3.zip";
@@ -73,9 +80,9 @@
url = "https://downloads.arduino.cc/liblistSerials/liblistSerials-1.4.0.zip";
sha256 = "129mfbyx7snq3znzhkfbdjiifdr85cwk6wjn8l9ia0wynszs5zyv";
};
- "build/shared/WiFi101-Updater-ArduinoIDE-Plugin-0.9.0.zip" = fetchurl {
- url = "https://github.com/arduino-libraries/WiFi101-FirmwareUpdater-Plugin/releases/download/v0.9.0/WiFi101-Updater-ArduinoIDE-Plugin-0.9.0.zip";
- sha256 = "1nkk87q2l3bs9y387hdxzgqllm0lqpmc5kdmr6my4hjz5lcpgbza";
+ "build/shared/WiFi101-Updater-ArduinoIDE-Plugin-0.9.1.zip" = fetchurl {
+ url = "https://github.com/arduino-libraries/WiFi101-FirmwareUpdater-Plugin/releases/download/v0.9.1/WiFi101-Updater-ArduinoIDE-Plugin-0.9.1.zip";
+ sha256 = "15przp8z1dp6lamcvqdx4daq6fqi3c1algc3sbinyh25pm69pq74";
};
}
// optionalAttrs (system == "x86_64-linux") {
diff --git a/pkgs/development/arduino/platformio/chrootenv.nix b/pkgs/development/arduino/platformio/chrootenv.nix
index 187899b8964..a3720619241 100644
--- a/pkgs/development/arduino/platformio/chrootenv.nix
+++ b/pkgs/development/arduino/platformio/chrootenv.nix
@@ -18,8 +18,8 @@ buildFHSUserEnv {
python27Packages.setuptools
python27Packages.pip
python27Packages.bottle
- zlib
python27Packages.platformio
+ zlib
]);
meta = with stdenv.lib; {
@@ -30,5 +30,9 @@ buildFHSUserEnv {
platforms = with platforms; linux;
};
+ extraInstallCommands = ''
+ ln -s $out/bin/platformio $out/bin/pio
+ '';
+
runScript = "platformio";
}
diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix
index 1d4cef68514..83de6f9e569 100644
--- a/pkgs/development/beam-modules/default.nix
+++ b/pkgs/development/beam-modules/default.nix
@@ -42,7 +42,12 @@ let
buildMix = callPackage ./build-mix.nix {};
# BEAM-based languages.
- elixir = elixir_1_5;
+ elixir = elixir_1_6;
+
+ elixir_1_6 = lib.callElixir ../interpreters/elixir/1.6.nix {
+ inherit rebar erlang;
+ debugInfo = true;
+ };
elixir_1_5 = lib.callElixir ../interpreters/elixir/1.5.nix {
inherit rebar erlang;
diff --git a/pkgs/development/beam-modules/lib.nix b/pkgs/development/beam-modules/lib.nix
index 26d868a8e7c..d6b83cb1af0 100644
--- a/pkgs/development/beam-modules/lib.nix
+++ b/pkgs/development/beam-modules/lib.nix
@@ -6,8 +6,8 @@ rec {
*/
callPackageWith = autoArgs: fn: args:
let
- f = if builtins.isFunction fn then fn else import fn;
- auto = builtins.intersectAttrs (builtins.functionArgs f) autoArgs;
+ f = if pkgs.lib.isFunction fn then fn else import fn;
+ auto = builtins.intersectAttrs (stdenv.lib.functionArgs f) autoArgs;
in f (auto // args);
callPackage = callPackageWith pkgs;
diff --git a/pkgs/development/compilers/arachne-pnr/default.nix b/pkgs/development/compilers/arachne-pnr/default.nix
index 1e7791c84c4..9629d4eface 100644
--- a/pkgs/development/compilers/arachne-pnr/default.nix
+++ b/pkgs/development/compilers/arachne-pnr/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "arachne-pnr-${version}";
- version = "2017.12.06";
+ version = "2018.01.10";
src = fetchFromGitHub {
owner = "cseed";
repo = "arachne-pnr";
- rev = "a32dd2c137b2bb6ba6704b25109790ac76bc2f45";
- sha256 = "16pfm8spcm3nsrdsjdj22v7dddnwzlhbj1y71wflvvb84xnbga2y";
+ rev = "24f6b9c341910f6aaca1498872fe2e99ff8210cf";
+ sha256 = "0jd91hx16jx0p0jiqhgh1kbh59k82i4979f4xp4wzc249br7lxlv";
};
enableParallelBuilding = true;
diff --git a/pkgs/development/compilers/chicken/setup-hook.sh b/pkgs/development/compilers/chicken/setup-hook.sh
index d7f28539dc6..b0d9b53b537 100644
--- a/pkgs/development/compilers/chicken/setup-hook.sh
+++ b/pkgs/development/compilers/chicken/setup-hook.sh
@@ -4,4 +4,4 @@ addChickenRepositoryPath() {
export CHICKEN_INCLUDE_PATH="$1/share;$CHICKEN_INCLUDE_PATH"
}
-envHooks=(${envHooks[@]} addChickenRepositoryPath)
+addEnvHooks "$targetOffset" addChickenRepositoryPath
diff --git a/pkgs/development/compilers/cmdstan/default.nix b/pkgs/development/compilers/cmdstan/default.nix
index 6ac5165b7e9..3f25041f175 100644
--- a/pkgs/development/compilers/cmdstan/default.nix
+++ b/pkgs/development/compilers/cmdstan/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, python }:
stdenv.mkDerivation rec {
- name = "cmdstan-2.9.0";
+ name = "cmdstan-2.17.1";
src = fetchurl {
- url = "https://github.com/stan-dev/cmdstan/releases/download/v2.9.0/cmdstan-2.9.0.tar.gz";
- sha256 = "08bim6nxgam989152hm0ga1rfb33mr71pwsym1nmfmavma68bwm9";
+ url = "https://github.com/stan-dev/cmdstan/releases/download/v2.17.1/cmdstan-2.17.1.tar.gz";
+ sha256 = "1vq1cnrkvrvbfl40j6ajc60jdrjcxag1fi6kff5pqmadfdz9564j";
};
buildFlags = "build";
@@ -37,6 +37,6 @@ stdenv.mkDerivation rec {
'';
homepage = http://mc-stan.org/interfaces/cmdstan.html;
license = stdenv.lib.licenses.bsd3;
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.all;
};
}
diff --git a/pkgs/development/compilers/colm/default.nix b/pkgs/development/compilers/colm/default.nix
index ee9224b380c..06c4b62e294 100644
--- a/pkgs/development/compilers/colm/default.nix
+++ b/pkgs/development/compilers/colm/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
description = "A programming language for the analysis and transformation of computer languages";
homepage = http://www.colm.net/open-source/colm;
license = licenses.gpl2;
- platforms = [ "x86_64-linux" "x86_64-darwin" ];
+ platforms = platforms.unix;
maintainers = with maintainers; [ pSub ];
};
}
diff --git a/pkgs/development/compilers/coreclr/default.nix b/pkgs/development/compilers/coreclr/default.nix
index 17d91f36875..0681e8210a6 100644
--- a/pkgs/development/compilers/coreclr/default.nix
+++ b/pkgs/development/compilers/coreclr/default.nix
@@ -83,7 +83,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- homepage = http://dotnet.github.io/core/;
+ homepage = https://dotnet.github.io/core/;
description = ".NET is a general purpose development platform";
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ kuznero ];
diff --git a/pkgs/development/compilers/dmd/default.nix b/pkgs/development/compilers/dmd/default.nix
index 875e60dd6dc..de3544a3a63 100644
--- a/pkgs/development/compilers/dmd/default.nix
+++ b/pkgs/development/compilers/dmd/default.nix
@@ -3,10 +3,10 @@
, curl, tzdata, gdb, darwin
, callPackage
, bootstrapVersion ? false
-, version ? "2.075.1"
-, dmdSha256 ? "0kq6r8rcghvzk5jcphg89l85rg734s29bssd2rcw3fygx0k9a9k5"
-, druntimeSha256 ? "0idn2v1lmp7hl637g3i7pdfj9mjk4sclkz4cm77nl8873k2fhk8j"
-, phobosSha256 ? "1a7q5fd15yspgs5plxgx54jyrcwgzlyw3rahmz04jd2s5h56dj04"
+, version ? "2.078.1"
+, dmdSha256 ? "0b9lphh4g3r9cyzv4wcfppv9j3w952vvwv615za23acgwav3mqg2"
+, druntimeSha256 ? "16jv40m073cflpkyl0vmg1g58cianybfcsgcvwli7pfryxbgsbrr"
+, phobosSha256 ? "08ircpf4ilznz638kra272hz8fi5ccvw2cswj5hqckssl1lyqzs8"
}:
let
@@ -125,10 +125,6 @@ let
# Use proper C++ compiler
substituteInPlace ${dmdPath}/posix.mak \
--replace g++ $CXX
-
- # TODO
- substituteInPlace druntime/src/core/memory.d \
- --replace "assert(z is null);" "//assert(z is null);"
''
+ stdenv.lib.optionalString (!bootstrapVersion) ''
diff --git a/pkgs/development/compilers/fsharp/default.nix b/pkgs/development/compilers/fsharp/default.nix
index af33039d341..5c1f931da9a 100644
--- a/pkgs/development/compilers/fsharp/default.nix
+++ b/pkgs/development/compilers/fsharp/default.nix
@@ -1,4 +1,4 @@
-# Temporaririly avoid dependency on dotnetbuildhelpers to avoid rebuilding many times while working on it
+# Temporarily avoid dependency on dotnetbuildhelpers to avoid rebuilding many times while working on it
{ stdenv, fetchurl, mono, pkgconfig, dotnetbuildhelpers, autoconf, automake, which }:
diff --git a/pkgs/development/compilers/gambit/default.nix b/pkgs/development/compilers/gambit/default.nix
index b70d3649bb9..01463f091c2 100644
--- a/pkgs/development/compilers/gambit/default.nix
+++ b/pkgs/development/compilers/gambit/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
name = "gambit-${version}";
- version = "4.8.8-415-g29ed48bb";
+ version = "4.8.8-427-g37b111a5";
bootstrap = import ./bootstrap.nix ( pkgs );
src = fetchgit {
url = "https://github.com/feeley/gambit.git";
- rev = "29ed48bb688e8302d2430b5d24a2fc7c2039aeec";
- sha256 = "1h3kmczvjir0pi6cmqa2bsc09n68jhw0bxq7m6w4b1f0xvgvn3fr";
+ rev = "37b111a5ca3aeff9dc6cb8be470277a8c1e80f24";
+ sha256 = "14l7jql9nh7bjs6c822a17rcp9583l6bb5kiq95allgyf229vy50";
};
buildInputs = [ openssl git autoconf bootstrap ];
diff --git a/pkgs/development/compilers/gcc/4.5/default.nix b/pkgs/development/compilers/gcc/4.5/default.nix
index b4ae867d585..6b2718f5e69 100644
--- a/pkgs/development/compilers/gcc/4.5/default.nix
+++ b/pkgs/development/compilers/gcc/4.5/default.nix
@@ -118,7 +118,7 @@ let version = "4.5.4";
"--enable-sjlj-exceptions"
"--enable-hash-synchronization"
"--enable-version-specific-runtime-libs"
- "--disable-libssp"
+ "--enable-libssp"
"--disable-nls"
"--with-dwarf2"
] else [
@@ -229,11 +229,22 @@ stdenv.mkDerivation ({
inherit noSysDirs profiledCompiler staticCompiler langJava
libcCross crossMingw;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ texinfo which gettext ]
++ optional (perl != null) perl;
- buildInputs = [ gmp mpfr libmpc libelf ]
- ++ (optional (ppl != null) ppl)
+ # For building runtime libs
+ depsBuildTarget =
+ if hostPlatform == buildPlatform then [
+ targetPackages.stdenv.cc.bintools # newly-built gcc will be used
+ ] else assert targetPlatform == hostPlatform; [ # build != host == target
+ stdenv.cc
+ ];
+
+ buildInputs = [
+ gmp mpfr libmpc libelf
+ targetPackages.stdenv.cc.bintools # For linking code at run-time
+ ] ++ (optional (ppl != null) ppl)
++ (optional (cloogppl != null) cloogppl)
++ (optional (zlib != null) zlib)
++ (optional langJava boehmgc)
@@ -247,7 +258,7 @@ stdenv.mkDerivation ({
# TODO(@Ericson2314): Always pass "--target" and always prefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
- if hostPlatform == targetPlatform && targetPlatform.isArm
+ if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
@@ -314,56 +325,9 @@ stdenv.mkDerivation ({
/* For cross-built gcc (build != host == target) */
crossAttrs = {
- AR_FOR_BUILD = "ar";
- AS_FOR_BUILD = "as";
- LD_FOR_BUILD = "ld";
- NM_FOR_BUILD = "nm";
- OBJCOPY_FOR_BUILD = "objcopy";
- OBJDUMP_FOR_BUILD = "objdump";
- RANLIB_FOR_BUILD = "ranlib";
- SIZE_FOR_BUILD = "size";
- STRINGS_FOR_BUILD = "strings";
- STRIP_FOR_BUILD = "strip";
- CC_FOR_BUILD = "gcc";
- CXX_FOR_BUILD = "g++";
-
- AR = "${targetPlatform.config}-ar";
- AS = "${targetPlatform.config}-as";
- LD = "${targetPlatform.config}-ld";
- NM = "${targetPlatform.config}-nm";
- OBJCOPY = "${targetPlatform.config}-objcopy";
- OBJDUMP = "${targetPlatform.config}-objdump";
- RANLIB = "${targetPlatform.config}-ranlib";
- SIZE = "${targetPlatform.config}-size";
- STRINGS = "${targetPlatform.config}-strings";
- STRIP = "${targetPlatform.config}-strip";
- CC = "${targetPlatform.config}-gcc";
- CXX = "${targetPlatform.config}-g++";
-
- AR_FOR_TARGET = "${targetPlatform.config}-ar";
- AS_FOR_TARGET = "${targetPlatform.config}-as";
- LD_FOR_TARGET = "${targetPlatform.config}-ld";
- NM_FOR_TARGET = "${targetPlatform.config}-nm";
- OBJCOPY_FOR_TARGET = "${targetPlatform.config}-objcopy";
- OBJDUMP_FOR_TARGET = "${targetPlatform.config}-objdump";
- RANLIB_FOR_TARGET = "${targetPlatform.config}-ranlib";
- SIZE_FOR_TARGET = "${targetPlatform.config}-size";
- STRINGS_FOR_TARGET = "${targetPlatform.config}-strings";
- STRIP_FOR_TARGET = "${targetPlatform.config}-strip";
- CC_FOR_TARGET = "${targetPlatform.config}-gcc";
- CXX_FOR_TARGET = "${targetPlatform.config}-g++";
-
dontStrip = true;
};
- NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
- NIX_BUILD_CC = buildPackages.stdenv.cc;
-
- # Needed for the cross compilation to work
- AR = "ar";
- LD = "ld";
- CC = "gcc";
-
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
# library headers and binaries, regarless of the language being compiled.
#
@@ -422,8 +386,11 @@ stdenv.mkDerivation ({
"-Wl,${libpthreadCross.TARGET_LDFLAGS}"
]);
- passthru = { inherit langC langCC langAda langFortran langVhdl
- enableMultilib version; isGNU = true; };
+ passthru = {
+ inherit langC langCC langAda langFortran langVhdl enableMultilib version;
+ isGNU = true;
+ hardeningUnsupportedFlags = [ "stackprotector" ];
+ };
enableParallelBuilding = !langAda;
diff --git a/pkgs/development/compilers/gcc/4.8/default.nix b/pkgs/development/compilers/gcc/4.8/default.nix
index 4efac1b26c3..0105a159877 100644
--- a/pkgs/development/compilers/gcc/4.8/default.nix
+++ b/pkgs/development/compilers/gcc/4.8/default.nix
@@ -163,13 +163,9 @@ let version = "4.8.5";
"--enable-threads=win32"
"--enable-sjlj-exceptions"
"--enable-hash-synchronization"
- "--disable-libssp"
+ "--enable-libssp"
"--disable-nls"
"--with-dwarf2"
- # I think noone uses shared gcc libs in mingw, so we better do the same.
- # In any case, mingw32 g++ linking is broken by default with shared libs,
- # unless adding "-lsupc++" to any linking command. I don't know why.
- "--disable-shared"
# To keep ABI compatibility with upstream mingw-w64
"--enable-fully-dynamic-string"
] else
@@ -271,6 +267,7 @@ stdenv.mkDerivation ({
inherit noSysDirs staticCompiler langJava
libcCross crossMingw;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ texinfo which gettext ]
++ (optional (perl != null) perl)
++ (optional javaAwtGtk pkgconfig);
@@ -303,7 +300,7 @@ stdenv.mkDerivation ({
# TODO(@Ericson2314): Always pass "--target" and always prefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
- if hostPlatform == targetPlatform && targetPlatform.isArm
+ if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
@@ -401,57 +398,12 @@ stdenv.mkDerivation ({
/* For cross-built gcc (build != host == target) */
crossAttrs = {
- AR_FOR_BUILD = "ar";
- AS_FOR_BUILD = "as";
- LD_FOR_BUILD = "ld";
- NM_FOR_BUILD = "nm";
- OBJCOPY_FOR_BUILD = "objcopy";
- OBJDUMP_FOR_BUILD = "objdump";
- RANLIB_FOR_BUILD = "ranlib";
- SIZE_FOR_BUILD = "size";
- STRINGS_FOR_BUILD = "strings";
- STRIP_FOR_BUILD = "strip";
- CC_FOR_BUILD = "gcc";
- CXX_FOR_BUILD = "g++";
-
- AR = "${targetPlatform.config}-ar";
- AS = "${targetPlatform.config}-as";
- LD = "${targetPlatform.config}-ld";
- NM = "${targetPlatform.config}-nm";
- OBJCOPY = "${targetPlatform.config}-objcopy";
- OBJDUMP = "${targetPlatform.config}-objdump";
- RANLIB = "${targetPlatform.config}-ranlib";
- SIZE = "${targetPlatform.config}-size";
- STRINGS = "${targetPlatform.config}-strings";
- STRIP = "${targetPlatform.config}-strip";
- CC = "${targetPlatform.config}-gcc";
- CXX = "${targetPlatform.config}-g++";
-
- AR_FOR_TARGET = "${targetPlatform.config}-ar";
- AS_FOR_TARGET = "${targetPlatform.config}-as";
- LD_FOR_TARGET = "${targetPlatform.config}-ld";
- NM_FOR_TARGET = "${targetPlatform.config}-nm";
- OBJCOPY_FOR_TARGET = "${targetPlatform.config}-objcopy";
- OBJDUMP_FOR_TARGET = "${targetPlatform.config}-objdump";
- RANLIB_FOR_TARGET = "${targetPlatform.config}-ranlib";
- SIZE_FOR_TARGET = "${targetPlatform.config}-size";
- STRINGS_FOR_TARGET = "${targetPlatform.config}-strings";
- STRIP_FOR_TARGET = "${targetPlatform.config}-strip";
- CC_FOR_TARGET = "${targetPlatform.config}-gcc";
- CXX_FOR_TARGET = "${targetPlatform.config}-g++";
-
dontStrip = true;
buildFlags = "";
};
- NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
- NIX_BUILD_CC = buildPackages.stdenv.cc;
-
- # Needed for the cross compilation to work
- AR = "ar";
- LD = "ld";
# http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
- CC = if stdenv.system == "x86_64-solaris" then "gcc -m64" else "gcc";
+ ${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
# library headers and binaries, regarless of the language being compiled.
@@ -511,8 +463,11 @@ stdenv.mkDerivation ({
"-Wl,${libpthreadCross.TARGET_LDFLAGS}"
]);
- passthru =
- { inherit langC langCC langObjC langObjCpp langAda langFortran langVhdl langGo version; isGNU = true; };
+ passthru = {
+ inherit langC langCC langObjC langObjCpp langAda langFortran langVhdl langGo version;
+ isGNU = true;
+ hardeningUnsupportedFlags = [ "stackprotector" ];
+ };
inherit enableParallelBuilding enableMultilib;
diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix
index fb4218a0ede..1b1492686d0 100644
--- a/pkgs/development/compilers/gcc/4.9/default.nix
+++ b/pkgs/development/compilers/gcc/4.9/default.nix
@@ -154,13 +154,9 @@ let version = "4.9.4";
"--enable-threads=win32"
"--enable-sjlj-exceptions"
"--enable-hash-synchronization"
- "--disable-libssp"
+ "--enable-libssp"
"--disable-nls"
"--with-dwarf2"
- # I think noone uses shared gcc libs in mingw, so we better do the same.
- # In any case, mingw32 g++ linking is broken by default with shared libs,
- # unless adding "-lsupc++" to any linking command. I don't know why.
- "--disable-shared"
# To keep ABI compatibility with upstream mingw-w64
"--enable-fully-dynamic-string"
] else
@@ -266,12 +262,23 @@ stdenv.mkDerivation ({
inherit noSysDirs staticCompiler langJava
libcCross crossMingw;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ texinfo which gettext ]
++ (optional (perl != null) perl)
++ (optional javaAwtGtk pkgconfig);
- buildInputs = [ gmp mpfr libmpc libelf ]
- ++ (optional (cloog != null) cloog)
+ # For building runtime libs
+ depsBuildTarget =
+ if hostPlatform == buildPlatform then [
+ targetPackages.stdenv.cc.bintools # newly-built gcc will be used
+ ] else assert targetPlatform == hostPlatform; [ # build != host == target
+ stdenv.cc
+ ];
+
+ buildInputs = [
+ gmp mpfr libmpc libelf
+ targetPackages.stdenv.cc.bintools # For linking code at run-time
+ ] ++ (optional (cloog != null) cloog)
++ (optional (isl != null) isl)
++ (optional (zlib != null) zlib)
++ (optionals langJava [ boehmgc zip unzip ])
@@ -302,7 +309,7 @@ stdenv.mkDerivation ({
# TODO(@Ericson2314): Always pass "--target" and always prefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
- if hostPlatform == targetPlatform && targetPlatform.isArm
+ if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
@@ -399,57 +406,12 @@ stdenv.mkDerivation ({
/* For cross-built gcc (build != host == target) */
crossAttrs = {
- AR_FOR_BUILD = "ar";
- AS_FOR_BUILD = "as";
- LD_FOR_BUILD = "ld";
- NM_FOR_BUILD = "nm";
- OBJCOPY_FOR_BUILD = "objcopy";
- OBJDUMP_FOR_BUILD = "objdump";
- RANLIB_FOR_BUILD = "ranlib";
- SIZE_FOR_BUILD = "size";
- STRINGS_FOR_BUILD = "strings";
- STRIP_FOR_BUILD = "strip";
- CC_FOR_BUILD = "gcc";
- CXX_FOR_BUILD = "g++";
-
- AR = "${targetPlatform.config}-ar";
- AS = "${targetPlatform.config}-as";
- LD = "${targetPlatform.config}-ld";
- NM = "${targetPlatform.config}-nm";
- OBJCOPY = "${targetPlatform.config}-objcopy";
- OBJDUMP = "${targetPlatform.config}-objdump";
- RANLIB = "${targetPlatform.config}-ranlib";
- SIZE = "${targetPlatform.config}-size";
- STRINGS = "${targetPlatform.config}-strings";
- STRIP = "${targetPlatform.config}-strip";
- CC = "${targetPlatform.config}-gcc";
- CXX = "${targetPlatform.config}-g++";
-
- AR_FOR_TARGET = "${targetPlatform.config}-ar";
- AS_FOR_TARGET = "${targetPlatform.config}-as";
- LD_FOR_TARGET = "${targetPlatform.config}-ld";
- NM_FOR_TARGET = "${targetPlatform.config}-nm";
- OBJCOPY_FOR_TARGET = "${targetPlatform.config}-objcopy";
- OBJDUMP_FOR_TARGET = "${targetPlatform.config}-objdump";
- RANLIB_FOR_TARGET = "${targetPlatform.config}-ranlib";
- SIZE_FOR_TARGET = "${targetPlatform.config}-size";
- STRINGS_FOR_TARGET = "${targetPlatform.config}-strings";
- STRIP_FOR_TARGET = "${targetPlatform.config}-strip";
- CC_FOR_TARGET = "${targetPlatform.config}-gcc";
- CXX_FOR_TARGET = "${targetPlatform.config}-g++";
-
dontStrip = true;
buildFlags = "";
};
- NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
- NIX_BUILD_CC = buildPackages.stdenv.cc;
-
- # Needed for the cross compilation to work
- AR = "ar";
- LD = "ld";
# http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
- CC = if stdenv.system == "x86_64-solaris" then "gcc -m64" else "gcc";
+ ${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
# library headers and binaries, regarless of the language being compiled.
diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix
index b4399ef72f1..0636ce7381a 100644
--- a/pkgs/development/compilers/gcc/5/default.nix
+++ b/pkgs/development/compilers/gcc/5/default.nix
@@ -49,9 +49,6 @@ assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
assert hostPlatform.isDarwin -> gnused != null;
-# Need c++filt on darwin
-assert hostPlatform.isDarwin -> targetPackages.stdenv.cc.bintools or null != null;
-
# The go frontend is written in c++
assert langGo -> langCC;
@@ -157,13 +154,9 @@ let version = "5.5.0";
"--enable-threads=win32"
"--enable-sjlj-exceptions"
"--enable-hash-synchronization"
- "--disable-libssp"
+ "--enable-libssp"
"--disable-nls"
"--with-dwarf2"
- # I think noone uses shared gcc libs in mingw, so we better do the same.
- # In any case, mingw32 g++ linking is broken by default with shared libs,
- # unless adding "-lsupc++" to any linking command. I don't know why.
- "--disable-shared"
# To keep ABI compatibility with upstream mingw-w64
"--enable-fully-dynamic-string"
] else
@@ -281,17 +274,27 @@ stdenv.mkDerivation ({
inherit noSysDirs staticCompiler langJava
libcCross crossMingw;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ texinfo which gettext ]
++ (optional (perl != null) perl)
++ (optional javaAwtGtk pkgconfig);
- buildInputs = [ gmp mpfr libmpc libelf ]
- ++ (optional (isl != null) isl)
+ # For building runtime libs
+ depsBuildTarget =
+ if hostPlatform == buildPlatform then [
+ targetPackages.stdenv.cc.bintools # newly-built gcc will be used
+ ] else assert targetPlatform == hostPlatform; [ # build != host == target
+ stdenv.cc
+ ];
+
+ buildInputs = [
+ gmp mpfr libmpc libelf
+ targetPackages.stdenv.cc.bintools # For linking code at run-time
+ ] ++ (optional (isl != null) isl)
++ (optional (zlib != null) zlib)
++ (optionals langJava [ boehmgc zip unzip ])
++ (optionals javaAwtGtk ([ gtk2 libart_lgpl ] ++ xlibs))
++ (optionals (targetPlatform != hostPlatform) [targetPackages.stdenv.cc.bintools])
- ++ (optionals (buildPlatform != hostPlatform) [buildPackages.stdenv.cc])
++ (optionals langAda [gnatboot])
++ (optionals langVhdl [gnat])
@@ -315,7 +318,7 @@ stdenv.mkDerivation ({
# TODO(@Ericson2314): Always pass "--target" and always prefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
- if hostPlatform == targetPlatform && targetPlatform.isArm
+ if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
@@ -408,57 +411,12 @@ stdenv.mkDerivation ({
/* For cross-built gcc (build != host == target) */
crossAttrs = {
- AR_FOR_BUILD = "ar";
- AS_FOR_BUILD = "as";
- LD_FOR_BUILD = "ld";
- NM_FOR_BUILD = "nm";
- OBJCOPY_FOR_BUILD = "objcopy";
- OBJDUMP_FOR_BUILD = "objdump";
- RANLIB_FOR_BUILD = "ranlib";
- SIZE_FOR_BUILD = "size";
- STRINGS_FOR_BUILD = "strings";
- STRIP_FOR_BUILD = "strip";
- CC_FOR_BUILD = "gcc";
- CXX_FOR_BUILD = "g++";
-
- AR = "${targetPlatform.config}-ar";
- AS = "${targetPlatform.config}-as";
- LD = "${targetPlatform.config}-ld";
- NM = "${targetPlatform.config}-nm";
- OBJCOPY = "${targetPlatform.config}-objcopy";
- OBJDUMP = "${targetPlatform.config}-objdump";
- RANLIB = "${targetPlatform.config}-ranlib";
- SIZE = "${targetPlatform.config}-size";
- STRINGS = "${targetPlatform.config}-strings";
- STRIP = "${targetPlatform.config}-strip";
- CC = "${targetPlatform.config}-gcc";
- CXX = "${targetPlatform.config}-g++";
-
- AR_FOR_TARGET = "${targetPlatform.config}-ar";
- AS_FOR_TARGET = "${targetPlatform.config}-as";
- LD_FOR_TARGET = "${targetPlatform.config}-ld";
- NM_FOR_TARGET = "${targetPlatform.config}-nm";
- OBJCOPY_FOR_TARGET = "${targetPlatform.config}-objcopy";
- OBJDUMP_FOR_TARGET = "${targetPlatform.config}-objdump";
- RANLIB_FOR_TARGET = "${targetPlatform.config}-ranlib";
- SIZE_FOR_TARGET = "${targetPlatform.config}-size";
- STRINGS_FOR_TARGET = "${targetPlatform.config}-strings";
- STRIP_FOR_TARGET = "${targetPlatform.config}-strip";
- CC_FOR_TARGET = "${targetPlatform.config}-gcc";
- CXX_FOR_TARGET = "${targetPlatform.config}-g++";
-
dontStrip = true;
buildFlags = "";
};
- NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
- NIX_BUILD_CC = buildPackages.stdenv.cc;
-
- # Needed for the cross compilation to work
- AR = "ar";
- LD = "ld";
# http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
- CC = if stdenv.system == "x86_64-solaris" then "gcc -m64" else "gcc";
+ ${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
# library headers and binaries, regarless of the language being compiled.
diff --git a/pkgs/development/compilers/gcc/6/default.nix b/pkgs/development/compilers/gcc/6/default.nix
index d923092168a..2614e96e1b7 100644
--- a/pkgs/development/compilers/gcc/6/default.nix
+++ b/pkgs/development/compilers/gcc/6/default.nix
@@ -49,9 +49,6 @@ assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
assert hostPlatform.isDarwin -> gnused != null;
-# Need c++filt on darwin
-assert hostPlatform.isDarwin -> targetPackages.stdenv.cc.bintools or null != null;
-
# The go frontend is written in c++
assert langGo -> langCC;
@@ -155,13 +152,9 @@ let version = "6.4.0";
"--enable-threads=win32"
"--enable-sjlj-exceptions"
"--enable-hash-synchronization"
- "--disable-libssp"
+ "--enable-libssp"
"--disable-nls"
"--with-dwarf2"
- # I think noone uses shared gcc libs in mingw, so we better do the same.
- # In any case, mingw32 g++ linking is broken by default with shared libs,
- # unless adding "-lsupc++" to any linking command. I don't know why.
- "--disable-shared"
# To keep ABI compatibility with upstream mingw-w64
"--enable-fully-dynamic-string"
] else
@@ -280,12 +273,23 @@ stdenv.mkDerivation ({
inherit noSysDirs staticCompiler langJava
libcCross crossMingw;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ texinfo which gettext ]
++ (optional (perl != null) perl)
++ (optional javaAwtGtk pkgconfig);
- buildInputs = [ gmp mpfr libmpc libelf ]
- ++ (optional (isl != null) isl)
+ # For building runtime libs
+ depsBuildTarget =
+ if hostPlatform == buildPlatform then [
+ targetPackages.stdenv.cc.bintools # newly-built gcc will be used
+ ] else assert targetPlatform == hostPlatform; [ # build != host == target
+ stdenv.cc
+ ];
+
+ buildInputs = [
+ gmp mpfr libmpc libelf
+ targetPackages.stdenv.cc.bintools # For linking code at run-time
+ ] ++ (optional (isl != null) isl)
++ (optional (zlib != null) zlib)
++ (optionals langJava [ boehmgc zip unzip ])
++ (optionals javaAwtGtk ([ gtk2 libart_lgpl ] ++ xlibs))
@@ -317,7 +321,7 @@ stdenv.mkDerivation ({
# TODO(@Ericson2314): Always pass "--target" and always prefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
- if hostPlatform == targetPlatform && targetPlatform.isArm
+ if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
@@ -409,57 +413,12 @@ stdenv.mkDerivation ({
/* For cross-built gcc (build != host == target) */
crossAttrs = {
- AR_FOR_BUILD = "ar";
- AS_FOR_BUILD = "as";
- LD_FOR_BUILD = "ld";
- NM_FOR_BUILD = "nm";
- OBJCOPY_FOR_BUILD = "objcopy";
- OBJDUMP_FOR_BUILD = "objdump";
- RANLIB_FOR_BUILD = "ranlib";
- SIZE_FOR_BUILD = "size";
- STRINGS_FOR_BUILD = "strings";
- STRIP_FOR_BUILD = "strip";
- CC_FOR_BUILD = "gcc";
- CXX_FOR_BUILD = "g++";
-
- AR = "${targetPlatform.config}-ar";
- AS = "${targetPlatform.config}-as";
- LD = "${targetPlatform.config}-ld";
- NM = "${targetPlatform.config}-nm";
- OBJCOPY = "${targetPlatform.config}-objcopy";
- OBJDUMP = "${targetPlatform.config}-objdump";
- RANLIB = "${targetPlatform.config}-ranlib";
- SIZE = "${targetPlatform.config}-size";
- STRINGS = "${targetPlatform.config}-strings";
- STRIP = "${targetPlatform.config}-strip";
- CC = "${targetPlatform.config}-gcc";
- CXX = "${targetPlatform.config}-g++";
-
- AR_FOR_TARGET = "${targetPlatform.config}-ar";
- AS_FOR_TARGET = "${targetPlatform.config}-as";
- LD_FOR_TARGET = "${targetPlatform.config}-ld";
- NM_FOR_TARGET = "${targetPlatform.config}-nm";
- OBJCOPY_FOR_TARGET = "${targetPlatform.config}-objcopy";
- OBJDUMP_FOR_TARGET = "${targetPlatform.config}-objdump";
- RANLIB_FOR_TARGET = "${targetPlatform.config}-ranlib";
- SIZE_FOR_TARGET = "${targetPlatform.config}-size";
- STRINGS_FOR_TARGET = "${targetPlatform.config}-strings";
- STRIP_FOR_TARGET = "${targetPlatform.config}-strip";
- CC_FOR_TARGET = "${targetPlatform.config}-gcc";
- CXX_FOR_TARGET = "${targetPlatform.config}-g++";
-
dontStrip = true;
buildFlags = "";
};
- NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
- NIX_BUILD_CC = buildPackages.stdenv.cc;
-
- # Needed for the cross compilation to work
- AR = "ar";
- LD = "ld";
# http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
- CC = if stdenv.system == "x86_64-solaris" then "gcc -m64" else "gcc";
+ ${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
# library headers and binaries, regarless of the language being compiled.
diff --git a/pkgs/development/compilers/gcc/7/default.nix b/pkgs/development/compilers/gcc/7/default.nix
index c9daf813e6f..0e5f69c2726 100644
--- a/pkgs/development/compilers/gcc/7/default.nix
+++ b/pkgs/development/compilers/gcc/7/default.nix
@@ -50,16 +50,13 @@ assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
assert hostPlatform.isDarwin -> gnused != null;
-# Need c++filt on darwin
-assert hostPlatform.isDarwin -> targetPackages.stdenv.cc.bintools or null != null;
-
# The go frontend is written in c++
assert langGo -> langCC;
with stdenv.lib;
with builtins;
-let version = "7.2.0";
+let version = "7.3.0";
# Whether building a cross-compiler for GNU/Hurd.
crossGNU = targetPlatform != hostPlatform && targetPlatform.config == "i586-pc-gnu";
@@ -153,13 +150,9 @@ let version = "7.2.0";
"--enable-threads=win32"
"--enable-sjlj-exceptions"
"--enable-hash-synchronization"
- "--disable-libssp"
+ "--enable-libssp"
"--disable-nls"
"--with-dwarf2"
- # I think noone uses shared gcc libs in mingw, so we better do the same.
- # In any case, mingw32 g++ linking is broken by default with shared libs,
- # unless adding "-lsupc++" to any linking command. I don't know why.
- "--disable-shared"
# To keep ABI compatibility with upstream mingw-w64
"--enable-fully-dynamic-string"
] else
@@ -192,7 +185,7 @@ stdenv.mkDerivation ({
src = fetchurl {
url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz";
- sha256 = "16j7i0888j2f1yp9l0nhji6cq65dy6y4nwy8868a8njbzzwavxqw";
+ sha256 = "0p71bij6bfhzyrs8676a8jmpjsfz392s2rg862sdnsk30jpacb43";
};
inherit patches;
@@ -277,12 +270,23 @@ stdenv.mkDerivation ({
inherit noSysDirs staticCompiler langJava
libcCross crossMingw;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ texinfo which gettext ]
++ (optional (perl != null) perl)
++ (optional javaAwtGtk pkgconfig);
- buildInputs = [ gmp mpfr libmpc libelf flex ]
- ++ (optional (isl != null) isl)
+ # For building runtime libs
+ depsBuildTarget =
+ if hostPlatform == buildPlatform then [
+ targetPackages.stdenv.cc.bintools # newly-built gcc will be used
+ ] else assert targetPlatform == hostPlatform; [ # build != host == target
+ stdenv.cc
+ ];
+
+ buildInputs = [
+ gmp mpfr libmpc libelf flex
+ targetPackages.stdenv.cc.bintools # For linking code at run-time
+ ] ++ (optional (isl != null) isl)
++ (optional (zlib != null) zlib)
++ (optionals langJava [ boehmgc zip unzip ])
++ (optionals javaAwtGtk ([ gtk2 libart_lgpl ] ++ xlibs))
@@ -310,7 +314,7 @@ stdenv.mkDerivation ({
# TODO(@Ericson2314): Always pass "--target" and always prefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
- if hostPlatform == targetPlatform && targetPlatform.isArm
+ if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
@@ -403,57 +407,12 @@ stdenv.mkDerivation ({
/* For cross-built gcc (build != host == target) */
crossAttrs = {
- AR_FOR_BUILD = "ar";
- AS_FOR_BUILD = "as";
- LD_FOR_BUILD = "ld";
- NM_FOR_BUILD = "nm";
- OBJCOPY_FOR_BUILD = "objcopy";
- OBJDUMP_FOR_BUILD = "objdump";
- RANLIB_FOR_BUILD = "ranlib";
- SIZE_FOR_BUILD = "size";
- STRINGS_FOR_BUILD = "strings";
- STRIP_FOR_BUILD = "strip";
- CC_FOR_BUILD = "gcc";
- CXX_FOR_BUILD = "g++";
-
- AR = "${targetPlatform.config}-ar";
- AS = "${targetPlatform.config}-as";
- LD = "${targetPlatform.config}-ld";
- NM = "${targetPlatform.config}-nm";
- OBJCOPY = "${targetPlatform.config}-objcopy";
- OBJDUMP = "${targetPlatform.config}-objdump";
- RANLIB = "${targetPlatform.config}-ranlib";
- SIZE = "${targetPlatform.config}-size";
- STRINGS = "${targetPlatform.config}-strings";
- STRIP = "${targetPlatform.config}-strip";
- CC = "${targetPlatform.config}-gcc";
- CXX = "${targetPlatform.config}-g++";
-
- AR_FOR_TARGET = "${targetPlatform.config}-ar";
- AS_FOR_TARGET = "${targetPlatform.config}-as";
- LD_FOR_TARGET = "${targetPlatform.config}-ld";
- NM_FOR_TARGET = "${targetPlatform.config}-nm";
- OBJCOPY_FOR_TARGET = "${targetPlatform.config}-objcopy";
- OBJDUMP_FOR_TARGET = "${targetPlatform.config}-objdump";
- RANLIB_FOR_TARGET = "${targetPlatform.config}-ranlib";
- SIZE_FOR_TARGET = "${targetPlatform.config}-size";
- STRINGS_FOR_TARGET = "${targetPlatform.config}-strings";
- STRIP_FOR_TARGET = "${targetPlatform.config}-strip";
- CC_FOR_TARGET = "${targetPlatform.config}-gcc";
- CXX_FOR_TARGET = "${targetPlatform.config}-g++";
-
dontStrip = true;
buildFlags = "";
};
- NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
- NIX_BUILD_CC = buildPackages.stdenv.cc;
-
- # Needed for the cross compilation to work
- AR = "ar";
- LD = "ld";
# http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
- CC = if stdenv.system == "x86_64-solaris" then "gcc -m64" else "gcc";
+ ${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
# library headers and binaries, regarless of the language being compiled.
diff --git a/pkgs/development/compilers/gcc/snapshot/default.nix b/pkgs/development/compilers/gcc/snapshot/default.nix
index 9d1bdc08133..c1306d374d5 100644
--- a/pkgs/development/compilers/gcc/snapshot/default.nix
+++ b/pkgs/development/compilers/gcc/snapshot/default.nix
@@ -50,9 +50,6 @@ assert libelf != null -> zlib != null;
# Make sure we get GNU sed.
assert hostPlatform.isDarwin -> gnused != null;
-# Need c++filt on darwin
-assert hostPlatform.isDarwin -> targetPackages.stdenv.cc.bintools or null != null;
-
# The go frontend is written in c++
assert langGo -> langCC;
@@ -153,13 +150,9 @@ let version = "7-20170409";
"--enable-threads=win32"
"--enable-sjlj-exceptions"
"--enable-hash-synchronization"
- "--disable-libssp"
+ "--enable-libssp"
"--disable-nls"
"--with-dwarf2"
- # I think noone uses shared gcc libs in mingw, so we better do the same.
- # In any case, mingw32 g++ linking is broken by default with shared libs,
- # unless adding "-lsupc++" to any linking command. I don't know why.
- "--disable-shared"
# To keep ABI compatibility with upstream mingw-w64
"--enable-fully-dynamic-string"
] else
@@ -264,12 +257,23 @@ stdenv.mkDerivation ({
inherit noSysDirs staticCompiler langJava
libcCross crossMingw;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ texinfo which gettext ]
++ (optional (perl != null) perl)
++ (optional javaAwtGtk pkgconfig);
- buildInputs = [ gmp mpfr libmpc libelf flex ]
- ++ (optional (isl != null) isl)
+ # For building runtime libs
+ depsBuildTarget =
+ if hostPlatform == buildPlatform then [
+ targetPackages.stdenv.cc.bintools # newly-built gcc will be used
+ ] else assert targetPlatform == hostPlatform; [ # build != host == target
+ stdenv.cc
+ ];
+
+ buildInputs = [
+ gmp mpfr libmpc libelf flex
+ targetPackages.stdenv.cc.bintools # For linking code at run-time
+ ] ++ (optional (isl != null) isl)
++ (optional (zlib != null) zlib)
++ (optionals langJava [ boehmgc zip unzip ])
++ (optionals javaAwtGtk ([ gtk2 libart_lgpl ] ++ xlibs))
@@ -297,7 +301,7 @@ stdenv.mkDerivation ({
# TODO(@Ericson2314): Always pass "--target" and always prefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
- if hostPlatform == targetPlatform && targetPlatform.isArm
+ if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
@@ -390,57 +394,12 @@ stdenv.mkDerivation ({
/* For cross-built gcc (build != host == target) */
crossAttrs = {
- AR_FOR_BUILD = "ar";
- AS_FOR_BUILD = "as";
- LD_FOR_BUILD = "ld";
- NM_FOR_BUILD = "nm";
- OBJCOPY_FOR_BUILD = "objcopy";
- OBJDUMP_FOR_BUILD = "objdump";
- RANLIB_FOR_BUILD = "ranlib";
- SIZE_FOR_BUILD = "size";
- STRINGS_FOR_BUILD = "strings";
- STRIP_FOR_BUILD = "strip";
- CC_FOR_BUILD = "gcc";
- CXX_FOR_BUILD = "g++";
-
- AR = "${targetPlatform.config}-ar";
- AS = "${targetPlatform.config}-as";
- LD = "${targetPlatform.config}-ld";
- NM = "${targetPlatform.config}-nm";
- OBJCOPY = "${targetPlatform.config}-objcopy";
- OBJDUMP = "${targetPlatform.config}-objdump";
- RANLIB = "${targetPlatform.config}-ranlib";
- SIZE = "${targetPlatform.config}-size";
- STRINGS = "${targetPlatform.config}-strings";
- STRIP = "${targetPlatform.config}-strip";
- CC = "${targetPlatform.config}-gcc";
- CXX = "${targetPlatform.config}-g++";
-
- AR_FOR_TARGET = "${targetPlatform.config}-ar";
- AS_FOR_TARGET = "${targetPlatform.config}-as";
- LD_FOR_TARGET = "${targetPlatform.config}-ld";
- NM_FOR_TARGET = "${targetPlatform.config}-nm";
- OBJCOPY_FOR_TARGET = "${targetPlatform.config}-objcopy";
- OBJDUMP_FOR_TARGET = "${targetPlatform.config}-objdump";
- RANLIB_FOR_TARGET = "${targetPlatform.config}-ranlib";
- SIZE_FOR_TARGET = "${targetPlatform.config}-size";
- STRINGS_FOR_TARGET = "${targetPlatform.config}-strings";
- STRIP_FOR_TARGET = "${targetPlatform.config}-strip";
- CC_FOR_TARGET = "${targetPlatform.config}-gcc";
- CXX_FOR_TARGET = "${targetPlatform.config}-g++";
-
dontStrip = true;
buildFlags = "";
};
- NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
- NIX_BUILD_CC = buildPackages.stdenv.cc;
-
- # Needed for the cross compilation to work
- AR = "ar";
- LD = "ld";
# http://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
- CC = if stdenv.system == "x86_64-solaris" then "gcc -m64" else "gcc";
+ ${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
# library headers and binaries, regarless of the language being compiled.
diff --git a/pkgs/development/compilers/gerbil/default.nix b/pkgs/development/compilers/gerbil/default.nix
index 622107c7534..9bd23aebfc4 100644
--- a/pkgs/development/compilers/gerbil/default.nix
+++ b/pkgs/development/compilers/gerbil/default.nix
@@ -1,25 +1,27 @@
{ stdenv, fetchurl, fetchgit, gambit,
coreutils, rsync, bash,
- openssl, zlib, sqlite, libxml2, libyaml, libmysql, lmdb, leveldb }:
+ openssl, zlib, sqlite, libxml2, libyaml, mysql, lmdb, leveldb }:
# TODO: distinct packages for gerbil-release and gerbil-devel
stdenv.mkDerivation rec {
name = "gerbil-${version}";
- version = "0.12-DEV-836-gcde6802";
+ version = "0.12-DEV-1030-gbbed3bc";
src = fetchgit {
url = "https://github.com/vyzo/gerbil.git";
- rev = "2904b0014fac344409d0ae2ba5835d0e67ac83b5";
- sha256 = "1nnirqdd11n6pkvidnf8pb39m45jjnpmwj2qy62di024r7ha3y18";
+ rev = "bbed3bc4cf7bcaa64eaabdf097192bfcc2bfc928";
+ sha256 = "1dc0j143j860yq72lfjp71fin7hpsy1426azz7rl1szxvjfb7h4r";
};
buildInputs = [
gambit
coreutils rsync bash
- openssl zlib sqlite libxml2 libyaml libmysql lmdb leveldb
+ openssl zlib sqlite libxml2 libyaml mysql.connector-c lmdb leveldb
];
+ NIX_CFLAGS_COMPILE = [ "-I${mysql.connector-c}/include/mysql" "-L${mysql.connector-c}/lib/mysql" ];
+
postPatch = ''
echo '(define (gerbil-version-string) "v${version}")' > src/gerbil/runtime/gx-version.scm
@@ -36,6 +38,9 @@ stdenv.mkDerivation rec {
# Enable all optional libraries
substituteInPlace "src/std/build-features.ss" --replace '#f' '#t'
+ # gxprof testing uses $HOME/.cache/gerbil/gxc
+ export HOME=$$PWD
+
# Build, replacing make by build.sh
( cd src && sh build.sh )
diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix
deleted file mode 100644
index 84250c1a6d3..00000000000
--- a/pkgs/development/compilers/ghc/6.10.2-binary.nix
+++ /dev/null
@@ -1,86 +0,0 @@
-{ stdenv
-, fetchurl, perl
-, libedit, ncurses5, gmp
-}:
-
-stdenv.mkDerivation rec {
- version = "6.10.2";
-
- name = "ghc-${version}-binary";
-
- src = fetchurl ({
- "i686-linux" = {
- # This binary requires libedit.so.0 (rather than libedit.so.2).
- url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-unknown-linux.tar.bz2";
- sha256 = "1fw0zr2qshlpk8s0d16k27zcv5263nqdg2xds5ymw8ff6qz9rz9b";
- };
- "x86_64-linux" = {
- # Idem.
- url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-unknown-linux.tar.bz2";
- sha256 = "1rd2j7lmcfsm2rdfb5g6q0l8dz3sxadk5m3d2f69d4a6g4p4h7jj";
- };
- }.${stdenv.hostPlatform.system}
- or (throw "cannot bootstrap GHC on this platform"));
-
- buildInputs = [perl];
-
- postUnpack =
- # Strip is harmful, see also below. It's important that this happens
- # first. The GHC Cabal build system makes use of strip by default and
- # has hardcoded paths to /usr/bin/strip in many places. We replace
- # those below, making them point to our dummy script.
- ''
- mkdir "$TMP/bin"
- for i in strip; do
- echo '#! ${stdenv.shell}' > "$TMP/bin/$i"
- chmod +x "$TMP/bin/$i"
- done
- PATH="$TMP/bin:$PATH"
- '' +
- # On Linux, use patchelf to modify the executables so that they can
- # find editline/gmp.
- stdenv.lib.optionalString stdenv.hostPlatform.isLinux ''
- find . -type f -perm -0100 \
- -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${stdenv.lib.makeLibraryPath [ libedit ncurses5 gmp ]}" {} \;
- for prog in ld ar gcc strip ranlib; do
- find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \;
- done
- '';
-
- configurePhase = ''
- ./configure --prefix=$out --with-gmp-libraries=${stdenv.lib.getLib gmp}/lib --with-gmp-includes=${stdenv.lib.getDev gmp}/include
- '';
-
- # Stripping combined with patchelf breaks the executables (they die
- # with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
- dontStrip = true;
-
- # No building is necessary, but calling make without flags ironically
- # calls install-strip ...
- dontBuild = true;
-
- postInstall = ''
- # bah, the passing gmp doesn't work, so let's add it to the final package.conf in a quick but dirty way
- sed -i "s@^\(.*pkgName = PackageName \"rts\".*\libraryDirs = \\[\)\(.*\)@\\1\"${gmp.out}/lib\",\2@" $out/lib/ghc-${version}/package.conf
-
- # Sanity check, can ghc create executables?
- cd $TMP
- mkdir test-ghc; cd test-ghc
- cat > main.hs << EOF
- module Main where
- main = putStrLn "yes"
- EOF
- $out/bin/ghc --make main.hs
- echo compilation ok
- [ $(./main) == "yes" ]
- '';
-
- meta = {
- homepage = http://haskell.org/ghc;
- description = "The Glasgow Haskell Compiler";
- license = stdenv.lib.licenses.bsd3;
- platforms = ["x86_64-linux" "i686-linux"];
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/6.10.4.nix b/pkgs/development/compilers/ghc/6.10.4.nix
deleted file mode 100644
index c56762edd24..00000000000
--- a/pkgs/development/compilers/ghc/6.10.4.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{stdenv, fetchurl, libedit, ghc, perl, gmp, ncurses}:
-
-stdenv.mkDerivation rec {
- version = "6.10.4";
-
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "${meta.homepage}/dist/${version}/${name}-src.tar.bz2";
- sha256 = "d66a8e52572f4ff819fe5c4e34c6dd1e84a7763e25c3fadcc222453c0bd8534d";
- };
-
- buildInputs = [ghc libedit perl gmp];
-
- hardeningDisable = [ "format" ];
-
- configureFlags = [
- "--with-gmp-libraries=${gmp.out}/lib"
- "--with-gmp-includes=${gmp.dev}/include"
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- NIX_CFLAGS_COMPILE = "-fomit-frame-pointer";
-
- meta = {
- homepage = http://haskell.org/ghc;
- description = "The Glasgow Haskell Compiler";
- platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
- inherit (ghc.meta) license;
- broken = true; # https://nix-cache.s3.amazonaws.com/log/6ys7lzckf2c0532kzhmss73mmz504can-ghc-6.10.4.drv
- };
-}
diff --git a/pkgs/development/compilers/ghc/6.12.3.nix b/pkgs/development/compilers/ghc/6.12.3.nix
deleted file mode 100644
index a46ef66a8cb..00000000000
--- a/pkgs/development/compilers/ghc/6.12.3.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{stdenv, fetchurl, ghc, perl, gmp, ncurses}:
-
-stdenv.mkDerivation rec {
- version = "6.12.3";
-
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://darcs.haskell.org/download/dist/${version}/${name}-src.tar.bz2";
- sha256 = "0s2y1sv2nq1cgliv735q2w3gg4ykv1c0g1adbv8wgwhia10vxgbc";
- };
-
- buildInputs = [ghc perl gmp ncurses];
-
- buildMK = ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include"
- libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include"
- libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib"
- '';
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- '';
-
- configureFlags = [
- "--with-gcc=${stdenv.cc}/bin/gcc"
- ];
-
- NIX_CFLAGS_COMPILE = "-fomit-frame-pointer";
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = http://haskell.org/ghc;
- description = "The Glasgow Haskell Compiler";
- maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
- platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
- inherit (ghc.meta) license;
- broken = true; # broken by gcc 5.x: http://hydra.nixos.org/build/33627548
- };
-}
diff --git a/pkgs/development/compilers/ghc/7.0.4-binary.nix b/pkgs/development/compilers/ghc/7.0.4-binary.nix
index 394e4239e9a..51dd24671bd 100644
--- a/pkgs/development/compilers/ghc/7.0.4-binary.nix
+++ b/pkgs/development/compilers/ghc/7.0.4-binary.nix
@@ -3,6 +3,19 @@
, ncurses5, gmp, libiconv
}:
+# Prebuilt only does native
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+
+let
+ libPath = stdenv.lib.makeLibraryPath ([
+ ncurses5 gmp
+ ] ++ stdenv.lib.optional (stdenv.hostPlatform.isDarwin) libiconv);
+
+ libEnvVar = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin "DY"
+ + "LD_LIBRARY_PATH";
+
+in
+
stdenv.mkDerivation rec {
version = "7.0.4";
@@ -28,7 +41,11 @@ stdenv.mkDerivation rec {
}.${stdenv.hostPlatform.system}
or (throw "cannot bootstrap GHC on this platform"));
- buildInputs = [perl];
+ nativeBuildInputs = [ perl ];
+
+ # Cannot patchelf beforehand due to relative RPATHs that anticipate
+ # the final install location/
+ ${libEnvVar} = libPath;
postUnpack =
# GHC has dtrace probes, which causes ld to try to open /usr/lib/libdtrace.dylib
@@ -57,41 +74,25 @@ stdenv.mkDerivation rec {
find . -name base.buildinfo \
-exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \;
'' +
- # On Linux, use patchelf to modify the executables so that they can
- # find editline/gmp.
+ # Rename needed libraries and binaries, fix interpreter
stdenv.lib.optionalString stdenv.isLinux ''
- find . -type f -perm -0100 \
- -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${stdenv.lib.makeLibraryPath [ ncurses5 gmp ]}" {} \;
+ find . -type f -perm -0100 -exec patchelf \
+ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" {} \;
+
+ paxmark m ./ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+
sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
for prog in ld ar gcc strip ranlib; do
find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \;
done
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- # not enough room in the object files for the full path to libiconv :(
- fix () {
- install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib $1
- }
-
- ln -s ${libiconv}/lib/libiconv.dylib ghc-${version}/utils/ghc-pwd/dist/build/tmp
- ln -s ${libiconv}/lib/libiconv.dylib ghc-${version}/utils/hpc/dist/build/tmp
- ln -s ${libiconv}/lib/libiconv.dylib ghc-${version}/ghc/stage2/build/tmp
-
- for file in ghc-cabal ghc-pwd ghc-stage2 ghc-pkg haddock hsc2hs hpc; do
- fix $(find . -type f -name $file)
- done
-
- for file in $(find . -name setup-config); do
- substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)"
- done
'';
- configurePhase = ''
- ./configure --prefix=$out \
- --with-gmp-libraries=${gmp.out or gmp}/lib --with-gmp-includes=${gmp.dev or gmp}/include \
- ${stdenv.lib.optionalString stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}"}
- '';
+ configurePlatforms = [ ];
+ configureFlags = [
+ "--with-gmp-libraries=${stdenv.lib.getLib gmp}/lib"
+ "--with-gmp-includes=${stdenv.lib.getDev gmp}/include"
+ ] ++ stdenv.lib.optional stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}";
# Stripping combined with patchelf breaks the executables (they die
# with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
@@ -101,7 +102,26 @@ stdenv.mkDerivation rec {
# calls install-strip ...
dontBuild = true;
- postInstall = ''
+ # On Linux, use patchelf to modify the executables so that they can
+ # find editline/gmp.
+ preFixup = stdenv.lib.optionalString stdenv.isLinux ''
+ find "$out" -type f -executable \
+ -exec patchelf --set-rpath "${libPath}" {} \;
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ # not enough room in the object files for the full path to libiconv :(
+ for exe in $(find "$out" -type f -executable); do
+ isScript $exe && continue
+ ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib
+ install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib $exe
+ done
+
+ for file in $(find "$out" -name setup-config); do
+ substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)"
+ done
+ '';
+
+ doInstallCheck = true;
+ installCheckPhase = ''
# Sanity check, can ghc create executables?
cd $TMP
mkdir test-ghc; cd test-ghc
@@ -114,6 +134,13 @@ stdenv.mkDerivation rec {
[ $(./main) == "yes" ]
'';
+ passthru = {
+ targetPrefix = "";
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
+ };
+
meta.license = stdenv.lib.licenses.bsd3;
meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"];
}
diff --git a/pkgs/development/compilers/ghc/7.0.4.nix b/pkgs/development/compilers/ghc/7.0.4.nix
index 9d052ddb246..54323458d9b 100644
--- a/pkgs/development/compilers/ghc/7.0.4.nix
+++ b/pkgs/development/compilers/ghc/7.0.4.nix
@@ -1,11 +1,14 @@
{ stdenv, fetchurl, ghc, perl, gmp, ncurses, libiconv }:
+# TODO(@Ericson2314): Cross compilation support
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+
stdenv.mkDerivation rec {
version = "7.0.4";
name = "ghc-${version}";
src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
+ url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.bz2";
sha256 = "1a9b78d9d66c9c21de6c0932e36bb87406a4856f1611bf83bd44539bdc6ed0ed";
};
@@ -25,7 +28,7 @@ stdenv.mkDerivation rec {
'';
preConfigure = ''
- echo "${buildMK}" > mk/build.mk
+ echo -n "${buildMK}" > mk/build.mk
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString stdenv.isDarwin ''
find . -name '*.hs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
@@ -42,6 +45,13 @@ stdenv.mkDerivation rec {
# that in turn causes GHCi to abort
stripDebugFlags=["-S" "--keep-file-symbols"];
+ passthru = {
+ targetPrefix = "";
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
+ };
+
meta = {
homepage = http://haskell.org/ghc;
description = "The Glasgow Haskell Compiler";
diff --git a/pkgs/development/compilers/ghc/7.10.2.nix b/pkgs/development/compilers/ghc/7.10.2.nix
deleted file mode 100644
index 51274dd6059..00000000000
--- a/pkgs/development/compilers/ghc/7.10.2.nix
+++ /dev/null
@@ -1,88 +0,0 @@
-{ stdenv, fetchurl, fetchpatch, bootPkgs, perl, ncurses, libiconv, targetPackages, coreutils
-, libxml2, libxslt, docbook_xsl, docbook_xml_dtd_45, docbook_xml_dtd_42, hscolour
-
- # If enabled GHC will be build with the GPL-free but slower integer-simple
- # library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
-}:
-
-let
- inherit (bootPkgs) ghc;
-
- buildMK = ''
- libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include"
- libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib"
- ${stdenv.lib.optionalString stdenv.isDarwin ''
- libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include"
- libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib"
- ''}
- '' + (if enableIntegerSimple then ''
- INTEGER_LIBRARY=integer-simple
- '' else ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include"
- '');
-
-in
-
-stdenv.mkDerivation rec {
- version = "7.10.2";
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "https://downloads.haskell.org/~ghc/7.10.2/${name}-src.tar.xz";
- sha256 = "1x8m4rp2v7ydnrz6z9g8x7z3x3d3pxhv2pixy7i7hkbqbdsp7kal";
- };
-
- buildInputs = [ ghc perl libxml2 libxslt docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42 hscolour ];
-
- patches = [ ./relocation.patch ];
-
- enableParallelBuilding = true;
-
- outputs = [ "out" "doc" ];
-
- preConfigure = ''
- echo >mk/build.mk "${buildMK}"
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- export NIX_LDFLAGS+=" -no_dtrace_dof"
- '';
-
- configureFlags = [
- "--with-gcc=${stdenv.cc}/bin/cc"
- "--datadir=$doc/share/doc/ghc"
- ] ++ stdenv.lib.optional (! enableIntegerSimple) [
- "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
- ];
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
-
- postInstall = ''
- # Install the bash completion file.
- install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/ghc
-
- # Patch scripts to include "readelf" and "cat" in $PATH.
- for i in "$out/bin/"*; do
- test ! -h $i || continue
- egrep --quiet '^#!' <(head -n 1 $i) || continue
- sed -i -e '2i export PATH="$PATH:${stdenv.lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i
- done
- '';
-
- passthru = {
- inherit bootPkgs;
- };
-
- meta = {
- homepage = http://haskell.org/ghc;
- description = "The Glasgow Haskell Compiler";
- maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
- inherit (ghc.meta) license platforms;
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.10.3-binary.nix b/pkgs/development/compilers/ghc/7.10.3-binary.nix
new file mode 100644
index 00000000000..c56798e31ae
--- /dev/null
+++ b/pkgs/development/compilers/ghc/7.10.3-binary.nix
@@ -0,0 +1,159 @@
+{ stdenv
+, fetchurl, perl
+, ncurses5, gmp, libiconv
+, gcc, llvm_35
+}:
+
+# Prebuilt only does native
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+
+let
+ libPath = stdenv.lib.makeLibraryPath ([
+ ncurses5 gmp
+ ] ++ stdenv.lib.optional (stdenv.hostPlatform.isDarwin) libiconv);
+
+ libEnvVar = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin "DY"
+ + "LD_LIBRARY_PATH";
+
+in
+
+stdenv.mkDerivation rec {
+ version = "7.10.3";
+
+ name = "ghc-${version}-binary";
+
+ src = fetchurl ({
+ "i686-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}b-i386-deb7-linux.tar.bz2";
+ sha256 = "20b32912fb7e57910a3c908f99a9519b57a4872e1ea0f4f2265b2f7b30e8a3cd";
+ };
+ "x86_64-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}b-x86_64-deb8-linux.tar.bz2";
+ sha256 = "5e163c557e9236cce68be41c984eab0fcdbdc1602e39040ca9ae325e6bdec1c3";
+ };
+ "armv7l-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-armv7-deb8-linux.tar.bz2";
+ sha256 = "2913763eef88e4d1843a1e4c34225afb1866310d1a1956c08a4131f4593518f6";
+ };
+ "x86_64-darwin" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}b-x86_64-apple-darwin.tar.bz2";
+ sha256 = "4b537228d49b5ea0f8e8dbcc440a5b3c3cb19a92579d607291cc0041422fa5c3";
+ };
+ }.${stdenv.hostPlatform.system}
+ or (throw "cannot bootstrap GHC on this platform"));
+
+ nativeBuildInputs = [ perl ];
+ buildInputs = stdenv.lib.optionals stdenv.targetPlatform.isArm [ llvm_35 ];
+
+ # Cannot patchelf beforehand due to relative RPATHs that anticipate
+ # the final install location/
+ ${libEnvVar} = libPath;
+
+ postUnpack =
+ # GHC has dtrace probes, which causes ld to try to open /usr/lib/libdtrace.dylib
+ # during linking
+ stdenv.lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS+=" -no_dtrace_dof"
+ # not enough room in the object files for the full path to libiconv :(
+ for exe in $(find . -type f -executable); do
+ isScript $exe && continue
+ ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib
+ install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib -change /usr/local/lib/gcc/5/libgcc_s.1.dylib ${gcc.cc.lib}/lib/libgcc_s.1.dylib $exe
+ done
+ '' +
+
+ # Some scripts used during the build need to have their shebangs patched
+ ''
+ patchShebangs ghc-${version}/utils/
+ '' +
+
+ # Strip is harmful, see also below. It's important that this happens
+ # first. The GHC Cabal build system makes use of strip by default and
+ # has hardcoded paths to /usr/bin/strip in many places. We replace
+ # those below, making them point to our dummy script.
+ ''
+ mkdir "$TMP/bin"
+ for i in strip; do
+ echo '#! ${stdenv.shell}' > "$TMP/bin/$i"
+ chmod +x "$TMP/bin/$i"
+ done
+ PATH="$TMP/bin:$PATH"
+ '' +
+ # We have to patch the GMP paths for the integer-gmp package.
+ ''
+ find . -name integer-gmp.buildinfo \
+ -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp.out}/lib@" {} \;
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ find . -name base.buildinfo \
+ -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \;
+ '' +
+ # Rename needed libraries and binaries, fix interpreter
+ stdenv.lib.optionalString stdenv.isLinux ''
+ find . -type f -perm -0100 -exec patchelf \
+ --replace-needed libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5 libncurses.so \
+ --replace-needed libtinfo.so libtinfo.so.5 \
+ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" {} \;
+
+ paxmark m ./ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+
+ sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+ sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+ '';
+
+ configurePlatforms = [ ];
+ configureFlags = [
+ "--with-gmp-libraries=${stdenv.lib.getLib gmp}/lib"
+ "--with-gmp-includes=${stdenv.lib.getDev gmp}/include"
+ ] ++ stdenv.lib.optional stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}";
+
+ # Stripping combined with patchelf breaks the executables (they die
+ # with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
+ dontStrip = true;
+
+ # No building is necessary, but calling make without flags ironically
+ # calls install-strip ...
+ dontBuild = true;
+
+ # On Linux, use patchelf to modify the executables so that they can
+ # find editline/gmp.
+ preFixup = stdenv.lib.optionalString stdenv.isLinux ''
+ for p in $(find "$out" -type f -executable); do
+ if isELF "$p"; then
+ echo "Patchelfing $p"
+ patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $p)" $p
+ fi
+ done
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ # not enough room in the object files for the full path to libiconv :(
+ for exe in $(find "$out" -type f -executable); do
+ isScript $exe && continue
+ ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib
+ install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib -change /usr/local/lib/gcc/5/libgcc_s.1.dylib ${gcc.cc.lib}/lib/libgcc_s.1.dylib $exe
+ done
+
+ for file in $(find "$out" -name setup-config); do
+ substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)"
+ done
+ '';
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ unset ${libEnvVar}
+ # Sanity check, can ghc create executables?
+ cd $TMP
+ mkdir test-ghc; cd test-ghc
+ cat > main.hs << EOF
+ {-# LANGUAGE TemplateHaskell #-}
+ module Main where
+ main = putStrLn \$([|"yes"|])
+ EOF
+ $out/bin/ghc --make main.hs || exit 1
+ echo compilation ok
+ [ $(./main) == "yes" ]
+ '';
+
+ passthru = { targetPrefix = ""; };
+
+ meta.license = stdenv.lib.licenses.bsd3;
+ meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "armv7l-linux"];
+}
diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix
index d573a22e0ae..c4780690f67 100644
--- a/pkgs/development/compilers/ghc/7.10.3.nix
+++ b/pkgs/development/compilers/ghc/7.10.3.nix
@@ -1,68 +1,161 @@
-{ stdenv, fetchurl, fetchpatch, bootPkgs, perl, ncurses, libiconv, targetPackages, coreutils
-, libxml2, libxslt, docbook_xsl, docbook_xml_dtd_45, docbook_xml_dtd_42, hscolour
+{ stdenv, targetPackages
+, buildPlatform, hostPlatform, targetPlatform
- # If enabled GHC will be build with the GPL-free but slower integer-simple
+# build-tools
+, bootPkgs, hscolour
+, coreutils, fetchurl, fetchpatch, perl
+, docbook_xsl, docbook_xml_dtd_45, docbook_xml_dtd_42, libxml2, libxslt
+
+, libffi, libiconv ? null, ncurses
+
+, useLLVM ? !targetPlatform.isx86
+, # LLVM is conceptually a run-time-only depedendency, but for
+ # non-x86, we need LLVM to bootstrap later stages, so it becomes a
+ # build-time dependency too.
+ buildLlvmPackages, llvmPackages
+
+, # If enabled, GHC will be built with the GPL-free but slower integer-simple
# library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
+ enableIntegerSimple ? false, gmp ? null
+
+, # If enabled, use -fPIC when compiling static libs.
+ enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+
+, # Whether to build dynamic libs for the standard library (on the target
+ # platform). Static libs are always built.
+ enableShared ? true
}:
+assert !enableIntegerSimple -> gmp != null;
+
let
inherit (bootPkgs) ghc;
+ # TODO(@Ericson2314) Make unconditional
+ targetPrefix = stdenv.lib.optionalString
+ (targetPlatform != hostPlatform)
+ "${targetPlatform.config}-";
+
docFixes = fetchurl {
url = "https://downloads.haskell.org/~ghc/7.10.3/ghc-7.10.3a.patch";
sha256 = "1j45z4kcd3w1rzm4hapap2xc16bbh942qnzzdbdjcwqznsccznf0";
};
+ buildMK = ''
+ DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"}
+ '' + stdenv.lib.optionalString enableIntegerSimple ''
+ INTEGER_LIBRARY = integer-simple
+ '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
+ BuildFlavour = perf-cross
+ Stage1Only = YES
+ HADDOCK_DOCS = NO
+ '' + stdenv.lib.optionalString enableRelocatedStaticLibs ''
+ GhcLibHcOpts += -fPIC
+ GhcRtsHcOpts += -fPIC
+ '';
+
+ # Splicer will pull out correct variations
+ libDeps = platform: [ ncurses ]
+ ++ stdenv.lib.optional (!enableIntegerSimple) gmp
+ ++ stdenv.lib.optional (platform.libc != "glibc") libiconv;
+
+ toolsForTarget =
+ if hostPlatform == buildPlatform then
+ [ targetPackages.stdenv.cc ] ++ stdenv.lib.optional useLLVM llvmPackages.llvm
+ else assert targetPlatform == hostPlatform; # build != host == target
+ [ stdenv.cc ] ++ stdenv.lib.optional useLLVM buildLlvmPackages.llvm;
+
+ targetCC = builtins.head toolsForTarget;
+
in
stdenv.mkDerivation rec {
version = "7.10.3";
- name = "ghc-${version}";
+ name = "${targetPrefix}ghc-${version}";
src = fetchurl {
- url = "https://downloads.haskell.org/~ghc/${version}/${name}-src.tar.xz";
+ url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
sha256 = "1vsgmic8csczl62ciz51iv8nhrkm72lyhbz7p7id13y2w7fcx46g";
};
+ enableParallelBuilding = true;
+
+ outputs = [ "out" "doc" ];
+
patches = [
docFixes
./relocation.patch
];
- buildInputs = [ ghc perl libxml2 libxslt docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42 hscolour ];
-
- enableParallelBuilding = true;
-
- outputs = [ "out" "doc" ];
-
+ # GHC is a bit confused on its cross terminology.
preConfigure = ''
+ for env in $(env | grep '^TARGET_' | sed -E 's|\+?=.*||'); do
+ export "''${env#TARGET_}=''${!env}"
+ done
+ # GHC is a bit confused on its cross terminology, as these would normally be
+ # the *host* tools.
+ export CC="${targetCC}/bin/${targetCC.targetPrefix}cc"
+ export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx"
+ export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld"
+ export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+ export AR="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ar"
+ export NM="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}nm"
+ export RANLIB="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ranlib"
+ export READELF="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}readelf"
+ export STRIP="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}strip"
+ echo -n "${buildMK}" > mk/build.mk
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
'' + stdenv.lib.optionalString stdenv.isDarwin ''
export NIX_LDFLAGS+=" -no_dtrace_dof"
- '' + stdenv.lib.optionalString enableIntegerSimple ''
- echo "INTEGER_LIBRARY=integer-simple" > mk/build.mk
'';
+ # TODO(@Ericson2314): Always pass "--target" and always prefix.
+ configurePlatforms = [ "build" "host" ]
+ ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
+ # `--with` flags for libraries needed for RTS linker
configureFlags = [
- "--with-gcc=${stdenv.cc}/bin/cc"
- "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
"--datadir=$doc/share/doc/ghc"
- ] ++ stdenv.lib.optional (! enableIntegerSimple) [
+ "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && ! enableIntegerSimple) [
"--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
- ] ++ stdenv.lib.optional stdenv.isDarwin [
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && hostPlatform.libc != "glibc") [
"--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
+ ] ++ stdenv.lib.optionals (targetPlatform != hostPlatform) [
+ "--enable-bootstrap-with-devel-snapshot"
+ ] ++ stdenv.lib.optionals (targetPlatform.isDarwin && targetPlatform.isAarch64) [
+ # fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/
+ "--disable-large-address-space"
];
+ # Hack to make sure we never to the relaxation `$PATH` and hooks support for
+ # compatability. This will be replaced with something clearer in a future
+ # masss-rebuild.
+ crossConfig = true;
+
+ nativeBuildInputs = [
+ ghc perl libxml2 libxslt docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42 hscolour
+ ];
+
+ # For building runtime libs
+ depsBuildTarget = toolsForTarget;
+
+ buildInputs = libDeps hostPlatform;
+
+ propagatedBuildInputs = [ targetPackages.stdenv.cc ]
+ ++ stdenv.lib.optional useLLVM llvmPackages.llvm;
+
+ depsTargetTarget = map stdenv.lib.getDev (libDeps targetPlatform);
+ depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") (libDeps targetPlatform);
+
# required, because otherwise all symbols from HSffi.o are stripped, and
# that in turn causes GHCi to abort
- stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
+ stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!targetPlatform.isDarwin) "--keep-file-symbols";
postInstall = ''
# Install the bash completion file.
- install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/ghc
+ install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/${targetPrefix}ghc
# Patch scripts to include "readelf" and "cat" in $PATH.
for i in "$out/bin/"*; do
@@ -73,7 +166,12 @@ stdenv.mkDerivation rec {
'';
passthru = {
- inherit bootPkgs;
+ inherit bootPkgs targetPrefix;
+
+ inherit llvmPackages;
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
};
meta = {
@@ -82,4 +180,5 @@ stdenv.mkDerivation rec {
maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
inherit (ghc.meta) license platforms;
};
+
}
diff --git a/pkgs/development/compilers/ghc/7.2.2.nix b/pkgs/development/compilers/ghc/7.2.2.nix
deleted file mode 100644
index dd3b5cb2ebc..00000000000
--- a/pkgs/development/compilers/ghc/7.2.2.nix
+++ /dev/null
@@ -1,67 +0,0 @@
-{ stdenv, fetchurl, ghc, perl, ncurses, libiconv
-
- # If enabled GHC will be build with the GPL-free but slower integer-simple
- # library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
-}:
-
-stdenv.mkDerivation rec {
- version = "7.2.2";
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
- sha256 = "0g87d3z9275dniaqzkf56qfgzp1msd89nqqhhm2gkc6iga072spz";
- };
-
- patches = [ ./fix-7.2.2-clang.patch ./relocation.patch ];
-
- buildInputs = [ ghc perl ncurses ]
- ++ stdenv.lib.optional (!enableIntegerSimple) gmp;
-
- buildMK = ''
- libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include"
- libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib"
- ${stdenv.lib.optionalString stdenv.isDarwin ''
- libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include"
- libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib"
- ''}
- '' + (if enableIntegerSimple then ''
- INTEGER_LIBRARY=integer-simple
- '' else ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include"
- '');
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- find . -name '*.hs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
- find . -name '*.lhs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
- export NIX_LDFLAGS+=" -no_dtrace_dof"
- '';
-
- configureFlags = if stdenv.isDarwin then "--with-gcc=${./gcc-clang-wrapper.sh}"
- else "--with-gcc=${stdenv.cc}/bin/gcc";
-
- NIX_CFLAGS_COMPILE = "-fomit-frame-pointer";
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags=["-S" "--keep-file-symbols"];
-
- meta = {
- homepage = http://haskell.org/ghc;
- description = "The Glasgow Haskell Compiler";
- maintainers = [
- stdenv.lib.maintainers.marcweber
- stdenv.lib.maintainers.andres
- stdenv.lib.maintainers.peti
- ];
- platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
- inherit (ghc.meta) license;
- broken = true; # broken by 51cf42ad0d3ccb55af182f1f0ee5eb5094ea5995: https://hydra.nixos.org/build/60616815
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix
index 9d85253f630..4f00ef8fb75 100644
--- a/pkgs/development/compilers/ghc/7.4.2-binary.nix
+++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix
@@ -1,8 +1,21 @@
{ stdenv
-, fetchurl, perl, makeWrapper
+, fetchurl, perl
, ncurses5, gmp, libiconv
}:
+# Prebuilt only does native
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+
+let
+ libPath = stdenv.lib.makeLibraryPath ([
+ ncurses5 gmp
+ ] ++ stdenv.lib.optional (stdenv.hostPlatform.isDarwin) libiconv);
+
+ libEnvVar = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin "DY"
+ + "LD_LIBRARY_PATH";
+
+in
+
stdenv.mkDerivation rec {
version = "7.4.2";
@@ -28,7 +41,11 @@ stdenv.mkDerivation rec {
}.${stdenv.hostPlatform.system}
or (throw "cannot bootstrap GHC on this platform"));
- buildInputs = [perl];
+ nativeBuildInputs = [ perl ];
+
+ # Cannot patchelf beforehand due to relative RPATHs that anticipate
+ # the final install location/
+ ${libEnvVar} = libPath;
postUnpack =
# GHC has dtrace probes, which causes ld to try to open /usr/lib/libdtrace.dylib
@@ -57,14 +74,11 @@ stdenv.mkDerivation rec {
find . -name base.buildinfo \
-exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \;
'' +
- # On Linux, use patchelf to modify the executables so that they can
- # find editline/gmp.
+ # Rename needed libraries and binaries, fix interpreter
stdenv.lib.optionalString stdenv.isLinux ''
- mkdir -p "$out/lib"
- ln -sv "${ncurses5.out}/lib/libncurses.so" "$out/lib/libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5"
- find . -type f -perm -0100 \
- -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
- --set-rpath "${stdenv.lib.makeLibraryPath [ "$out" gmp ]}" {} \;
+ find . -type f -perm -0100 -exec patchelf \
+ --replace-needed libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5 libncurses.so \
+ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" {} \;
paxmark m ./ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
@@ -73,30 +87,13 @@ stdenv.mkDerivation rec {
for prog in ld ar gcc strip ranlib; do
find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \;
done
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- # not enough room in the object files for the full path to libiconv :(
- fix () {
- install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib $1
- }
-
- ln -s ${libiconv}/lib/libiconv.dylib ghc-${version}/utils/ghc-pwd/dist-install/build/tmp
- ln -s ${libiconv}/lib/libiconv.dylib ghc-${version}/utils/hpc/dist-install/build/tmp
- ln -s ${libiconv}/lib/libiconv.dylib ghc-${version}/ghc/stage2/build/tmp
-
- for file in ghc-cabal ghc-pwd ghc-stage2 ghc-pkg haddock hsc2hs hpc; do
- fix $(find . -type f -name $file)
- done
-
- for file in $(find . -name setup-config); do
- substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)"
- done
'';
- configurePhase = ''
- ./configure --prefix=$out \
- --with-gmp-libraries=${gmp.out or gmp}/lib --with-gmp-includes=${gmp.dev or gmp}/include \
- ${stdenv.lib.optionalString stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}"}
- '';
+ configurePlatforms = [ ];
+ configureFlags = [
+ "--with-gmp-libraries=${stdenv.lib.getLib gmp}/lib"
+ "--with-gmp-includes=${stdenv.lib.getDev gmp}/include"
+ ] ++ stdenv.lib.optional stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}";
# Stripping combined with patchelf breaks the executables (they die
# with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
@@ -106,15 +103,26 @@ stdenv.mkDerivation rec {
# calls install-strip ...
dontBuild = true;
- preInstall = stdenv.lib.optionalString stdenv.isDarwin ''
- mkdir -p $out/lib/ghc-${version}
- mkdir -p $out/bin
- ln -s ${libiconv}/lib/libiconv.dylib $out/bin
- ln -s ${libiconv}/lib/libiconv.dylib $out/lib/ghc-${version}/libiconv.dylib
- ln -s ${libiconv}/lib/libiconv.dylib utils/ghc-cabal/dist-install/build/tmp
+ # On Linux, use patchelf to modify the executables so that they can
+ # find editline/gmp.
+ preFixup = stdenv.lib.optionalString stdenv.isLinux ''
+ find "$out" -type f -executable \
+ -exec patchelf --set-rpath "${libPath}" {} \;
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ # not enough room in the object files for the full path to libiconv :(
+ for exe in $(find "$out" -type f -executable); do
+ isScript $exe && continue
+ ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib
+ install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib $exe
+ done
+
+ for file in $(find "$out" -name setup-config); do
+ substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)"
+ done
'';
- postInstall = ''
+ doInstallCheck = true;
+ installCheckPhase = ''
# Sanity check, can ghc create executables?
cd $TMP
mkdir test-ghc; cd test-ghc
@@ -128,6 +136,13 @@ stdenv.mkDerivation rec {
[ $(./main) == "yes" ]
'';
+ passthru = {
+ targetPrefix = "";
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
+ };
+
meta.license = stdenv.lib.licenses.bsd3;
meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"];
}
diff --git a/pkgs/development/compilers/ghc/7.4.2.nix b/pkgs/development/compilers/ghc/7.4.2.nix
index e5bc4724c9e..7f636284c68 100644
--- a/pkgs/development/compilers/ghc/7.4.2.nix
+++ b/pkgs/development/compilers/ghc/7.4.2.nix
@@ -1,17 +1,21 @@
{ stdenv, fetchurl, ghc, perl, ncurses, libiconv
- # If enabled GHC will be build with the GPL-free but slower integer-simple
+, # If enabled, GHC will be built with the GPL-free but slower integer-simple
# library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
+ enableIntegerSimple ? false, gmp ? null
}:
+# TODO(@Ericson2314): Cross compilation support
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+assert !enableIntegerSimple -> gmp != null;
+
stdenv.mkDerivation rec {
version = "7.4.2";
name = "ghc-${version}";
src = fetchurl {
- url = "http://haskell.org/ghc/dist/7.4.2/${name}-src.tar.bz2";
+ url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.bz2";
sha256 = "0vc3zmxqi4gflssmj35n5c8idbvyrhd88abi50whbirwlf4i5vpj";
};
@@ -28,17 +32,17 @@ stdenv.mkDerivation rec {
libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib"
''}
'' + (if enableIntegerSimple then ''
- INTEGER_LIBRARY=integer-simple
+ INTEGER_LIBRARY = integer-simple
'' else ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include"
'');
preConfigure = ''
- echo "${buildMK}" > mk/build.mk
+ echo -n "${buildMK}" > mk/build.mk
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
'' + stdenv.lib.optionalString stdenv.isDarwin ''
find . -name '*.hs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
find . -name '*.lhs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
@@ -52,6 +56,13 @@ stdenv.mkDerivation rec {
# that in turn causes GHCi to abort
stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
+ passthru = {
+ targetPrefix = "";
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
+ };
+
meta = {
homepage = http://haskell.org/ghc;
description = "The Glasgow Haskell Compiler";
diff --git a/pkgs/development/compilers/ghc/7.6.3.nix b/pkgs/development/compilers/ghc/7.6.3.nix
index fde4ca2aa37..481b8d90918 100644
--- a/pkgs/development/compilers/ghc/7.6.3.nix
+++ b/pkgs/development/compilers/ghc/7.6.3.nix
@@ -1,10 +1,14 @@
{ stdenv, fetchurl, ghc, perl, ncurses, libiconv
- # If enabled GHC will be build with the GPL-free but slower integer-simple
+, # If enabled, GHC will be built with the GPL-free but slower integer-simple
# library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
+ enableIntegerSimple ? false, gmp ? null
}:
+# TODO(@Ericson2314): Cross compilation support
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+assert !enableIntegerSimple -> gmp != null;
+
let
# The "-Wa,--noexecstack" options might be needed only with GNU ld (as opposed
# to the gold linker). It prevents binaries' stacks from being marked as
@@ -18,7 +22,7 @@ in stdenv.mkDerivation rec {
name = "ghc-${version}";
src = fetchurl {
- url = "http://haskell.org/ghc/dist/${version}/${name}-src.tar.bz2";
+ url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.bz2";
sha256 = "1669m8k9q72rpd2mzs0bh2q6lcwqiwd1ax3vrard1dgn64yq4hxx";
};
@@ -39,14 +43,14 @@ in stdenv.mkDerivation rec {
SRC_HC_OPTS += ${ghcFlags}
SRC_CC_OPTS += ${cFlags}
'' + (if enableIntegerSimple then ''
- INTEGER_LIBRARY=integer-simple
+ INTEGER_LIBRARY = integer-simple
'' else ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include"
'');
preConfigure = ''
- echo "${buildMK}" > mk/build.mk
+ echo -n "${buildMK}" > mk/build.mk
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString stdenv.isLinux ''
@@ -54,7 +58,7 @@ in stdenv.mkDerivation rec {
sed -i -e 's|"\$topdir"|"\$topdir" ${ghcFlags}|' ghc/ghc.wrapper
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
'' + stdenv.lib.optionalString stdenv.isDarwin ''
find . -name '*.hs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
find . -name '*.lhs' | xargs sed -i -e 's|ASSERT (|ASSERT(|' -e 's|ASSERT2 (|ASSERT2(|' -e 's|WARN (|WARN(|'
@@ -78,6 +82,13 @@ in stdenv.mkDerivation rec {
# that in turn causes GHCi to abort
stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
+ passthru = {
+ targetPrefix = "";
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
+ };
+
meta = {
homepage = http://haskell.org/ghc;
description = "The Glasgow Haskell Compiler";
diff --git a/pkgs/development/compilers/ghc/7.8.3.nix b/pkgs/development/compilers/ghc/7.8.3.nix
deleted file mode 100644
index 50b0108861f..00000000000
--- a/pkgs/development/compilers/ghc/7.8.3.nix
+++ /dev/null
@@ -1,59 +0,0 @@
-{ stdenv, fetchurl, ghc, perl, ncurses, libiconv
-
- # If enabled GHC will be build with the GPL-free but slower integer-simple
- # library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
-}:
-
-stdenv.mkDerivation rec {
- version = "7.8.3";
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://www.haskell.org/ghc/dist/${version}/${name}-src.tar.xz";
- sha256 = "0n5rhwl83yv8qm0zrbaxnyrf8x1i3b6si927518mwfxs96jrdkdh";
- };
-
- patches = [ ./relocation.patch ];
-
- buildInputs = [ ghc perl ncurses ]
- ++ stdenv.lib.optional (!enableIntegerSimple) gmp;
-
- enableParallelBuilding = true;
-
- buildMK = ''
- libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include"
- libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib"
- DYNAMIC_BY_DEFAULT = NO
- ${stdenv.lib.optionalString stdenv.isDarwin ''
- libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include"
- libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib"
- ''}
- '' + (if enableIntegerSimple then ''
- INTEGER_LIBRARY=integer-simple
- '' else ''
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib"
- libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include"
- '');
-
- preConfigure = ''
- echo "${buildMK}" > mk/build.mk
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- export NIX_LDFLAGS+=" -no_dtrace_dof"
- '';
-
- # required, because otherwise all symbols from HSffi.o are stripped, and
- # that in turn causes GHCi to abort
- stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
-
- meta = {
- homepage = http://haskell.org/ghc;
- description = "The Glasgow Haskell Compiler";
- maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
- inherit (ghc.meta) license platforms;
- };
-
-}
diff --git a/pkgs/development/compilers/ghc/7.8.4-binary.nix b/pkgs/development/compilers/ghc/7.8.4-binary.nix
new file mode 100644
index 00000000000..58a9370b321
--- /dev/null
+++ b/pkgs/development/compilers/ghc/7.8.4-binary.nix
@@ -0,0 +1,156 @@
+{ stdenv
+, fetchurl, perl
+, ncurses5, gmp, libiconv
+}:
+
+# Prebuilt only does native
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+
+let
+ libPath = stdenv.lib.makeLibraryPath ([
+ ncurses5 gmp
+ ] ++ stdenv.lib.optional (stdenv.hostPlatform.isDarwin) libiconv);
+
+ libEnvVar = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin "DY"
+ + "LD_LIBRARY_PATH";
+
+in
+
+stdenv.mkDerivation rec {
+ version = "7.8.4";
+
+ name = "ghc-${version}-binary";
+
+ src = fetchurl ({
+ "i686-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-unknown-linux-deb7.tar.bz2";
+ sha256 = "5da2cf45986f33319a92a666f1f0149915334a7b64b41892ab94f4557242b406";
+ };
+ "x86_64-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-unknown-linux-deb7.tar.bz2";
+ sha256 = "20b5731d268613bbf6e977dbb192a3a3b7b78d954c35edbfca4fb36b652e24f7";
+ };
+ "x86_64-darwin" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-apple-darwin.tar.bz2";
+ sha256 = "dfa161c2a136ee16214a49d5902e2377407c8292dbbdbb14fa0fa6b17220cae6";
+ };
+ }.${stdenv.hostPlatform.system}
+ or (throw "cannot bootstrap GHC on this platform"));
+
+ nativeBuildInputs = [ perl ];
+
+ # Cannot patchelf beforehand due to relative RPATHs that anticipate
+ # the final install location/
+ ${libEnvVar} = libPath;
+
+ postUnpack =
+ # GHC has dtrace probes, which causes ld to try to open /usr/lib/libdtrace.dylib
+ # during linking
+ stdenv.lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS+=" -no_dtrace_dof"
+ # not enough room in the object files for the full path to libiconv :(
+ for exe in $(find . -type f -executable); do
+ isScript $exe && continue
+ ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib
+ install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib $exe
+ for file in $(find . -name setup-config); do
+ substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)"
+ done
+ done
+ '' +
+
+ # Some scripts used during the build need to have their shebangs patched
+ ''
+ patchShebangs ghc-${version}/utils/
+ '' +
+
+ # Strip is harmful, see also below. It's important that this happens
+ # first. The GHC Cabal build system makes use of strip by default and
+ # has hardcoded paths to /usr/bin/strip in many places. We replace
+ # those below, making them point to our dummy script.
+ ''
+ mkdir "$TMP/bin"
+ for i in strip; do
+ echo '#! ${stdenv.shell}' > "$TMP/bin/$i"
+ chmod +x "$TMP/bin/$i"
+ done
+ PATH="$TMP/bin:$PATH"
+ '' +
+ # We have to patch the GMP paths for the integer-gmp package.
+ ''
+ find . -name integer-gmp.buildinfo \
+ -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp.out}/lib@" {} \;
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ find . -name base.buildinfo \
+ -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \;
+ '' +
+ # Rename needed libraries and binaries, fix interpreter
+ stdenv.lib.optionalString stdenv.isLinux ''
+ find . -type f -perm -0100 -exec patchelf \
+ --replace-needed libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5 libncurses.so \
+ --replace-needed libtinfo.so libtinfo.so.5 \
+ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" {} \;
+
+ paxmark m ./ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+
+ sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+ sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+ '';
+
+ configurePlatforms = [ ];
+ configureFlags = [
+ "--with-gmp-libraries=${stdenv.lib.getLib gmp}/lib"
+ "--with-gmp-includes=${stdenv.lib.getDev gmp}/include"
+ ] ++ stdenv.lib.optional stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}";
+
+ # Stripping combined with patchelf breaks the executables (they die
+ # with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
+ dontStrip = true;
+
+ # No building is necessary, but calling make without flags ironically
+ # calls install-strip ...
+ dontBuild = true;
+
+ # On Linux, use patchelf to modify the executables so that they can
+ # find editline/gmp.
+ preFixup = stdenv.lib.optionalString stdenv.isLinux ''
+ for p in $(find "$out" -type f -executable); do
+ if isELF "$p"; then
+ echo "Patchelfing $p"
+ patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $p)" $p
+ fi
+ done
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ # not enough room in the object files for the full path to libiconv :(
+ for exe in $(find "$out" -type f -executable); do
+ isScript $exe && continue
+ ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib
+ install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib $exe
+ done
+
+ for file in $(find "$out" -name setup-config); do
+ substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)"
+ done
+ '';
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ unset ${libEnvVar}
+ # Sanity check, can ghc create executables?
+ cd $TMP
+ mkdir test-ghc; cd test-ghc
+ cat > main.hs << EOF
+ {-# LANGUAGE TemplateHaskell #-}
+ module Main where
+ main = putStrLn \$([|"yes"|])
+ EOF
+ $out/bin/ghc --make main.hs || exit 1
+ echo compilation ok
+ [ $(./main) == "yes" ]
+ '';
+
+ passthru = { targetPrefix = ""; };
+
+ meta.license = stdenv.lib.licenses.bsd3;
+ meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"];
+}
diff --git a/pkgs/development/compilers/ghc/7.8.4.nix b/pkgs/development/compilers/ghc/7.8.4.nix
index 5a380c75c69..15f105946f5 100644
--- a/pkgs/development/compilers/ghc/7.8.4.nix
+++ b/pkgs/development/compilers/ghc/7.8.4.nix
@@ -1,54 +1,86 @@
-{ stdenv, fetchurl, ghc, perl, ncurses, libiconv
+{ stdenv, targetPackages
- # If enabled GHC will be build with the GPL-free but slower integer-simple
+, fetchurl, ghc, perl
+, libffi, libiconv ? null, ncurses
+
+, # If enabled, GHC will be built with the GPL-free but slower integer-simple
# library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
+ enableIntegerSimple ? false, gmp ? null
}:
-stdenv.mkDerivation (rec {
- version = "7.8.4";
- name = "ghc-${version}";
-
- src = fetchurl {
- url = "http://www.haskell.org/ghc/dist/7.8.4/${name}-src.tar.xz";
- sha256 = "1i4254akbb4ym437rf469gc0m40bxm31blp6s1z1g15jmnacs6f3";
- };
-
- patches = [ ./relocation.patch ];
-
- buildInputs = [ ghc perl ncurses ]
- ++ stdenv.lib.optional (!enableIntegerSimple) gmp;
-
- enableParallelBuilding = true;
+# TODO(@Ericson2314): Cross compilation support
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+assert !enableIntegerSimple -> gmp != null;
+let
buildMK = ''
libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include"
libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib"
DYNAMIC_BY_DEFAULT = NO
- ${stdenv.lib.optionalString stdenv.isDarwin ''
+ ${stdenv.lib.optionalString (stdenv.hostPlatform.libc != "glibc") ''
libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include"
libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib"
''}
'' + (if enableIntegerSimple then ''
- INTEGER_LIBRARY=integer-simple
+ INTEGER_LIBRARY = integer-simple
'' else ''
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib"
libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include"
'');
+ # Splicer will pull out correct variations
+ libDeps = [ ncurses ]
+ ++ stdenv.lib.optional (!enableIntegerSimple) gmp
+ ++ stdenv.lib.optional (stdenv.hostPlatform.libc != "glibc") libiconv;
+
+in
+
+stdenv.mkDerivation rec {
+ version = "7.8.4";
+ name = "ghc-${version}";
+
+ src = fetchurl {
+ url = "http://www.haskell.org/ghc/dist/${version}/${name}-src.tar.xz";
+ sha256 = "1i4254akbb4ym437rf469gc0m40bxm31blp6s1z1g15jmnacs6f3";
+ };
+
+ enableParallelBuilding = true;
+
+ patches = [ ./relocation.patch ]
+ ++ stdenv.lib.optional stdenv.isDarwin ./hpc-7.8.4.patch;
+
preConfigure = ''
- echo "${buildMK}" > mk/build.mk
+ echo -n "${buildMK}" > mk/build.mk
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
'' + stdenv.lib.optionalString stdenv.isDarwin ''
export NIX_LDFLAGS+=" -no_dtrace_dof"
'';
+ # TODO(@Ericson2314): Always pass "--target" and always prefix.
+ configurePlatforms = [ "build" "host" ];
+
+ nativeBuildInputs = [ ghc perl ];
+ depsBuildTarget = [ targetPackages.stdenv.cc ];
+
+ buildInputs = libDeps;
+ propagatedBuildInputs = [ targetPackages.stdenv.cc ];
+
+ depsTargetTarget = map stdenv.lib.getDev libDeps;
+ depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") libDeps;
+
# required, because otherwise all symbols from HSffi.o are stripped, and
# that in turn causes GHCi to abort
stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
+ passthru = {
+ targetPrefix = "";
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
+ };
+
meta = {
homepage = http://haskell.org/ghc;
description = "The Glasgow Haskell Compiler";
@@ -56,7 +88,4 @@ stdenv.mkDerivation (rec {
inherit (ghc.meta) license platforms;
};
-} // stdenv.lib.optionalAttrs stdenv.isDarwin {
- # https://ghc.haskell.org/trac/ghc/ticket/9762
- patches = [ ./hpc-7.8.4.patch ];
-})
+}
diff --git a/pkgs/development/compilers/ghc/8.0.2.nix b/pkgs/development/compilers/ghc/8.0.2.nix
index d475e3438b4..011822994ed 100644
--- a/pkgs/development/compilers/ghc/8.0.2.nix
+++ b/pkgs/development/compilers/ghc/8.0.2.nix
@@ -1,65 +1,162 @@
-{ stdenv, lib, fetchurl, fetchpatch, bootPkgs, perl, ncurses, libiconv, targetPackages, coreutils
-, hscolour, patchutils, sphinx
+{ stdenv, targetPackages
+, buildPlatform, hostPlatform, targetPlatform
- # If enabled GHC will be build with the GPL-free but slower integer-simple
+# build-tools
+, bootPkgs, hscolour
+, coreutils, fetchpatch, fetchurl, perl, sphinx
+
+, libffi, libiconv ? null, ncurses
+
+, useLLVM ? !targetPlatform.isx86
+, # LLVM is conceptually a run-time-only depedendency, but for
+ # non-x86, we need LLVM to bootstrap later stages, so it becomes a
+ # build-time dependency too.
+ buildLlvmPackages, llvmPackages
+
+, # If enabled, GHC will be built with the GPL-free but slower integer-simple
# library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
-, cross ? null
+ enableIntegerSimple ? false, gmp ? null
+
+, # If enabled, use -fPIC when compiling static libs.
+ enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+
+, # Whether to build dynamic libs for the standard library (on the target
+ # platform). Static libs are always built.
+ enableShared ? true
}:
+assert !enableIntegerSimple -> gmp != null;
+
let
inherit (bootPkgs) ghc;
+
+ # TODO(@Ericson2314) Make unconditional
+ targetPrefix = stdenv.lib.optionalString
+ (targetPlatform != hostPlatform)
+ "${targetPlatform.config}-";
+
+ buildMK = ''
+ DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"}
+ '' + stdenv.lib.optionalString enableIntegerSimple ''
+ INTEGER_LIBRARY = integer-simple
+ '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
+ BuildFlavour = perf-cross
+ Stage1Only = YES
+ HADDOCK_DOCS = NO
+ '' + stdenv.lib.optionalString enableRelocatedStaticLibs ''
+ GhcLibHcOpts += -fPIC
+ GhcRtsHcOpts += -fPIC
+ '';
+
+ # Splicer will pull out correct variations
+ libDeps = platform: [ ncurses ]
+ ++ stdenv.lib.optional (!enableIntegerSimple) gmp
+ ++ stdenv.lib.optional (platform.libc != "glibc") libiconv;
+
+ toolsForTarget =
+ if hostPlatform == buildPlatform then
+ [ targetPackages.stdenv.cc ] ++ stdenv.lib.optional useLLVM llvmPackages.llvm
+ else assert targetPlatform == hostPlatform; # build != host == target
+ [ stdenv.cc ] ++ stdenv.lib.optional useLLVM buildLlvmPackages.llvm;
+
+ targetCC = builtins.head toolsForTarget;
+
in
stdenv.mkDerivation rec {
version = "8.0.2";
- name = "ghc-${version}";
+ name = "${targetPrefix}ghc-${version}";
src = fetchurl {
- url = "https://downloads.haskell.org/~ghc/8.0.2/${name}-src.tar.xz";
+ url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
sha256 = "1c8qc4fhkycynk4g1f9hvk53dj6a1vvqi6bklqznns6hw59m8qhi";
};
- patches = [ ./ghc-gold-linker.patch ]
- ++ stdenv.lib.optional stdenv.isLinux ./ghc-no-madv-free.patch
- ++ stdenv.lib.optional stdenv.isDarwin ./ghc-8.0.2-no-cpp-warnings.patch;
-
- buildInputs = [ ghc perl hscolour sphinx ];
-
enableParallelBuilding = true;
outputs = [ "out" "man" "doc" ];
+ patches = [
+ ./ghc-gold-linker.patch
+ (fetchpatch { # Unreleased 1.24.x commit
+ url = "https://github.com/haskell/cabal/commit/6394cb0b6eba91a8692a3d04b2b56935aed7cccd.patch";
+ sha256 = "14xxjg0nb1j1pw0riac3v385ka92qhxxblfmwyvbghz7kry6axy0";
+ stripLen = 1;
+ extraPrefix = "libraries/Cabal/";
+ })
+ ] ++ stdenv.lib.optional stdenv.isLinux ./ghc-no-madv-free.patch
+ ++ stdenv.lib.optional stdenv.isDarwin ./ghc-8.0.2-no-cpp-warnings.patch;
+
+ # GHC is a bit confused on its cross terminology.
preConfigure = ''
+ for env in $(env | grep '^TARGET_' | sed -E 's|\+?=.*||'); do
+ export "''${env#TARGET_}=''${!env}"
+ done
+ # GHC is a bit confused on its cross terminology, as these would normally be
+ # the *host* tools.
+ export CC="${targetCC}/bin/${targetCC.targetPrefix}cc"
+ export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx"
+ export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld"
+ export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+ export AR="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ar"
+ export NM="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}nm"
+ export RANLIB="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ranlib"
+ export READELF="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}readelf"
+ export STRIP="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}strip"
+ echo -n "${buildMK}" > mk/build.mk
sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
'' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
'' + stdenv.lib.optionalString stdenv.isDarwin ''
export NIX_LDFLAGS+=" -no_dtrace_dof"
- '' + stdenv.lib.optionalString enableIntegerSimple ''
- echo "INTEGER_LIBRARY=integer-simple" > mk/build.mk
'';
+ # TODO(@Ericson2314): Always pass "--target" and always prefix.
+ configurePlatforms = [ "build" "host" ]
+ ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
+ # `--with` flags for libraries needed for RTS linker
configureFlags = [
- "--with-gcc=${stdenv.cc}/bin/cc"
- "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
"--datadir=$doc/share/doc/ghc"
- ] ++ stdenv.lib.optional (! enableIntegerSimple) [
+ "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && ! enableIntegerSimple) [
"--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
- ] ++ stdenv.lib.optional stdenv.isDarwin [
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && hostPlatform.libc != "glibc") [
"--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
- ] ++
+ ] ++ stdenv.lib.optionals (targetPlatform != hostPlatform) [
+ "--enable-bootstrap-with-devel-snapshot"
+ ] ++ stdenv.lib.optionals (targetPlatform.isDarwin && targetPlatform.isAarch64) [
# fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/
- lib.optional (cross.config or null == "aarch64-apple-darwin14") "--disable-large-address-space";
+ "--disable-large-address-space"
+ ];
+
+ # Hack to make sure we never to the relaxation `$PATH` and hooks support for
+ # compatability. This will be replaced with something clearer in a future
+ # masss-rebuild.
+ crossConfig = true;
+
+ nativeBuildInputs = [ ghc perl hscolour sphinx ];
+
+ # For building runtime libs
+ depsBuildTarget = toolsForTarget;
+
+ buildInputs = libDeps hostPlatform;
+
+ propagatedBuildInputs = [ targetPackages.stdenv.cc ]
+ ++ stdenv.lib.optional useLLVM llvmPackages.llvm;
+
+ depsTargetTarget = map stdenv.lib.getDev (libDeps targetPlatform);
+ depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") (libDeps targetPlatform);
# required, because otherwise all symbols from HSffi.o are stripped, and
# that in turn causes GHCi to abort
- stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
+ stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!targetPlatform.isDarwin) "--keep-file-symbols";
+ # zsh and other shells are smart about `{ghc}` but bash isn't, and doesn't
+ # treat that as a unary `{x,y,z,..}` repetition.
postInstall = ''
- paxmark m $out/lib/${name}/bin/{ghc,haddock}
+ paxmark m $out/lib/${name}/bin/${if targetPlatform != hostPlatform then "ghc" else "{ghc,haddock}"}
# Install the bash completion file.
- install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/ghc
+ install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/${targetPrefix}ghc
# Patch scripts to include "readelf" and "cat" in $PATH.
for i in "$out/bin/"*; do
@@ -70,7 +167,12 @@ stdenv.mkDerivation rec {
'';
passthru = {
- inherit bootPkgs;
+ inherit bootPkgs targetPrefix;
+
+ inherit llvmPackages;
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
};
meta = {
diff --git a/pkgs/development/compilers/ghc/8.2.1-binary.nix b/pkgs/development/compilers/ghc/8.2.1-binary.nix
new file mode 100644
index 00000000000..8a08ab4b986
--- /dev/null
+++ b/pkgs/development/compilers/ghc/8.2.1-binary.nix
@@ -0,0 +1,162 @@
+{ stdenv
+, fetchurl, perl, gcc, llvm_39
+, ncurses5, gmp, libiconv
+}:
+
+# Prebuilt only does native
+assert stdenv.targetPlatform == stdenv.hostPlatform;
+
+let
+ libPath = stdenv.lib.makeLibraryPath ([
+ ncurses5 gmp
+ ] ++ stdenv.lib.optional (stdenv.hostPlatform.isDarwin) libiconv);
+
+ libEnvVar = stdenv.lib.optionalString stdenv.hostPlatform.isDarwin "DY"
+ + "LD_LIBRARY_PATH";
+
+in
+
+stdenv.mkDerivation rec {
+ version = "8.2.1";
+
+ name = "ghc-${version}-binary";
+
+ src = fetchurl ({
+ "i686-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-deb8-linux.tar.xz";
+ sha256 = "d86f9c157dd4161a8acb14062c131c8985a4f65fc856603c373502be1d50c95e";
+ };
+ "x86_64-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-deb8-linux.tar.xz";
+ sha256 = "543b81bf610240bd0398111d6c6607a9094dc2d159b564057d46c8a3d1aaa130";
+ };
+ "armv7l-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-armv7-deb8-linux.tar.xz";
+ sha256 = "0f0e5e1d4fad3fa1a87ca1fe0d19242f4a94d158b7b8a08f99efefd98b51b019";
+ };
+ "aarch64-linux" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-aarch64-deb8-linux.tar.xz";
+ sha256 = "61dab9c95ef9f9af8bce7338863fda3e42945eb46194b12d922b6d0dc245d0c2";
+ };
+ "x86_64-darwin" = {
+ url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-apple-darwin.tar.xz";
+ sha256 = "900c802025fb630060dbd30f9738e5d107a4ca5a50d5c1262cd3e69fe4467188";
+ };
+ }.${stdenv.hostPlatform.system}
+ or (throw "cannot bootstrap GHC on this platform"));
+
+ nativeBuildInputs = [ perl ];
+ buildInputs = stdenv.lib.optionals (stdenv.targetPlatform.isArm || stdenv.targetPlatform.isAarch64) [ llvm_39 ];
+
+ # Cannot patchelf beforehand due to relative RPATHs that anticipate
+ # the final install location/
+ ${libEnvVar} = libPath;
+
+ postUnpack =
+ # GHC has dtrace probes, which causes ld to try to open /usr/lib/libdtrace.dylib
+ # during linking
+ stdenv.lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS+=" -no_dtrace_dof"
+ # not enough room in the object files for the full path to libiconv :(
+ for exe in $(find . -type f -executable); do
+ isScript $exe && continue
+ ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib
+ install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib -change /usr/local/lib/gcc/6/libgcc_s.1.dylib ${gcc.cc.lib}/lib/libgcc_s.1.dylib $exe
+ done
+ '' +
+
+ # Some scripts used during the build need to have their shebangs patched
+ ''
+ patchShebangs ghc-${version}/utils/
+ '' +
+
+ # Strip is harmful, see also below. It's important that this happens
+ # first. The GHC Cabal build system makes use of strip by default and
+ # has hardcoded paths to /usr/bin/strip in many places. We replace
+ # those below, making them point to our dummy script.
+ ''
+ mkdir "$TMP/bin"
+ for i in strip; do
+ echo '#! ${stdenv.shell}' > "$TMP/bin/$i"
+ chmod +x "$TMP/bin/$i"
+ done
+ PATH="$TMP/bin:$PATH"
+ '' +
+ # We have to patch the GMP paths for the integer-gmp package.
+ ''
+ find . -name integer-gmp.buildinfo \
+ -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp.out}/lib@" {} \;
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ find . -name base.buildinfo \
+ -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \;
+ '' +
+ # Rename needed libraries and binaries, fix interpreter
+ stdenv.lib.optionalString stdenv.isLinux ''
+ find . -type f -perm -0100 -exec patchelf \
+ --replace-needed libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5 libncurses.so \
+ --replace-needed libtinfo.so libtinfo.so.5 \
+ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" {} \;
+
+ paxmark m ./ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+
+ sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+ sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2
+ '';
+
+ configurePlatforms = [ ];
+ configureFlags = [
+ "--with-gmp-libraries=${stdenv.lib.getLib gmp}/lib"
+ "--with-gmp-includes=${stdenv.lib.getDev gmp}/include"
+ ] ++ stdenv.lib.optional stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}";
+
+ # Stripping combined with patchelf breaks the executables (they die
+ # with a segfault or the kernel even refuses the execve). (NIXPKGS-85)
+ dontStrip = true;
+
+ # No building is necessary, but calling make without flags ironically
+ # calls install-strip ...
+ dontBuild = true;
+
+ # On Linux, use patchelf to modify the executables so that they can
+ # find editline/gmp.
+ preFixup = stdenv.lib.optionalString stdenv.isLinux ''
+ for p in $(find "$out" -type f -executable); do
+ if isELF "$p"; then
+ echo "Patchelfing $p"
+ patchelf --set-rpath "${libPath}:$(patchelf --print-rpath $p)" $p
+ fi
+ done
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ # not enough room in the object files for the full path to libiconv :(
+ for exe in $(find "$out" -type f -executable); do
+ isScript $exe && continue
+ ln -fs ${libiconv}/lib/libiconv.dylib $(dirname $exe)/libiconv.dylib
+ install_name_tool -change /usr/lib/libiconv.2.dylib @executable_path/libiconv.dylib -change /usr/local/lib/gcc/6/libgcc_s.1.dylib ${gcc.cc.lib}/lib/libgcc_s.1.dylib $exe
+ done
+
+ for file in $(find "$out" -name setup-config); do
+ substituteInPlace $file --replace /usr/bin/ranlib "$(type -P ranlib)"
+ done
+ '';
+
+ doInstallCheck = true;
+ installCheckPhase = ''
+ unset ${libEnvVar}
+ # Sanity check, can ghc create executables?
+ cd $TMP
+ mkdir test-ghc; cd test-ghc
+ cat > main.hs << EOF
+ {-# LANGUAGE TemplateHaskell #-}
+ module Main where
+ main = putStrLn \$([|"yes"|])
+ EOF
+ $out/bin/ghc --make main.hs || exit 1
+ echo compilation ok
+ [ $(./main) == "yes" ]
+ '';
+
+ passthru = { targetPrefix = ""; };
+
+ meta.license = stdenv.lib.licenses.bsd3;
+ meta.platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin" "armv7l-linux" "aarch64-linux"];
+}
diff --git a/pkgs/development/compilers/ghc/8.2.2.nix b/pkgs/development/compilers/ghc/8.2.2.nix
index 736a6edc365..8b62bbffcc8 100644
--- a/pkgs/development/compilers/ghc/8.2.2.nix
+++ b/pkgs/development/compilers/ghc/8.2.2.nix
@@ -1,82 +1,189 @@
-{ stdenv, lib, fetchurl, bootPkgs, perl, ncurses, libiconv, binutils, coreutils
-, autoconf, automake, happy, alex, python3, sphinx, hscolour
-, buildPlatform, targetPlatform , selfPkgs, cross ? null
+{ stdenv, targetPackages
+, buildPlatform, hostPlatform, targetPlatform
- # If enabled GHC will be build with the GPL-free but slower integer-simple
+# build-tools
+, bootPkgs, alex, happy, hscolour
+, autoconf, autoreconfHook, automake, coreutils, fetchurl, fetchpatch, perl, python3, sphinx
+
+, libffi, libiconv ? null, ncurses
+
+, useLLVM ? !targetPlatform.isx86
+, # LLVM is conceptually a run-time-only depedendency, but for
+ # non-x86, we need LLVM to bootstrap later stages, so it becomes a
+ # build-time dependency too.
+ buildLlvmPackages, llvmPackages
+
+, # If enabled, GHC will be built with the GPL-free but slower integer-simple
# library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
+ enableIntegerSimple ? false, gmp ? null
+
+, # If enabled, use -fPIC when compiling static libs.
+ enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+
+, # Whether to build dynamic libs for the standard library (on the target
+ # platform). Static libs are always built.
+ enableShared ?
+ !(targetPlatform.isDarwin
+ # On iOS, dynamic linking is not supported
+ && (targetPlatform.isAarch64 || targetPlatform.isArm))
}:
+assert !enableIntegerSimple -> gmp != null;
+
let
inherit (bootPkgs) ghc;
- version = "8.2.2";
- commonBuildInputs = [ alex autoconf automake ghc happy hscolour perl python3 sphinx ];
- commonPreConfigure = ''
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- export NIX_LDFLAGS+=" -no_dtrace_dof"
+ # TODO(@Ericson2314) Make unconditional
+ targetPrefix = stdenv.lib.optionalString
+ (targetPlatform != hostPlatform)
+ "${targetPlatform.config}-";
+
+ buildMK = ''
+ DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"}
'' + stdenv.lib.optionalString enableIntegerSimple ''
- echo "INTEGER_LIBRARY=integer-simple" > mk/build.mk
+ INTEGER_LIBRARY = integer-simple
+ '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
+ BuildFlavour = perf-cross
+ Stage1Only = YES
+ HADDOCK_DOCS = NO
+ BUILD_SPHINX_HTML = NO
+ BUILD_SPHINX_PDF = NO
+ '' + stdenv.lib.optionalString enableRelocatedStaticLibs ''
+ GhcLibHcOpts += -fPIC
+ GhcRtsHcOpts += -fPIC
'';
-in stdenv.mkDerivation (rec {
- inherit version;
- name = "ghc-${version}";
+
+ # Splicer will pull out correct variations
+ libDeps = platform: [ ncurses ]
+ ++ stdenv.lib.optional (!enableIntegerSimple) gmp
+ ++ stdenv.lib.optional (platform.libc != "glibc") libiconv;
+
+ toolsForTarget =
+ if hostPlatform == buildPlatform then
+ [ targetPackages.stdenv.cc ] ++ stdenv.lib.optional useLLVM llvmPackages.llvm
+ else assert targetPlatform == hostPlatform; # build != host == target
+ [ stdenv.cc ] ++ stdenv.lib.optional useLLVM buildLlvmPackages.llvm;
+
+ targetCC = builtins.head toolsForTarget;
+
+in
+stdenv.mkDerivation rec {
+ version = "8.2.2";
+ name = "${targetPrefix}ghc-${version}";
src = fetchurl {
- url = "https://downloads.haskell.org/~ghc/8.2.2/${name}-src.tar.xz";
+ url = "https://downloads.haskell.org/~ghc/${version}/ghc-${version}-src.tar.xz";
sha256 = "1z05vkpaj54xdypmaml50hgsdpw29dhbs2r7magx0cm199iw73mv";
};
- postPatch = "patchShebangs .";
-
- preConfigure = commonPreConfigure;
-
- buildInputs = commonBuildInputs;
-
enableParallelBuilding = true;
- configureFlags = [
- "CC=${stdenv.cc}/bin/cc"
- "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
- "--datadir=$doc/share/doc/ghc"
- ] ++ stdenv.lib.optional (! enableIntegerSimple) [
- "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
- ] ++ stdenv.lib.optional stdenv.isDarwin [
- "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
+ outputs = [ "out" "doc" ];
+
+ patches = [
+ (fetchpatch { # Fix STRIP to be substituted from configure
+ url = "https://git.haskell.org/ghc.git/commitdiff_plain/2fc8ce5f0c8c81771c26266ac0b150ca9b75c5f3";
+ sha256 = "03253ci40np1v6k0wmi4aypj3nmj3rdyvb1k6rwqipb30nfc719f";
+ })
];
+ postPatch = "patchShebangs .";
+
+ # GHC is a bit confused on its cross terminology.
+ preConfigure = ''
+ for env in $(env | grep '^TARGET_' | sed -E 's|\+?=.*||'); do
+ export "''${env#TARGET_}=''${!env}"
+ done
+ # GHC is a bit confused on its cross terminology, as these would normally be
+ # the *host* tools.
+ export CC="${targetCC}/bin/${targetCC.targetPrefix}cc"
+ export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx"
+ # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177
+ export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${stdenv.lib.optionalString targetPlatform.isArm ".gold"}"
+ export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+ export AR="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ar"
+ export NM="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}nm"
+ export RANLIB="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ranlib"
+ export READELF="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}readelf"
+ export STRIP="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}strip"
+
+ echo -n "${buildMK}" > mk/build.mk
+ sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
+ '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS+=" -no_dtrace_dof"
+ '';
+
+ # TODO(@Ericson2314): Always pass "--target" and always prefix.
+ configurePlatforms = [ "build" "host" ]
+ ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
+ # `--with` flags for libraries needed for RTS linker
+ configureFlags = [
+ "--datadir=$doc/share/doc/ghc"
+ "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && ! enableIntegerSimple) [
+ "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && hostPlatform.libc != "glibc") [
+ "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
+ ] ++ stdenv.lib.optionals (targetPlatform != hostPlatform) [
+ "--enable-bootstrap-with-devel-snapshot"
+ ] ++ stdenv.lib.optionals (targetPlatform.isArm) [
+ "CFLAGS=-fuse-ld=gold"
+ "CONF_GCC_LINKER_OPTS_STAGE1=-fuse-ld=gold"
+ "CONF_GCC_LINKER_OPTS_STAGE2=-fuse-ld=gold"
+ ] ++ stdenv.lib.optionals (targetPlatform.isDarwin && targetPlatform.isAarch64) [
+ # fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/
+ "--disable-large-address-space"
+ ];
+
+ # Hack to make sure we never to the relaxation `$PATH` and hooks support for
+ # compatability. This will be replaced with something clearer in a future
+ # masss-rebuild.
+ crossConfig = true;
+
+ nativeBuildInputs = [ alex autoconf autoreconfHook automake ghc happy hscolour perl python3 sphinx ];
+
+ # For building runtime libs
+ depsBuildTarget = toolsForTarget;
+
+ buildInputs = libDeps hostPlatform;
+
+ propagatedBuildInputs = [ targetPackages.stdenv.cc ]
+ ++ stdenv.lib.optional useLLVM llvmPackages.llvm;
+
+ depsTargetTarget = map stdenv.lib.getDev (libDeps targetPlatform);
+ depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") (libDeps targetPlatform);
+
# required, because otherwise all symbols from HSffi.o are stripped, and
# that in turn causes GHCi to abort
- stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
+ stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!targetPlatform.isDarwin) "--keep-file-symbols";
checkTarget = "test";
+ # zsh and other shells are smart about `{ghc}` but bash isn't, and doesn't
+ # treat that as a unary `{x,y,z,..}` repetition.
postInstall = ''
- paxmark m $out/lib/${name}/bin/{ghc,haddock}
+ paxmark m $out/lib/${name}/bin/${if targetPlatform != hostPlatform then "ghc" else "{ghc,haddock}"}
# Install the bash completion file.
- install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/ghc
+ install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/${targetPrefix}ghc
# Patch scripts to include "readelf" and "cat" in $PATH.
for i in "$out/bin/"*; do
test ! -h $i || continue
egrep --quiet '^#!' <(head -n 1 $i) || continue
- sed -i -e '2i export PATH="$PATH:${stdenv.lib.makeBinPath [ binutils coreutils ]}"' $i
+ sed -i -e '2i export PATH="$PATH:${stdenv.lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i
done
'';
- outputs = [ "out" "doc" ];
-
passthru = {
- inherit bootPkgs;
- } // stdenv.lib.optionalAttrs (targetPlatform != buildPlatform) {
- crossCompiler = selfPkgs.ghc.override {
- cross = targetPlatform;
- bootPkgs = selfPkgs;
- };
+ inherit bootPkgs targetPrefix;
+
+ inherit llvmPackages;
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
};
meta = {
@@ -86,32 +193,4 @@ in stdenv.mkDerivation (rec {
inherit (ghc.meta) license platforms;
};
-} // stdenv.lib.optionalAttrs (cross != null) {
- name = "${cross.config}-ghc-${version}";
-
- preConfigure = commonPreConfigure + ''
- sed 's|#BuildFlavour = quick-cross|BuildFlavour = perf-cross|' mk/build.mk.sample > mk/build.mk
- '';
-
- configureFlags = [
- "CC=${stdenv.ccCross}/bin/${cross.config}-cc"
- "LD=${stdenv.binutils}/bin/${cross.config}-ld"
- "AR=${stdenv.binutils}/bin/${cross.config}-ar"
- "NM=${stdenv.binutils}/bin/${cross.config}-nm"
- "RANLIB=${stdenv.binutils}/bin/${cross.config}-ranlib"
- "--target=${cross.config}"
- "--enable-bootstrap-with-devel-snapshot"
- ] ++
- # fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/
- lib.optional (cross.config or null == "aarch64-apple-darwin14") "--disable-large-address-space";
-
- buildInputs = commonBuildInputs ++ [ stdenv.ccCross stdenv.binutils ];
-
- dontSetConfigureCross = true;
-
- passthru = {
- inherit bootPkgs cross;
- cc = "${stdenv.ccCross}/bin/${cross.config}-cc";
- ld = "${stdenv.binutils}/bin/${cross.config}-ld";
- };
-})
+}
diff --git a/pkgs/development/compilers/ghc/8.4.1.nix b/pkgs/development/compilers/ghc/8.4.1.nix
new file mode 100644
index 00000000000..17dc24e567f
--- /dev/null
+++ b/pkgs/development/compilers/ghc/8.4.1.nix
@@ -0,0 +1,193 @@
+{ stdenv, targetPackages
+, buildPlatform, hostPlatform, targetPlatform
+
+# build-tools
+, bootPkgs, alex, happy
+, autoconf, automake, coreutils, fetchgit, perl, python3
+
+, libffi, libiconv ? null, ncurses
+
+, useLLVM ? !targetPlatform.isx86
+, # LLVM is conceptually a run-time-only depedendency, but for
+ # non-x86, we need LLVM to bootstrap later stages, so it becomes a
+ # build-time dependency too.
+ buildLlvmPackages, llvmPackages
+
+, # If enabled, GHC will be built with the GPL-free but slower integer-simple
+ # library instead of the faster but GPLed integer-gmp library.
+ enableIntegerSimple ? false, gmp ? null
+
+, # If enabled, use -fPIC when compiling static libs.
+ enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+
+, # Whether to build dynamic libs for the standard library (on the target
+ # platform). Static libs are always built.
+ enableShared ? true
+
+, version ? "8.4.20180122"
+}:
+
+assert !enableIntegerSimple -> gmp != null;
+
+let
+ inherit (bootPkgs) ghc;
+
+ # TODO(@Ericson2314) Make unconditional
+ targetPrefix = stdenv.lib.optionalString
+ (targetPlatform != hostPlatform)
+ "${targetPlatform.config}-";
+
+ buildMK = ''
+ DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"}
+ '' + stdenv.lib.optionalString enableIntegerSimple ''
+ INTEGER_LIBRARY = integer-simple
+ '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
+ BuildFlavour = perf-cross
+ Stage1Only = YES
+ HADDOCK_DOCS = NO
+ BUILD_SPHINX_HTML = NO
+ BUILD_SPHINX_PDF = NO
+ '' + stdenv.lib.optionalString enableRelocatedStaticLibs ''
+ GhcLibHcOpts += -fPIC
+ GhcRtsHcOpts += -fPIC
+ '';
+
+ # Splicer will pull out correct variations
+ libDeps = platform: [ ncurses ]
+ ++ stdenv.lib.optional (!enableIntegerSimple) gmp
+ ++ stdenv.lib.optional (platform.libc != "glibc") libiconv;
+
+ toolsForTarget =
+ if hostPlatform == buildPlatform then
+ [ targetPackages.stdenv.cc ] ++ stdenv.lib.optional useLLVM llvmPackages.llvm
+ else assert targetPlatform == hostPlatform; # build != host == target
+ [ stdenv.cc ] ++ stdenv.lib.optional useLLVM buildLlvmPackages.llvm;
+
+ targetCC = builtins.head toolsForTarget;
+
+in
+stdenv.mkDerivation rec {
+ inherit version;
+ inherit (src) rev;
+ name = "${targetPrefix}ghc-${version}";
+
+ src = fetchgit {
+ url = "git://git.haskell.org/ghc.git";
+ rev = "61db0b8941cfb7ed8941ed29bdb04bd8ef3b71a5";
+ sha256 = "15sbpgkal4854jc1xn3sprvpnxwdj0fyy43y5am0h9vja3pjhjyi";
+ };
+
+ enableParallelBuilding = true;
+
+ outputs = [ "out" "doc" ];
+
+ postPatch = "patchShebangs .";
+
+ # GHC is a bit confused on its cross terminology.
+ preConfigure = ''
+ for env in $(env | grep '^TARGET_' | sed -E 's|\+?=.*||'); do
+ export "''${env#TARGET_}=''${!env}"
+ done
+ # GHC is a bit confused on its cross terminology, as these would normally be
+ # the *host* tools.
+ export CC="${targetCC}/bin/${targetCC.targetPrefix}cc"
+ export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx"
+ # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177
+ export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${stdenv.lib.optionalString targetPlatform.isArm ".gold"}"
+ export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+ export AR="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ar"
+ export NM="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}nm"
+ export RANLIB="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ranlib"
+ export READELF="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}readelf"
+ export STRIP="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}strip"
+
+ echo -n "${buildMK}" > mk/build.mk
+ echo ${version} >VERSION
+ echo ${src.rev} >GIT_COMMIT_ID
+ ./boot
+ sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
+ '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS+=" -no_dtrace_dof"
+ '';
+
+ # TODO(@Ericson2314): Always pass "--target" and always prefix.
+ configurePlatforms = [ "build" "host" ]
+ ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
+ # `--with` flags for libraries needed for RTS linker
+ configureFlags = [
+ "--datadir=$doc/share/doc/ghc"
+ "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && ! enableIntegerSimple) [
+ "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && hostPlatform.libc != "glibc") [
+ "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
+ ] ++ stdenv.lib.optionals (targetPlatform != hostPlatform) [
+ "--enable-bootstrap-with-devel-snapshot"
+ ] ++ stdenv.lib.optionals (targetPlatform.isArm) [
+ "CFLAGS=-fuse-ld=gold"
+ "CONF_GCC_LINKER_OPTS_STAGE1=-fuse-ld=gold"
+ "CONF_GCC_LINKER_OPTS_STAGE2=-fuse-ld=gold"
+ ] ++ stdenv.lib.optionals (targetPlatform.isDarwin && targetPlatform.isAarch64) [
+ # fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/
+ "--disable-large-address-space"
+ ];
+
+ # Hack to make sure we never to the relaxation `$PATH` and hooks support for
+ # compatability. This will be replaced with something clearer in a future
+ # masss-rebuild.
+ crossConfig = true;
+
+ nativeBuildInputs = [ ghc perl autoconf automake happy alex python3 ];
+
+ # For building runtime libs
+ depsBuildTarget = toolsForTarget;
+
+ buildInputs = libDeps hostPlatform;
+
+ propagatedBuildInputs = [ targetPackages.stdenv.cc ]
+ ++ stdenv.lib.optional useLLVM llvmPackages.llvm;
+
+ depsTargetTarget = map stdenv.lib.getDev (libDeps targetPlatform);
+ depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") (libDeps targetPlatform);
+
+ # required, because otherwise all symbols from HSffi.o are stripped, and
+ # that in turn causes GHCi to abort
+ stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!targetPlatform.isDarwin) "--keep-file-symbols";
+
+ checkTarget = "test";
+
+ # zsh and other shells are smart about `{ghc}` but bash isn't, and doesn't
+ # treat that as a unary `{x,y,z,..}` repetition.
+ postInstall = ''
+ paxmark m $out/lib/${name}/bin/${if targetPlatform != hostPlatform then "ghc" else "{ghc,haddock}"}
+
+ # Install the bash completion file.
+ install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/${targetPrefix}ghc
+
+ # Patch scripts to include "readelf" and "cat" in $PATH.
+ for i in "$out/bin/"*; do
+ test ! -h $i || continue
+ egrep --quiet '^#!' <(head -n 1 $i) || continue
+ sed -i -e '2i export PATH="$PATH:${stdenv.lib.makeBinPath [ targetPackages.stdenv.cc.bintools coreutils ]}"' $i
+ done
+ '';
+
+ passthru = {
+ inherit bootPkgs targetPrefix;
+
+ inherit llvmPackages;
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
+ };
+
+ meta = {
+ homepage = http://haskell.org/ghc;
+ description = "The Glasgow Haskell Compiler";
+ maintainers = with stdenv.lib.maintainers; [ marcweber andres peti ];
+ inherit (ghc.meta) license platforms;
+ };
+
+}
diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix
index 3f5dfa65958..82cef10ce3b 100644
--- a/pkgs/development/compilers/ghc/head.nix
+++ b/pkgs/development/compilers/ghc/head.nix
@@ -1,71 +1,170 @@
-{ stdenv, lib, fetchgit, bootPkgs, perl, ncurses, libiconv, targetPackages, coreutils
-, autoconf, automake, happy, alex, python3, buildPlatform, targetPlatform
-, selfPkgs, cross ? null
+{ stdenv, targetPackages
+, buildPlatform, hostPlatform, targetPlatform
- # If enabled GHC will be build with the GPL-free but slower integer-simple
+# build-tools
+, bootPkgs, alex, happy
+, autoconf, automake, coreutils, fetchgit, perl, python3
+
+, libffi, libiconv ? null, ncurses
+
+, useLLVM ? !targetPlatform.isx86
+, # LLVM is conceptually a run-time-only depedendency, but for
+ # non-x86, we need LLVM to bootstrap later stages, so it becomes a
+ # build-time dependency too.
+ buildLlvmPackages, llvmPackages
+
+, # If enabled, GHC will be built with the GPL-free but slower integer-simple
# library instead of the faster but GPLed integer-gmp library.
-, enableIntegerSimple ? false, gmp
-, version ? "8.5.20171209"
+ enableIntegerSimple ? false, gmp ? null
+
+, # If enabled, use -fPIC when compiling static libs.
+ enableRelocatedStaticLibs ? targetPlatform != hostPlatform
+
+, # Whether to build dynamic libs for the standard library (on the target
+ # platform). Static libs are always built.
+ enableShared ? true
+
+, version ? "8.5.20180118"
}:
+assert !enableIntegerSimple -> gmp != null;
+
let
inherit (bootPkgs) ghc;
- commonBuildInputs = [ ghc perl autoconf automake happy alex python3 ];
+ # TODO(@Ericson2314) Make unconditional
+ targetPrefix = stdenv.lib.optionalString
+ (targetPlatform != hostPlatform)
+ "${targetPlatform.config}-";
- rev = "4335c07ca7e64624819b22644d7591853826bd75";
-
- commonPreConfigure = ''
- echo ${version} >VERSION
- echo ${rev} >GIT_COMMIT_ID
- ./boot
- sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
- '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
- export NIX_LDFLAGS="$NIX_LDFLAGS -rpath $out/lib/ghc-${version}"
- '' + stdenv.lib.optionalString stdenv.isDarwin ''
- export NIX_LDFLAGS+=" -no_dtrace_dof"
+ buildMK = ''
+ DYNAMIC_GHC_PROGRAMS = ${if enableShared then "YES" else "NO"}
'' + stdenv.lib.optionalString enableIntegerSimple ''
- echo "INTEGER_LIBRARY=integer-simple" > mk/build.mk
+ INTEGER_LIBRARY = integer-simple
+ '' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
+ BuildFlavour = perf-cross
+ Stage1Only = YES
+ HADDOCK_DOCS = NO
+ BUILD_SPHINX_HTML = NO
+ BUILD_SPHINX_PDF = NO
+ '' + stdenv.lib.optionalString enableRelocatedStaticLibs ''
+ GhcLibHcOpts += -fPIC
+ GhcRtsHcOpts += -fPIC
'';
-in stdenv.mkDerivation (rec {
- inherit version rev;
- name = "ghc-${version}";
+
+ # Splicer will pull out correct variations
+ libDeps = platform: [ ncurses ]
+ ++ stdenv.lib.optional (!enableIntegerSimple) gmp
+ ++ stdenv.lib.optional (platform.libc != "glibc") libiconv;
+
+ toolsForTarget =
+ if hostPlatform == buildPlatform then
+ [ targetPackages.stdenv.cc ] ++ stdenv.lib.optional useLLVM llvmPackages.llvm
+ else assert targetPlatform == hostPlatform; # build != host == target
+ [ stdenv.cc ] ++ stdenv.lib.optional useLLVM buildLlvmPackages.llvm;
+
+ targetCC = builtins.head toolsForTarget;
+
+in
+stdenv.mkDerivation rec {
+ inherit version;
+ inherit (src) rev;
+ name = "${targetPrefix}ghc-${version}";
src = fetchgit {
url = "git://git.haskell.org/ghc.git";
- inherit rev;
- sha256 = "19csad94sk0bw2nj97ppmnwh4c193jg0jmg5w2sx9rqm9ih4yg85";
+ rev = "e1d4140be4d2a1508015093b69e1ef53516e1eb6";
+ sha256 = "1gdcr10dd968d40qgljdwx9vfkva3yrvjm9a4nis7whaaac3ag58";
};
- postPatch = "patchShebangs .";
-
- preConfigure = commonPreConfigure;
-
- buildInputs = commonBuildInputs;
-
enableParallelBuilding = true;
+ outputs = [ "out" "doc" ];
+
+ postPatch = "patchShebangs .";
+
+ # GHC is a bit confused on its cross terminology.
+ preConfigure = ''
+ for env in $(env | grep '^TARGET_' | sed -E 's|\+?=.*||'); do
+ export "''${env#TARGET_}=''${!env}"
+ done
+ # GHC is a bit confused on its cross terminology, as these would normally be
+ # the *host* tools.
+ export CC="${targetCC}/bin/${targetCC.targetPrefix}cc"
+ export CXX="${targetCC}/bin/${targetCC.targetPrefix}cxx"
+ # Use gold to work around https://sourceware.org/bugzilla/show_bug.cgi?id=16177
+ export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld${stdenv.lib.optionalString targetPlatform.isArm ".gold"}"
+ export AS="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}as"
+ export AR="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ar"
+ export NM="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}nm"
+ export RANLIB="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}ranlib"
+ export READELF="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}readelf"
+ export STRIP="${targetCC.bintools.bintools}/bin/${targetCC.bintools.targetPrefix}strip"
+
+ echo -n "${buildMK}" > mk/build.mk
+ echo ${version} >VERSION
+ echo ${src.rev} >GIT_COMMIT_ID
+ ./boot
+ sed -i -e 's|-isysroot /Developer/SDKs/MacOSX10.5.sdk||' configure
+ '' + stdenv.lib.optionalString (!stdenv.isDarwin) ''
+ export NIX_LDFLAGS+=" -rpath $out/lib/ghc-${version}"
+ '' + stdenv.lib.optionalString stdenv.isDarwin ''
+ export NIX_LDFLAGS+=" -no_dtrace_dof"
+ '';
+
+ # TODO(@Ericson2314): Always pass "--target" and always prefix.
+ configurePlatforms = [ "build" "host" ]
+ ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
+ # `--with` flags for libraries needed for RTS linker
configureFlags = [
- "CC=${stdenv.cc}/bin/cc"
- "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
"--datadir=$doc/share/doc/ghc"
- ] ++ stdenv.lib.optional (! enableIntegerSimple) [
+ "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib"
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && ! enableIntegerSimple) [
"--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib"
- ] ++ stdenv.lib.optional stdenv.isDarwin [
+ ] ++ stdenv.lib.optional (targetPlatform == hostPlatform && hostPlatform.libc != "glibc") [
"--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib"
+ ] ++ stdenv.lib.optionals (targetPlatform != hostPlatform) [
+ "--enable-bootstrap-with-devel-snapshot"
+ ] ++ stdenv.lib.optionals (targetPlatform.isArm) [
+ "CFLAGS=-fuse-ld=gold"
+ "CONF_GCC_LINKER_OPTS_STAGE1=-fuse-ld=gold"
+ "CONF_GCC_LINKER_OPTS_STAGE2=-fuse-ld=gold"
+ ] ++ stdenv.lib.optionals (targetPlatform.isDarwin && targetPlatform.isAarch64) [
+ # fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/
+ "--disable-large-address-space"
];
+ # Hack to make sure we never to the relaxation `$PATH` and hooks support for
+ # compatability. This will be replaced with something clearer in a future
+ # masss-rebuild.
+ crossConfig = true;
+
+ nativeBuildInputs = [ ghc perl autoconf automake happy alex python3 ];
+
+ # For building runtime libs
+ depsBuildTarget = toolsForTarget;
+
+ buildInputs = libDeps hostPlatform;
+
+ propagatedBuildInputs = [ targetPackages.stdenv.cc ]
+ ++ stdenv.lib.optional useLLVM llvmPackages.llvm;
+
+ depsTargetTarget = map stdenv.lib.getDev (libDeps targetPlatform);
+ depsTargetTargetPropagated = map (stdenv.lib.getOutput "out") (libDeps targetPlatform);
+
# required, because otherwise all symbols from HSffi.o are stripped, and
# that in turn causes GHCi to abort
- stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!stdenv.isDarwin) "--keep-file-symbols";
+ stripDebugFlags = [ "-S" ] ++ stdenv.lib.optional (!targetPlatform.isDarwin) "--keep-file-symbols";
checkTarget = "test";
+ # zsh and other shells are smart about `{ghc}` but bash isn't, and doesn't
+ # treat that as a unary `{x,y,z,..}` repetition.
postInstall = ''
- paxmark m $out/lib/${name}/bin/{ghc,haddock}
+ paxmark m $out/lib/${name}/bin/${if targetPlatform != hostPlatform then "ghc" else "{ghc,haddock}"}
# Install the bash completion file.
- install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/ghc
+ install -D -m 444 utils/completion/ghc.bash $out/share/bash-completion/completions/${targetPrefix}ghc
# Patch scripts to include "readelf" and "cat" in $PATH.
for i in "$out/bin/"*; do
@@ -75,15 +174,13 @@ in stdenv.mkDerivation (rec {
done
'';
- outputs = [ "out" "doc" ];
-
passthru = {
- inherit bootPkgs;
- } // stdenv.lib.optionalAttrs (targetPlatform != buildPlatform) {
- crossCompiler = selfPkgs.ghc.override {
- cross = targetPlatform;
- bootPkgs = selfPkgs;
- };
+ inherit bootPkgs targetPrefix;
+
+ inherit llvmPackages;
+
+ # Our Cabal compiler name
+ haskellCompilerName = "ghc";
};
meta = {
@@ -93,34 +190,4 @@ in stdenv.mkDerivation (rec {
inherit (ghc.meta) license platforms;
};
-} // stdenv.lib.optionalAttrs (cross != null) {
- name = "${cross.config}-ghc-${version}";
-
- preConfigure = commonPreConfigure + ''
- sed 's|#BuildFlavour = quick-cross|BuildFlavour = perf-cross|' mk/build.mk.sample > mk/build.mk
- '';
-
- configureFlags = [
- "CC=${stdenv.cc}/bin/${cross.config}-cc"
- "LD=${stdenv.cc}/bin/${cross.config}-ld"
- "AR=${stdenv.cc}/bin/${cross.config}-ar"
- "NM=${stdenv.cc}/bin/${cross.config}-nm"
- "RANLIB=${stdenv.cc}/bin/${cross.config}-ranlib"
- "--target=${cross.config}"
- "--enable-bootstrap-with-devel-snapshot"
- ] ++
- # fix for iOS: https://www.reddit.com/r/haskell/comments/4ttdz1/building_an_osxi386_to_iosarm64_cross_compiler/d5qvd67/
- lib.optional (cross.config or null == "aarch64-apple-darwin14") "--disable-large-address-space";
-
- buildInputs = commonBuildInputs;
-
- configurePlatforms = [];
-
- passthru = {
- inherit bootPkgs cross;
-
- cc = "${stdenv.cc}/bin/${cross.config}-cc";
-
- ld = "${stdenv.cc}/bin/${cross.config}-ld";
- };
-})
+}
diff --git a/pkgs/development/compilers/ghcjs/base.nix b/pkgs/development/compilers/ghcjs/base.nix
index d4418b058d9..ab72d1fb1b3 100644
--- a/pkgs/development/compilers/ghcjs/base.nix
+++ b/pkgs/development/compilers/ghcjs/base.nix
@@ -174,6 +174,10 @@ in mkDerivation (rec {
isGhcjs = true;
inherit nodejs ghcjsBoot;
socket-io = pkgs.nodePackages."socket.io";
+ haskellCompilerName = "ghcjs";
+
+ # let us assume ghcjs is never actually cross compiled
+ targetPrefix = "";
inherit stage1Packages;
mkStage2 = stage2 {
diff --git a/pkgs/development/compilers/ghcjs/default.nix b/pkgs/development/compilers/ghcjs/default.nix
index ff989ea22c4..7f3cc944001 100644
--- a/pkgs/development/compilers/ghcjs/default.nix
+++ b/pkgs/development/compilers/ghcjs/default.nix
@@ -1,5 +1,5 @@
-{ bootPkgs }:
+{ bootPkgs, cabal-install }:
bootPkgs.callPackage ./base.nix {
- inherit bootPkgs;
+ inherit bootPkgs cabal-install;
}
diff --git a/pkgs/development/compilers/ghcjs/head.nix b/pkgs/development/compilers/ghcjs/head.nix
index 2cf6c8b39c2..84eb2d8bd0d 100644
--- a/pkgs/development/compilers/ghcjs/head.nix
+++ b/pkgs/development/compilers/ghcjs/head.nix
@@ -1,9 +1,9 @@
-{ fetchgit, fetchFromGitHub, bootPkgs }:
+{ fetchgit, fetchFromGitHub, bootPkgs, cabal-install }:
bootPkgs.callPackage ./base.nix {
version = "0.2.020170323";
- inherit bootPkgs;
+ inherit bootPkgs cabal-install;
ghcjsSrc = fetchFromGitHub {
owner = "ghcjs";
diff --git a/pkgs/development/compilers/go/1.7.nix b/pkgs/development/compilers/go/1.7.nix
index b1230da5a14..82ed9b53c60 100644
--- a/pkgs/development/compilers/go/1.7.nix
+++ b/pkgs/development/compilers/go/1.7.nix
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
# perl is used for testing go vet
nativeBuildInputs = [ perl which pkgconfig patch ];
- buildInputs = [ pcre ];
+ buildInputs = [ cacert pcre ];
propagatedBuildInputs = optionals stdenv.isDarwin [ Security Foundation ];
hardeningDisable = [ "all" ];
@@ -116,8 +116,6 @@ stdenv.mkDerivation rec {
})
];
- NIX_SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
-
GOOS = if stdenv.isDarwin then "darwin" else "linux";
GOARCH = if stdenv.isDarwin then "amd64"
else if stdenv.system == "i686-linux" then "386"
diff --git a/pkgs/development/compilers/go/1.8.nix b/pkgs/development/compilers/go/1.8.nix
index 210f259df89..651eb79d75a 100644
--- a/pkgs/development/compilers/go/1.8.nix
+++ b/pkgs/development/compilers/go/1.8.nix
@@ -37,7 +37,7 @@ stdenv.mkDerivation rec {
# perl is used for testing go vet
nativeBuildInputs = [ perl which pkgconfig patch makeWrapper ]
++ optionals stdenv.isLinux [ procps ];
- buildInputs = [ pcre ]
+ buildInputs = [ cacert pcre ]
++ optionals stdenv.isLinux [ stdenv.glibc.out stdenv.glibc.static ];
propagatedBuildInputs = optionals stdenv.isDarwin [ Security Foundation ];
@@ -83,7 +83,7 @@ stdenv.mkDerivation rec {
sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go
'' + optionalString stdenv.isArm ''
sed -i '/TestCurrent/areturn' src/os/user/user_test.go
- echo '#!/usr/bin/env bash' > misc/cgo/testplugin/test.bash
+ echo '#!${stdenv.shell}' > misc/cgo/testplugin/test.bash
'' + optionalString stdenv.isDarwin ''
substituteInPlace src/race.bash --replace \
"sysctl machdep.cpu.extfeatures | grep -qv EM64T" true
@@ -122,8 +122,6 @@ stdenv.mkDerivation rec {
substituteInPlace "src/cmd/link/internal/ld/lib.go" --replace dsymutil ${llvm}/bin/llvm-dsymutil
'';
- NIX_SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
-
GOOS = if stdenv.isDarwin then "darwin" else "linux";
GOARCH = if stdenv.isDarwin then "amd64"
else if stdenv.system == "i686-linux" then "386"
diff --git a/pkgs/development/compilers/go/1.9.nix b/pkgs/development/compilers/go/1.9.nix
index 8708bd762c4..b226cd7a7eb 100644
--- a/pkgs/development/compilers/go/1.9.nix
+++ b/pkgs/development/compilers/go/1.9.nix
@@ -25,19 +25,19 @@ in
stdenv.mkDerivation rec {
name = "go-${version}";
- version = "1.9.2";
+ version = "1.9.3";
src = fetchFromGitHub {
owner = "golang";
repo = "go";
rev = "go${version}";
- sha256 = "07p4ld07r2nml2bsbfb8h51hqilbqyhhdlia99y1gk7ibvhybv8i";
+ sha256 = "0ivb6z30d6qrrkwjm9fdz9jfs567q4b6dljwwxc9shmdr2l9chah";
};
# perl is used for testing go vet
nativeBuildInputs = [ perl which pkgconfig patch makeWrapper ]
++ optionals stdenv.isLinux [ procps ];
- buildInputs = [ pcre ]
+ buildInputs = [ cacert pcre ]
++ optionals stdenv.isLinux [ stdenv.glibc.out stdenv.glibc.static ];
propagatedBuildInputs = optionals stdenv.isDarwin [ Security Foundation ];
@@ -87,7 +87,7 @@ stdenv.mkDerivation rec {
sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go
'' + optionalString stdenv.isArm ''
sed -i '/TestCurrent/areturn' src/os/user/user_test.go
- echo '#!/usr/bin/env bash' > misc/cgo/testplugin/test.bash
+ echo '#!${stdenv.shell}' > misc/cgo/testplugin/test.bash
'' + optionalString stdenv.isDarwin ''
substituteInPlace src/race.bash --replace \
"sysctl machdep.cpu.extfeatures | grep -qv EM64T" true
@@ -128,8 +128,6 @@ stdenv.mkDerivation rec {
substituteInPlace "src/cmd/link/internal/ld/lib.go" --replace dsymutil ${llvm}/bin/llvm-dsymutil
'';
- NIX_SSL_CERT_FILE = "${cacert}/etc/ssl/certs/ca-bundle.crt";
-
GOOS = if stdenv.isDarwin then "darwin" else "linux";
GOARCH = if stdenv.isDarwin then "amd64"
else if stdenv.system == "i686-linux" then "386"
@@ -141,6 +139,8 @@ stdenv.mkDerivation rec {
GO386 = 387; # from Arch: don't assume sse2 on i686
CGO_ENABLED = 1;
GOROOT_BOOTSTRAP = "${goBootstrap}/share/go";
+ # Hopefully avoids test timeouts on Hydra
+ GO_TEST_TIMEOUT_SCALE = 3;
# The go build actually checks for CC=*/clang and does something different, so we don't
# just want the generic `cc` here.
diff --git a/pkgs/development/compilers/go/setup-hook.sh b/pkgs/development/compilers/go/setup-hook.sh
index 1b91c8312b8..7dce15eeb10 100644
--- a/pkgs/development/compilers/go/setup-hook.sh
+++ b/pkgs/development/compilers/go/setup-hook.sh
@@ -2,4 +2,4 @@ addToGoPath() {
addToSearchPath GOPATH $1/share/go
}
-envHooks=(${envHooks[@]} addToGoPath)
+addEnvHooks "$targetOffset" addToGoPath
diff --git a/pkgs/development/compilers/halvm/2.4.0.nix b/pkgs/development/compilers/halvm/2.4.0.nix
deleted file mode 100644
index 0c4cef653d8..00000000000
--- a/pkgs/development/compilers/halvm/2.4.0.nix
+++ /dev/null
@@ -1,54 +0,0 @@
-{ stdenv, fetchgit, bootPkgs, perl, gmp, ncurses, targetPackages, autoconf, alex, happy, makeStaticLibraries
-, hscolour, xen, automake, gcc, git, zlib, libtool, enableIntegerSimple ? false
-}:
-
-stdenv.mkDerivation rec {
- version = "2.4.0";
- name = "HaLVM-${version}";
- isHaLVM = true;
- enableParallelBuilding = false;
- isGhcjs = false;
- src = fetchgit {
- rev = "65fad65966eb7e60f234453a35aeb564a09d2595";
- url = "https://github.com/GaloisInc/HaLVM";
- sha256 = "09633h38w0z20cz0wcfp9z5kzv8v1zwcv0wqvgq3c8svqbrxp28k";
- };
- prePatch = ''
- sed -i '305 d' Makefile
- sed -i '309,439 d' Makefile # Removes RPM packaging
- sed -i '20 d' src/scripts/halvm-cabal.in
- sed -ie 's|ld |${targetPackages.stdenv.cc.bintools}/bin/ld |g' src/scripts/ldkernel.in
- '';
- configureFlags = stdenv.lib.optional (!enableIntegerSimple) [ "--enable-gmp" ];
- propagatedNativeBuildInputs = [ alex happy ];
- buildInputs =
- let haskellPkgs = [ alex happy bootPkgs.hscolour bootPkgs.cabal-install bootPkgs.haddock bootPkgs.hpc
- ]; in [ bootPkgs.ghc
- automake perl git targetPackages.stdenv.cc.bintools
- autoconf xen zlib ncurses.dev
- libtool gmp ] ++ haskellPkgs;
- preConfigure = ''
- autoconf
- patchShebangs .
- '';
- hardeningDisable = ["all"];
- postInstall = ''
- patchShebangs $out/bin
- $out/bin/halvm-ghc-pkg recache
- '';
- passthru = {
- inherit bootPkgs;
- cross.config = "halvm";
- cc = "${gcc}/bin/gcc";
- ld = "${targetPackages.stdenv.cc.bintools}/bin/ld";
- };
-
- meta = {
- homepage = https://github.com/GaloisInc/HaLVM;
- description = "The Haskell Lightweight Virtual Machine (HaLVM): GHC running on Xen";
- platforms = ["x86_64-linux"]; # other platforms don't have Xen
- maintainers = with stdenv.lib.maintainers; [ dmjio ];
- inherit (bootPkgs.ghc.meta) license;
- broken = true; # https://nix-cache.s3.amazonaws.com/log/6i98mhbq9nzzhwr4svlivm4gz91l2w0f-HaLVM-2.4.0.drv
- };
-}
diff --git a/pkgs/development/compilers/haxe/setup-hook.sh b/pkgs/development/compilers/haxe/setup-hook.sh
index 21cc0206859..e6496107a5e 100644
--- a/pkgs/development/compilers/haxe/setup-hook.sh
+++ b/pkgs/development/compilers/haxe/setup-hook.sh
@@ -4,4 +4,4 @@ addHaxeLibPath() {
fi
}
-envHooks+=(addHaxeLibPath)
+addEnvHooks "$targetOffset" addHaxeLibPath
diff --git a/pkgs/development/compilers/hhvm/default.nix b/pkgs/development/compilers/hhvm/default.nix
index 2f84387a888..a66b2264f07 100644
--- a/pkgs/development/compilers/hhvm/default.nix
+++ b/pkgs/development/compilers/hhvm/default.nix
@@ -2,7 +2,7 @@
, pcre, libevent, gd, curl, libxml2, icu, flex, bison, openssl, zlib, php
, expat, libcap, oniguruma, libdwarf, libmcrypt, tbb, gperftools, glog, libkrb5
, bzip2, openldap, readline, libelf, uwimap, binutils, cyrus_sasl, pam, libpng
-, libxslt, freetype, gdb, git, perl, mariadb, gmp, libyaml, libedit
+, libxslt, freetype, gdb, git, perl, mysql, gmp, libyaml, libedit
, libvpx, imagemagick, fribidi, gperf, which, ocamlPackages
}:
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
};
buildInputs =
- [ cmake pkgconfig boost libunwind mariadb.client libmemcached pcre gdb git perl
+ [ cmake pkgconfig boost libunwind mysql.connector-c libmemcached pcre gdb git perl
libevent gd curl libxml2 icu flex bison openssl zlib php expat libcap
oniguruma libdwarf libmcrypt tbb gperftools bzip2 openldap readline
libelf uwimap binutils cyrus_sasl pam glog libpng libxslt libkrb5
diff --git a/pkgs/development/compilers/ispc/default.nix b/pkgs/development/compilers/ispc/default.nix
index 0e4bc420241..62fa578cef6 100644
--- a/pkgs/development/compilers/ispc/default.nix
+++ b/pkgs/development/compilers/ispc/default.nix
@@ -3,8 +3,8 @@ testedTargets ? ["sse2" "host"] # the default test target is sse4, but that is n
}:
stdenv.mkDerivation rec {
- version = "20170807";
- rev = "6e0fc2f148e95afad998a7c7f4d7908d29fd8e44";
+ version = "1.9.2";
+ rev = "v${version}";
inherit testedTargets;
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
owner = "ispc";
repo = "ispc";
inherit rev;
- sha256 = "17fwnfm8a329lgfhjwcvji4h1fm4iqmc28wz23hvgqbpj8lk6qgh";
+ sha256 = "0zaw7mwvly1csbdcbz9j8ry89n0r1fag1m1f579l4mgg1x6ksqry";
};
# there are missing dependencies in the Makefile, causing sporadic build failures
diff --git a/pkgs/development/compilers/jhc/default.nix b/pkgs/development/compilers/jhc/default.nix
deleted file mode 100644
index 6b8c6599062..00000000000
--- a/pkgs/development/compilers/jhc/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, fetchurl, perl, ghcWithPackages }:
-
-let ghc = ghcWithPackages (hpkgs: with hpkgs; [
- binary zlib utf8-string readline fgl regex-compat HsSyck random
- ]);
-in
-
-stdenv.mkDerivation rec {
- name = "jhc-${version}";
- version = "0.8.2";
-
- src = fetchurl {
- url = "http://repetae.net/dist/${name}.tar.gz";
- sha256 = "0lrgg698mx6xlrqcylba9z4g1f053chrzc92ri881dmb1knf83bz";
- };
-
- buildInputs = [ perl ghc ];
-
- preConfigure = ''
- configureFlagsArray+=("CC=cc")
- configureFlagsArray+=("--with-hsc2hs=${ghc}/bin/hsc2hs --cc=cc")
- '';
-
- meta = {
- description = "Whole-program, globally optimizing Haskell compiler";
- homepage = http://repetae.net/computer/jhc/;
- license = stdenv.lib.licenses.bsd3;
- platforms = ["x86_64-linux"]; # 32 bit builds are broken
- maintainers = with stdenv.lib.maintainers; [ aforemny thoughtpolice ];
- broken = true; # https://hydra.nixos.org/build/61700723
- };
-}
diff --git a/pkgs/development/compilers/jsonnet/default.nix b/pkgs/development/compilers/jsonnet/default.nix
index 790f9a4827a..d4664673306 100644
--- a/pkgs/development/compilers/jsonnet/default.nix
+++ b/pkgs/development/compilers/jsonnet/default.nix
@@ -1,6 +1,6 @@
{ stdenv, lib, fetchFromGitHub, emscripten }:
-let version = "0.9.4"; in
+let version = "0.9.5"; in
stdenv.mkDerivation {
name = "jsonnet-${version}";
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
rev = "v${version}";
owner = "google";
repo = "jsonnet";
- sha256 = "1bh9x8d3mxnic31b6gh4drn5l6qpyqfgsn2l48sv0jknhinm1a7l";
+ sha256 = "193sa4hdhvml0c32nmdkjii41hbyc5l0zisdn699ar0gaq7yiqan";
};
buildInputs = [ emscripten ];
diff --git a/pkgs/development/compilers/julia/0.6.nix b/pkgs/development/compilers/julia/0.6.nix
index fabb2a7d6d7..6acb192933e 100644
--- a/pkgs/development/compilers/julia/0.6.nix
+++ b/pkgs/development/compilers/julia/0.6.nix
@@ -33,10 +33,10 @@ let
sha256 = "03kaqbjbi6viz0n33dk5jlf6ayxqlsq4804n7kwkndiga9s4hd42";
};
- libuvVersion = "52d72a52cc7ccd570929990f010ed16e2ec604c8";
+ libuvVersion = "d8ab1c6a33e77bf155facb54215dd8798e13825d";
libuv = fetchurl {
url = "https://api.github.com/repos/JuliaLang/libuv/tarball/${libuvVersion}";
- sha256 = "1vldy94sfmlfqmi14126g590wi61fv78rzh7afk82zkipaixvak8";
+ sha256 = "0q5ahc9dzca2yc6cjbhpfi9nwc4yhhjbgxgsychksn13d24gv7ba";
};
rmathVersion = "0.1";
@@ -54,12 +54,12 @@ in
stdenv.mkDerivation rec {
pname = "julia";
- version = "0.6.0";
+ version = "0.6.2";
name = "${pname}-${version}";
src = fetchzip {
url = "https://github.com/JuliaLang/${pname}/releases/download/v${version}/${name}.tar.gz";
- sha256 = "19xk2cs43lnsy9y0d8wmxj7ich908ipb40vkf7xg9031x272brxw";
+ sha256 = "0ym4n9vn6w8vj175mmsc2nzvdk2ij0cdrs44lkr3p0signji73b5";
};
prePatch = ''
mkdir deps/srccache
diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix
index cfddb862f59..19519823f37 100644
--- a/pkgs/development/compilers/julia/git.nix
+++ b/pkgs/development/compilers/julia/git.nix
@@ -175,6 +175,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ raskin ];
platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ];
- broken = stdenv.isi686;
+ broken = true; # since 2017-04-08.
};
}
diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix
index 5015f490077..108fefca863 100644
--- a/pkgs/development/compilers/kotlin/default.nix
+++ b/pkgs/development/compilers/kotlin/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchurl, makeWrapper, jre, unzip }:
let
- version = "1.2.10";
+ version = "1.2.21";
in stdenv.mkDerivation rec {
inherit version;
name = "kotlin-${version}";
src = fetchurl {
url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip";
- sha256 = "1qr61i5fjd5p7bi05hplagmcxgb05k4xdh5yjjvaq8cij5l4b1wm";
+ sha256 = "08mg0xl6n5kl71rn4ix6innqa7dlirmw1rlj9qwmqv5abp9wpwn5";
};
propagatedBuildInputs = [ jre ] ;
diff --git a/pkgs/development/compilers/ldc/default.nix b/pkgs/development/compilers/ldc/default.nix
index 73d798bb66f..bdb74680b13 100644
--- a/pkgs/development/compilers/ldc/default.nix
+++ b/pkgs/development/compilers/ldc/default.nix
@@ -2,8 +2,8 @@
, python, libconfig, lit, gdb, unzip, darwin, bash
, callPackage
, bootstrapVersion ? false
-, version ? "1.5.0"
-, ldcSha256 ? "1150sgns03vplni2wd4afk3rgw3rap8rsiipspw0rzxgki5rlr83"
+, version ? "1.7.0"
+, ldcSha256 ? "1g8qvmlzvsp030z2rw6lis4kclsd9mlmnbim5kas0k1yr9063m3w"
}:
let
@@ -59,8 +59,8 @@ let
''
+ stdenv.lib.optionalString (!bootstrapVersion) ''
- # https://github.com/NixOS/nixpkgs/issues/29611
- rm tests/sanitizers/asan_*
+ # http://forum.dlang.org/thread/xtbbqthxutdoyhnxjhxl@forum.dlang.org
+ rm -r tests/dynamiccompile
'';
ROOT_HOME_DIR = "$(echo ~root)";
@@ -71,9 +71,6 @@ let
"phobos/std/datetime/timezone.d";
postPatch = ''
- substituteInPlace cmake/Modules/FindLLVM.cmake \
- --replace "llvm_set(LIBRARY_DIRS" "#llvm_set(LIBRARY_DIRS"
-
substituteInPlace runtime/${datetimePath} \
--replace "import core.time;" "import core.time;import std.path;"
@@ -97,7 +94,7 @@ let
substituteInPlace runtime/phobos/std/path.d \
--replace "\"/root" "\"${ROOT_HOME_DIR}"
- # TODO
+ # Can be remove with front end version >= 2.078.0
substituteInPlace runtime/druntime/src/core/memory.d \
--replace "assert(z is null);" "//assert(z is null);"
''
@@ -108,14 +105,16 @@ let
substituteInPlace gen/programs.cpp \
--replace "gcc" "clang"
- # Was not able to compile on darwin due to "__inline_isnanl"
- # being undefined.
- substituteInPlace dmd2/root/port.c --replace __inline_isnanl __inline_isnan
+ # Was not able to compile on darwin due to "__inline_isnanl"
+ # being undefined.
+ substituteInPlace dmd2/root/port.c --replace __inline_isnanl __inline_isnan
''
- + stdenv.lib.optionalString (stdenv.hostPlatform.isLinux && bootstrapVersion) ''
- substituteInPlace dmd2/root/port.c \
- --replace "#include " "#include "
+ + stdenv.lib.optionalString (!bootstrapVersion) ''
+ # TODO Can be removed with the next ldc version > 1.7.0
+ # https://github.com/ldc-developers/ldc/issues/2493
+ substituteInPlace tests/d2/dmd-testsuite/Makefile \
+ --replace "# disable tests based on arch" "DISABLED_TESTS += test_cdvecfill"
''
+ stdenv.lib.optionalString (bootstrapVersion) ''
@@ -147,7 +146,6 @@ let
"-DLDC_WITH_LLD=OFF"
# Xcode 9.0.1 fixes that bug according to ldc release notes
"-DRT_ARCHIVE_WITH_LDC=OFF"
- "-DLLVM_LIBRARY_DIRS=${llvm}/lib"
)
'';
@@ -214,7 +212,6 @@ let
"-DLDC_WITH_LLD=OFF"
# Xcode 9.0.1 fixes that bug according to ldc release notes
"-DRT_ARCHIVE_WITH_LDC=OFF"
- "-DLLVM_LIBRARY_DIRS=${llvm}/lib"
"-DD_COMPILER=${ldcBuild}/bin/ldmd2"
)
'';
diff --git a/pkgs/development/compilers/llvm/3.4/clang.nix b/pkgs/development/compilers/llvm/3.4/clang.nix
index 741ecc3856f..10510c75035 100644
--- a/pkgs/development/compilers/llvm/3.4/clang.nix
+++ b/pkgs/development/compilers/llvm/3.4/clang.nix
@@ -39,6 +39,7 @@ stdenv.mkDerivation {
# GCC_INSTALL_PREFIX points here, so just use it even though it may not
# actually be a gcc
gcc = stdenv.cc.cc;
+ hardeningUnsupportedFlags = [ "stackprotector" ];
};
enableParallelBuilding = true;
diff --git a/pkgs/development/compilers/llvm/3.7/default.nix b/pkgs/development/compilers/llvm/3.7/default.nix
index 35af978216c..5cac04c044d 100644
--- a/pkgs/development/compilers/llvm/3.7/default.nix
+++ b/pkgs/development/compilers/llvm/3.7/default.nix
@@ -44,15 +44,11 @@ let
stdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.clang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
libcxxStdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.libcxxClang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
lldb = callPackage ./lldb.nix {};
diff --git a/pkgs/development/compilers/llvm/3.8/clang/default.nix b/pkgs/development/compilers/llvm/3.8/clang/default.nix
index 90b8ea2581e..0147485dd58 100644
--- a/pkgs/development/compilers/llvm/3.8/clang/default.nix
+++ b/pkgs/development/compilers/llvm/3.8/clang/default.nix
@@ -29,7 +29,7 @@ let
sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp
'';
- outputs = [ "out" "python" ];
+ outputs = [ "out" "lib" "python" ];
# Clang expects to find LLVMgold in its own prefix
# Clang expects to find sanitizer libraries in its own prefix
@@ -38,6 +38,11 @@ let
ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/
ln -sv $out/bin/clang $out/bin/cpp
+ # Move libclang to 'lib' output
+ moveToOutput "lib/libclang.*" "$lib"
+ substituteInPlace $out/share/clang/cmake/ClangTargets-release.cmake \
+ --replace "\''${_IMPORT_PREFIX}/lib/libclang." "$lib/lib/libclang."
+
mkdir -p $python/bin $python/share/clang/
mv $out/bin/{git-clang-format,scan-view} $python/bin
if [ -e $out/bin/set-xcode-analyzer ]; then
@@ -51,7 +56,6 @@ let
enableParallelBuilding = true;
passthru = {
- lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both
isClang = true;
inherit llvm;
} // stdenv.lib.optionalAttrs stdenv.isLinux {
diff --git a/pkgs/development/compilers/llvm/3.8/default.nix b/pkgs/development/compilers/llvm/3.8/default.nix
index bd79db012a6..9e37f93dbdd 100644
--- a/pkgs/development/compilers/llvm/3.8/default.nix
+++ b/pkgs/development/compilers/llvm/3.8/default.nix
@@ -22,6 +22,8 @@ let
inherit clang-tools-extra_src stdenv;
};
+ libclang = self.clang-unwrapped.lib;
+
clang = if stdenv.cc.isGNU then self.libstdcxxClang else self.libcxxClang;
libstdcxxClang = ccWrapperFun {
@@ -41,15 +43,11 @@ let
stdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.clang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
libcxxStdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.libcxxClang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
lldb = callPackage ./lldb.nix {};
diff --git a/pkgs/development/compilers/llvm/3.9/clang/default.nix b/pkgs/development/compilers/llvm/3.9/clang/default.nix
index ec2ec27df36..aafe30e4c9b 100644
--- a/pkgs/development/compilers/llvm/3.9/clang/default.nix
+++ b/pkgs/development/compilers/llvm/3.9/clang/default.nix
@@ -31,7 +31,7 @@ let
sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/ToolChains.cpp
'';
- outputs = [ "out" "python" ];
+ outputs = [ "out" "lib" "python" ];
# Clang expects to find LLVMgold in its own prefix
# Clang expects to find sanitizer libraries in its own prefix
@@ -40,6 +40,11 @@ let
ln -sv ${llvm}/lib/clang/${version}/lib $out/lib/clang/${version}/
ln -sv $out/bin/clang $out/bin/cpp
+ # Move libclang to 'lib' output
+ moveToOutput "lib/libclang.*" "$lib"
+ substituteInPlace $out/lib/cmake/clang/ClangTargets-release.cmake \
+ --replace "\''${_IMPORT_PREFIX}/lib/libclang." "$lib/lib/libclang."
+
mkdir -p $python/bin $python/share/clang/
mv $out/bin/{git-clang-format,scan-view} $python/bin
if [ -e $out/bin/set-xcode-analyzer ]; then
@@ -53,7 +58,6 @@ let
enableParallelBuilding = true;
passthru = {
- lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both
isClang = true;
inherit llvm;
} // stdenv.lib.optionalAttrs stdenv.isLinux {
diff --git a/pkgs/development/compilers/llvm/3.9/default.nix b/pkgs/development/compilers/llvm/3.9/default.nix
index 5ce51bc9c12..a675bcceb1c 100644
--- a/pkgs/development/compilers/llvm/3.9/default.nix
+++ b/pkgs/development/compilers/llvm/3.9/default.nix
@@ -22,6 +22,8 @@ let
inherit clang-tools-extra_src stdenv;
};
+ libclang = self.clang-unwrapped.lib;
+
clang = if stdenv.cc.isGNU then self.libstdcxxClang else self.libcxxClang;
libstdcxxClang = ccWrapperFun {
@@ -41,15 +43,11 @@ let
stdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.clang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
libcxxStdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.libcxxClang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
lldb = callPackage ./lldb.nix {};
diff --git a/pkgs/development/compilers/llvm/4/clang/default.nix b/pkgs/development/compilers/llvm/4/clang/default.nix
index 8d40ee3c8aa..a2ba1fe7f4c 100644
--- a/pkgs/development/compilers/llvm/4/clang/default.nix
+++ b/pkgs/development/compilers/llvm/4/clang/default.nix
@@ -5,7 +5,7 @@
let
gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
- self = stdenv.mkDerivation {
+ self = stdenv.mkDerivation ({
name = "clang-${version}";
unpackPhase = ''
@@ -37,9 +37,8 @@ let
patches = [ ./purity.patch ];
- postBuild = stdenv.lib.optionalString enableManpages ''
- cmake --build . --target docs-clang-man
- '';
+ # XXX: TODO: This should be removed on next rebuild
+ postBuild = "";
postPatch = ''
sed -i -e 's/Args.hasArg(options::OPT_nostdlibinc)/true/' lib/Driver/Tools.cpp
@@ -49,8 +48,7 @@ let
sed -i '1s,^,find_package(Sphinx REQUIRED)\n,' docs/CMakeLists.txt
'';
- outputs = [ "out" "python" ]
- ++ stdenv.lib.optional enableManpages "man";
+ outputs = [ "out" "lib" "python" ];
# Clang expects to find LLVMgold in its own prefix
# Clang expects to find sanitizer libraries in its own prefix
@@ -59,27 +57,23 @@ let
ln -sv ${llvm}/lib/clang/${release_version}/lib $out/lib/clang/${release_version}/
ln -sv $out/bin/clang $out/bin/cpp
+ # Move libclang to 'lib' output
+ moveToOutput "lib/libclang.*" "$lib"
+ substituteInPlace $out/lib/cmake/clang/ClangTargets-release.cmake \
+ --replace "\''${_IMPORT_PREFIX}/lib/libclang." "$lib/lib/libclang."
+
mkdir -p $python/bin $python/share/clang/
mv $out/bin/{git-clang-format,scan-view} $python/bin
if [ -e $out/bin/set-xcode-analyzer ]; then
mv $out/bin/set-xcode-analyzer $python/bin
fi
mv $out/share/clang/*.py $python/share/clang
-
rm $out/bin/c-index-test
- ''
- + stdenv.lib.optionalString enableManpages ''
- # Manually install clang manpage
- cp docs/man/*.1 $out/share/man/man1/
-
- # Move it and other man pages to 'man' output
- moveToOutput "share/man" "$man"
'';
enableParallelBuilding = true;
passthru = {
- lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both
isClang = true;
inherit llvm;
} // stdenv.lib.optionalAttrs stdenv.isLinux {
@@ -92,5 +86,23 @@ let
license = stdenv.lib.licenses.ncsa;
platforms = stdenv.lib.platforms.all;
};
- };
+ } // stdenv.lib.optionalAttrs enableManpages {
+ name = "clang-manpages-${version}";
+
+ buildPhase = ''
+ make docs-clang-man
+ '';
+
+ installPhase = ''
+ mkdir -p $out/share/man/man1
+ # Manually install clang manpage
+ cp docs/man/*.1 $out/share/man/man1/
+ '';
+
+ outputs = [ "out" ];
+
+ doCheck = false;
+
+ meta.description = "man page for Clang ${version}";
+ });
in self
diff --git a/pkgs/development/compilers/llvm/4/default.nix b/pkgs/development/compilers/llvm/4/default.nix
index fa61a6c22e7..562f9e3457d 100644
--- a/pkgs/development/compilers/llvm/4/default.nix
+++ b/pkgs/development/compilers/llvm/4/default.nix
@@ -20,7 +20,7 @@ let
# Add man output without introducing extra dependencies.
overrideManOutput = drv:
let drv-manpages = drv.override { enableManpages = true; }; in
- drv // { man = drv-manpages.man; /*outputs = drv.outputs ++ ["man"];*/ };
+ drv // { man = drv-manpages.out; /*outputs = drv.outputs ++ ["man"];*/ };
llvm = callPackage ./llvm.nix {
inherit compiler-rt_src stdenv;
@@ -34,6 +34,7 @@ let
llvm = overrideManOutput llvm;
clang-unwrapped = overrideManOutput clang-unwrapped;
+ libclang = self.clang-unwrapped.lib;
llvm-manpages = lowPrio self.llvm.man;
clang-manpages = lowPrio self.clang-unwrapped.man;
@@ -56,15 +57,11 @@ let
stdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.clang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
libcxxStdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.libcxxClang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
lld = callPackage ./lld.nix {};
diff --git a/pkgs/development/compilers/llvm/4/lldb.nix b/pkgs/development/compilers/llvm/4/lldb.nix
index 7d33179913b..5ffc346a479 100644
--- a/pkgs/development/compilers/llvm/4/lldb.nix
+++ b/pkgs/development/compilers/llvm/4/lldb.nix
@@ -43,6 +43,11 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
+ postInstall = ''
+ mkdir -p $out/share/man/man1
+ cp ../docs/lldb.1 $out/share/man/man1/
+ '';
+
meta = with stdenv.lib; {
description = "A next-generation high-performance debugger";
homepage = http://llvm.org/;
diff --git a/pkgs/development/compilers/llvm/4/llvm.nix b/pkgs/development/compilers/llvm/4/llvm.nix
index 33147b07599..711024c7d3c 100644
--- a/pkgs/development/compilers/llvm/4/llvm.nix
+++ b/pkgs/development/compilers/llvm/4/llvm.nix
@@ -27,7 +27,7 @@ let
# Used when creating a version-suffixed symlink of libLLVM.dylib
shortVersion = with stdenv.lib;
concatStringsSep "." (take 2 (splitString "." release_version));
-in stdenv.mkDerivation rec {
+in stdenv.mkDerivation (rec {
name = "llvm-${version}";
unpackPhase = ''
@@ -39,8 +39,7 @@ in stdenv.mkDerivation rec {
'';
outputs = [ "out" ]
- ++ stdenv.lib.optional enableSharedLibraries "lib"
- ++ stdenv.lib.optional enableManpages "man";
+ ++ stdenv.lib.optional enableSharedLibraries "lib";
nativeBuildInputs = [ perl groff cmake python ]
++ stdenv.lib.optional enableManpages python.pkgs.sphinx;
@@ -129,10 +128,7 @@ in stdenv.mkDerivation rec {
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
'';
- postInstall = stdenv.lib.optionalString enableManpages ''
- moveToOutput "share/man" "$man"
- ''
- + stdenv.lib.optionalString enableSharedLibraries ''
+ postInstall = stdenv.lib.optionalString enableSharedLibraries ''
moveToOutput "lib/libLLVM-*" "$lib"
moveToOutput "lib/libLLVM${stdenv.hostPlatform.extensions.sharedLibrary}" "$lib"
substituteInPlace "$out/lib/cmake/llvm/LLVMExports-${if debugVersion then "debug" else "release"}.cmake" \
@@ -160,4 +156,22 @@ in stdenv.mkDerivation rec {
maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric dtzWill ];
platforms = stdenv.lib.platforms.all;
};
-}
+} // stdenv.lib.optionalAttrs enableManpages {
+ name = "llvm-manpages-${version}";
+
+ buildPhase = ''
+ make docs-llvm-man
+ '';
+
+ propagatedBuildInputs = [ ];
+
+ installPhase = ''
+ make -C docs install
+ '';
+
+ outputs = [ "out" ];
+
+ doCheck = false;
+
+ meta.description = "man pages for LLVM ${version}";
+})
diff --git a/pkgs/development/compilers/llvm/5/clang/default.nix b/pkgs/development/compilers/llvm/5/clang/default.nix
index fa8502ebd67..0ee1404484b 100644
--- a/pkgs/development/compilers/llvm/5/clang/default.nix
+++ b/pkgs/development/compilers/llvm/5/clang/default.nix
@@ -5,11 +5,11 @@
let
gcc = if stdenv.cc.isGNU then stdenv.cc.cc else stdenv.cc.cc.gcc;
- self = stdenv.mkDerivation {
+ self = stdenv.mkDerivation ({
name = "clang-${version}";
unpackPhase = ''
- unpackFile ${fetch "cfe" "0w09s8fn3lkn6i04nj0cisgp821r815fk5b5fjn97xrd371277q1"}
+ unpackFile ${fetch "cfe" "1zyh4dggxd55lnfg73c8fybnkssqcaa6bq2h4bzimnnj1jdnqpqk"}
mv cfe-${version}* clang
sourceRoot=$PWD/clang
unpackFile ${clang-tools-extra_src}
@@ -37,9 +37,8 @@ let
patches = [ ./purity.patch ];
- postBuild = stdenv.lib.optionalString enableManpages ''
- cmake --build . --target docs-clang-man
- '';
+ # XXX: TODO: This should be removed on next rebuild
+ postBuild = "";
postPatch = ''
sed -i -e 's/DriverArgs.hasArg(options::OPT_nostdlibinc)/true/' \
@@ -50,8 +49,7 @@ let
sed -i '1s,^,find_package(Sphinx REQUIRED)\n,' docs/CMakeLists.txt
'';
- outputs = [ "out" "python" ]
- ++ stdenv.lib.optional enableManpages "man";
+ outputs = [ "out" "lib" "python" ];
# Clang expects to find LLVMgold in its own prefix
# Clang expects to find sanitizer libraries in its own prefix
@@ -60,27 +58,23 @@ let
ln -sv ${llvm}/lib/clang/${release_version}/lib $out/lib/clang/${release_version}/
ln -sv $out/bin/clang $out/bin/cpp
+ # Move libclang to 'lib' output
+ moveToOutput "lib/libclang.*" "$lib"
+ substituteInPlace $out/lib/cmake/clang/ClangTargets-release.cmake \
+ --replace "\''${_IMPORT_PREFIX}/lib/libclang." "$lib/lib/libclang."
+
mkdir -p $python/bin $python/share/clang/
mv $out/bin/{git-clang-format,scan-view} $python/bin
if [ -e $out/bin/set-xcode-analyzer ]; then
mv $out/bin/set-xcode-analyzer $python/bin
fi
mv $out/share/clang/*.py $python/share/clang
-
rm $out/bin/c-index-test
- ''
- + stdenv.lib.optionalString enableManpages ''
- # Manually install clang manpage
- cp docs/man/*.1 $out/share/man/man1/
-
- # Move it and other man pages to 'man' output
- moveToOutput "share/man" "$man"
'';
enableParallelBuilding = true;
passthru = {
- lib = self; # compatibility with gcc, so that `stdenv.cc.cc.lib` works on both
isClang = true;
inherit llvm;
} // stdenv.lib.optionalAttrs stdenv.isLinux {
@@ -93,5 +87,23 @@ let
license = stdenv.lib.licenses.ncsa;
platforms = stdenv.lib.platforms.all;
};
- };
+ } // stdenv.lib.optionalAttrs enableManpages {
+ name = "clang-manpages-${version}";
+
+ buildPhase = ''
+ make docs-clang-man
+ '';
+
+ installPhase = ''
+ mkdir -p $out/share/man/man1
+ # Manually install clang manpage
+ cp docs/man/*.1 $out/share/man/man1/
+ '';
+
+ outputs = [ "out" ];
+
+ doCheck = false;
+
+ meta.description = "man page for Clang ${version}";
+ });
in self
diff --git a/pkgs/development/compilers/llvm/5/default.nix b/pkgs/development/compilers/llvm/5/default.nix
index 9891f3090ac..13e1d2308f8 100644
--- a/pkgs/development/compilers/llvm/5/default.nix
+++ b/pkgs/development/compilers/llvm/5/default.nix
@@ -6,7 +6,7 @@
let
callPackage = newScope (self // { inherit stdenv cmake libxml2 python2 isl release_version version fetch; });
- release_version = "5.0.0";
+ release_version = "5.0.1";
version = release_version; # differentiating these is important for rc's
fetch = name: sha256: fetchurl {
@@ -14,13 +14,13 @@ let
inherit sha256;
};
- compiler-rt_src = fetch "compiler-rt" "1cy0y389zxn7mk8vffqvfirk9bbcbc8ziwc1nf1a8d118rk55bfm";
- clang-tools-extra_src = fetch "clang-tools-extra" "1ikkv6k8cfgpjqlm24iqz52i5nyafzsc4dyikzzyb9n4b6wpil47";
+ compiler-rt_src = fetch "compiler-rt" "1nlmm0b3wpdwxkldqp1klzv3rpqf94q2a248xgqb7aapyhbi9paf";
+ clang-tools-extra_src = fetch "clang-tools-extra" "09fjii7w43kvxvsxxs6gig9vz95vnvx1779rqd36h8kksvws3bcs";
# Add man output without introducing extra dependencies.
overrideManOutput = drv:
let drv-manpages = drv.override { enableManpages = true; }; in
- drv // { man = drv-manpages.man; /*outputs = drv.outputs ++ ["man"];*/ };
+ drv // { man = drv-manpages.out; /*outputs = drv.outputs ++ ["man"];*/ };
llvm = callPackage ./llvm.nix {
inherit compiler-rt_src stdenv;
@@ -34,6 +34,7 @@ let
llvm = overrideManOutput llvm;
clang-unwrapped = overrideManOutput clang-unwrapped;
+ libclang = self.clang-unwrapped.lib;
llvm-manpages = lowPrio self.llvm.man;
clang-manpages = lowPrio self.clang-unwrapped.man;
@@ -56,15 +57,11 @@ let
stdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.clang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
libcxxStdenv = stdenv.override (drv: {
allowedRequisites = null;
cc = self.libcxxClang;
- # Don't include the libc++ and libc++abi from the original stdenv.
- extraBuildInputs = stdenv.lib.optional stdenv.isDarwin darwin.CF;
});
lld = callPackage ./lld.nix {};
diff --git a/pkgs/development/compilers/llvm/5/libc++/default.nix b/pkgs/development/compilers/llvm/5/libc++/default.nix
index 036161f7b88..6f03e225ad6 100644
--- a/pkgs/development/compilers/llvm/5/libc++/default.nix
+++ b/pkgs/development/compilers/llvm/5/libc++/default.nix
@@ -3,7 +3,7 @@
stdenv.mkDerivation rec {
name = "libc++-${version}";
- src = fetch "libcxx" "1cf953msb0vwgjjrapw06950dnsdb2ps305czkn0vvr1k8g9irga";
+ src = fetch "libcxx" "003wwniwlikgh38cbqbcshc5gkiv3a2jkmbn6am9s46y5gfrk3zs";
postUnpack = ''
unpackFile ${libcxxabi.src}
diff --git a/pkgs/development/compilers/llvm/5/libc++abi.nix b/pkgs/development/compilers/llvm/5/libc++abi.nix
index 5a2a269345d..166f4260291 100644
--- a/pkgs/development/compilers/llvm/5/libc++abi.nix
+++ b/pkgs/development/compilers/llvm/5/libc++abi.nix
@@ -3,7 +3,7 @@
stdenv.mkDerivation {
name = "libc++abi-${version}";
- src = fetch "libcxxabi" "04c9dfmrr8diih73x0wq99dk9xb99mg0bvsnbhx5q912xg3ihs8p";
+ src = fetch "libcxxabi" "0m78yr4arlz2b9m96xcygk15m2pbz8i10snk78i3q7pjnwn1a9as";
nativeBuildInputs = [ cmake ];
buildInputs = stdenv.lib.optional (!stdenv.isDarwin && !stdenv.isFreeBSD) libunwind;
diff --git a/pkgs/development/compilers/llvm/5/lld.nix b/pkgs/development/compilers/llvm/5/lld.nix
index f19a9afc804..1d00b16cce1 100644
--- a/pkgs/development/compilers/llvm/5/lld.nix
+++ b/pkgs/development/compilers/llvm/5/lld.nix
@@ -10,7 +10,7 @@
stdenv.mkDerivation {
name = "lld-${version}";
- src = fetch "lld" "15rqsmfw0jlsri7hszbs8l0j7v1030cy9xvvdb245397llh7k6ir";
+ src = fetch "lld" "15fq2zvkliyiw5qi7ig2r8bshgbz4kzvs5in16mhfkw20l06rcym";
nativeBuildInputs = [ cmake ];
buildInputs = [ llvm ];
diff --git a/pkgs/development/compilers/llvm/5/lldb.nix b/pkgs/development/compilers/llvm/5/lldb.nix
index fac23b290bc..559c52831cd 100644
--- a/pkgs/development/compilers/llvm/5/lldb.nix
+++ b/pkgs/development/compilers/llvm/5/lldb.nix
@@ -17,7 +17,7 @@
stdenv.mkDerivation {
name = "lldb-${version}";
- src = fetch "lldb" "0zcbav39srf6awv9znvzr7nqdrj704i8da3wdgc8362y20rcm860";
+ src = fetch "lldb" "0sipv8k37ai44m7jcf6wsbm2q41dgk3sk9m3i6823jkmg7kckhdp";
postPatch = ''
# Fix up various paths that assume llvm and clang are installed in the same place
@@ -42,6 +42,11 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
+ postInstall = ''
+ mkdir -p $out/share/man/man1
+ cp ../docs/lldb.1 $out/share/man/man1/
+ '';
+
meta = with stdenv.lib; {
description = "A next-generation high-performance debugger";
homepage = http://llvm.org/;
diff --git a/pkgs/development/compilers/llvm/5/llvm.nix b/pkgs/development/compilers/llvm/5/llvm.nix
index 8358b6b18c3..400ffa34117 100644
--- a/pkgs/development/compilers/llvm/5/llvm.nix
+++ b/pkgs/development/compilers/llvm/5/llvm.nix
@@ -22,12 +22,12 @@
}:
let
- src = fetch "llvm" "1nin64vz21hyng6jr19knxipvggaqlkl2l9jpd5czbc4c2pcnpg3";
+ src = fetch "llvm" "1c07i0b61j69m578lgjkyayg419sh7sn40xb3j112nr2q2gli9sz";
# Used when creating a version-suffixed symlink of libLLVM.dylib
shortVersion = with stdenv.lib;
concatStringsSep "." (take 2 (splitString "." release_version));
-in stdenv.mkDerivation rec {
+in stdenv.mkDerivation (rec {
name = "llvm-${version}";
unpackPhase = ''
@@ -39,8 +39,7 @@ in stdenv.mkDerivation rec {
'';
outputs = [ "out" ]
- ++ stdenv.lib.optional enableSharedLibraries "lib"
- ++ stdenv.lib.optional enableManpages "man";
+ ++ stdenv.lib.optional enableSharedLibraries "lib";
nativeBuildInputs = [ perl groff cmake python ]
++ stdenv.lib.optional enableManpages python.pkgs.sphinx;
@@ -123,10 +122,7 @@ in stdenv.mkDerivation rec {
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/lib
'';
- postInstall = stdenv.lib.optionalString enableManpages ''
- moveToOutput "share/man" "$man"
- ''
- + stdenv.lib.optionalString enableSharedLibraries ''
+ postInstall = stdenv.lib.optionalString enableSharedLibraries ''
moveToOutput "lib/libLLVM-*" "$lib"
moveToOutput "lib/libLLVM${stdenv.hostPlatform.extensions.sharedLibrary}" "$lib"
substituteInPlace "$out/lib/cmake/llvm/LLVMExports-${if debugVersion then "debug" else "release"}.cmake" \
@@ -154,4 +150,22 @@ in stdenv.mkDerivation rec {
maintainers = with stdenv.lib.maintainers; [ lovek323 raskin viric dtzWill ];
platforms = stdenv.lib.platforms.all;
};
-}
+} // stdenv.lib.optionalAttrs enableManpages {
+ name = "llvm-manpages-${version}";
+
+ buildPhase = ''
+ make docs-llvm-man
+ '';
+
+ propagatedBuildInputs = [];
+
+ installPhase = ''
+ make -C docs install
+ '';
+
+ outputs = [ "out" ];
+
+ doCheck = false;
+
+ meta.description = "man pages for LLVM ${version}";
+})
diff --git a/pkgs/development/compilers/llvm/5/openmp.nix b/pkgs/development/compilers/llvm/5/openmp.nix
index 9ba42eed2e2..5a01c191b5a 100644
--- a/pkgs/development/compilers/llvm/5/openmp.nix
+++ b/pkgs/development/compilers/llvm/5/openmp.nix
@@ -10,7 +10,7 @@
stdenv.mkDerivation {
name = "openmp-${version}";
- src = fetch "openmp" "1igplg89bl6k6r9q88hnpcznq3g9lb79w7bix025lwp00ldhivy0";
+ src = fetch "openmp" "0lr6r87xzg87w1q9rrh04nqpyr8c929dh4qy3csjiy7rsb6kbdmd";
nativeBuildInputs = [ cmake perl ];
buildInputs = [ llvm ];
diff --git a/pkgs/development/compilers/mentor/default.nix b/pkgs/development/compilers/mentor/default.nix
index 74905c6ffae..7cd3c179366 100644
--- a/pkgs/development/compilers/mentor/default.nix
+++ b/pkgs/development/compilers/mentor/default.nix
@@ -46,7 +46,7 @@ let
meta = with stdenv.lib; {
inherit description;
- homepage = http://www.mentor.com/embedded-software/sourcery-tools/sourcery-codebench/editions/lite-edition/;
+ homepage = https://www.mentor.com/embedded-software/sourcery-tools/sourcery-codebench/editions/lite-edition/;
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = [ maintainers.bjornfor ];
diff --git a/pkgs/development/compilers/mit-scheme/default.nix b/pkgs/development/compilers/mit-scheme/default.nix
index 076f3c95675..4670f39eac1 100644
--- a/pkgs/development/compilers/mit-scheme/default.nix
+++ b/pkgs/development/compilers/mit-scheme/default.nix
@@ -1,4 +1,5 @@
-{ fetchurl, stdenv, makeWrapper, gnum4, texinfo, texLive, automake }:
+{ fetchurl, stdenv, makeWrapper, gnum4, texinfo, texLive, automake,
+ enableX11 ? false, xlibsWrapper ? null }:
let
version = "9.2";
@@ -9,7 +10,7 @@ let
else "";
in
stdenv.mkDerivation {
- name = "mit-scheme-${version}";
+ name = if enableX11 then "mit-scheme-x11-${version}" else "mit-scheme-${version}";
# MIT/GNU Scheme is not bootstrappable, so it's recommended to compile from
# the platform-specific tarballs, which contain pre-built binaries. It
@@ -29,6 +30,8 @@ stdenv.mkDerivation {
sha256 = "0w5ib5vsidihb4hb6fma3sp596ykr8izagm57axvgd6lqzwicsjg";
};
+ buildInputs = if enableX11 then [xlibsWrapper] else [];
+
configurePhase =
'' (cd src && ./configure)
(cd doc && ./configure)
diff --git a/pkgs/development/compilers/mono/5.4.nix b/pkgs/development/compilers/mono/5.4.nix
new file mode 100644
index 00000000000..31e86f94c0a
--- /dev/null
+++ b/pkgs/development/compilers/mono/5.4.nix
@@ -0,0 +1,8 @@
+{ stdenv, callPackage, Foundation, libobjc }:
+
+callPackage ./generic-cmake.nix (rec {
+ inherit Foundation libobjc;
+ version = "5.4.1.6";
+ sha256 = "1pv5lmyxjr8z9s17jx19850k43ylzqlbzsgr5jxj1knmkbza1zdx";
+ enableParallelBuilding = false; # #32386, https://hydra.nixos.org/build/65820147
+})
diff --git a/pkgs/development/compilers/mono/generic-cmake.nix b/pkgs/development/compilers/mono/generic-cmake.nix
index de19e4b633e..7621bd56d47 100644
--- a/pkgs/development/compilers/mono/generic-cmake.nix
+++ b/pkgs/development/compilers/mono/generic-cmake.nix
@@ -64,7 +64,7 @@ stdenv.mkDerivation rec {
postBuild = ''
find . -name 'config' -type f | xargs \
sed -i -e "s@libX11.so.6@${libX11.out}/lib/libX11.so.6@g" \
- -e "s@/.*libgdiplus.so@${libgdiplus}/lib/libgdiplus.so@g" \
+ -e 's#[^"]*libgdiplus[^"]*"#${libgdiplus}/lib/libgdiplus.so"#' \
'';
# Without this, any Mono application attempting to open an SSL connection will throw with
diff --git a/pkgs/development/compilers/mono/generic.nix b/pkgs/development/compilers/mono/generic.nix
index 51e39593fe1..a8012f6bb9e 100644
--- a/pkgs/development/compilers/mono/generic.nix
+++ b/pkgs/development/compilers/mono/generic.nix
@@ -88,7 +88,7 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://mono-project.com/;
description = "Cross platform, open source .NET development framework";
- platforms = with stdenv.lib.platforms; darwin ++ linux;
+ platforms = with stdenv.lib.platforms; allBut [ "aarch64-linux" ];
maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz vrthra ];
license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ?
};
diff --git a/pkgs/development/compilers/neko/default.nix b/pkgs/development/compilers/neko/default.nix
index 236273bf6be..4dce11f93b1 100644
--- a/pkgs/development/compilers/neko/default.nix
+++ b/pkgs/development/compilers/neko/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, boehmgc, zlib, sqlite, pcre, cmake, pkgconfig
-, git, apacheHttpd, apr, aprutil, mariadb, mbedtls, openssl, pkgs, gtk2, libpthreadstubs
+, git, apacheHttpd, apr, aprutil, mysql, mbedtls, openssl, pkgs, gtk2, libpthreadstubs
}:
stdenv.mkDerivation rec {
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig git ];
buildInputs =
[ boehmgc zlib sqlite pcre apacheHttpd apr aprutil
- mariadb.client mbedtls openssl libpthreadstubs ]
+ mysql.connector-c mbedtls openssl libpthreadstubs ]
++ stdenv.lib.optional stdenv.isLinux gtk2
++ stdenv.lib.optionals stdenv.isDarwin [ pkgs.darwin.apple_sdk.frameworks.Security
pkgs.darwin.apple_sdk.frameworks.Carbon];
diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix
index fde4861e982..a49b1b82439 100644
--- a/pkgs/development/compilers/nim/default.nix
+++ b/pkgs/development/compilers/nim/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "0.17.2";
src = fetchurl {
- url = "http://nim-lang.org/download/${name}.tar.xz";
+ url = "https://nim-lang.org/download/${name}.tar.xz";
sha256 = "1gc2xk3ygmz9y4pm75pligssgw995a7gvnfpy445fjpw4d81pzxa";
};
@@ -52,7 +52,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Statically typed, imperative programming language";
- homepage = http://nim-lang.org/;
+ homepage = https://nim-lang.org/;
license = licenses.mit;
maintainers = with maintainers; [ ehmry peterhoeg ];
platforms = with platforms; linux ++ darwin; # arbitrary
diff --git a/pkgs/development/compilers/ocaml/generic.nix b/pkgs/development/compilers/ocaml/generic.nix
index 17b3033c31d..03ae6e518d0 100644
--- a/pkgs/development/compilers/ocaml/generic.nix
+++ b/pkgs/development/compilers/ocaml/generic.nix
@@ -10,14 +10,18 @@ let
safeX11 = stdenv: !(stdenv.isArm || stdenv.isMips);
in
-{ stdenv, fetchurl, ncurses, buildEnv, libX11, xproto, useX11 ? safeX11 stdenv }:
+{ stdenv, fetchurl, ncurses, buildEnv
+, libX11, xproto, useX11 ? safeX11 stdenv
+, flambdaSupport ? false
+}:
assert useX11 -> !stdenv.isArm && !stdenv.isMips;
+assert flambdaSupport -> stdenv.lib.versionAtLeast version "4.03";
let
useNativeCompilers = !stdenv.isMips;
- inherit (stdenv.lib) optionals optionalString;
- name = "ocaml-${version}";
+ inherit (stdenv.lib) optional optionals optionalString;
+ name = "ocaml${optionalString flambdaSupport "+flambda"}-${version}";
in
stdenv.mkDerivation (args // rec {
@@ -36,7 +40,9 @@ stdenv.mkDerivation (args // rec {
prefixKey = "-prefix ";
configureFlags = optionals useX11 [ "-x11lib" x11lib
- "-x11include" x11inc ];
+ "-x11include" x11inc ]
+ ++ optional flambdaSupport "-flambda"
+ ;
buildFlags = "world" + optionalString useNativeCompilers " bootstrap world.opt";
buildInputs = [ncurses] ++ optionals useX11 [ libX11 xproto ];
diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix
index 71ce9271bfa..b74c8a47dde 100644
--- a/pkgs/development/compilers/openjdk/8.nix
+++ b/pkgs/development/compilers/openjdk/8.nix
@@ -21,42 +21,42 @@ let
else
throw "openjdk requires i686-linux or x86_64 linux";
- update = "152";
- build = "16";
+ update = "172";
+ build = "02";
baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u";
repover = "jdk8u${update}-b${build}";
paxflags = if stdenv.isi686 then "msp" else "m";
jdk8 = fetchurl {
url = "${baseurl}/archive/${repover}.tar.gz";
- sha256 = "12r5v6srwbm5hcfwz5kib7419a72cppls1d1xkrh5pjlina74zpf";
+ sha256 = "0y28by4ifsaxhfrzq35654i8h9jjgvrw51hbxyg8pgfink0n30r2";
};
langtools = fetchurl {
url = "${baseurl}/langtools/archive/${repover}.tar.gz";
- sha256 = "002f0nfw2g3q41iy8cvaqyiglcy1fx9dglgik8gv067c2zslwwqm";
+ sha256 = "0rxp4920xpd9khdg2ia1v1djcw1nndsjfis68whawi7s95zwpxy5";
};
hotspot = fetchurl {
url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
- sha256 = "0mnck2c3ky4hbcjfy6p3z831dxm1y2fkxq5k94zbswm4wcvlkzia";
+ sha256 = "0sdf6rww290wgfqhaix1vjac244drdgg7hapb67wgj733kkdl711";
};
corba = fetchurl {
url = "${baseurl}/corba/archive/${repover}.tar.gz";
- sha256 = "1xl3mc3hd5lwh1bxzck4hw60d678h3mjh144kq90iz8kfi197hpj";
+ sha256 = "0vl3aryw3nclqprc35b2iriwfyr9fch3x8snjry1z5ajbdyd5c8b";
};
jdk = fetchurl {
url = "${baseurl}/jdk/archive/${repover}.tar.gz";
- sha256 = "1hsfgjhp5nrsy4v6c282wq6cv37hgpm8l51cls0rnpbfqvd2cw16";
+ sha256 = "1y5fnzxdll3q0jgqxsap3xb21bm1napdlqzs7h6c2l5qldyvw692";
};
jaxws = fetchurl {
url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
- sha256 = "07ispgrzcf39nxs7a9yn6gkbq0ygdzlzyq32sfk57w6vy1mrgwjh";
+ sha256 = "1yg1ik1klg8pl4b7izi2waqhs7vr6ln3fzc4k1siir4va5qhrhlm";
};
jaxp = fetchurl {
url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
- sha256 = "1kj5w6gk579wh1iszq2bn6k1ib7kjpjf1lp46p5rqkx0qin79sn9";
+ sha256 = "03srcj6hhvbdg1iqw85mfm1pwd6yvpykyz5nn4ydf930g4dyxfkf";
};
nashorn = fetchurl {
url = "${baseurl}/nashorn/archive/${repover}.tar.gz";
- sha256 = "1j9r5r8rihp02n0ciwqr01c07d91z1hs0069rd8hk6i03dkkhk84";
+ sha256 = "12nn02jiq3vqgwhqh5yvxq1k92fy3n0jpvfpj1npq9fvimywry2k";
};
openjdk8 = stdenv.mkDerivation {
name = "openjdk-8u${update}b${build}";
diff --git a/pkgs/development/compilers/openjdk/9.nix b/pkgs/development/compilers/openjdk/9.nix
index f76d1e8ffb5..0a9be04ebb2 100644
--- a/pkgs/development/compilers/openjdk/9.nix
+++ b/pkgs/development/compilers/openjdk/9.nix
@@ -21,42 +21,42 @@ let
else
throw "openjdk requires i686-linux or x86_64 linux";
- update = "9.0.1";
+ update = "9.0.4";
build = "11";
baseurl = "http://hg.openjdk.java.net/jdk-updates/jdk9u";
repover = "jdk-${update}+${build}";
paxflags = if stdenv.isi686 then "msp" else "m";
jdk9 = fetchurl {
url = "${baseurl}/archive/${repover}.tar.gz";
- sha256 = "13zqai3kpk5yi7yg3f7n2ss8spzyq0zy9431y97ni0j72h8ddsvy";
+ sha256 = "1y8sq0fxvj5s5gx5qm2mbr710xqrgv3d200k6bv71bawjh57v3xx";
};
langtools = fetchurl {
url = "${baseurl}/langtools/archive/${repover}.tar.gz";
- sha256 = "1w2djchv3dr8hv815kxfi1458n1nbq23yzv4p8rxpl1fzxrcd5pm";
+ sha256 = "1n6aqmph6a9spxyfi40k8g5hy2bnfd499gr6jkmq49phdb2qg7wy";
};
hotspot = fetchurl {
url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
- sha256 = "1kb4h9w0xbxvndi5rk3byv3v95883nkqdzjadbw1cvqvzp3kgaw8";
+ sha256 = "1i34k3pc2slnjk469zskqq1z0jna1xg2zzjdk7zjrhrfgsrgvfsh";
};
corba = fetchurl {
url = "${baseurl}/corba/archive/${repover}.tar.gz";
- sha256 = "0hqzmlg6dmr67ghrlh515iam34d9jx4jcdbhchbl2ny00q42diy2";
+ sha256 = "1k6r5yxf5h1m451vlwzk9zqkmdlln3ky3kir5qjgan4hz892f297";
};
jdk = fetchurl {
url = "${baseurl}/jdk/archive/${repover}.tar.gz";
- sha256 = "0km0k9hi8wfv2d10i08jgb4kf0l8jhp1174dsmmc9yh0ig1vij08";
+ sha256 = "0gafc0jx8fx13y6iir9zxmqrsw1a3w71xgdvjx9rk64acc24piy2";
};
jaxws = fetchurl {
url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
- sha256 = "1crsr3hcq4j0xbmn1jcsw0m6hxqqkxxsib86i63vvcha94336iyp";
+ sha256 = "1bw3z346mna6pgz76phcmfm0ykydcwagqxhffj0mzbdll7ysw25p";
};
jaxp = fetchurl {
url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
- sha256 = "1w9i1zl72nq7aw9l50fc7dlggiy7iq52p8xh44hv50mdvn0xsa4k";
+ sha256 = "063fhnmm2g83jrdv2bl968glr46vvgjpyk9rjmh2fwfplzclb51s";
};
nashorn = fetchurl {
url = "${baseurl}/nashorn/archive/${repover}.tar.gz";
- sha256 = "0rm50mk6935iqx2rla6j8j8kjs0p4f7rff0wsp0qvbf6g0pwwks1";
+ sha256 = "0wyx76nd4v6xy4vmp94anxwk9bfqyb0l4n3hqhfqyz6azi8pqk66";
};
openjdk9 = stdenv.mkDerivation {
name = "openjdk-${update}-b${build}";
diff --git a/pkgs/development/compilers/oraclejdk/jdk8cpu-linux.nix b/pkgs/development/compilers/oraclejdk/jdk8cpu-linux.nix
index 096fe9dbb2b..5bafa70af9f 100644
--- a/pkgs/development/compilers/oraclejdk/jdk8cpu-linux.nix
+++ b/pkgs/development/compilers/oraclejdk/jdk8cpu-linux.nix
@@ -1,11 +1,11 @@
import ./jdk-linux-base.nix {
productVersion = "8";
- patchVersion = "151";
+ patchVersion = "161";
downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html;
- sha256.i686-linux = "0w1snn9hxwvdnk77frhdzbsm6v30v99dy5zmpy8ij7yxd57z6ql0";
- sha256.x86_64-linux = "0zq2dxbxmshz080yskhc8y2wbqi0y0kl9girxjbb4rwk837010n7";
- sha256.armv7l-linux = "0fdkvg1al7g9lqbq10rlw400aqr0xxi2a802319sw5n0zipkrjic";
- sha256.aarch64-linux = "1xva22cjjpwa95h7x3xzyymn1bgxp1q67j5j304kn6cqah4k31j1";
+ sha256.i686-linux = "1p6p93msn3bsg9775rq171kd4160w4w8z57p0qpjdjycfix62sfg";
+ sha256.x86_64-linux = "07h2wah80qr78y0f821z12lbdmsv90xbckdn3glnj2riwfh5dg3d";
+ sha256.armv7l-linux = "0mngw2lnhx3hzgp444advybhjn5hjk3mi14y72km4kp03gh82a7x";
+ sha256.aarch64-linux = "18l5fny7yxhpj5c935rnlq4pvwadyr5zkid6yh9x87frl401shy7";
jceName = "jce_policy-8.zip";
jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html;
sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";
diff --git a/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix b/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix
index 6c2816c8b87..78d5a6f2c40 100644
--- a/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix
+++ b/pkgs/development/compilers/oraclejdk/jdk8psu-linux.nix
@@ -1,11 +1,11 @@
import ./jdk-linux-base.nix {
productVersion = "8";
- patchVersion = "152";
+ patchVersion = "162";
downloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html;
- sha256.i686-linux = "0gjc7kcfx40f43z1w1qsn1fqxdz8d46wml2g11qgm55ishhv2q7w";
- sha256.x86_64-linux = "1gv1348hrgna9l3sssv3g9jzs37y1lkx05xq83chav9z1hs3p2r1";
- sha256.armv7l-linux = "1w0hwslsd3z0kvb3z7gmbh20xsyiz73vglmdqz2108y7alim7arm";
- sha256.aarch64-linux = "13qpxa8nxsnikmm7h6ysnsdqg5vl8j7hzfa8kgh20z8a17fhj9kk";
+ sha256.i686-linux = "097vlvvj1vr7815rgarf5x97lagi4q0kai0x4lvd4y3wrzdqikzf";
+ sha256.x86_64-linux = "0mq2d0lj53gzn4qqdjdgbwl0h857k2rnsnr2hkmvihnrgza85v38";
+ sha256.armv7l-linux = "0xzsgdmpgs1n1g70hgly0mpxflhjrmq3vxwx8gl0kmqdiv4hqwjp";
+ sha256.aarch64-linux = "19ykcsmvkf7sdq2lqwvyi60nhb8v7f88dqjycimrsar9y4r7skf8";
jceName = "jce_policy-8.zip";
jceDownloadUrl = http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html;
sha256JCE = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";
diff --git a/pkgs/development/compilers/oraclejdk/jdk9-linux.nix b/pkgs/development/compilers/oraclejdk/jdk9-linux.nix
index 29d77a613b3..f9b48f239fa 100644
--- a/pkgs/development/compilers/oraclejdk/jdk9-linux.nix
+++ b/pkgs/development/compilers/oraclejdk/jdk9-linux.nix
@@ -7,7 +7,6 @@
, xorg ? null
, packageType ? "JDK" # JDK, JRE, or ServerJRE
, pluginSupport ? true
-, installjce ? false
, glib
, libxml2
, ffmpeg_2
@@ -30,20 +29,10 @@ assert stdenv.system == "x86_64-linux";
assert swingSupport -> xorg != null;
let
- version = "9.0.1";
+ version = "9.0.4";
downloadUrlBase = http://www.oracle.com/technetwork/java/javase/downloads;
- jce =
- if installjce then
- requireFile {
- name = "jce_policy-8.zip";
- url = "${downloadUrlBase}/jce8-download-2133166.html";
- sha256 = "0n8b6b8qmwb14lllk2lk1q1ahd3za9fnjigz5xn65mpg48whl0pk";
- }
- else
- "";
-
rSubPaths = [
"lib/jli"
"lib/server"
@@ -63,24 +52,23 @@ let result = stdenv.mkDerivation rec {
requireFile {
name = "jdk-${version}_linux-x64_bin.tar.gz";
url = "${downloadUrlBase}/jdk9-downloads-3848520.html";
- sha256 = "0560dc3icrwb0ifykshvzkr04b1jr153m26x1r8rp0nhjbzz1nic";
+ sha256 = "18nsjn64wkfmyb09wf2k7lvhazf83cs3dyichr038vl1gs3ymi4h";
}
else if packageType == "JRE" then
requireFile {
name = "jre-${version}_linux-x64_bin.tar.gz";
url = "${downloadUrlBase}/jre9-downloads-3848532.html";
- sha256 = "11pfcck8am48yv7riaj10g6h79xdiy8lm5a9wjqbm3g9cls9ar1w";
+ sha256 = "01fp079mr04nniyf06w8vd47qxr6rly1lbh8dqkddb8fp9h6a79k";
}
else if packageType == "ServerJRE" then
requireFile {
name = "serverjre-${version}_linux-x64_bin.tar.gz";
url = "${downloadUrlBase}/server-jre9-downloads-3848530.html";
- sha256 = "1biyks6jy0a2kksaj9qbsjifv34ym5mdw8akibmkwr1xh0wavygc";
+ sha256 = "1jlpa4mn306hx0p9jcw3i6cpdvnng29dwjsymgcan56810q6p6yj";
}
else abort "unknown package Type ${packageType}";
- nativeBuildInputs = [ file ]
- ++ stdenv.lib.optional installjce unzip;
+ nativeBuildInputs = [ file ];
buildInputs = [ makeWrapper ];
@@ -108,11 +96,6 @@ let result = stdenv.mkDerivation rec {
fi
done
- if test -n "${jce}"; then
- unzip ${jce}
- cp -v UnlimitedJCEPolicy*/*.jar $out/lib/security
- fi
-
if test -z "$pluginSupport"; then
rm -f $out/bin/javaws
fi
diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix
index af9057e2cf3..28f12b8ba37 100644
--- a/pkgs/development/compilers/ponyc/default.nix
+++ b/pkgs/development/compilers/ponyc/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation ( rec {
name = "ponyc-${version}";
- version = "0.21.0";
+ version = "0.21.3";
src = fetchFromGitHub {
owner = "ponylang";
repo = "ponyc";
rev = version;
- sha256 = "0kpnmgxhha22nhl2bmch47cpr0d9h5718h3w9h7qqwd994xcfk9z";
+ sha256 = "0cdp6wbpirl3jnlqkm0hbxyz67v00nwhi4hvk4sq2g74f36j2bnm";
};
buildInputs = [ llvm makeWrapper which ];
@@ -69,8 +69,10 @@ stdenv.mkDerivation ( rec {
+ stdenv.lib.optionalString stdenv.isDarwin '' bits=64 ''
+ stdenv.lib.optionalString (stdenv.isDarwin && (!lto)) '' lto=no ''
+ '' install
- mv $out/bin/ponyc $out/bin/ponyc.wrapped
- makeWrapper $out/bin/ponyc.wrapped $out/bin/ponyc \
+
+ wrapProgram $out/bin/ponyc \
+ --prefix PATH ":" "${stdenv.cc}/bin" \
+ --set-default CC "$CC" \
--prefix PONYPATH : "$out/lib" \
--prefix PONYPATH : "${stdenv.lib.getLib pcre2}/lib" \
--prefix PONYPATH : "${stdenv.lib.getLib libressl}/lib"
@@ -84,6 +86,6 @@ stdenv.mkDerivation ( rec {
homepage = http://www.ponylang.org;
license = licenses.bsd2;
maintainers = with maintainers; [ doublec kamilchm patternspandemic ];
- platforms = subtractLists platforms.i686 platforms.unix;
+ platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
})
diff --git a/pkgs/development/compilers/rust/binaryBuild.nix b/pkgs/development/compilers/rust/binaryBuild.nix
index 8dfe26f72f4..c8af0d979e2 100644
--- a/pkgs/development/compilers/rust/binaryBuild.nix
+++ b/pkgs/development/compilers/rust/binaryBuild.nix
@@ -12,26 +12,6 @@ let
bootstrapping = versionType == "bootstrap";
- patchBootstrapCargo = ''
- ${optionalString (stdenv.isLinux && bootstrapping) ''
- patchelf \
- --set-rpath "${stdenv.lib.makeLibraryPath [ curl zlib ]}" \
- --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
- "$out/bin/cargo"
- ''}
- ${optionalString (stdenv.isDarwin && bootstrapping) ''
- install_name_tool \
- -change /usr/lib/libiconv.2.dylib '${getLib libiconv}/lib/libiconv.2.dylib' \
- "$out/bin/cargo"
- install_name_tool \
- -change /usr/lib/libcurl.4.dylib '${getLib curl}/lib/libcurl.4.dylib' \
- "$out/bin/cargo"
- install_name_tool \
- -change /usr/lib/libz.1.dylib '${getLib zlib}/lib/libz.1.dylib' \
- "$out/bin/cargo"
- ''}
- '';
-
installComponents
= "rustc,rust-std-${platform}"
+ (optionalString bootstrapping ",rust-docs,cargo")
@@ -56,7 +36,7 @@ rec {
phases = ["unpackPhase" "installPhase" "fixupPhase"];
- propagatedBuildInputs = stdenv.lib.optional stdenv.isDarwin Security;
+ buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
installPhase = ''
./install.sh --prefix=$out \
@@ -69,14 +49,21 @@ rec {
patchelf \
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
"$out/bin/rustdoc"
- ''}
- ${optionalString (stdenv.isDarwin && bootstrapping) ''
- install_name_tool -change /usr/lib/libiconv.2.dylib '${darwin.libiconv}/lib/libiconv.2.dylib' "$out/bin/cargo"
- install_name_tool -change /usr/lib/libcurl.4.dylib '${stdenv.lib.getLib curl}/lib/libcurl.4.dylib' "$out/bin/cargo"
- install_name_tool -change /usr/lib/libz.1.dylib '${stdenv.lib.getLib zlib}/lib/libz.1.dylib' "$out/bin/cargo"
+ patchelf \
+ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+ "$out/bin/cargo"
''}
- ${patchBootstrapCargo}
+ ${optionalString (stdenv.isDarwin && bootstrapping) ''
+ install_name_tool -change /usr/lib/libresolv.9.dylib '${darwin.libresolv}/lib/libresolv.9.dylib' "$out/bin/rustc"
+ install_name_tool -change /usr/lib/libresolv.9.dylib '${darwin.libresolv}/lib/libresolv.9.dylib' "$out/bin/rustdoc"
+ install_name_tool -change /usr/lib/libiconv.2.dylib '${darwin.libiconv}/lib/libiconv.2.dylib' "$out/bin/cargo"
+ install_name_tool -change /usr/lib/libresolv.9.dylib '${darwin.libresolv}/lib/libresolv.9.dylib' "$out/bin/cargo"
+ install_name_tool -change /usr/lib/libcurl.4.dylib '${stdenv.lib.getLib curl}/lib/libcurl.4.dylib' "$out/bin/cargo"
+ for f in $out/lib/lib*.dylib; do
+ install_name_tool -change /usr/lib/libresolv.9.dylib '${darwin.libresolv}/lib/libresolv.9.dylib' "$f"
+ done
+ ''}
# Do NOT, I repeat, DO NOT use `wrapProgram` on $out/bin/rustc
# (or similar) here. It causes strange effects where rustc loads
@@ -101,14 +88,23 @@ rec {
phases = ["unpackPhase" "installPhase" "fixupPhase"];
- buildInputs = [ makeWrapper ];
- propagatedBuildInputs = stdenv.lib.optional stdenv.isDarwin Security;
+ buildInputs = [ makeWrapper ] ++ stdenv.lib.optional stdenv.isDarwin Security;
installPhase = ''
./install.sh --prefix=$out \
--components=cargo
- ${patchBootstrapCargo}
+ ${optionalString (stdenv.isLinux && bootstrapping) ''
+ patchelf \
+ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
+ "$out/bin/cargo"
+ ''}
+
+ ${optionalString (stdenv.isDarwin && bootstrapping) ''
+ install_name_tool -change /usr/lib/libiconv.2.dylib '${darwin.libiconv}/lib/libiconv.2.dylib' "$out/bin/cargo"
+ install_name_tool -change /usr/lib/libresolv.9.dylib '${darwin.libresolv}/lib/libresolv.9.dylib' "$out/bin/cargo"
+ install_name_tool -change /usr/lib/libcurl.4.dylib '${stdenv.lib.getLib curl}/lib/libcurl.4.dylib' "$out/bin/cargo"
+ ''}
wrapProgram "$out/bin/cargo" \
--suffix PATH : "${rustc}/bin"
diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix
index a707fe2e69e..034334f5850 100644
--- a/pkgs/development/compilers/rust/bootstrap.nix
+++ b/pkgs/development/compilers/rust/bootstrap.nix
@@ -3,15 +3,16 @@
let
# Note: the version MUST be one version prior to the version we're
# building
- version = "1.20.0";
+ version = "1.21.0";
- # fetch hashes by running `print-hashes.sh 1.20.0`
+ # fetch hashes by running `print-hashes.sh 1.21.0`
hashes = {
- i686-unknown-linux-gnu = "abe592e06616cdc2fcca56ddbe482050dd49a1fada35e2af031c64fe6eb14668";
- x86_64-unknown-linux-gnu = "ca1cf3aed73ff03d065a7d3e57ecca92228d35dc36d9274a6597441319f18eb8";
- aarch64-unknown-linux-gnu = "eaab3df489d4d8f976c4327d812b9870730eed6d0bbd52712767083d02be7472";
- i686-apple-darwin = "b3c2470f8f132d285e6c989681e251592b67071bc9d93cac8a2e6b66f7bdfcb5";
- x86_64-apple-darwin = "fa1fb8896d5e327cbe6deeb50e6e9a3346de629f2e6bcbd8c10f19f3e2ed67d5";
+ i686-unknown-linux-gnu = "b7caed0f602cdb8ef22e0bfa9125a65bec411e15c0b8901d937e43303ec7dbee";
+ x86_64-unknown-linux-gnu = "b41e70e018402bc04d02fde82f91bea24428e6be432f0df12ac400cfb03108e8";
+ armv7-unknown-linux-gnueabihf = "416fa6f107ad9e386002e6af1aec495472e2ee489c842183dd429a25b07488d6";
+ aarch64-unknown-linux-gnu = "491ee6c43cc672006968d665bd34c94cc2219ef3592d93d38097c97eaaa864c3";
+ i686-apple-darwin = "c8b0fabeebcde66b683f3a871187e614e07305adda414c2862cb332aecb2b3bf";
+ x86_64-apple-darwin = "75a7f4bd7c72948030bb9e421df27e8a650dea826fb5b836cf59d23d6f985a0d";
};
platform =
@@ -19,6 +20,8 @@ let
then "i686-unknown-linux-gnu"
else if stdenv.system == "x86_64-linux"
then "x86_64-unknown-linux-gnu"
+ else if stdenv.system == "armv7l-linux"
+ then "armv7-unknown-linux-gnueabihf"
else if stdenv.system == "aarch64-linux"
then "aarch64-unknown-linux-gnu"
else if stdenv.system == "i686-darwin"
diff --git a/pkgs/development/compilers/rust/cargo.nix b/pkgs/development/compilers/rust/cargo.nix
index fb3001bbf17..386ffa62294 100644
--- a/pkgs/development/compilers/rust/cargo.nix
+++ b/pkgs/development/compilers/rust/cargo.nix
@@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec {
passthru.rustc = rustc;
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ file curl python openssl cmake zlib makeWrapper libgit2 ]
+ buildInputs = [ cacert file curl python openssl cmake zlib makeWrapper libgit2 ]
++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation libiconv ];
LIBGIT2_SYS_USE_PKG_CONFIG=1;
@@ -48,8 +48,6 @@ rustPlatform.buildRustPackage rec {
'';
checkPhase = ''
- # Export SSL_CERT_FILE as without it one test fails with SSL verification error
- export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
# Disable cross compilation tests
export CFG_DISABLE_CROSS_TESTS=1
cargo test
diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix
index 76dafd95353..b5550a96a83 100644
--- a/pkgs/development/compilers/rust/default.nix
+++ b/pkgs/development/compilers/rust/default.nix
@@ -6,7 +6,7 @@
let
rustPlatform = recurseIntoAttrs (makeRustPlatform (callPackage ./bootstrap.nix {}));
- version = "1.21.0";
+ version = "1.22.1";
in
rec {
rustc = callPackage ./rustc.nix {
@@ -18,7 +18,7 @@ rec {
src = fetchurl {
url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz";
- sha256 = "1yj8lnxybjrybp00fqhxw8fpr641dh8wcn9mk44xjnsb4i1c21qp";
+ sha256 = "1lrzzp0nh7s61wgfs2h6ilaqi6iq89f1pd1yaf65l87bssyl4ylb";
};
patches = [
@@ -30,9 +30,9 @@ rec {
};
cargo = callPackage ./cargo.nix rec {
- version = "0.22.0";
- srcSha = "0x9pm73hkkd1hq4qrmz8iv91djgpdsxzwll7jari0h77vpwajmw4";
- cargoSha256 = "0xd0rb8gcqy6xngsx9l30jg3fqrcwccgv904ksqs9c4d44hga0gd";
+ version = "0.23.0";
+ srcSha = "14b2n1msxma19ydchj54hd7f2zdsr524fg133dkmdn7j65f1x6aj";
+ cargoSha256 = "1sj59z0w172qvjwg1ma5fr5am9dgw27086xwdnrvlrk4hffcr7y7";
inherit rustc; # the rustc that will be wrapped by cargo
inherit rustPlatform; # used to build cargo
diff --git a/pkgs/development/compilers/rust/print-hashes.sh b/pkgs/development/compilers/rust/print-hashes.sh
index dc7e3719355..7eb00a30ad7 100755
--- a/pkgs/development/compilers/rust/print-hashes.sh
+++ b/pkgs/development/compilers/rust/print-hashes.sh
@@ -10,6 +10,7 @@ set -euo pipefail
PLATFORMS=(
i686-unknown-linux-gnu
x86_64-unknown-linux-gnu
+ armv7-unknown-linux-gnueabihf
aarch64-unknown-linux-gnu
i686-apple-darwin
x86_64-apple-darwin
diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix
index ec0f100fb56..9d6f641bc46 100644
--- a/pkgs/development/compilers/rust/rustc.nix
+++ b/pkgs/development/compilers/rust/rustc.nix
@@ -17,13 +17,13 @@
let
inherit (stdenv.lib) optional optionalString;
+ inherit (darwin.apple_sdk.frameworks) Security;
procps = if stdenv.isDarwin then darwin.ps else args.procps;
llvmShared = llvm.override { enableSharedLibraries = true; };
target = builtins.replaceStrings [" "] [","] (builtins.toString targets);
-
in
stdenv.mkDerivation {
@@ -37,6 +37,12 @@ stdenv.mkDerivation {
# The build will fail at the very end on AArch64 without this.
dontUpdateAutotoolsGnuConfigScripts = if stdenv.isAarch64 then true else null;
+ # Running the default `strip -S` command on Darwin corrupts the
+ # .rlib files in "lib/".
+ #
+ # See https://github.com/NixOS/nixpkgs/pull/34227
+ stripDebugList = if stdenv.isDarwin then [ "bin" ] else null;
+
NIX_LDFLAGS = optionalString stdenv.isDarwin "-rpath ${llvmShared}/lib";
# Enable nightly features in stable compiles (used for
@@ -55,7 +61,6 @@ stdenv.mkDerivation {
# ++ [ "--jemalloc-root=${jemalloc}/lib"
++ [ "--default-linker=${targetPackages.stdenv.cc}/bin/cc" "--default-ar=${targetPackages.stdenv.cc.bintools}/bin/ar" ]
++ optional (!forceBundledLLVM) [ "--enable-llvm-link-shared" ]
- ++ optional (stdenv.cc.cc ? isClang) "--enable-clang"
++ optional (targets != []) "--target=${target}"
++ optional (!forceBundledLLVM) "--llvm-root=${llvmShared}";
@@ -79,8 +84,9 @@ stdenv.mkDerivation {
#[ -f src/liballoc_jemalloc/lib.rs ] && sed -i 's,je_,,g' src/liballoc_jemalloc/lib.rs
#[ -f src/liballoc/heap.rs ] && sed -i 's,je_,,g' src/liballoc/heap.rs # Remove for 1.4.0+
- # Disable fragile linker-output-non-utf8 test
+ # Disable fragile tests.
rm -vr src/test/run-make/linker-output-non-utf8 || true
+ rm -vr src/test/run-make/issue-26092.rs || true
# Remove test targeted at LLVM 3.9 - https://github.com/rust-lang/rust/issues/36835
rm -vr src/test/run-pass/issue-36023.rs || true
@@ -112,6 +118,10 @@ stdenv.mkDerivation {
# Disable all lldb tests.
# error: Can't run LLDB test because LLDB's python path is not set
rm -vr src/test/debuginfo/*
+ rm -v src/test/run-pass/backtrace-debuginfo.rs
+
+ # error: No such file or directory
+ rm -v src/test/run-pass/issue-45731.rs
# Disable tests that fail when sandboxing is enabled.
substituteInPlace src/libstd/sys/unix/ext/net.rs \
@@ -122,12 +132,6 @@ stdenv.mkDerivation {
rm -v src/test/run-pass/sync-send-in-std.rs # FIXME: ???
'';
- preConfigure = ''
- # Needed flags as the upstream configure script has a broken prefix substitution
- configureFlagsArray+=("--datadir=$out/share")
- configureFlagsArray+=("--infodir=$out/share/info")
- '';
-
# rustc unfortunately need cmake for compiling llvm-rt but doesn't
# use it for the normal build. This disables cmake in Nix.
dontUseCmakeConfigure = true;
@@ -141,6 +145,7 @@ stdenv.mkDerivation {
++ optional (!stdenv.isDarwin) gdb;
buildInputs = [ ncurses ] ++ targetToolchains
+ ++ optional stdenv.isDarwin Security
++ optional (!forceBundledLLVM) llvmShared;
outputs = [ "out" "man" "doc" ];
@@ -168,7 +173,7 @@ stdenv.mkDerivation {
# enableParallelBuilding = false;
meta = with stdenv.lib; {
- homepage = http://www.rust-lang.org/;
+ homepage = https://www.rust-lang.org/;
description = "A safe, concurrent, practical language";
maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ];
license = [ licenses.mit licenses.asl20 ];
diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix
index b800d71198a..54610467e7a 100644
--- a/pkgs/development/compilers/sbcl/default.nix
+++ b/pkgs/development/compilers/sbcl/default.nix
@@ -9,11 +9,11 @@
stdenv.mkDerivation rec {
name = "sbcl-${version}";
- version = "1.4.2";
+ version = "1.4.3";
src = fetchurl {
url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2";
- sha256 = "05s7wsx6bsnx4h6w3d8yim9apbvi8ih0glmvkmgjz7nrad4abjwd";
+ sha256 = "1z8d11k6vc6jhmpwzy0nawj84qdd2jvibrvqmb1nmq3h8w64hlam";
};
patchPhase = ''
@@ -91,7 +91,7 @@ stdenv.mkDerivation rec {
# Specifying $SBCL_HOME is only truly needed with `purgeNixReferences = true`.
setupHook = writeText "setupHook.sh" ''
- envHooks+=(_setSbclHome)
+ addEnvHooks "$targetOffset" _setSbclHome
_setSbclHome() {
export SBCL_HOME='@out@/lib/sbcl/'
}
diff --git a/pkgs/development/compilers/scala/dotty-bare.nix b/pkgs/development/compilers/scala/dotty-bare.nix
new file mode 100644
index 00000000000..60cb3e9a202
--- /dev/null
+++ b/pkgs/development/compilers/scala/dotty-bare.nix
@@ -0,0 +1,40 @@
+{ stdenv, fetchurl, makeWrapper, jre }:
+
+stdenv.mkDerivation rec {
+ version = "0.4.0-RC1";
+ name = "dotty-bare-${version}";
+
+ src = fetchurl {
+ url = "https://github.com/lampepfl/dotty/releases/download/${version}/dotty-${version}.tar.gz";
+ sha256 = "1d1ab08b85bd6898ce6273fa50818de0d314fc6e5377fb6ee05494827043321b";
+ };
+
+ propagatedBuildInputs = [ jre ] ;
+ buildInputs = [ makeWrapper ] ;
+
+ installPhase = ''
+ mkdir -p $out
+ mv * $out
+ '';
+
+ fixupPhase = ''
+ bin_files=$(find $out/bin -type f ! -name common)
+ for f in $bin_files ; do
+ wrapProgram $f --set JAVA_HOME ${jre}
+ done
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Research platform for new language concepts and compiler technologies for Scala.";
+ longDescription = ''
+ Dotty is a platform to try out new language concepts and compiler technologies for Scala.
+ The focus is mainly on simplification. We remove extraneous syntax (e.g. no XML literals),
+ and try to boil down Scala’s types into a smaller set of more fundamental constructs.
+ The theory behind these constructs is researched in DOT, a calculus for dependent object types.
+ '';
+ homepage = http://dotty.epfl.ch/;
+ license = licenses.bsd3;
+ platforms = platforms.all;
+ maintainers = [maintainers.karolchmist];
+ };
+}
diff --git a/pkgs/development/compilers/scala/dotty.nix b/pkgs/development/compilers/scala/dotty.nix
index cb0c4355002..a999bd422e6 100644
--- a/pkgs/development/compilers/scala/dotty.nix
+++ b/pkgs/development/compilers/scala/dotty.nix
@@ -1,46 +1,22 @@
-{ stdenv, fetchurl, makeWrapper, jre }:
+{ stdenv, fetchurl, makeWrapper, jre, callPackage }:
-stdenv.mkDerivation rec {
- version = "0.4.0-RC1";
- name = "dotty-${version}";
-
- src = fetchurl {
- url = "https://github.com/lampepfl/dotty/releases/download/${version}/${name}.tar.gz";
- sha256 = "1d1ab08b85bd6898ce6273fa50818de0d314fc6e5377fb6ee05494827043321b";
+let
+ dotty-bare = callPackage ./dotty-bare.nix {
+ inherit stdenv fetchurl makeWrapper jre;
};
+in
- propagatedBuildInputs = [ jre ] ;
- buildInputs = [ makeWrapper ] ;
+stdenv.mkDerivation {
+ name = "dotty-${dotty-bare.version}";
+
+ unpackPhase = ":";
installPhase = ''
- mkdir -p $out
- mv * $out
-
- mkdir -p $out/shared
- mv $out/bin/common $out/shared
+ mkdir -p $out/bin
+ ln -s ${dotty-bare}/bin/dotc $out/bin/dotc
+ ln -s ${dotty-bare}/bin/dotd $out/bin/dotd
+ ln -s ${dotty-bare}/bin/dotr $out/bin/dotr
'';
- fixupPhase = ''
- for file in $out/bin/* ; do
- substituteInPlace $file \
- --replace '$PROG_HOME/bin/common' $out/shared/common
-
- wrapProgram $file \
- --set JAVA_HOME ${jre}
- done
- '';
-
- meta = with stdenv.lib; {
- description = "Research platform for new language concepts and compiler technologies for Scala.";
- longDescription = ''
- Dotty is a platform to try out new language concepts and compiler technologies for Scala.
- The focus is mainly on simplification. We remove extraneous syntax (e.g. no XML literals),
- and try to boil down Scala’s types into a smaller set of more fundamental constructs.
- The theory behind these constructs is researched in DOT, a calculus for dependent object types.
- '';
- homepage = http://dotty.epfl.ch/;
- license = licenses.bsd3;
- platforms = platforms.all;
- maintainers = [maintainers.karolchmist];
- };
+ inherit (dotty-bare) meta;
}
diff --git a/pkgs/development/compilers/solc/default.nix b/pkgs/development/compilers/solc/default.nix
index 078cf3e36c2..cd8c839cf4f 100644
--- a/pkgs/development/compilers/solc/default.nix
+++ b/pkgs/development/compilers/solc/default.nix
@@ -1,9 +1,9 @@
{ stdenv, fetchzip, fetchgit, boost, cmake, z3 }:
let
- version = "0.4.17";
- rev = "bdeb9e52a2211510644fb53df93fb98258b40a65";
- sha256 = "1x6q2rlq6gxggidgsy6li7m4phwr1hcfi65pq9yimz64ddqfiira";
+ version = "0.4.19";
+ rev = "c4cbbb054b5ed3b8ceaa21ee5b47b0704762ff40";
+ sha256 = "1h2ziwdswghj4aa3vd3k3y2ckfiwjk6x38w2kp4m324k2ydxd15c";
jsoncppURL = https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz;
jsoncpp = fetchzip {
url = jsoncppURL;
diff --git a/pkgs/development/compilers/squeak/default.nix b/pkgs/development/compilers/squeak/default.nix
index af56026b43a..25ea47978fc 100644
--- a/pkgs/development/compilers/squeak/default.nix
+++ b/pkgs/development/compilers/squeak/default.nix
@@ -43,6 +43,5 @@ stdenv.mkDerivation rec {
downloadPage = http://squeakvm.org/unix/index.html;
license = with licenses; [ asl20 mit ];
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix
deleted file mode 100644
index 79b22214ecc..00000000000
--- a/pkgs/development/compilers/uhc/default.nix
+++ /dev/null
@@ -1,53 +0,0 @@
-# Note: The Haskell package set used for building UHC is
-# determined in the file top-level/haskell-packages.nix.
-{ stdenv, coreutils, m4, libtool, clang, ghcWithPackages, fetchFromGitHub }:
-
-let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] );
-in stdenv.mkDerivation rec {
- version = "1.1.9.4";
- name = "uhc-${version}";
-
- src = fetchFromGitHub {
- owner = "UU-ComputerScience";
- repo = "uhc";
- rev = "v${version}";
- sha256 = "1s84csk6zgzj09igxgdza7gb52jdn3jsr8lygl5xplshv8yzl34n";
- };
-
- postUnpack = "sourceRoot=\${sourceRoot}/EHC";
-
- buildInputs = [ m4 wrappedGhc clang libtool ];
-
- configureFlags = [ "--with-gcc=${clang}/bin/clang" ];
-
- # UHC builds packages during compilation; these are by default
- # installed in the user-specific package config file. We do not
- # want that, and hack the build process to use a temporary package
- # configuration file instead.
- preConfigure = ''
- p=`pwd`/uhc-local-packages/
- ghc-pkg init $p
- sed -i "s|--user|--package-db=$p|g" mk/shared.mk.in
- sed -i "s|-fglasgow-exts|-fglasgow-exts -package-conf=$p|g" mk/shared.mk.in
- sed -i "s|/bin/date|${coreutils}/bin/date|g" mk/dist.mk
- sed -i "s|/bin/date|${coreutils}/bin/date|g" mk/config.mk.in
- sed -i "s|--make|--make -package-db=$p|g" src/ehc/files2.mk
- sed -i "s|--make|--make -package-db=$p|g" src/gen/files.mk
- '';
-
- inherit clang;
-
- meta = with stdenv.lib; {
- homepage = http://www.cs.uu.nl/wiki/UHC;
- description = "Utrecht Haskell Compiler";
- maintainers = [ maintainers.phile314 ];
-
- # UHC i686 support is broken, see
- # https://github.com/UU-ComputerScience/uhc/issues/52
- #
- # Darwin build is broken as well at the moment.
- # On Darwin, the GNU libtool is used, which does not
- # support the -static flag and thus breaks the build.
- platforms = ["x86_64-linux"];
- };
-}
diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix
index 74ca5dc4c4b..f2b6016ceb7 100644
--- a/pkgs/development/compilers/urweb/default.nix
+++ b/pkgs/development/compilers/urweb/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "17qh9mcmlhbv6r52yij8l9ik7j7x6x7c09lf6pznnbdh4sf8p5wb";
};
- buildInputs = [ openssl mlton mysql.client postgresql sqlite ];
+ buildInputs = [ openssl mlton mysql.connector-c postgresql sqlite ];
prePatch = ''
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
@@ -21,13 +21,13 @@ stdenv.mkDerivation rec {
preConfigure = ''
export PGHEADER="${postgresql}/include/libpq-fe.h";
- export MSHEADER="${lib.getDev mysql.client}/include/mysql/mysql.h";
+ export MSHEADER="${mysql.connector-c}/include/mysql/mysql.h";
export SQHEADER="${sqlite.dev}/include/sqlite3.h";
export CC="${gcc}/bin/gcc";
export CCARGS="-I$out/include \
-L${openssl.out}/lib \
- -L${lib.getLib mysql.client}/lib \
+ -L${mysql.connector-c}/lib \
-L${postgresql.lib}/lib \
-L${sqlite.out}/lib";
'';
diff --git a/pkgs/development/compilers/vala/default.nix b/pkgs/development/compilers/vala/default.nix
index 40af4c312cf..f42cdcabae3 100644
--- a/pkgs/development/compilers/vala/default.nix
+++ b/pkgs/development/compilers/vala/default.nix
@@ -29,6 +29,12 @@ let
in rec {
+ vala_0_23 = generic {
+ major = "0.23";
+ minor = "3";
+ sha256 = "101xjbc818g4849n9a80c2aai13zakj7mpnd7470xnkvz5jwqq96";
+ };
+
vala_0_26 = generic {
major = "0.26";
minor = "2";
@@ -37,8 +43,8 @@ in rec {
vala_0_28 = generic {
major = "0.28";
- minor = "0";
- sha256 = "0zwpzhkhfk3piya14m7p2hl2vaabahprphppfm46ci91z39kp7hd";
+ minor = "1";
+ sha256 = "0isg327w6rfqqdjja6a8pc3xcdkj7pqrkdhw48bsyxab2fkaw3hw";
};
vala_0_32 = generic {
@@ -49,14 +55,20 @@ in rec {
vala_0_34 = generic {
major = "0.34";
- minor = "1";
- sha256 = "16cjybjw100qps6jg0jdyjh8hndz8a876zmxpybnf30a8vygrk7m";
+ minor = "13";
+ sha256 = "0ahbnhgwhhjkndmbr1d039ws0g2bb324c60fk6wgx7py5wvmgcd2";
+ };
+
+ vala_0_36 = generic {
+ major = "0.36";
+ minor = "8";
+ sha256 = "1nz5a8kcb22ss9idb7k1higwpvghd617xwf40fi0a9ggws614lfz";
};
vala_0_38 = generic {
major = "0.38";
- minor = "1";
- sha256 = "112hl3lkcyakrk8c3qgw12gzn3nxjkvx7bn0jhl5f2m57d7k8d8h";
+ minor = "4";
+ sha256 = "1sg5gaq3jhgr9vzh2ypiw475167k150wmyglymr7wwqppmikmcrc";
extraNativeBuildInputs = [ autoconf ] ++ stdenv.lib.optionals stdenv.isDarwin [ libtool expat ];
extraBuildInputs = [ graphviz ];
};
diff --git a/pkgs/development/compilers/yosys/default.nix b/pkgs/development/compilers/yosys/default.nix
index 117319c1ad5..4f4a54ef426 100644
--- a/pkgs/development/compilers/yosys/default.nix
+++ b/pkgs/development/compilers/yosys/default.nix
@@ -4,21 +4,21 @@
stdenv.mkDerivation rec {
name = "yosys-${version}";
- version = "2017.12.06";
+ version = "2018.01.10";
srcs = [
(fetchFromGitHub {
owner = "cliffordwolf";
repo = "yosys";
- rev = "8f2638ae2f12a48dcad14f24b0211c16ac724762";
- sha256 = "0synbskclgn97hp28myvl0hp8pqp66awp37z4cv7zl154ipysfl1";
+ rev = "9ac560f5d3e5847b7e475195f66b7034e91fd938";
+ sha256 = "01p1bcjq030y7g21lsghgkqj23x6yl8cwrcx2xpik45xls6pxrg7";
name = "yosys";
})
(fetchFromBitbucket {
owner = "alanmi";
repo = "abc";
- rev = "31fc97b0aeed";
- sha256 = "0ljmclr4hfh3iiyfw7ji0fm8j983la8021xfpnfd20dyc807hh65";
+ rev = "6e3c24b3308a";
+ sha256 = "1i4wv0si4fb6dpv2yrpkp588mdlfrnx2s02q2fgra5apdm54c53w";
name = "yosys-abc";
})
];
diff --git a/pkgs/development/coq-modules/tlc/default.nix b/pkgs/development/coq-modules/tlc/default.nix
new file mode 100644
index 00000000000..4748a0dd238
--- /dev/null
+++ b/pkgs/development/coq-modules/tlc/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchurl, coq }:
+
+stdenv.mkDerivation rec {
+ version = "20171206";
+ name = "coq${coq.coq-version}-tlc-${version}";
+
+ src = fetchurl {
+ url = "http://tlc.gforge.inria.fr/releases/tlc-${version}.tar.gz";
+ sha256 = "1wc44qb5zmarafp56gdrbka8gllipqna9cj0a6d99jzb361xg4mf";
+ };
+
+ buildInputs = [ coq ];
+
+ installFlags = "CONTRIB=$(out)/lib/coq/${coq.coq-version}/user-contrib";
+
+ meta = {
+ homepage = "http://www.chargueraud.org/softs/tlc/";
+ description = "A non-constructive library for Coq";
+ license = stdenv.lib.licenses.free;
+ maintainers = [ stdenv.lib.maintainers.vbgl ];
+ inherit (coq.meta) platforms;
+ };
+
+ passthru = {
+ compatibleCoqVersions = v: stdenv.lib.versionAtLeast v "8.6";
+ };
+}
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 58de439d839..746c00b037d 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -48,8 +48,9 @@ self: super: {
clock = dontCheck super.clock;
Dust-crypto = dontCheck super.Dust-crypto;
hasql-postgres = dontCheck super.hasql-postgres;
- hspec = super.hspec.override { stringbuilder = dontCheck super.stringbuilder; };
- hspec-core = super.hspec-core.override { silently = dontCheck super.silently; temporary = dontCheck super.temporary; };
+ hspec = super.hspec.override { stringbuilder = dontCheck self.stringbuilder; };
+ hspec-core = super.hspec-core.override { silently = dontCheck self.silently; temporary = dontCheck self.temporary; };
+
hspec-expectations = dontCheck super.hspec-expectations;
HTTP = dontCheck super.HTTP;
http-streams = dontCheck super.http-streams;
@@ -58,19 +59,12 @@ self: super: {
statistics = dontCheck super.statistics;
vector-builder = dontCheck super.vector-builder;
- # https://github.com/gilith/hol/pull/1
- hol = appendPatch (doJailbreak super.hol) (pkgs.fetchpatch {
- name = "hol.patch";
- url = "https://github.com/gilith/hol/commit/a5171bdcacdbe93c46c9f82ec5a38f2a2b69e632.patch";
- sha256 = "0xkgbhc4in38hspxgz2wcvk56pjalw43gig7lzkjfhgavwxv3jyj";
- });
-
# This test keeps being aborted because it runs too quietly for too long
Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;
# Use the default version of mysql to build this package (which is actually mariadb).
# test phase requires networking
- mysql = dontCheck (super.mysql.override { mysql = pkgs.mysql.lib; });
+ mysql = dontCheck (super.mysql.override { mysql = pkgs.mysql.connector-c; });
# check requires mysql server
mysql-simple = dontCheck super.mysql-simple;
@@ -86,7 +80,7 @@ self: super: {
name = "git-annex-${drv.version}-src";
url = "git://git-annex.branchable.com/";
rev = "refs/tags/" + drv.version;
- sha256 = "1fd7lyrwr60dp55swc5iwl0mkkzmdzpmj9qmx1qca2r7y9wc5w5k";
+ sha256 = "0vvh1k7i6y4bqy6fn8z5i6ndqv6x94hvk2zh5gw99na8kfri7sxq";
};
})).override {
dbus = if pkgs.stdenv.isLinux then self.dbus else null;
@@ -106,15 +100,9 @@ self: super: {
# https://github.com/froozen/kademlia/issues/2
kademlia = dontCheck super.kademlia;
- # https://github.com/haskell-works/hw-xml/issues/23
- # Disable building the hw-xml-example executable:
- hw-xml = (overrideCabal super.hw-xml (drv: {
- postPatch = "sed -i 's/ hs-source-dirs: app/" +
- " hs-source-dirs: app\\n" +
- " buildable: false/' hw-xml.cabal";
- }));
-
+ # Test suite doesn't terminate
hzk = dontCheck super.hzk;
+ # Tests require a Kafka broker running locally
haskakafka = dontCheck super.haskakafka;
# Depends on broken "lss" package.
@@ -144,37 +132,11 @@ self: super: {
});
# The Haddock phase fails for one reason or another.
- acme-one = dontHaddock super.acme-one;
- attoparsec-conduit = dontHaddock super.attoparsec-conduit;
- base-noprelude = dontHaddock super.base-noprelude;
- blaze-builder-conduit = dontHaddock super.blaze-builder-conduit;
- BNFC-meta = dontHaddock super.BNFC-meta;
bytestring-progress = dontHaddock super.bytestring-progress;
- comonads-fd = dontHaddock super.comonads-fd;
- comonad-transformers = dontHaddock super.comonad-transformers;
deepseq-magic = dontHaddock super.deepseq-magic;
- diagrams = dontHaddock super.diagrams;
- either = dontHaddock super.either;
feldspar-signal = dontHaddock super.feldspar-signal; # https://github.com/markus-git/feldspar-signal/issues/1
- gl = doJailbreak (dontHaddock super.gl); # jailbreak fixed in unreleased (2017-03-01) https://github.com/ekmett/gl/commit/885e08a96aa53d80c3b62e157b20d2f05e34f133
- groupoids = dontHaddock super.groupoids;
- hamlet = dontHaddock super.hamlet;
- HaXml = dontHaddock super.HaXml;
hoodle-core = dontHaddock super.hoodle-core;
hsc3-db = dontHaddock super.hsc3-db;
- http-client-conduit = dontHaddock super.http-client-conduit;
- http-client-multipart = dontHaddock super.http-client-multipart;
- markdown-unlit = dontHaddock super.markdown-unlit;
- network-conduit = dontHaddock super.network-conduit;
- shakespeare-js = dontHaddock super.shakespeare-js;
- shakespeare-text = dontHaddock super.shakespeare-text;
- swagger = dontHaddock super.swagger; # http://hydra.cryp.to/build/2035868/nixlog/1/raw
- swagger2 = dontHaddock super.swagger2;
- wai-test = dontHaddock super.wai-test;
- zlib-conduit = dontHaddock super.zlib-conduit;
-
- # https://github.com/massysett/rainbox/issues/1
- rainbox = dontCheck super.rainbox;
# https://github.com/techtangents/ablist/issues/1
ABList = dontCheck super.ABList;
@@ -211,9 +173,6 @@ self: super: {
inline-java = addBuildDepend super.inline-java pkgs.jdk;
- # tests don't compile for some odd reason
- jwt = dontCheck super.jwt;
-
# https://github.com/mvoidex/hsdev/issues/11
hsdev = dontHaddock super.hsdev;
@@ -258,8 +217,9 @@ self: super: {
HerbiePlugin = dontCheck super.HerbiePlugin;
wai-cors = dontCheck super.wai-cors;
- # https://github.com/NICTA/digit/issues/3
- digit = dontCheck super.digit;
+ # base bound
+ digit = doJailbreak super.digit;
+
# Fails for non-obvious reasons while attempting to use doctest.
search = dontCheck super.search;
@@ -476,15 +436,9 @@ self: super: {
apiary-session = dontCheck super.apiary-session;
apiary-websockets = dontCheck super.apiary-websockets;
- # HsColour: Language/Unlambda.hs: hGetContents: invalid argument (invalid byte sequence)
- unlambda = dontHyperlinkSource super.unlambda;
-
# https://github.com/PaulJohnson/geodetics/issues/1
geodetics = dontCheck super.geodetics;
- # https://github.com/AndrewRademacher/aeson-casing/issues/1
- aeson-casing = dontCheck super.aeson-casing;
-
# https://github.com/junjihashimoto/test-sandbox-compose/issues/2
test-sandbox-compose = dontCheck super.test-sandbox-compose;
@@ -494,9 +448,6 @@ self: super: {
# https://github.com/afcowie/locators/issues/1
locators = dontCheck super.locators;
- # https://github.com/anton-k/csound-expression-dynamic/issues/1
- csound-expression-dynamic = dontHaddock super.csound-expression-dynamic;
-
# Test suite won't compile against tasty-hunit 0.9.x.
zlib = dontCheck super.zlib;
@@ -511,8 +462,8 @@ self: super: {
doctest-discover = addBuildTool super.doctest-discover (dontCheck super.doctest-discover);
tasty-discover = addBuildTool super.tasty-discover (dontCheck super.tasty-discover);
- # https://github.com/bos/aeson/issues/253
- aeson = dontCheck super.aeson;
+ # generic-deriving bound is too tight
+ aeson = doJailbreak super.aeson;
# Won't compile with recent versions of QuickCheck.
inilist = dontCheck super.inilist;
@@ -530,13 +481,16 @@ self: super: {
# https://github.com/alphaHeavy/lzma-enumerator/issues/3
lzma-enumerator = dontCheck super.lzma-enumerator;
+ # https://github.com/haskell-hvr/lzma/issues/8
+ lzma = appendPatch super.lzma ./patches/lzma-tests.patch;
+
# https://github.com/BNFC/bnfc/issues/140
BNFC = dontCheck super.BNFC;
# FPCO's fork of Cabal won't succeed its test suite.
Cabal-ide-backend = dontCheck super.Cabal-ide-backend;
- # https://github.com/jaspervdj/websockets/issues/104
+ # QuickCheck version, also set in cabal2nix
websockets = dontCheck super.websockets;
# Avoid spurious test suite failures.
@@ -565,8 +519,8 @@ self: super: {
# https://github.com/kazu-yamamoto/logger/issues/42
logger = dontCheck super.logger;
- # https://github.com/qnikst/imagemagick/issues/34
- imagemagick = dontCheck super.imagemagick;
+ # vector dependency < 0.12
+ imagemagick = doJailbreak super.imagemagick;
# https://github.com/liyang/thyme/issues/36
thyme = dontCheck super.thyme;
@@ -589,14 +543,8 @@ self: super: {
# https://github.com/athanclark/sets/issues/2
sets = dontCheck super.sets;
- # https://github.com/lens/lens-aeson/issues/18
- lens-aeson = dontCheck super.lens-aeson;
-
- # Install icons and metadata, remove broken hgettext dependency.
- # https://github.com/vasylp/hgettext/issues/10
+ # Install icons, metadata and cli program.
bustle = overrideCabal super.bustle (drv: {
- configureFlags = drv.configureFlags or [] ++ ["-f-hgettext"];
- executableHaskellDepends = pkgs.lib.remove self.hgettext drv.executableHaskellDepends;
buildDepends = [ pkgs.libpcap ];
buildTools = with pkgs; [ gettext perl help2man intltool ];
doCheck = false; # https://github.com/wjt/bustle/issues/6
@@ -653,7 +601,13 @@ self: super: {
ln -s $lispdir $data/share/emacs/site-lisp
'';
doCheck = false; # https://github.com/chrisdone/hindent/issues/299
- }));
+ })).override {
+ haskell-src-exts = self.haskell-src-exts_1_20_1;
+ };
+
+ # Need newer versions of their dependencies than the ones we have in LTS-10.x.
+ cabal2nix = super.cabal2nix.override { hpack = self.hpack_0_23_0; };
+ hlint = super.hlint.overrideScope (self: super: { haskell-src-exts = self.haskell-src-exts_1_20_1; });
# https://github.com/bos/configurator/issues/22
configurator = dontCheck super.configurator;
@@ -667,36 +621,23 @@ self: super: {
# https://github.com/pxqr/base32-bytestring/issues/4
base32-bytestring = dontCheck super.base32-bytestring;
- # https://github.com/JohnLato/listlike/pull/6#issuecomment-137986095
- ListLike = dontCheck super.ListLike;
-
# https://github.com/goldfirere/singletons/issues/122
singletons = dontCheck super.singletons;
- # https://github.com/guillaume-nargeot/hpc-coveralls/issues/52
- hpc-coveralls = disableSharedExecutables super.hpc-coveralls;
-
# https://github.com/fpco/stackage/issues/838
cryptonite = dontCheck super.cryptonite;
# We cannot build this package w/o the C library from .
phash = markBroken super.phash;
- # https://github.com/sol/hpack/issues/53
- hpack = dontCheck super.hpack;
-
# https://github.com/deech/fltkhs/issues/16
- fltkhs = overrideCabal super.fltkhs (drv: {
- broken = true; # linking fails because the build doesn't pull in the mesa libraries
- });
+ # linking fails because the build doesn't pull in the mesa libraries
+ fltkhs = markBroken super.fltkhs;
fltkhs-fluid-examples = dontDistribute super.fltkhs-fluid-examples;
# We get lots of strange compiler errors during the test suite run.
jsaddle = dontCheck super.jsaddle;
- # tinc is a new build driver a la Stack that's not yet available from Hackage.
- tinc = self.callPackage ../tools/haskell/tinc { inherit (pkgs) cabal-install cabal2nix; };
-
# Tools that use gtk2hs-buildtools now depend on them in a custom-setup stanza
cairo = addBuildTool super.cairo self.gtk2hs-buildtools;
pango = disableHardening (addBuildTool super.pango self.gtk2hs-buildtools) ["fortify"];
@@ -705,9 +646,6 @@ self: super: {
then appendConfigureFlag super.gtk "-fhave-quartz-gtk"
else super.gtk;
- # It makes no sense to have intero-nix-shim in Hackage, so we publish it here only.
- intero-nix-shim = self.callPackage ../tools/haskell/intero-nix-shim {};
-
# vaultenv is not available from Hackage.
vaultenv = self.callPackage ../tools/haskell/vaultenv { };
@@ -765,6 +703,7 @@ self: super: {
applicative-quoters = doJailbreak super.applicative-quoters;
# https://github.com/roelvandijk/terminal-progress-bar/issues/13
+ # Still needed because of HUnit < 1.6
terminal-progress-bar = doJailbreak super.terminal-progress-bar;
# https://hydra.nixos.org/build/42769611/nixlog/1/raw
@@ -790,6 +729,7 @@ self: super: {
hspec-expectations-pretty-diff = dontCheck super.hspec-expectations-pretty-diff;
# https://github.com/basvandijk/lifted-base/issues/34
+ # Still needed as HUnit < 1.5
lifted-base = doJailbreak super.lifted-base;
# https://github.com/aslatter/parsec/issues/68
@@ -800,57 +740,23 @@ self: super: {
system-filepath = dontCheck super.system-filepath;
# https://github.com/basvandijk/case-insensitive/issues/24
+ # Still needed as HUnit < 1.6
case-insensitive = doJailbreak super.case-insensitive;
# https://github.com/hvr/uuid/issues/28
uuid-types = doJailbreak super.uuid-types;
uuid = doJailbreak super.uuid;
- # https://github.com/hspec/hspec/issues/307
- hspec-contrib = dontCheck super.hspec-contrib;
-
# https://github.com/ekmett/lens/issues/713
lens = disableCabalFlag super.lens "test-doctests";
# https://github.com/haskell/fgl/issues/60
+ # Needed for QuickCheck < 2.10
fgl = doJailbreak super.fgl;
fgl-arbitrary = doJailbreak super.fgl-arbitrary;
- # https://github.com/Gabriel439/Haskell-DirStream-Library/issues/8
- dirstream = doJailbreak super.dirstream;
-
- # https://github.com/xmonad/xmonad-extras/issues/3
- xmonad-extras = doJailbreak super.xmonad-extras;
-
- # https://github.com/int-e/QuickCheck-safe/issues/2
- QuickCheck-safe = doJailbreak super.QuickCheck-safe;
-
- # https://github.com/mokus0/dependent-sum-template/issues/7
- dependent-sum-template = doJailbreak super.dependent-sum-template;
-
- # https://github.com/jcristovao/newtype-generics/issues/13
- newtype-generics = doJailbreak super.newtype-generics;
-
- # https://github.com/lambdabot/lambdabot/issues/158
- lambdabot-core = doJailbreak super.lambdabot-core;
-
- # https://github.com/lambdabot/lambdabot/issues/159
- lambdabot = doJailbreak super.lambdabot;
-
- # https://github.com/jswebtools/language-ecmascript/pull/81
- language-ecmascript = doJailbreak super.language-ecmascript;
-
- # https://github.com/choener/DPutils/pull/1
- DPutils = doJailbreak super.DPutils;
-
- # fixed in unreleased (2017-03-01) https://github.com/ekmett/machines/commit/5463cf5a69194faaec2345dff36469b4b7a8aef0
- machines = doJailbreak super.machines;
-
- # fixed in unreleased (2017-03-01) https://github.com/choener/OrderedBits/commit/7b9c6c6c61d9acd0be8b38939915d287df3c53ab
- OrderedBits = doJailbreak super.OrderedBits;
-
- # https://github.com/haskell-distributed/rank1dynamic/issues/17
- rank1dynamic = doJailbreak super.rank1dynamic;
+ # The tests spuriously fail
+ libmpd = dontCheck super.libmpd;
# https://github.com/dan-t/cabal-lenses/issues/6
cabal-lenses = doJailbreak super.cabal-lenses;
@@ -867,10 +773,6 @@ self: super: {
# https://github.com/danidiaz/streaming-eversion/issues/1
streaming-eversion = dontCheck super.streaming-eversion;
- # strict-io is too cautious with it's deepseq dependency
- # strict-io doesn't have a working bug tracker, the author has been emailed however.
- strict-io = doJailbreak super.strict-io;
-
# https://github.com/danidiaz/tailfile-hinotify/issues/2
tailfile-hinotify = dontCheck super.tailfile-hinotify;
@@ -887,17 +789,12 @@ self: super: {
# https://github.com/diagrams/diagrams-solve/issues/4
diagrams-solve = dontCheck super.diagrams-solve;
- # version 1.3.1.2 does not compile: syb >=0.1.0.2 && <0.7
- ChasingBottoms = doJailbreak super.ChasingBottoms;
-
# test suite does not compile with recent versions of QuickCheck
integer-logarithms = dontCheck (super.integer-logarithms);
- # https://github.com/vincenthz/hs-tls/issues/247
- tls = dontCheck super.tls;
-
# missing dependencies: blaze-html >=0.5 && <0.9, blaze-markup >=0.5 && <0.8
digestive-functors-blaze = doJailbreak super.digestive-functors-blaze;
+ digestive-functors = doJailbreak super.digestive-functors;
# missing dependencies: doctest ==0.12.*
html-entities = doJailbreak super.html-entities;
@@ -905,24 +802,15 @@ self: super: {
# https://github.com/takano-akio/filelock/issues/5
filelock = dontCheck super.filelock;
- # https://github.com/alpmestan/taggy/issues/{19,20}
- taggy = appendPatch super.taggy (pkgs.fetchpatch {
- name = "blaze-markup.patch";
- url = "https://github.com/alpmestan/taggy/commit/5456c2fa4d377f7802ec5df3d5f50c4ccab2e8ed.patch";
- sha256 = "1vss7b99zrhw3r29krl1b60r4qk0m2mpwmrz8q8zdxrh33hb8pd7";
- });
-
# cryptol-2.5.0 doesn't want happy 1.19.6+.
cryptol = super.cryptol.override { happy = self.happy_1_19_5; };
- # https://github.com/jtdaugherty/text-zipper/issues/11
- text-zipper = dontCheck super.text-zipper;
-
- # https://github.com/graknlabs/grakn-haskell/pull/1
+ # Tests try to invoke external process and process == 1.4
grakn = dontCheck (doJailbreak super.grakn);
# test suite requires git and does a bunch of git operations
- restless-git = dontCheck super.restless-git;
+ # doJailbreak because of hardcoded time, seems to be fixed upstream
+ restless-git = dontCheck (doJailbreak super.restless-git);
# Depends on broken fluid.
fluid-idl-http-client = markBroken super.fluid-idl-http-client;
@@ -955,12 +843,22 @@ self: super: {
# https://github.com/fpco/stackage/issues/3126
stack = doJailbreak super.stack;
- # Hoogle needs a newer version than lts-10 provides.
- hoogle = super.hoogle.override { haskell-src-exts = self.haskell-src-exts_1_20_1; };
+ # Hoogle needs newer versions than lts-10 provides. lambdabot-haskell-plugins
+ # depends on Hoogle and therefore needs to use the same version.
+ hoogle = super.hoogle.override {
+ haskell-src-exts = self.haskell-src-exts_1_20_1;
+ http-conduit = self.http-conduit_2_3_0;
+ };
+ lambdabot-haskell-plugins = super.lambdabot-haskell-plugins.override {
+ haskell-src-exts-simple = self.haskell-src-exts-simple_1_20_0_0;
+ };
+ haskell-src-exts-simple_1_20_0_0 = super.haskell-src-exts-simple_1_20_0_0.override {
+ haskell-src-exts = self.haskell-src-exts_1_20_1;
+ };
- # These packages depend on each other, forming an infinte loop.
- scalendar = markBroken super.scalendar;
- SCalendar = markBroken super.SCalendar;
+ # These packages depend on each other, forming an infinite loop.
+ scalendar = markBroken (super.scalendar.override { SCalendar = null; });
+ SCalendar = markBroken (super.SCalendar.override { scalendar = null; });
# Needs QuickCheck <2.10, which we don't have.
edit-distance = doJailbreak super.edit-distance;
@@ -982,6 +880,7 @@ self: super: {
cryptohash-sha1 = doJailbreak super.cryptohash-sha1;
cryptohash-md5 = doJailbreak super.cryptohash-md5;
text-short = doJailbreak super.text-short;
+ gitHUD = dontCheck super.gitHUD;
# https://github.com/aisamanra/config-ini/issues/12
config-ini = dontCheck super.config-ini;
@@ -990,6 +889,9 @@ self: super: {
genvalidity-property = doJailbreak super.genvalidity-property;
path = dontCheck super.path;
+ # Test suite fails due to trying to create directories
+ path-io = dontCheck super.path-io;
+
# Duplicate instance with smallcheck.
store = dontCheck super.store;
@@ -1009,6 +911,9 @@ self: super: {
# https://github.com/alphaHeavy/protobuf/issues/34
protobuf = dontCheck super.protobuf;
+ # https://github.com/bos/text-icu/issues/32
+ text-icu = dontCheck super.text-icu;
+
# https://github.com/strake/lenz.hs/issues/2
lenz =
let patch = pkgs.fetchpatch
@@ -1019,4 +924,79 @@ self: super: {
{ patches = (drv.patches or []) ++ [ patch ];
editedCabalFile = null;
});
+
+ # https://github.com/haskell/cabal/issues/4969
+ haddock-library_1_4_4 = dontHaddock super.haddock-library_1_4_4;
+ haddock-api = super.haddock-api.override { haddock-library = self.haddock-library_1_4_4; };
+
+ # Jailbreak "unix-compat >=0.1.2 && <0.5".
+ darcs = overrideCabal super.darcs (drv: { preConfigure = "sed -i -e 's/unix-compat .*,/unix-compat,/' darcs.cabal"; });
+
+ # https://github.com/Twinside/Juicy.Pixels/issues/149
+ JuicyPixels = dontHaddock super.JuicyPixels;
+
+ # armv7l fixes.
+ happy = if pkgs.stdenv.isArm then dontCheck super.happy else super.happy; # Similar to https://ghc.haskell.org/trac/ghc/ticket/13062
+ hashable = if pkgs.stdenv.isArm then dontCheck super.hashable else super.hashable; # https://github.com/tibbe/hashable/issues/95
+ servant-docs = if pkgs.stdenv.isArm then dontCheck super.servant-docs else super.servant-docs;
+ servant-swagger = if pkgs.stdenv.isArm then dontCheck super.servant-swagger else super.servant-swagger;
+ swagger2 = if pkgs.stdenv.isArm then dontHaddock (dontCheck super.swagger2) else super.swagger2;
+
+ # Tries to read a file it is not allowed to in the test suite
+ load-env = dontCheck super.load-env;
+
+ # Sporadically OOMs even with 16G
+ ChasingBottoms = dontCheck super.ChasingBottoms;
+
+ # Add support for https://github.com/haskell-hvr/multi-ghc-travis.
+ multi-ghc-travis = self.callPackage ../tools/haskell/multi-ghc-travis { ShellCheck = self.ShellCheck_0_4_6; };
+
+ # https://github.com/yesodweb/Shelly.hs/issues/162
+ shelly = dontCheck super.shelly;
+
+ # Support ansi-terminal 0.7.x.
+ cabal-plan = appendPatch super.cabal-plan (pkgs.fetchpatch {
+ url = "https://github.com/haskell-hvr/cabal-plan/pull/16.patch";
+ sha256 = "0i889zs46wn09d7iqdy99201zaqxb175cfs8jz2zi3mv4ywx3a0l";
+ });
+
+ # Copy hledger man pages from data directory into the proper place. This code
+ # should be moved into the cabal2nix generator.
+ hledger = overrideCabal super.hledger (drv: {
+ postInstall = ''
+ for i in $(seq 1 9); do
+ for j in $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/.otherdocs/*.$i; do
+ mkdir -p $out/share/man/man$i
+ cp $j $out/share/man/man$i/
+ done
+ done
+ mkdir $out/share/info
+ cp $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.info $out/share/info/
+ '';
+ });
+ hledger-ui = overrideCabal super.hledger-ui (drv: {
+ postInstall = ''
+ for i in $(seq 1 9); do
+ for j in $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/.otherdocs/*.$i; do
+ mkdir -p $out/share/man/man$i
+ cp $j $out/share/man/man$i/
+ done
+ done
+ mkdir $out/share/info
+ cp $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.info $out/share/info/
+ '';
+ });
+ hledger-web = overrideCabal super.hledger-web (drv: {
+ postInstall = ''
+ for i in $(seq 1 9); do
+ for j in $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.$i $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/.otherdocs/*.$i; do
+ mkdir -p $out/share/man/man$i
+ cp $j $out/share/man/man$i/
+ done
+ done
+ mkdir $out/share/info
+ cp $data/share/${self.ghc.name}/${pkgs.stdenv.system}-${self.ghc.name}/*/*.info $out/share/info/
+ '';
+ });
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
deleted file mode 100644
index 47c8e7fa69e..00000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-6.12.x.nix
+++ /dev/null
@@ -1,94 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
- # LLVM is not supported on this GHC; use the latest one.
- inherit (pkgs) llvmPackages;
-
- # Disable GHC 6.12.x core libraries.
- array = null;
- base = null;
- bin-package-db = null;
- bytestring = null;
- Cabal = null;
- containers = null;
- directory = null;
- dph-base = null;
- dph-par = null;
- dph-prim-interface = null;
- dph-prim-par = null;
- dph-prim-seq = null;
- dph-seq = null;
- extensible-exceptions = null;
- ffi = null;
- filepath = null;
- ghc-binary = null;
- ghc-prim = null;
- haskell98 = null;
- hpc = null;
- integer-gmp = null;
- old-locale = null;
- old-time = null;
- pretty = null;
- process = null;
- random = null;
- rts = null;
- syb = null;
- template-haskell = null;
- time = null;
- unix = null;
-
- # These packages are core libraries in GHC 7.10.x, but not here.
- binary = self.binary_0_8_5_1;
- deepseq = self.deepseq_1_3_0_1;
- haskeline = self.haskeline_0_7_3_1;
- hoopl = self.hoopl_3_10_2_0;
- terminfo = self.terminfo_0_4_0_2;
- transformers = self.transformers_0_4_3_0;
- xhtml = self.xhtml_3000_2_1;
-
- # Requires ghc 8.2
- ghc-proofs = dontDistribute super.ghc-proofs;
-
- # We have no working cabal-install at the moment.
- cabal-install = markBroken super.cabal-install;
-
- # https://github.com/tibbe/hashable/issues/85
- hashable = dontCheck super.hashable;
-
- # Needs Cabal >= 1.18.x.
- jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_18_1_7; };
-
- # Haddock chokes on the prologue from the cabal file.
- ChasingBottoms = dontHaddock super.ChasingBottoms;
-
- # https://github.com/glguy/utf8-string/issues/9
- utf8-string = overrideCabal super.utf8-string (drv: {
- configureFlags = drv.configureFlags or [] ++ ["-f-bytestring-in-base" "--ghc-option=-XUndecidableInstances"];
- preConfigure = "sed -i -e 's|base >= .* < .*,|base,|' utf8-string.cabal";
- });
-
- # https://github.com/haskell/HTTP/issues/80
- HTTP = doJailbreak super.HTTP;
-
- # 6.12.3 doesn't support the latest version.
- primitive = self.primitive_0_5_1_0;
- parallel = self.parallel_3_2_0_3;
- vector = self.vector_0_10_9_3;
-
- # These packages need more recent versions of core libraries to compile.
- happy = addBuildTools super.happy [self.Cabal_1_18_1_7 self.containers_0_4_2_1];
- network-uri = addBuildTool super.network-uri self.Cabal_1_18_1_7;
- stm = addBuildTool super.stm self.Cabal_1_18_1_7;
- split = super.split_0_1_4_3;
-
- # Needs hashable on pre 7.10.x compilers.
- nats_1 = addBuildDepend super.nats_1 self.hashable;
- nats = addBuildDepend super.nats self.hashable;
-
- # Needs void on pre 7.10.x compilers.
- conduit = addBuildDepend super.conduit self.void;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
deleted file mode 100644
index 6bb96704cc2..00000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.0.x.nix
+++ /dev/null
@@ -1,85 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
- # Suitable LLVM version.
- llvmPackages = pkgs.llvmPackages_34;
-
- # Disable GHC 7.0.x core libraries.
- array = null;
- base = null;
- bin-package-db = null;
- bytestring = null;
- Cabal = null;
- containers = null;
- directory = null;
- extensible-exceptions = null;
- ffi = null;
- filepath = null;
- ghc-binary = null;
- ghc-prim = null;
- haskell2010 = null;
- haskell98 = null;
- hpc = null;
- integer-gmp = null;
- old-locale = null;
- old-time = null;
- pretty = null;
- process = null;
- random = null;
- rts = null;
- template-haskell = null;
- time = null;
- unix = null;
-
- # These packages are core libraries in GHC 7.10.x, but not here.
- binary = self.binary_0_7_6_1;
- deepseq = self.deepseq_1_3_0_1;
- haskeline = self.haskeline_0_7_3_1;
- hoopl = self.hoopl_3_10_2_0;
- terminfo = self.terminfo_0_4_0_2;
- transformers = self.transformers_0_4_3_0;
- xhtml = self.xhtml_3000_2_1;
-
- # Requires ghc 8.2
- ghc-proofs = dontDistribute super.ghc-proofs;
-
- # https://github.com/tibbe/hashable/issues/85
- hashable = dontCheck super.hashable;
-
- # https://github.com/peti/jailbreak-cabal/issues/9
- jailbreak-cabal = super.jailbreak-cabal.override {
- Cabal = self.Cabal_1_20_0_4.override { deepseq = self.deepseq_1_3_0_1; };
- };
-
- # Haddock chokes on the prologue from the cabal file.
- ChasingBottoms = dontHaddock super.ChasingBottoms;
-
- # https://github.com/haskell/containers/issues/134
- containers_0_4_2_1 = doJailbreak super.containers_0_4_2_1;
-
- # These packages need more recent versions of core libraries to compile.
- happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1];
-
- # Setup: Can't find transitive deps for haddock
- doctest = dontHaddock super.doctest;
- hsdns = dontHaddock super.hsdns;
-
- # Newer versions require bytestring >=0.10.
- tar = super.tar_0_4_1_0;
-
- # These builds need additional dependencies on old compilers.
- nats_1 = addBuildDepend super.nats_1 self.hashable;
- nats = addBuildDepend super.nats self.hashable;
- conduit = addBuildDepend super.conduit self.void;
- reflection = addBuildDepend super.reflection self.tagged;
- semigroups = addBuildDepend super.semigroups self.nats;
- text = addBuildDepend super.text self.bytestring-builder;
-
- # Newer versions don't compile any longer.
- network_2_6_3_1 = dontCheck super.network_2_6_3_1;
- network = self.network_2_6_3_1;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 1a9158fa665..fc41fc0b3d3 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -161,8 +161,7 @@ self: super: {
vty-ui = enableCabalFlag super.vty-ui "no-tests";
# https://github.com/fpco/stackage/issues/1112
- vector-algorithms = addBuildDepends (dontCheck super.vector-algorithms)
- [ self.mtl self.mwc-random ];
+ vector-algorithms = addBuildDepends (dontCheck super.vector-algorithms) [ self.mtl self.mwc-random ];
# vector with ghc < 8.0 needs semigroups
vector = addBuildDepend super.vector self.semigroups;
@@ -182,30 +181,39 @@ self: super: {
unordered-containers = dontCheck super.unordered-containers;
# GHC versions prior to 8.x require additional build inputs.
- dependent-map = addBuildDepend super.dependent-map self.semigroups;
- distributive = addBuildDepend (dontCheck super.distributive) self.semigroups;
- mono-traversable = addBuildDepend super.mono-traversable self.semigroups;
- attoparsec = addBuildDepends super.attoparsec (with self; [semigroups fail]);
- Glob = addBuildDepends super.Glob (with self; [semigroups]);
aeson = disableCabalFlag (addBuildDepend super.aeson self.semigroups) "old-locale";
+ ansi-wl-pprint = addBuildDepend super.ansi-wl-pprint self.semigroups;
+ attoparsec = addBuildDepends super.attoparsec (with self; [semigroups fail]);
bytes = addBuildDepend super.bytes self.doctest;
case-insensitive = addBuildDepend super.case-insensitive self.semigroups;
+ dependent-map = addBuildDepend super.dependent-map self.semigroups;
+ distributive = addBuildDepend (dontCheck super.distributive) self.semigroups;
+ Glob = addBuildDepends super.Glob (with self; [semigroups]);
hoauth2 = overrideCabal super.hoauth2 (drv: { testDepends = (drv.testDepends or []) ++ [ self.wai self.warp ]; });
hslogger = addBuildDepend super.hslogger self.HUnit;
intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]);
lens = addBuildDepend super.lens self.generic-deriving;
- optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
+ mono-traversable = addBuildDepend super.mono-traversable self.semigroups;
+ natural-transformation = addBuildDepend super.natural-transformation self.semigroups;
+ optparse-applicative = addBuildDepends super.optparse-applicative [self.semigroups self.fail];
QuickCheck = addBuildDepend super.QuickCheck self.semigroups;
semigroups = addBuildDepends (dontCheck super.semigroups) (with self; [hashable tagged text unordered-containers]);
texmath = addBuildDepend super.texmath self.network-uri;
yesod-auth-oauth2 = overrideCabal super.yesod-auth-oauth2 (drv: { testDepends = (drv.testDepends or []) ++ [ self.load-env self.yesod ]; });
- natural-transformation = addBuildDepend super.natural-transformation self.semigroups;
- # cereal must have `fail` in pre-ghc-8.0.x versions
- # also tests require bytestring>=0.10.8.1
+
+ # cereal must have `fail` in pre-ghc-8.0.x versions and tests require
+ # bytestring>=0.10.8.1.
cereal = dontCheck (addBuildDepend super.cereal self.fail);
# The test suite requires Cabal 1.24.x or later to compile.
comonad = dontCheck super.comonad;
semigroupoids = dontCheck super.semigroupoids;
+ # Newer versions require base >=4.9 && <5.
+ colour = self.colour_2_3_3;
+
+ # https://github.com/atzedijkstra/chr/issues/1
+ chr-pretty = doJailbreak super.chr-pretty;
+ chr-parse = doJailbreak super.chr-parse;
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
deleted file mode 100644
index de47086409b..00000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix
+++ /dev/null
@@ -1,89 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
- # Suitable LLVM version.
- llvmPackages = pkgs.llvmPackages_34;
-
- # Disable GHC 7.2.x core libraries.
- array = null;
- base = null;
- binary = null;
- bin-package-db = null;
- bytestring = null;
- Cabal = null;
- containers = null;
- directory = null;
- extensible-exceptions = null;
- ffi = null;
- filepath = null;
- ghc-prim = null;
- haskell2010 = null;
- haskell98 = null;
- hoopl = null;
- hpc = null;
- integer-gmp = null;
- old-locale = null;
- old-time = null;
- pretty = null;
- process = null;
- rts = null;
- template-haskell = null;
- time = null;
- unix = null;
-
- # These packages are core libraries in GHC 7.10.x, but not here.
- deepseq = self.deepseq_1_3_0_1;
- haskeline = self.haskeline_0_7_3_1;
- terminfo = self.terminfo_0_4_0_2;
- transformers = self.transformers_0_4_3_0;
- xhtml = self.xhtml_3000_2_1;
-
- # https://github.com/haskell/cabal/issues/2322
- Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = self.binary_0_8_5_1; process = self.process_1_2_3_0; };
-
- # Requires ghc 8.2
- ghc-proofs = dontDistribute super.ghc-proofs;
-
- # https://github.com/tibbe/hashable/issues/85
- hashable = dontCheck super.hashable;
-
- # https://github.com/peti/jailbreak-cabal/issues/9
- jailbreak-cabal = super.jailbreak-cabal.override {
- Cabal = self.Cabal_1_20_0_4.override { deepseq = self.deepseq_1_3_0_1; };
- };
-
- # Haddock chokes on the prologue from the cabal file.
- ChasingBottoms = dontHaddock super.ChasingBottoms;
-
- # The old containers version won't compile against newer versions of deepseq.
- containers_0_4_2_1 = super.containers_0_4_2_1.override { deepseq = self.deepseq_1_3_0_1; };
-
- # These packages need more recent versions of core libraries to compile.
- happy = addBuildTools super.happy [self.containers_0_4_2_1 self.deepseq_1_3_0_1];
-
- # Setup: Can't find transitive deps for haddock
- doctest = dontHaddock super.doctest;
- hsdns = dontHaddock super.hsdns;
-
- # Needs hashable on pre 7.10.x compilers.
- nats_1 = addBuildDepend super.nats_1 self.hashable;
- nats = addBuildDepend super.nats self.hashable;
-
- # Newer versions require bytestring >=0.10.
- tar = super.tar_0_4_1_0;
-
- # These builds need additional dependencies on old compilers.
- conduit = addBuildDepend super.conduit self.void;
- reflection = addBuildDepend super.reflection self.tagged;
- semigroups = addBuildDepend super.semigroups self.nats;
- optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
- text = addBuildDepend super.text self.bytestring-builder;
-
- # Newer versions don't compile any longer.
- network_2_6_3_1 = dontCheck super.network_2_6_3_1;
- network = self.network_2_6_3_1;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
deleted file mode 100644
index 73bc28b4dd3..00000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
+++ /dev/null
@@ -1,117 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
- # Suitable LLVM version.
- llvmPackages = pkgs.llvmPackages_34;
-
- # Disable GHC 7.4.x core libraries.
- array = null;
- base = null;
- binary = null;
- bin-package-db = null;
- bytestring = null;
- Cabal = null;
- containers = null;
- deepseq = null;
- directory = null;
- extensible-exceptions = null;
- filepath = null;
- ghc-prim = null;
- haskell2010 = null;
- haskell98 = null;
- hoopl = null;
- hpc = null;
- integer-gmp = null;
- old-locale = null;
- old-time = null;
- pretty = null;
- process = null;
- rts = null;
- template-haskell = null;
- time = null;
- unix = null;
-
- # These packages are core libraries in GHC 7.10.x, but not here.
- haskeline = self.haskeline_0_7_3_1;
- terminfo = self.terminfo_0_4_0_2;
- transformers = self.transformers_0_4_3_0;
- xhtml = self.xhtml_3000_2_1;
-
- # https://github.com/haskell/cabal/issues/2322
- Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_5_1; };
-
- # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
- cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_5_1; });
-
- # Requires ghc 8.2
- ghc-proofs = dontDistribute super.ghc-proofs;
-
- # https://github.com/tibbe/hashable/issues/85
- hashable = dontCheck super.hashable;
-
- # https://github.com/peti/jailbreak-cabal/issues/9
- jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_20_0_4; };
-
- # Haddock chokes on the prologue from the cabal file.
- ChasingBottoms = dontHaddock super.ChasingBottoms;
-
- # https://github.com/haskell/primitive/issues/16
- primitive = dontCheck super.primitive;
-
- # https://github.com/tibbe/unordered-containers/issues/96
- unordered-containers = dontCheck super.unordered-containers;
-
- # The test suite depends on time >=1.4.0.2.
- cookie = dontCheck super.cookie ;
-
- # Work around bytestring >=0.10.2.0 requirement.
- streaming-commons = addBuildDepend super.streaming-commons self.bytestring-builder;
-
- # Choose appropriate flags for our version of 'bytestring'.
- bytestring-builder = disableCabalFlag super.bytestring-builder "bytestring_has_builder";
-
- # Newer versions require a more recent compiler.
- control-monad-free = super.control-monad-free_0_5_3;
-
- # Needs hashable on pre 7.10.x compilers.
- nats_1 = addBuildDepend super.nats_1 self.hashable;
- nats = addBuildDepend super.nats self.hashable;
-
- # Test suite won't compile.
- unix-time = dontCheck super.unix-time;
-
- # The test suite depends on mockery, which pulls in logging-facade, which
- # doesn't compile with this older version of base:
- # https://github.com/sol/logging-facade/issues/14
- doctest = dontCheck super.doctest;
-
- # Avoid depending on tasty-golden.
- monad-par = dontCheck super.monad-par;
-
- # Newer versions require bytestring >=0.10.
- tar = super.tar_0_4_1_0;
-
- # Needs void on pre 7.10.x compilers.
- conduit = addBuildDepend super.conduit self.void;
-
- # Needs tagged on pre 7.6.x compilers.
- reflection = addBuildDepend super.reflection self.tagged;
-
- # These builds need additional dependencies on old compilers.
- semigroups = addBuildDepends super.semigroups (with self; [nats bytestring-builder tagged unordered-containers transformers]);
- QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
- optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
- text = addBuildDepend super.text self.bytestring-builder;
- vector = addBuildDepend super.vector self.semigroups;
-
- # Newer versions don't compile any longer.
- network_2_6_3_1 = dontCheck super.network_2_6_3_1;
- network = self.network_2_6_3_1;
-
- # Haddock fails with an internal error.
- utf8-string = dontHaddock super.utf8-string;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
deleted file mode 100644
index 43a1b1b70bd..00000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix
+++ /dev/null
@@ -1,124 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
- # Suitable LLVM version.
- llvmPackages = pkgs.llvmPackages_34;
-
- # Disable GHC 7.6.x core libraries.
- array = null;
- base = null;
- binary = null;
- bin-package-db = null;
- bytestring = null;
- Cabal = null;
- containers = null;
- deepseq = null;
- directory = null;
- filepath = null;
- ghc-prim = null;
- haskell2010 = null;
- haskell98 = null;
- hoopl = null;
- hpc = null;
- integer-gmp = null;
- old-locale = null;
- old-time = null;
- pretty = null;
- process = null;
- rts = null;
- template-haskell = null;
- time = null;
- unix = null;
-
- # These packages are core libraries in GHC 7.10.x, but not here.
- haskeline = self.haskeline_0_7_3_1;
- terminfo = self.terminfo_0_4_0_2;
- transformers = self.transformers_0_4_3_0;
- xhtml = self.xhtml_3000_2_1;
-
- # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'.
- cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_5_1; });
-
- # Requires ghc 8.2
- ghc-proofs = dontDistribute super.ghc-proofs;
-
- # https://github.com/tibbe/hashable/issues/85
- hashable = dontCheck super.hashable;
-
- # https://github.com/peti/jailbreak-cabal/issues/9
- jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_20_0_4; };
-
- # Haddock chokes on the prologue from the cabal file.
- ChasingBottoms = dontHaddock super.ChasingBottoms;
-
- # Later versions require a newer version of bytestring than we have.
- aeson = self.aeson_0_7_0_6;
-
- # The test suite depends on time >=1.4.0.2.
- cookie = dontCheck super.cookie;
-
- # Work around bytestring >=0.10.2.0 requirement.
- streaming-commons = addBuildDepend super.streaming-commons self.bytestring-builder;
-
- # Choose appropriate flags for our version of 'bytestring'.
- bytestring-builder = disableCabalFlag super.bytestring-builder "bytestring_has_builder";
-
- # Tagged is not part of base in this environment.
- contravariant = addBuildDepend super.contravariant self.tagged;
- reflection = dontHaddock (addBuildDepend super.reflection self.tagged);
-
- # The compat library is empty in the presence of mtl 2.2.x.
- mtl-compat = dontHaddock super.mtl-compat;
-
- # Newer versions require a more recent compiler.
- control-monad-free = super.control-monad-free_0_5_3;
-
- # Needs hashable on pre 7.10.x compilers.
- nats_1 = addBuildDepend super.nats_1 self.hashable;
- nats = addBuildDepend super.nats self.hashable;
-
- # https://github.com/magthe/sandi/issues/7
- sandi = overrideCabal super.sandi (drv: {
- postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal";
- });
-
- # These packages require additional build inputs on older compilers.
- blaze-builder = addBuildDepend super.blaze-builder super.bytestring-builder;
- text = addBuildDepend super.text self.bytestring-builder;
-
- # available convertible package won't build with the available
- # bytestring and ghc-mod won't build without convertible
- convertible = markBroken super.convertible;
- ghc-mod = markBroken super.ghc-mod;
-
- # Needs void on pre 7.10.x compilers.
- conduit = addBuildDepend super.conduit self.void;
-
- # Needs additional inputs on old compilers.
- semigroups = addBuildDepends super.semigroups (with self; [bytestring-builder nats tagged unordered-containers transformers]);
- lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
- distributive = addBuildDepend (dontCheck super.distributive) self.semigroups;
- QuickCheck = addBuildDepend super.QuickCheck self.semigroups;
- void = addBuildDepends super.void (with self; [hashable semigroups]);
- optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
- vector = addBuildDepend super.vector self.semigroups;
-
- # Need a newer version of Cabal to interpret their build instructions.
- cmdargs = addSetupDepend super.cmdargs self.Cabal_1_24_2_0;
- extra = addSetupDepend super.extra self.Cabal_1_24_2_0;
- hlint = addSetupDepend super.hlint self.Cabal_1_24_2_0;
-
- # Haddock doesn't cope with the new markup.
- bifunctors = dontHaddock super.bifunctors;
-
- # Breaks a dependency cycle between QuickCheck and semigroups
- unordered-containers = dontCheck super.unordered-containers;
-
- # The test suite requires Cabal 1.24.x or later to compile.
- comonad = dontCheck super.comonad;
- semigroupoids = dontCheck super.semigroupoids;
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
deleted file mode 100644
index 372155a8791..00000000000
--- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix
+++ /dev/null
@@ -1,171 +0,0 @@
-{ pkgs, haskellLib }:
-
-with haskellLib;
-
-self: super: {
-
- # Suitable LLVM version.
- llvmPackages = pkgs.llvmPackages_34;
-
- # Disable GHC 7.8.x core libraries.
- array = null;
- base = null;
- binary = null;
- bin-package-db = null;
- bytestring = null;
- Cabal = null;
- containers = null;
- deepseq = null;
- directory = null;
- filepath = null;
- ghc-prim = null;
- haskeline = null;
- haskell2010 = null;
- haskell98 = null;
- hoopl = null;
- hpc = null;
- integer-gmp = null;
- old-locale = null;
- old-time = null;
- pretty = null;
- process = null;
- rts = null;
- template-haskell = null;
- terminfo = null;
- time = null;
- transformers = null;
- unix = null;
- xhtml = null;
-
- # Requires ghc 8.2
- ghc-proofs = dontDistribute super.ghc-proofs;
-
- # https://github.com/peti/jailbreak-cabal/issues/9
- jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_20_0_4; };
-
- # mtl 2.2.x needs the latest transformers.
- mtl_2_2_1 = super.mtl.override { transformers = self.transformers_0_4_3_0; };
-
- # Configure mtl 2.1.x.
- mtl = self.mtl_2_1_3_1;
- transformers-compat = addBuildDepend (enableCabalFlag super.transformers-compat "three") self.mtl;
- mtl-compat = addBuildDepend (enableCabalFlag super.mtl-compat "two-point-one") self.transformers-compat;
-
- # haddock-api 2.16 requires ghc>=7.10
- haddock-api = super.haddock-api_2_15_0_2;
-
- # This is part of bytestring in our compiler.
- bytestring-builder = dontHaddock super.bytestring-builder;
-
- # Won't compile against mtl 2.1.x.
- imports = super.imports.override { mtl = self.mtl_2_2_1; };
-
- # Newer versions require mtl 2.2.x.
- mtl-prelude = self.mtl-prelude_1_0_3;
-
- # purescript requires mtl 2.2.x.
- purescript = overrideCabal (super.purescript.overrideScope (self: super: {
- mkDerivation = drv: super.mkDerivation (drv // { doCheck = false; });
- mtl = super.mtl_2_2_1;
- transformers = super.transformers_0_4_3_0;
- haskeline = self.haskeline_0_7_3_1;
- transformers-compat = disableCabalFlag super.transformers-compat "three";
- })) (drv: {});
-
- # The test suite pulls in mtl 2.2.x
- command-qq = dontCheck super.command-qq;
-
- # Doesn't support GHC < 7.10.x.
- bound-gen = dontDistribute super.bound-gen;
- ghc-exactprint = dontDistribute super.ghc-exactprint;
- ghc-typelits-natnormalise = dontDistribute super.ghc-typelits-natnormalise;
-
- # Needs directory >= 1.2.2.0.
- idris = markBroken super.idris;
-
- # Newer versions require transformers 0.4.x.
- seqid = super.seqid_0_1_0;
- seqid-streams = super.seqid-streams_0_1_0;
-
- # These packages need mtl 2.2.x directly or indirectly via dependencies.
- amazonka = markBroken super.amazonka;
- apiary-purescript = markBroken super.apiary-purescript;
- clac = dontDistribute super.clac;
- highlighter2 = markBroken super.highlighter2;
- hypher = markBroken super.hypher;
- miniforth = markBroken super.miniforth;
- xhb-atom-cache = markBroken super.xhb-atom-cache;
- xhb-ewmh = markBroken super.xhb-ewmh;
- yesod-purescript = markBroken super.yesod-purescript;
- yet-another-logger = markBroken super.yet-another-logger;
-
- # https://github.com/frosch03/arrowVHDL/issues/2
- ArrowVHDL = markBroken super.ArrowVHDL;
-
- # https://ghc.haskell.org/trac/ghc/ticket/9625
- wai-middleware-preprocessor = dontCheck super.wai-middleware-preprocessor;
- incremental-computing = dontCheck super.incremental-computing;
-
- # Newer versions require base > 4.7
- gloss = super.gloss_1_9_2_1;
-
- # Workaround for a workaround, see comment for "ghcjs" flag.
- jsaddle = let jsaddle' = disableCabalFlag super.jsaddle "ghcjs";
- in addBuildDepends jsaddle' [ self.glib self.gtk3 self.webkitgtk3
- self.webkitgtk3-javascriptcore ];
-
- # Needs hashable on pre 7.10.x compilers.
- nats_1 = addBuildDepend super.nats_1 self.hashable;
- nats = addBuildDepend super.nats self.hashable;
-
- # needs mtl-compat to build with mtl 2.1.x
- cgi = addBuildDepend super.cgi self.mtl-compat;
-
- # https://github.com/magthe/sandi/issues/7
- sandi = overrideCabal super.sandi (drv: {
- postPatch = "sed -i -e 's|base ==4.8.*,|base,|' sandi.cabal";
- });
-
- # Overriding mtl 2.2.x is fine here because ghc-events is an stand-alone executable.
- ghc-events = super.ghc-events.override { mtl = self.mtl_2_2_1; };
-
- # The network library is required in configurations that don't have network-uri.
- hxt = addBuildDepend super.hxt self.network;
- hxt_9_3_1_7 = addBuildDepend super.hxt_9_3_1_7 self.network;
- hxt_9_3_1_10 = addBuildDepend super.hxt_9_3_1_10 self.network;
- hxt_9_3_1_12 = addBuildDepend super.hxt_9_3_1_12 self.network;
- xss-sanitize = addBuildDepend super.xss-sanitize self.network;
- xss-sanitize_0_3_5_4 = addBuildDepend super.xss-sanitize_0_3_5_4 self.network;
- xss-sanitize_0_3_5_5 = addBuildDepend super.xss-sanitize_0_3_5_5 self.network;
-
- # Needs void on pre 7.10.x compilers.
- conduit = addBuildDepend super.conduit self.void;
- conduit_1_2_5 = addBuildDepend super.conduit_1_2_5 self.void;
-
- # Breaks a dependency cycle between QuickCheck and semigroups
- hashable = dontCheck super.hashable;
- unordered-containers = dontCheck super.unordered-containers;
-
- # Needs additional inputs on old compilers.
- semigroups = addBuildDepends (dontCheck super.semigroups) (with self; [nats tagged unordered-containers]);
- lens = addBuildDepends super.lens (with self; [doctest generic-deriving nats simple-reflect]);
- distributive = addBuildDepend (dontCheck super.distributive) self.semigroups;
- QuickCheck = addBuildDepends super.QuickCheck (with self; [nats semigroups]);
- void = addBuildDepends super.void (with self; [hashable semigroups]);
- optparse-applicative = addBuildDepend super.optparse-applicative self.semigroups;
- vector = addBuildDepend super.vector self.semigroups;
-
- # Haddock doesn't cope with the new markup.
- bifunctors = dontHaddock super.bifunctors;
-
- # extra-test: : hFlush: invalid argument (Bad file descriptor)
- extra = dontCheck super.extra;
-
- # The test suite requires Cabal 1.24.x or later to compile.
- comonad = dontCheck super.comonad;
- semigroupoids = dontCheck super.semigroupoids;
-
- # https://github.com/simonmar/happy/issues/103
- happy = super.happy.override { mtl = self.mtl_2_2_1; };
-
-}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
index 30ecbe92f16..30be6a031d4 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -65,4 +65,11 @@ self: super: {
# Add appropriate Cabal library to build this code.
stack = addSetupDepend super.stack self.Cabal_2_0_1_1;
+ # inline-c > 0.5.6.0 requires template-haskell >= 2.12
+ inline-c = super.inline-c_0_5_6_1;
+ inline-c-cpp = super.inline-c-cpp_0_1_0_0;
+
+ # Newer versions require GHC 8.2.
+ haddock-api = self.haddock-api_2_17_4;
+ haddock = self.haddock_2_17_5;
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
index e6ba886032b..4538d8471c0 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.2.x.nix
@@ -56,21 +56,10 @@ self: super: {
# http://hub.darcs.net/dolio/vector-algorithms/issue/9#comment-20170112T145715
vector-algorithms = dontCheck super.vector-algorithms;
- # https://github.com/thoughtbot/yesod-auth-oauth2/pull/77
- yesod-auth-oauth2 = doJailbreak super.yesod-auth-oauth2;
# https://github.com/nominolo/ghc-syb/issues/20
ghc-syb-utils = dontCheck super.ghc-syb-utils;
- # Work around overly restrictive constraints on the version of 'base'.
- ChasingBottoms = doJailbreak super.ChasingBottoms;
- hashable = doJailbreak super.hashable;
- protolude = doJailbreak super.protolude;
- quickcheck-instances = doJailbreak super.quickcheck-instances;
-
- # https://github.com/aristidb/aws/issues/238
- aws = doJailbreak super.aws;
-
# Upstream failed to distribute the testsuite for 8.2
# https://github.com/alanz/ghc-exactprint/pull/60
ghc-exactprint = dontCheck super.ghc-exactprint;
@@ -93,4 +82,8 @@ self: super: {
sha256 = "06sfxk5cyd8nqgjyb95jkihxxk8m6dw9m3mlv94sm2qwylj86gqy";
};
in appendPatch super.coordinate patch;
+
+ # https://github.com/purescript/purescript/issues/3189
+ purescript = doJailbreak (super.purescript);
+
}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
new file mode 100644
index 00000000000..49c8ac0d005
--- /dev/null
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.4.x.nix
@@ -0,0 +1,49 @@
+{ pkgs, haskellLib }:
+
+with haskellLib;
+
+self: super: {
+
+ # Use the latest LLVM.
+ inherit (pkgs) llvmPackages;
+
+ # Disable GHC 8.4.x core libraries.
+ #
+ # Verify against:
+ # ls /nix/store/wnh3kxra586h9wvxrn62g4lmsri2akds-ghc-8.4.20180115/lib/ghc-8.4.20180115/ -1 | sort | grep -e '-' | grep -Ev '(txt|h|targets)$'
+ array = null;
+ base = null;
+ binary = null;
+ bytestring = null;
+ Cabal = null;
+ containers = null;
+ deepseq = null;
+ directory = null;
+ filepath = null;
+ bin-package-db = null;
+ ghc-boot = null;
+ ghc-boot-th = null;
+ ghc-compact = null;
+ ghci = null;
+ ghc-prim = null;
+ haskeline = null;
+ hpc = null;
+ integer-gmp = null;
+ mtl = null;
+ parsec = null;
+ pretty = null;
+ process = null;
+ stm = null;
+ template-haskell = null;
+ terminfo = null;
+ text = null;
+ time = null;
+ transformers = null;
+ unix = null;
+ xhtml = null;
+
+ # GHC 8.4.x needs newer versions than LTS-10.x offers by default.
+ hspec = dontCheck super.hspec_2_4_7; # test suite causes an infinite loop
+ test-framework = self.test-framework_0_8_2_0;
+
+}
diff --git a/pkgs/development/haskell-modules/configuration-ghc-head.nix b/pkgs/development/haskell-modules/configuration-ghc-head.nix
index f81920edd61..99003102ec5 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-head.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-head.nix
@@ -47,10 +47,6 @@ self: super: {
# We have time 1.5
aeson = disableCabalFlag super.aeson "old-locale";
- # Show works differently for record syntax now, breaking haskell-src-exts' parser tests
- # https://github.com/haskell-suite/haskell-src-exts/issues/224
- haskell-src-exts = dontCheck super.haskell-src-exts;
-
# Setup: At least the following dependencies are missing: base <4.8
hspec-expectations = overrideCabal super.hspec-expectations (drv: {
postPatch = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";
diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
index 1dfd973c446..b0d7c77dd32 100644
--- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
+++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml
@@ -38,7 +38,7 @@ core-packages:
- ghcjs-base-0
default-package-overrides:
- # LTS Haskell 10.0
+ # LTS Haskell 10.4
- abstract-deque ==0.3
- abstract-deque-tests ==0.3
- abstract-par ==0.3.3
@@ -49,17 +49,17 @@ default-package-overrides:
- accelerate-examples ==1.1.0.0
- accelerate-fft ==1.1.0.0
- accelerate-fftw ==1.0
- - accelerate-fourier ==1.0.0.2
+ - accelerate-fourier ==1.0.0.3
- accelerate-io ==1.0.0.1
- accelerate-llvm ==1.1.0.0
- accelerate-llvm-native ==1.1.0.1
- - accelerate-llvm-ptx ==1.1.0.0
+ - accelerate-llvm-ptx ==1.1.0.1
- accelerate-utility ==1.0
- accuerr ==0.2.0.2
- ace ==0.6
- action-permutations ==0.0.0.1
- active ==0.2.0.13
- - ad ==4.3.4
+ - ad ==4.3.5
- adjunctions ==4.3
- adler32 ==0.1.1.0
- aern2-mp ==0.1.2.0
@@ -70,11 +70,12 @@ default-package-overrides:
- aeson-compat ==0.3.7.1
- aeson-diff ==1.1.0.4
- aeson-extra ==0.4.1.0
- - aeson-generic-compat ==0.0.1.0
+ - aeson-generic-compat ==0.0.1.1
- aeson-injector ==1.1.0.0
- aeson-pretty ==0.8.5
- aeson-qq ==0.8.2
- aeson-utils ==0.3.0.2
+ - aeson-yak ==0.1.1.3
- Agda ==2.5.3
- airship ==0.9.2
- alarmclock ==0.4.0.3
@@ -87,7 +88,7 @@ default-package-overrides:
- alsa-pcm ==0.6.0.4
- alsa-seq ==0.6.0.7
- alternative-vector ==0.0.0
- - alternators ==0.1.1.1
+ - alternators ==0.1.2.0
- ALUT ==2.4.0.2
- amazonka ==1.5.0
- amazonka-apigateway ==1.5.0
@@ -180,9 +181,9 @@ default-package-overrides:
- amazonka-xray ==1.5.0
- amqp ==0.18.1
- annotated-wl-pprint ==0.7.0
- - ansigraph ==0.3.0.4
+ - ansigraph ==0.3.0.5
- ansi-terminal ==0.7.1.1
- - ansi-wl-pprint ==0.6.8.1
+ - ansi-wl-pprint ==0.6.8.2
- apecs ==0.2.4.7
- api-field-json-th ==0.1.0.2
- appar ==0.1.4
@@ -190,7 +191,7 @@ default-package-overrides:
- apportionment ==0.0.0.2
- approximate ==0.3.1
- app-settings ==0.2.0.11
- - arithmoi ==0.6.0.0
+ - arithmoi ==0.6.0.1
- array-memoize ==0.6.0
- arrow-extras ==0.1.0.1
- arrow-list ==0.7
@@ -213,7 +214,7 @@ default-package-overrides:
- atom-conduit ==0.5.0.1
- atomic-primops ==0.8.1.1
- atomic-write ==0.2.0.5
- - attoparsec ==0.13.2.0
+ - attoparsec ==0.13.2.2
- attoparsec-binary ==0.2
- attoparsec-expr ==0.1.1.2
- attoparsec-ip ==0.0.1
@@ -224,7 +225,7 @@ default-package-overrides:
- authenticate ==1.3.4
- authenticate-oauth ==1.6
- auto ==0.4.3.1
- - autoexporter ==1.1.2
+ - autoexporter ==1.1.3
- auto-update ==0.1.4
- avers ==0.0.17.1
- avers-api ==0.1.0
@@ -249,8 +250,8 @@ default-package-overrides:
- base-unicode-symbols ==0.2.2.4
- basic-prelude ==0.7.0
- bbdb ==0.8
- - bcrypt ==0.0.10
- - bench ==1.0.7
+ - bcrypt ==0.0.11
+ - bench ==1.0.8
- benchpress ==0.2.2.10
- bencode ==0.6.0.0
- bento ==0.1.0
@@ -292,7 +293,7 @@ default-package-overrides:
- bit-stream ==0.1.0.2
- bitx-bitcoin ==0.11.0.1
- blake2 ==0.2.0
- - blank-canvas ==0.6.1
+ - blank-canvas ==0.6.2
- blas-carray ==0.0
- blas-ffi ==0.0
- blas-hs ==0.1.1.0
@@ -301,10 +302,10 @@ default-package-overrides:
- blaze-bootstrap ==0.1.0.1
- blaze-builder ==0.4.0.2
- blaze-html ==0.9.0.1
- - blaze-markup ==0.8.0.0
+ - blaze-markup ==0.8.2.0
- blaze-svg ==0.3.6.1
- blaze-textual ==0.2.1.0
- - bloodhound ==0.15.0.0
+ - bloodhound ==0.15.0.1
- bloomfilter ==2.0.1.0
- blosum ==0.1.1.4
- bmp ==1.2.6.3
@@ -347,11 +348,11 @@ default-package-overrides:
- bzlib-conduit ==0.2.1.5
- c2hs ==0.28.3
- Cabal ==2.0.1.1
- - cabal-doctest ==1.0.4
+ - cabal-doctest ==1.0.5
- cabal-file-th ==0.2.4
- cabal-rpm ==0.12
- - cabal-toolkit ==0.0.3
- - cache ==0.1.0.0
+ - cabal-toolkit ==0.0.4
+ - cache ==0.1.0.1
- cairo ==0.13.4.2
- calendar-recycling ==0.0
- call-stack ==0.1.0
@@ -365,8 +366,8 @@ default-package-overrides:
- cassava-conduit ==0.4.0.1
- cassette ==0.1.0
- cast ==0.1.0.2
- - cayley-client ==0.4.1
- - cereal ==0.5.4.0
+ - cayley-client ==0.4.2
+ - cereal ==0.5.5.0
- cereal-conduit ==0.7.3
- cereal-text ==0.1.0.2
- cereal-time ==0.1.0.0
@@ -377,16 +378,17 @@ default-package-overrides:
- Chart ==1.8.2
- Chart-cairo ==1.8.2
- Chart-diagrams ==1.8.2
- - chart-unit ==0.5.4
+ - chart-unit ==0.5.5.0
- chaselev-deque ==0.5.0.5
- - chatwork ==0.1.2.0
+ - ChasingBottoms ==1.3.1.3
+ - chatwork ==0.1.3.0
- cheapskate ==0.1.1
- cheapskate-highlight ==0.1.0.0
- cheapskate-lucid ==0.1.0.0
- check-email ==1.0.2
- checkers ==0.4.9.5
- choice ==0.2.2
- - chunked-data ==0.3.0
+ - chunked-data ==0.3.1
- cipher-aes ==0.2.11
- cipher-aes128 ==0.7.0.3
- cipher-blowfish ==0.0.3
@@ -414,7 +416,7 @@ default-package-overrides:
- cmark-gfm ==0.1.3
- cmark-highlight ==0.2.0.0
- cmark-lucid ==0.1.0.0
- - cmdargs ==0.10.18
+ - cmdargs ==0.10.20
- code-builder ==0.1.3
- codec ==0.2.1
- code-page ==0.1.3
@@ -440,20 +442,20 @@ default-package-overrides:
- concise ==0.1.0.0
- concurrency ==1.2.3.0
- concurrent-extra ==0.7.0.11
- - concurrent-output ==1.10.1
+ - concurrent-output ==1.10.2
- concurrent-split ==0.0.1
- concurrent-supply ==0.1.8
- cond ==0.4.1.1
- - conduit ==1.2.12.1
- - conduit-algorithms ==0.0.6.1
+ - conduit ==1.2.13
+ - conduit-algorithms ==0.0.7.1
- conduit-combinators ==1.1.2
- conduit-connection ==0.1.0.3
- - conduit-extra ==1.2.2
+ - conduit-extra ==1.2.3.2
- conduit-iconv ==0.1.1.2
- conduit-parse ==0.1.2.2
- - conduit-throttle ==0.3.0.0
+ - conduit-throttle ==0.3.1.0
- ConfigFile ==1.1.4
- - config-ini ==0.2.1.1
+ - config-ini ==0.2.2.0
- configuration-tools ==0.3.0
- configurator ==0.3.0.0
- configurator-export ==0.1.0.1
@@ -463,7 +465,7 @@ default-package-overrides:
- constraints ==0.9.1
- consul-haskell ==0.4.2
- containers-unicode-symbols ==0.3.1.1
- - contravariant ==1.4
+ - contravariant ==1.4.1
- contravariant-extras ==0.3.3.1
- control-bool ==0.2.1
- control-monad-free ==0.6.1
@@ -483,12 +485,12 @@ default-package-overrides:
- crackNum ==1.9
- criterion ==1.2.6.0
- cron ==0.6.1
- - crypto-api ==0.13.2
+ - crypto-api ==0.13.3
- crypto-api-tests ==0.3
- cryptocipher ==0.6.2
- crypto-cipher-tests ==0.0.11
- crypto-cipher-types ==0.0.9
- - crypto-enigma ==0.0.2.9
+ - crypto-enigma ==0.0.2.10
- cryptohash ==0.11.9
- cryptohash-cryptoapi ==0.1.4
- cryptohash-md5 ==0.11.100.1
@@ -510,11 +512,11 @@ default-package-overrides:
- csv ==0.1.2
- csv-conduit ==0.6.7
- ctrie ==0.2
- - cubicbezier ==0.6.0.4
+ - cubicbezier ==0.6.0.5
- cubicspline ==0.1.2
- cublas ==0.4.0.0
- cuda ==0.9.0.0
- - cue-sheet ==1.0.0
+ - cue-sheet ==1.0.1
- cufft ==0.8.0.0
- curl ==1.3.8
- currencies ==0.1.1.1
@@ -533,12 +535,13 @@ default-package-overrides:
- data-clist ==0.1.2.0
- data-default ==0.7.1.1
- data-default-class ==0.1.2.0
+ - data-default-instances-base ==0.1.0.1
- data-default-instances-containers ==0.0.1
- data-default-instances-dlist ==0.0.1
- data-default-instances-old-locale ==0.0.1
- - data-diverse ==2.0.0.0
+ - data-diverse ==2.0.1.0
- data-diverse-lens ==1.0.0.1
- - data-dword ==0.3.1.1
+ - data-dword ==0.3.1.2
- data-endian ==0.1.1
- data-fix ==0.2.0
- data-has ==0.3.0.0
@@ -546,7 +549,8 @@ default-package-overrides:
- data-inttrie ==0.1.2
- data-lens-light ==0.1.2.2
- data-memocombinators ==0.5.1
- - data-msgpack ==0.0.10
+ - data-msgpack ==0.0.11
+ - data-msgpack-types ==0.0.1
- data-or ==1.0.0.5
- data-ordlist ==0.4.7.0
- data-ref ==0.0.1.1
@@ -559,7 +563,7 @@ default-package-overrides:
- DAV ==1.3.1
- dawg-ord ==0.5.1.0
- dbcleaner ==0.1.3
- - dbus ==0.10.13
+ - dbus ==0.10.15
- debian-build ==0.10.1.0
- debug ==0.0.2
- Decimal ==0.4.2
@@ -579,17 +583,17 @@ default-package-overrides:
- dhall-nix ==1.0.9
- dhall-text ==1.0.4
- diagrams ==1.4
- - diagrams-builder ==0.8.0.1
+ - diagrams-builder ==0.8.0.2
- diagrams-cairo ==1.4
- diagrams-canvas ==1.4
- diagrams-contrib ==1.4.1
- diagrams-core ==1.4.0.1
- - diagrams-lib ==1.4.1.2
+ - diagrams-lib ==1.4.2
- diagrams-postscript ==1.4
- diagrams-solve ==0.1.1
- diagrams-svg ==1.4.1.1
- dice ==0.1
- - dictionaries ==0.2.0.3
+ - dictionaries ==0.2.0.4
- Diff ==0.3.4
- diff3 ==0.3.0
- digest ==0.0.1.2
@@ -613,10 +617,10 @@ default-package-overrides:
- diversity ==0.8.1.0
- djinn-ghc ==0.0.2.3
- djinn-lib ==0.0.1.2
- - dlist ==0.8.0.3
+ - dlist ==0.8.0.4
- dlist-instances ==0.1.1.1
- dlist-nonempty ==0.1.1
- - dns ==3.0.0
+ - dns ==3.0.1
- docker ==0.4.1.1
- docker-build-cacher ==1.8.2
- dockerfile ==0.1.0.1
@@ -627,7 +631,7 @@ default-package-overrides:
- doctest-driver-gen ==0.1.0.1
- do-list ==1.0.1
- dom-parser ==3.0.0
- - dotenv ==0.5.1.1
+ - dotenv ==0.5.2.3
- dotnet-timespan ==0.0.1.0
- double-conversion ==2.0.2.0
- download ==0.3.2.6
@@ -635,7 +639,7 @@ default-package-overrides:
- drawille ==0.1.2.0
- DRBG ==0.5.5
- drifter ==0.2.3
- - drifter-postgresql ==0.2.0
+ - drifter-postgresql ==0.2.1
- dsp ==0.2.4
- dual-tree ==0.2.1
- dublincore-xml-conduit ==0.1.0.2
@@ -668,7 +672,7 @@ default-package-overrides:
- elm-export ==0.6.0.1
- elm-export-persistent ==0.1.2
- emailaddress ==0.2.0.0
- - email-validate ==2.3.2
+ - email-validate ==2.3.2.1
- enclosed-exceptions ==1.0.2
- EntrezHTTP ==1.0.4
- entropy ==0.3.8
@@ -685,7 +689,7 @@ default-package-overrides:
- errors ==2.2.2
- errors-ext ==0.4.1
- error-util ==0.0.1.2
- - ersatz ==0.4.1
+ - ersatz ==0.4.2
- esqueleto ==2.5.3
- etcd ==1.0.5
- ether ==0.5.1.0
@@ -716,12 +720,12 @@ default-package-overrides:
- expiring-cache-map ==0.0.6.1
- explicit-exception ==0.1.9
- exp-pairs ==0.1.5.2
- - extensible ==0.4.7
+ - extensible ==0.4.7.1
- extensible-effects ==2.1.0.0
- extensible-exceptions ==0.1.1.4
- - extra ==1.6.2
+ - extra ==1.6.3
- extractable-singleton ==0.0.1
- - extrapolate ==0.3.0
+ - extrapolate ==0.3.1
- fail ==4.9.0.0
- farmhash ==0.1.0.5
- fasta ==0.10.4.2
@@ -762,8 +766,8 @@ default-package-overrides:
- flexible-defaults ==0.0.1.2
- FloatingHex ==0.4
- floatshow ==0.2.4
- - flow ==1.0.9
- - fmlist ==0.9
+ - flow ==1.0.10
+ - fmlist ==0.9.2
- fmt ==0.5.0.0
- fn ==0.3.0.2
- focus ==0.1.5.2
@@ -789,7 +793,7 @@ default-package-overrides:
- free-vl ==0.1.4
- friday ==0.2.3.1
- friendly-time ==0.4.1
- - frisby ==0.2.1
+ - frisby ==0.2.2
- from-sum ==0.2.1.0
- frontmatter ==0.1.0.2
- fsnotify ==0.2.1.1
@@ -798,7 +802,7 @@ default-package-overrides:
- funcmp ==1.8
- functor-classes-compat ==1
- fuzzcheck ==0.1.1
- - fuzzyset ==0.1.0.2
+ - fuzzyset ==0.1.0.4
- gauge ==0.1.3
- gd ==3000.7.3
- gdax ==0.6.0.0
@@ -806,16 +810,16 @@ default-package-overrides:
- general-games ==1.0.5
- generic-aeson ==0.2.0.9
- generic-arbitrary ==0.1.0
- - generic-deriving ==1.12
- - generic-lens ==0.5.0.0
+ - generic-deriving ==1.12.1
+ - generic-lens ==0.5.1.0
- GenericPretty ==1.2.1
- generic-random ==1.0.0.0
- generics-eot ==0.2.1.1
- - generics-sop ==0.3.1.0
+ - generics-sop ==0.3.2.0
- generics-sop-lens ==0.1.2.1
- generic-xmlpickler ==0.1.0.5
- geniplate-mirror ==0.7.5
- - genvalidity ==0.4.0.2
+ - genvalidity ==0.4.0.4
- genvalidity-aeson ==0.1.0.0
- genvalidity-bytestring ==0.1.0.0
- genvalidity-containers ==0.3.0.0
@@ -828,7 +832,7 @@ default-package-overrides:
- genvalidity-property ==0.1.0.0
- genvalidity-scientific ==0.1.0.0
- genvalidity-text ==0.4.0.0
- - genvalidity-time ==0.1.0.0
+ - genvalidity-time ==0.1.0.1
- genvalidity-unordered-containers ==0.1.0.0
- genvalidity-uuid ==0.0.0.0
- genvalidity-vector ==0.1.0.0
@@ -837,7 +841,7 @@ default-package-overrides:
- ghc-core ==0.5.6
- ghc-events ==0.7.0
- ghc-exactprint ==0.5.5.0
- - ghcid ==0.6.8
+ - ghcid ==0.6.9
- ghcjs-base-stub ==0.1.0.4
- ghcjs-codemirror ==0.0.0.1
- ghcjs-dom ==0.9.2.0
@@ -846,10 +850,10 @@ default-package-overrides:
- ghc-paths ==0.1.0.9
- ghc-prof ==1.4.0.4
- ghc-syb-utils ==0.2.3.3
- - ghc-tcplugins-extra ==0.2.1
- - ghc-typelits-extra ==0.2.3
- - ghc-typelits-knownnat ==0.3.1
- - ghc-typelits-natnormalise ==0.5.7
+ - ghc-tcplugins-extra ==0.2.2
+ - ghc-typelits-extra ==0.2.4
+ - ghc-typelits-knownnat ==0.4
+ - ghc-typelits-natnormalise ==0.5.8
- ghost-buster ==0.1.1.0
- gi-atk ==2.0.14
- gi-cairo ==1.0.14
@@ -860,7 +864,7 @@ default-package-overrides:
- giphy-api ==0.5.2.0
- git ==0.2.1
- github ==0.18
- - github-release ==1.1.0
+ - github-release ==1.1.2
- github-types ==0.2.1
- github-webhook-handler ==0.0.8
- github-webhook-handler-snap ==0.0.7
@@ -886,7 +890,7 @@ default-package-overrides:
- GLURaw ==2.0.0.3
- GLUT ==2.7.0.12
- gluturtle ==0.0.58.1
- - gnuplot ==0.5.4.2
+ - gnuplot ==0.5.5
- goggles ==0.1.0.3
- gogol ==0.3.0
- gogol-adexchange-buyer ==0.3.0
@@ -1019,11 +1023,11 @@ default-package-overrides:
- hailgun-simple ==0.1.0.0
- hakyll ==4.10.0.0
- half ==0.2.2.3
- - hamilton ==0.1.0.1
+ - hamilton ==0.1.0.2
- hamlet ==1.2.0
- HandsomeSoup ==0.4.2
- handwriting ==0.1.0.3
- - hapistrano ==0.3.5.0
+ - hapistrano ==0.3.5.1
- happstack-hsp ==7.3.7.3
- happstack-jmacro ==7.0.12
- happstack-server ==7.5.0.1
@@ -1034,7 +1038,7 @@ default-package-overrides:
- hashable ==1.2.6.1
- hashable-time ==0.2.0.1
- hashids ==1.0.2.3
- - hashmap ==1.3.2
+ - hashmap ==1.3.3
- hashtables ==1.2.2.1
- haskeline ==0.7.4.2
- haskell-gi ==0.20.3
@@ -1042,8 +1046,8 @@ default-package-overrides:
- haskell-gi-overloading ==1.0
- haskell-import-graph ==1.0.3
- haskell-lexer ==1.0.1
- - haskell-lsp ==0.2.0.0
- - haskell-lsp-client ==1.0.0.0
+ - haskell-lsp ==0.2.0.1
+ - haskell-lsp-client ==1.0.0.1
- haskell-names ==0.9.0
- haskell-neo4j-client ==0.3.2.4
- HaskellNet ==0.5.1
@@ -1052,20 +1056,20 @@ default-package-overrides:
- haskell-src ==1.0.2.0
- haskell-src-exts ==1.19.1
- haskell-src-exts-simple ==1.19.0.0
- - haskell-src-exts-util ==0.2.1.2
- - haskell-src-meta ==0.8.0.1
- - haskell-tools-ast ==1.0.0.2
- - haskell-tools-backend-ghc ==1.0.0.2
- - haskell-tools-builtin-refactorings ==1.0.0.2
- - haskell-tools-cli ==1.0.0.2
- - haskell-tools-daemon ==1.0.0.2
- - haskell-tools-debug ==1.0.0.2
- - haskell-tools-demo ==1.0.0.2
- - haskell-tools-prettyprint ==1.0.0.2
- - haskell-tools-refactor ==1.0.0.2
- - haskell-tools-rewrite ==1.0.0.2
+ - haskell-src-exts-util ==0.2.2
+ - haskell-src-meta ==0.8.0.2
+ - haskell-tools-ast ==1.0.0.4
+ - haskell-tools-backend-ghc ==1.0.0.4
+ - haskell-tools-builtin-refactorings ==1.0.0.4
+ - haskell-tools-cli ==1.0.0.4
+ - haskell-tools-daemon ==1.0.0.4
+ - haskell-tools-debug ==1.0.0.4
+ - haskell-tools-demo ==1.0.0.4
+ - haskell-tools-prettyprint ==1.0.0.4
+ - haskell-tools-refactor ==1.0.0.4
+ - haskell-tools-rewrite ==1.0.0.4
- haskintex ==0.8.0.0
- - hasmin ==1.0
+ - hasmin ==1.0.1
- hasql ==1.1.1
- hasql-migration ==0.1.3
- hasql-optparse-applicative ==0.2.4
@@ -1081,19 +1085,19 @@ default-package-overrides:
- hbeanstalk ==0.2.4
- Hclip ==3.0.0.4
- HCodecs ==0.5
- - hdaemonize ==0.5.4
+ - hdaemonize ==0.5.5
- HDBC ==2.4.0.2
- HDBC-mysql ==0.7.1.0
- HDBC-session ==0.1.1.1
- hdevtools ==0.1.6.1
- heap ==1.0.3
- - heaps ==0.3.5
+ - heaps ==0.3.6
- heatshrink ==0.1.0.0
- hebrew-time ==0.1.1
- hedgehog ==0.5.1
- hedgehog-quickcheck ==0.1
- hedis ==0.9.12
- - here ==1.2.11
+ - here ==1.2.12
- heredoc ==0.2.0.0
- heterocephalus ==1.0.5.1
- hex ==0.1.2
@@ -1105,7 +1109,7 @@ default-package-overrides:
- hfsevents ==0.1.6
- hid ==0.2.2
- hidapi ==0.1.4
- - hidden-char ==0.1.0.1
+ - hidden-char ==0.1.0.2
- hierarchical-clustering ==0.4.6
- higher-leveldb ==0.4.0.1
- highjson ==0.4.0.0
@@ -1119,21 +1123,20 @@ default-package-overrides:
- hit ==0.6.3
- hjsmin ==0.2.0.2
- hjsonpointer ==1.3.0
- - hjsonschema ==1.7.1
+ - hjsonschema ==1.7.2
- hlibgit2 ==0.18.0.16
- hlibsass ==0.1.6.1
- - hlint ==2.0.11
- - hmatrix ==0.18.1.0
+ - hmatrix ==0.18.2.0
- hmatrix-gsl ==0.18.0.1
- hmatrix-gsl-stats ==0.4.1.7
- hmatrix-morpheus ==0.1.1.1
- hmatrix-repa ==0.1.2.2
- hmatrix-special ==0.4.0.1
- - hmpfr ==0.4.3
+ - hmpfr ==0.4.4
- hnix ==0.3.4
- hoauth2 ==1.5.1
- hocilib ==0.2.0
- - Hoed ==0.4.0
+ - Hoed ==0.4.1
- holy-project ==0.2.0.1
- hOpenPGP ==2.5.5
- hopenpgp-tools ==0.19.5
@@ -1147,14 +1150,14 @@ default-package-overrides:
- hpack ==0.21.2
- hpc-coveralls ==1.0.10
- HPDF ==1.4.10
- - hpio ==0.9.0.2
+ - hpio ==0.9.0.3
- hpp ==0.5.1
- hpqtypes ==1.5.1.1
- hprotoc ==2.4.6
- hquantlib ==0.0.4.0
- hreader ==1.1.0
- hreader-lens ==0.1.3.0
- - hruby ==0.3.5
+ - hruby ==0.3.5.1
- hsass ==0.5.0
- hsb2hs ==0.3.1
- hs-bibutils ==6.2.0.1
@@ -1170,12 +1173,12 @@ default-package-overrides:
- hsignal ==0.2.7.5
- hsinstall ==1.6
- hslogger ==1.2.10
- - hslua ==0.9.3
+ - hslua ==0.9.5
- hslua-aeson ==0.3.0.1
- hslua-module-text ==0.1.2.1
- hsndfile ==0.8.0
- hsndfile-vector ==0.5.2
- - HsOpenSSL ==0.11.4.11
+ - HsOpenSSL ==0.11.4.12
- HsOpenSSL-x509-system ==0.1.0.3
- hsp ==0.10.0
- hspec ==2.4.4
@@ -1189,7 +1192,7 @@ default-package-overrides:
- hspec-expectations-pretty-diff ==0.7.2.4
- hspec-golden-aeson ==0.4.0.0
- hspec-megaparsec ==1.0.0
- - hspec-meta ==2.4.4
+ - hspec-meta ==2.4.6
- hspec-pg-transact ==0.1.0.2
- hspec-smallcheck ==0.4.2
- hspec-wai ==0.9.0
@@ -1214,7 +1217,7 @@ default-package-overrides:
- HTTP ==4000.3.9
- http2 ==1.6.3
- http-api-data ==0.3.7.1
- - http-client ==0.5.7.1
+ - http-client ==0.5.9
- http-client-openssl ==0.2.1.1
- http-client-tls ==0.3.5.1
- http-common ==0.8.2.0
@@ -1259,12 +1262,13 @@ default-package-overrides:
- hxt-regex-xmlschema ==9.2.0.3
- hxt-tagsoup ==9.1.4
- hxt-unicode ==9.0.2.4
- - hybrid-vectors ==0.2.1
+ - hybrid-vectors ==0.2.2
- hyperloglog ==0.4.2
- - hyphenation ==0.7
+ - hyphenation ==0.7.1
- ical ==0.0.1
- iconv ==0.4.1.3
- identicon ==0.2.2
+ - idris ==1.2.0
- ieee754 ==0.8.0
- if ==0.1.0.0
- IfElse ==0.85
@@ -1275,19 +1279,19 @@ default-package-overrides:
- imagesize-conduit ==1.1
- Imlib ==0.1.2
- immortal ==0.2.2.1
- - importify ==1.0
+ - importify ==1.0.1
- include-file ==0.1.0.3
- - incremental-parser ==0.2.5.2
+ - incremental-parser ==0.2.5.3
- indentation-core ==0.0.0.1
- indentation-parsec ==0.0.0.1
- - indents ==0.4.0.0
- - inflections ==0.4.0.0
+ - indents ==0.4.0.1
+ - inflections ==0.4.0.1
- influxdb ==1.2.2.2
- ini ==0.3.5
- inline-c ==0.6.0.5
- inline-c-cpp ==0.2.1.0
- - inline-java ==0.7.1
- - inline-r ==0.9.0.2
+ - inline-java ==0.7.2
+ - inline-r ==0.9.1
- insert-ordered-containers ==0.2.1.0
- inspection-testing ==0.1.2
- instance-control ==0.1.2.0
@@ -1296,13 +1300,13 @@ default-package-overrides:
- intern ==0.9.1.4
- interpolate ==0.1.1
- interpolatedstring-perl6 ==1.0.0
- - Interpolation ==0.3.0
- interpolation ==0.1.0.2
+ - Interpolation ==0.3.0
- IntervalMap ==0.5.3.1
- intervals ==0.8.1
- - intro ==0.3.0.1
+ - intro ==0.3.1.0
- invariant ==0.5
- - invertible ==0.2.0.2
+ - invertible ==0.2.0.3
- io-choice ==0.0.6
- io-machine ==0.2.0.0
- io-manager ==0.1.0.2
@@ -1311,14 +1315,14 @@ default-package-overrides:
- io-storage ==0.3
- io-streams ==1.5.0.1
- io-streams-haproxy ==1.0.0.2
- - ip ==1.1.0
+ - ip ==1.1.2
- ip6addr ==0.5.3
- iproute ==1.7.1
- IPv6Addr ==1.0.1
- - IPv6DB ==0.2.3
- - ipython-kernel ==0.9.0.0
+ - IPv6DB ==0.2.4
+ - ipython-kernel ==0.9.0.1
- irc ==0.6.1.0
- - irc-client ==1.0.0.1
+ - irc-client ==1.0.1.0
- irc-conduit ==0.2.2.4
- irc-ctcp ==0.1.3.0
- irc-dcc ==2.0.1
@@ -1337,7 +1341,7 @@ default-package-overrides:
- jmacro-rpc ==0.3.2
- jmacro-rpc-happstack ==0.3.2
- jmacro-rpc-snap ==0.3
- - jni ==0.5.0
+ - jni ==0.5.1
- jose ==0.6.0.3
- jose-jwt ==0.7.8
- jsaddle ==0.9.4.0
@@ -1347,14 +1351,14 @@ default-package-overrides:
- json ==0.9.1
- json-autotype ==1.0.18
- json-builder ==0.3
- - json-rpc-generic ==0.2.1.2
+ - json-rpc-generic ==0.2.1.3
- json-schema ==0.7.4.1
- json-stream ==0.4.1.5
- - JuicyPixels ==3.2.9.1
+ - JuicyPixels ==3.2.9.3
- JuicyPixels-extra ==0.2.2
- JuicyPixels-scale-dct ==0.1.1.2
- justified-containers ==0.2.0.1
- - jvm ==0.4.0.1
+ - jvm ==0.4.1
- jwt ==0.7.2
- kan-extensions ==5.0.2
- kanji ==3.0.2
@@ -1372,7 +1376,7 @@ default-package-overrides:
- kraken ==0.1.0
- l10n ==0.1.0.1
- labels ==0.3.3
- - lackey ==0.4.6
+ - lackey ==0.4.7
- lame ==0.1.1
- language-c ==0.7.1
- language-c-quote ==0.12.1
@@ -1397,7 +1401,7 @@ default-package-overrides:
- leapseconds-announced ==2017.1.0.1
- lens ==4.15.4
- lens-accelerate ==0.1.0.0
- - lens-action ==0.2.2
+ - lens-action ==0.2.3
- lens-aeson ==1.0.2
- lens-datetime ==0.3
- lens-family ==1.2.2
@@ -1418,8 +1422,8 @@ default-package-overrides:
- libsystemd-journal ==1.4.2
- libxml-sax ==0.7.5
- LibZip ==1.0.1
- - licensor ==0.2.1
- - lifted-async ==0.9.3.2
+ - licensor ==0.2.2
+ - lifted-async ==0.9.3.3
- lifted-base ==0.2.3.11
- lift-generics ==0.1.2
- line ==4.0.1
@@ -1432,8 +1436,8 @@ default-package-overrides:
- ListLike ==4.5.1
- listsafe ==0.1.0.1
- list-t ==1.0.0.1
- - llvm-hs ==5.1.0
- - llvm-hs-pure ==5.1.0
+ - llvm-hs ==5.1.3
+ - llvm-hs-pure ==5.1.2
- lmdb ==0.2.5
- load-env ==0.1.2
- loch-th ==0.2.1
@@ -1452,12 +1456,12 @@ default-package-overrides:
- logging-facade-syslog ==1
- logict ==0.6.0.2
- log-postgres ==0.7.0.2
- - log-warper ==1.8.2
+ - log-warper ==1.8.3
- loop ==0.3.0
- lrucache ==1.2.0.0
- - lrucaching ==0.3.2
+ - lrucaching ==0.3.3
- lucid ==2.9.9
- - lxd-client ==0.1.0.4
+ - lxd-client ==0.1.0.5
- lxd-client-config ==0.1.0.1
- lzma ==0.0.0.3
- lzma-conduit ==1.2.0
@@ -1492,8 +1496,8 @@ default-package-overrides:
- median-stream ==0.7.0.0
- med-module ==0.1.1
- megaparsec ==6.3.0
- - mega-sdist ==0.3.0.5
- - memory ==0.14.10
+ - mega-sdist ==0.3.0.6
+ - memory ==0.14.11
- MemoTrie ==0.6.8
- mercury-api ==0.1.0.1
- mersenne-random-pure64 ==0.2.2.0
@@ -1503,14 +1507,14 @@ default-package-overrides:
- MFlow ==0.4.6.0
- mfsolve ==0.3.2.0
- microformats2-parser ==1.0.1.7
- - microlens ==0.4.8.1
+ - microlens ==0.4.8.3
- microlens-aeson ==2.2.0.2
- microlens-contra ==0.1.0.1
- microlens-ghc ==0.4.8.0
- - microlens-mtl ==0.1.11.0
+ - microlens-mtl ==0.1.11.1
- microlens-platform ==0.3.9.0
- - microlens-th ==0.4.1.1
- - microsoft-translator ==0.1.0.0
+ - microlens-th ==0.4.1.3
+ - microsoft-translator ==0.1.1
- microspec ==0.1.0.0
- microstache ==1.0.1.1
- midi ==0.2.2.1
@@ -1531,13 +1535,13 @@ default-package-overrides:
- mixed-types-num ==0.3.1.4
- mltool ==0.1.0.2
- mmap ==0.5.9
- - mmark ==0.0.3.0
- - mmark-ext ==0.0.1.1
+ - mmark ==0.0.4.0
+ - mmark-ext ==0.0.1.2
- mmorph ==1.1.0
- mnist-idx ==0.1.2.8
- mockery ==0.3.5
- model ==0.4.4
- - modern-uri ==0.1.2.0
+ - modern-uri ==0.1.2.1
- modify-fasta ==0.8.2.3
- moesocks ==1.0.0.43
- mole ==0.0.6
@@ -1550,7 +1554,7 @@ default-package-overrides:
- monadic-arrays ==0.2.2
- monad-journal ==0.8.1
- monadloc ==0.7.1
- - monad-logger ==0.3.26
+ - monad-logger ==0.3.28.1
- monad-logger-json ==0.1.0.0
- monad-logger-prefix ==0.1.6
- monad-logger-syslog ==0.1.4.0
@@ -1574,14 +1578,14 @@ default-package-overrides:
- monad-time ==0.2
- monad-unlift ==0.2.0
- monad-unlift-ref ==0.2.1
- - mongoDB ==2.3.0
+ - mongoDB ==2.3.0.1
- monoidal-containers ==0.3.0.2
- monoid-extras ==0.4.2
- monoid-subclasses ==0.4.4
- monoid-transformer ==0.0.3
- - mono-traversable ==1.0.5.0
+ - mono-traversable ==1.0.8.1
- mono-traversable-instances ==0.1.0.0
- - morte ==1.6.13
+ - morte ==1.6.14
- mountpoints ==1.0.2
- mstate ==0.2.7
- mtl ==2.2.1
@@ -1608,7 +1612,7 @@ default-package-overrides:
- nakadi-client ==0.3.0.0
- names-th ==0.2.0.3
- nano-erl ==0.1.0.1
- - nanospec ==0.2.1
+ - nanospec ==0.2.2
- naqsha ==0.2.0.1
- nats ==1.1.1
- natural-sort ==0.1.2
@@ -1621,8 +1625,8 @@ default-package-overrides:
- nettle ==0.2.0
- netwire ==5.0.2
- netwire-input ==0.0.6
- - netwire-input-glfw ==0.0.6
- - network ==2.6.3.2
+ - netwire-input-glfw ==0.0.7
+ - network ==2.6.3.3
- network-anonymous-i2p ==0.10.0
- network-anonymous-tor ==0.11.0
- network-attoparsec ==0.12.2
@@ -1631,7 +1635,7 @@ default-package-overrides:
- network-house ==0.1.0.2
- network-info ==0.2.0.9
- network-ip ==0.3.0.2
- - network-msgpack-rpc ==0.0.3
+ - network-msgpack-rpc ==0.0.4
- network-multicast ==0.2.0
- Network-NineP ==0.4.1
- network-simple ==0.4.0.5
@@ -1662,15 +1666,15 @@ default-package-overrides:
- numbers ==3000.2.0.1
- numeric-extras ==0.1
- numeric-prelude ==0.4.2
- - numhask ==0.1.3
- - numhask-range ==0.1.2
+ - numhask ==0.1.4.0
+ - numhask-range ==0.1.3.0
- NumInstances ==1.4
- numtype-dk ==0.5.0.1
- - nvim-hs ==0.2.4
+ - nvim-hs ==0.2.5
- nvim-hs-contrib ==0.2.0
- nvim-hs-ghcid ==0.2.0
- - nvvm ==0.8.0.1
- - objective ==1.1.1
+ - nvvm ==0.8.0.2
+ - objective ==1.1.2
- ObjectName ==1.1.0.1
- ochintin-daicho ==0.1.0.1
- oeis ==0.3.9
@@ -1678,7 +1682,7 @@ default-package-overrides:
- old-locale ==1.0.0.7
- old-time ==1.1.0.3
- once ==0.2
- - one-liner ==0.9.1
+ - one-liner ==0.9.2
- OneTuple ==0.2.1
- online ==0.2.0
- Only ==0.1
@@ -1689,7 +1693,7 @@ default-package-overrides:
- open-browser ==0.2.1.0
- openexr-write ==0.1.0.1
- OpenGL ==3.0.2.0
- - OpenGLRaw ==3.2.6.0
+ - OpenGLRaw ==3.2.7.0
- openpgp-asciiarmor ==0.1
- opensource ==0.1.0.0
- openssl-streams ==1.2.1.3
@@ -1709,9 +1713,9 @@ default-package-overrides:
- pagerduty ==0.0.8
- pagination ==0.2.1
- palette ==0.1.0.5
- - pandoc ==2.0.5
- - pandoc-citeproc ==0.12.1.1
- - pandoc-types ==1.17.3
+ - pandoc ==2.0.6
+ - pandoc-citeproc ==0.12.2.5
+ - pandoc-types ==1.17.3.1
- pango ==0.13.4.0
- papillon ==0.1.0.5
- parallel ==3.2.1.1
@@ -1720,8 +1724,8 @@ default-package-overrides:
- parsec ==3.1.11
- parsec-numeric ==0.1.0.0
- ParsecTools ==0.0.2.0
- - parser-combinators ==0.2.1
- - parsers ==0.12.7
+ - parser-combinators ==0.4.0
+ - parsers ==0.12.8
- partial-handler ==1.0.2
- partial-isomorphisms ==0.2.2.1
- partial-order ==0.1.2.1
@@ -1752,8 +1756,8 @@ default-package-overrides:
- persistent ==2.7.1
- persistent-mongoDB ==2.6.0
- persistent-mysql ==2.6.2.1
- - persistent-mysql-haskell ==0.3.5
- - persistent-postgresql ==2.6.2.1
+ - persistent-mysql-haskell ==0.3.6
+ - persistent-postgresql ==2.6.3
- persistent-refs ==0.4
- persistent-sqlite ==2.6.4
- persistent-template ==2.5.3
@@ -1764,7 +1768,7 @@ default-package-overrides:
- picoparsec ==0.1.2.3
- picosat ==0.1.4
- pid1 ==0.1.2.0
- - pinboard ==0.9.12.6
+ - pinboard ==0.9.12.8
- pinch ==0.3.2.0
- pipes ==4.3.7
- pipes-aeson ==0.4.1.8
@@ -1790,7 +1794,7 @@ default-package-overrides:
- placeholders ==0.1
- plan-b ==0.2.1
- plot ==0.2.3.9
- - pointed ==5
+ - pointed ==5.0.1
- pointedlist ==0.6.1
- pointful ==1.0.9
- pointless-fun ==1.1.0.6
@@ -1798,16 +1802,17 @@ default-package-overrides:
- poly-arity ==0.1.0
- polynomials-bernstein ==1.1.2
- polyparse ==1.12
+ - pomaps ==0.0.0.3
- pooled-io ==0.0.2.1
- PortMidi ==0.1.6.1
- posix-paths ==0.2.1.3
- postgresql-binary ==0.12.1
- - postgresql-libpq ==0.9.3.1
+ - postgresql-libpq ==0.9.4.0
- postgresql-query ==3.3.0
- postgresql-schema ==0.1.14
- postgresql-simple ==0.5.3.0
- postgresql-simple-migration ==0.1.11.0
- - postgresql-simple-queue ==1.0.0
+ - postgresql-simple-queue ==1.0.1
- postgresql-simple-url ==0.2.0.0
- postgresql-transactional ==1.1.1
- postgresql-typed ==0.5.2
@@ -1829,23 +1834,23 @@ default-package-overrides:
- prettyprinter-compat-annotated-wl-pprint ==1
- prettyprinter-compat-ansi-wl-pprint ==1.0.1
- prettyprinter-compat-wl-pprint ==1.0.0.1
- - pretty-show ==1.6.15
- - pretty-simple ==2.0.1.0
+ - pretty-show ==1.6.16
+ - pretty-simple ==2.0.2.0
- pretty-types ==0.2.3.1
- prim-array ==0.2.1
- primes ==0.2.1.0
- - primitive ==0.6.2.0
+ - primitive ==0.6.3.0
- printcess ==0.1.0.3
- probability ==0.2.5.1
- - process-extras ==0.7.2
+ - process-extras ==0.7.3
- product-isomorphic ==0.0.3.1
- product-profunctors ==0.8.0.3
- profiterole ==0.1
- - profiteur ==0.4.3.0
+ - profiteur ==0.4.4.0
- profunctor-extras ==4.0
- - profunctors ==5.2.1
+ - profunctors ==5.2.2
- projectroot ==0.2.0.1
- - project-template ==0.2.0
+ - project-template ==0.2.0.1
- prometheus-client ==0.3.0
- prometheus-metrics-ghc ==0.3.0
- promises ==0.3
@@ -1861,17 +1866,17 @@ default-package-overrides:
- proto-lens-optparse ==0.1.0.4
- proto-lens-protobuf-types ==0.2.2.0
- proto-lens-protoc ==0.2.2.3
- - protolude ==0.2
+ - protolude ==0.2.1
- proxied ==0.3
- psql-helpers ==0.1.0.0
- PSQueue ==1.1
- - psqueues ==0.2.4.0
+ - psqueues ==0.2.5.0
- pthread ==0.2.0
- publicsuffix ==0.20170802
- pure-io ==0.2.1
- pureMD5 ==2.1.3
- purescript-bridge ==0.11.1.2
- - pusher-http-haskell ==1.5.0.1
+ - pusher-http-haskell ==1.5.1.0
- pwstore-fast ==2.4.4
- qchas ==1.0.1.0
- qm-interpolated-string ==0.2.1.0
@@ -1882,19 +1887,19 @@ default-package-overrides:
- quickcheck-assertions ==0.3.0
- quickcheck-classes ==0.3.1
- quickcheck-combinators ==0.0.2
- - quickcheck-instances ==0.3.16
+ - quickcheck-instances ==0.3.16.1
- quickcheck-io ==0.2.0
- quickcheck-properties ==0.1
- quickcheck-simple ==0.1.0.2
- quickcheck-special ==0.1.0.6
- - quickcheck-state-machine ==0.3.0
+ - quickcheck-state-machine ==0.3.1
- quickcheck-text ==0.1.2.1
- quickcheck-unicode ==1.0.1.0
- quickcheck-with-counterexamples ==1.0
- raaz ==0.2.0
- rainbow ==0.28.0.4
- rainbox ==0.18.0.10
- - rakuten ==0.1.0.4
+ - rakuten ==0.1.0.5
- ramus ==0.1.2
- random ==1.1
- random-fu ==0.2.7.0
@@ -1907,8 +1912,8 @@ default-package-overrides:
- rank-product ==0.2.0.1
- Rasterific ==0.7.2.1
- rasterific-svg ==0.3.3
- - ratel ==0.3.7
- - ratel-wai ==0.3.1
+ - ratel ==0.3.10
+ - ratel-wai ==0.3.2
- ratio-int ==0.1.2
- rattletrap ==3.1.2
- rawfilepath ==0.2.4
@@ -1929,7 +1934,7 @@ default-package-overrides:
- references ==0.3.3.1
- ref-fd ==0.4.0.1
- refined ==0.1.2.1
- - reflection ==2.1.2
+ - reflection ==2.1.3
- reform ==0.2.7.1
- reform-blaze ==0.2.4.3
- reform-hamlet ==0.0.5.3
@@ -1963,7 +1968,7 @@ default-package-overrides:
- req-conduit ==1.0.0
- reroute ==0.4.1.0
- resource-pool ==0.2.3.2
- - resourcet ==1.1.10
+ - resourcet ==1.1.11
- rest-client ==0.5.1.1
- rest-core ==0.39
- rest-gen ==0.20.0.1
@@ -1992,7 +1997,7 @@ default-package-overrides:
- safecopy ==0.9.3.3
- safe-exceptions ==0.1.6.0
- safe-exceptions-checked ==0.1.0
- - safeio ==0.0.4.0
+ - safeio ==0.0.5.0
- SafeSemaphore ==0.10.1
- sample-frame ==0.0.3
- sample-frame-np ==0.0.4.1
@@ -2000,10 +2005,10 @@ default-package-overrides:
- sandi ==0.4.1
- sandman ==0.2.0.1
- say ==0.1.0.0
- - sbp ==2.3.2
+ - sbp ==2.3.6
- sbv ==7.4
- - scalendar ==1.2.0
- SCalendar ==1.1.0
+ - scalendar ==1.2.0
- scalpel ==0.5.1
- scalpel-core ==0.5.1
- scanner ==0.2
@@ -2019,8 +2024,8 @@ default-package-overrides:
- search-algorithms ==0.3.0
- securemem ==0.1.9
- SegmentTree ==0.3
- - selda ==0.1.11.2
- - selda-postgresql ==0.1.7.0
+ - selda ==0.1.12
+ - selda-postgresql ==0.1.7.1
- selda-sqlite ==0.1.6.0
- semigroupoid-extras ==5
- semigroupoids ==5.2.1
@@ -2040,18 +2045,18 @@ default-package-overrides:
- servant-client ==0.11
- servant-docs ==0.11
- servant-elm ==0.4.0.1
- - servant-exceptions ==0.1.0
+ - servant-exceptions ==0.1.1
- servant-foreign ==0.10.1
- servant-generic ==0.1.0.1
- servant-js ==0.9.3.1
- servant-JuicyPixels ==0.3.0.3
- - servant-kotlin ==0.1.0.2
+ - servant-kotlin ==0.1.0.3
- servant-lucid ==0.7.1
- servant-mock ==0.8.3
- servant-pandoc ==0.4.1.4
- servant-purescript ==0.9.0.2
- servant-rawm ==0.2.0.2
- - servant-ruby ==0.5.0.0
+ - servant-ruby ==0.5.1.0
- servant-server ==0.11.0.1
- servant-static-th ==0.1.0.6
- servant-subscriber ==0.6.0.1
@@ -2061,7 +2066,7 @@ default-package-overrides:
- servant-yaml ==0.1.0.0
- serversession ==1.0.1
- serversession-backend-persistent ==1.0.4
- - serversession-backend-redis ==1.0.2
+ - serversession-backend-redis ==1.0.3
- serversession-frontend-wai ==1.0
- serversession-frontend-yesod ==1.0
- servius ==1.2.0.3
@@ -2077,8 +2082,8 @@ default-package-overrides:
- shakespeare ==2.0.14.1
- shell-conduit ==4.6.1
- shell-escape ==0.2.0
- - shelly ==1.7.0
- - shikensu ==0.3.7
+ - shelly ==1.7.0.1
+ - shikensu ==0.3.8
- shortcut-links ==0.4.2.0
- should-not-typecheck ==2.1.0
- show-prettyprint ==0.2
@@ -2091,16 +2096,16 @@ default-package-overrides:
- simple-session ==0.10.1.1
- simple-templates ==0.8.0.1
- singleton-bool ==0.1.2.0
- - singleton-nats ==0.4.0.3
+ - singleton-nats ==0.4.0.4
- singletons ==2.3.1
- siphash ==1.0.3
- skein ==1.0.9.4
- skeletons ==0.4.0
- - skylighting ==0.5
+ - skylighting ==0.5.1
- slack-web ==0.2.0.1
- slave-thread ==1.0.2
- slug ==0.1.7
- - smallcheck ==1.1.3
+ - smallcheck ==1.1.3.1
- smoothie ==0.4.2.7
- smtp-mail ==0.1.4.6
- snap-blaze ==0.2.1.5
@@ -2113,7 +2118,7 @@ default-package-overrides:
- soap-tls ==0.1.1.2
- socket ==0.8.0.1
- socket-activation ==0.1.0.2
- - socks ==0.5.5
+ - socks ==0.5.6
- sort ==1.0.0.0
- sorted-list ==0.2.0.0
- sourcemap ==0.1.6
@@ -2128,7 +2133,7 @@ default-package-overrides:
- sphinx ==0.6.0.2
- Spintax ==0.3.2
- splice ==0.6.1.1
- - split ==0.2.3.2
+ - split ==0.2.3.3
- splitmix ==0
- Spock ==0.12.0.0
- Spock-api ==0.12.0.0
@@ -2149,7 +2154,7 @@ default-package-overrides:
- stateref ==0.3
- statestack ==0.2.0.5
- StateVar ==1.1.0.4
- - stateWriter ==0.2.9
+ - stateWriter ==0.2.10
- statistics ==0.14.0.2
- stm ==2.4.4.1
- stm-chans ==3.0.0.4
@@ -2195,7 +2200,7 @@ default-package-overrides:
- stripe-haskell ==2.2.3
- stripe-http-streams ==2.2.3
- stripe-tests ==2.2.3
- - strive ==4.0.1
+ - strive ==4.0.3
- structured-haskell-mode ==1.1.0
- stylish-haskell ==0.8.1.0
- sum-type-boilerplate ==0.1.1
@@ -2206,7 +2211,7 @@ default-package-overrides:
- svg-tree ==0.6.2.1
- swagger ==0.3.0
- swagger2 ==2.2
- - swagger-petstore ==0.0.1.6
+ - swagger-petstore ==0.0.1.7
- swish ==0.9.1.10
- syb ==0.7
- syb-with-class ==0.6.1.8
@@ -2215,35 +2220,35 @@ default-package-overrides:
- sysinfo ==0.1.1
- system-argv0 ==0.1.1
- system-fileio ==0.3.16.3
- - system-filepath ==0.4.13.4
+ - system-filepath ==0.4.14
- system-posix-redirect ==1.1.0.1
- tabular ==0.2.2.7
- tagchup ==0.4.1
- tagged ==0.8.5
- tagged-binary ==0.2.0.1
- tagged-identity ==0.1.2
- - tagsoup ==0.14.2
+ - tagsoup ==0.14.3
- tagstream-conduit ==0.5.5.3
- tar ==0.5.0.3
- tar-conduit ==0.1.1
- tardis ==0.4.1.0
- tasty ==0.11.3
- - tasty-ant-xml ==1.1.1
+ - tasty-ant-xml ==1.1.2
- tasty-auto ==0.2.0.0
- tasty-dejafu ==0.7.1.1
- - tasty-discover ==4.1.1
+ - tasty-discover ==4.1.3
- tasty-expected-failure ==0.11.0.4
- tasty-fail-fast ==0.0.3
- tasty-golden ==2.3.1.2
- tasty-hedgehog ==0.1.0.1
- - tasty-hspec ==1.1.3.2
+ - tasty-hspec ==1.1.3.3
- tasty-html ==0.4.1.1
- tasty-hunit ==0.9.2
- tasty-kat ==0.0.3
- tasty-program ==1.0.5
- tasty-quickcheck ==0.9.1
- - tasty-rerun ==1.1.8
- - tasty-silver ==3.1.10
+ - tasty-rerun ==1.1.9
+ - tasty-silver ==3.1.11
- tasty-smallcheck ==0.8.1
- tasty-stats ==0.2.0.3
- tasty-tap ==0.0.4
@@ -2268,7 +2273,7 @@ default-package-overrides:
- test-framework-quickcheck2 ==0.3.0.4
- test-framework-smallcheck ==0.2
- test-framework-th ==0.2.4
- - texmath ==0.10
+ - texmath ==0.10.1.1
- text ==1.2.2.2
- text-all ==0.4.1.1
- text-binary ==0.2.1.1
@@ -2277,7 +2282,7 @@ default-package-overrides:
- text-generic-pretty ==1.2.1
- text-icu ==0.7.0.1
- text-latin1 ==0.3
- - text-ldap ==0.1.1.8
+ - text-ldap ==0.1.1.10
- textlocal ==0.1.0.5
- text-manipulate ==0.2.0.1
- text-metrics ==0.3.0
@@ -2285,7 +2290,7 @@ default-package-overrides:
- text-printer ==0.5
- text-region ==0.3.0.0
- text-short ==0.1.1
- - text-show ==3.7
+ - text-show ==3.7.1
- text-show-instances ==3.6.2
- text-zipper ==0.10.1
- tfp ==1.0.0.2
@@ -2294,11 +2299,11 @@ default-package-overrides:
- th-data-compat ==0.0.2.5
- th-desugar ==1.7
- these ==0.7.4
- - th-expand-syns ==0.4.3.0
+ - th-expand-syns ==0.4.4.0
- th-extras ==0.0.0.4
- th-lift ==0.7.7
- th-lift-instances ==0.1.11
- - th-orphans ==0.13.4
+ - th-orphans ==0.13.5
- thread-hierarchy ==0.3.0.0
- thread-local-storage ==0.1.2
- threads ==0.5.1.5
@@ -2323,7 +2328,7 @@ default-package-overrides:
- time-compat ==0.1.0.3
- timeit ==1.0.0.0
- timelens ==0.2.0.2
- - time-lens ==0.4.0.1
+ - time-lens ==0.4.0.2
- time-locale-compat ==0.1.1.3
- time-locale-vietnamese ==1.0.0.0
- timemap ==0.0.6
@@ -2335,7 +2340,7 @@ default-package-overrides:
- tinylog ==0.14.0
- tinytemplate ==0.1.2.0
- titlecase ==1.0.1
- - tldr ==0.2.3
+ - tldr ==0.2.5
- tls ==1.4.0
- tls-debug ==0.4.5
- tls-session-manager ==0.0.0.2
@@ -2352,7 +2357,7 @@ default-package-overrides:
- transient ==0.5.9.2
- transient-universe ==0.4.6.1
- traverse-with-class ==1.0.0.0
- - tree-diff ==0.0.0.1
+ - tree-diff ==0.0.1
- tree-fun ==0.8.1.0
- tries ==0.0.4.2
- trifecta ==1.7.1.1
@@ -2365,7 +2370,7 @@ default-package-overrides:
- tuple-th ==0.2.5
- turtle ==1.4.5
- turtle-options ==0.1.0.4
- - twitter-conduit ==0.2.2.2
+ - twitter-conduit ==0.2.3
- twitter-types ==0.7.2.2
- twitter-types-lens ==0.7.2
- type-aligned ==0.9.6
@@ -2373,14 +2378,14 @@ default-package-overrides:
- type-combinators ==0.2.4.3
- type-combinators-singletons ==0.1.0.0
- TypeCompose ==0.9.12
- - typed-process ==0.2.0.0
+ - typed-process ==0.2.1.0
- type-fun ==0.1.1
- type-hint ==0.1
- type-level-integers ==0.0.1
- type-level-kv-list ==1.1.0
- type-level-numbers ==0.1.1.1
- typelits-witnesses ==0.2.3.0
- - type-of-html ==1.3.0.1
+ - type-of-html ==1.3.2.1
- type-operators ==0.1.0.4
- type-spec ==0.3.0.1
- typography-geometry ==1.0.0.1
@@ -2388,13 +2393,13 @@ default-package-overrides:
- tzdata ==0.1.20170320.0
- ua-parser ==0.7.4.1
- uglymemo ==0.1.0.1
- - unagi-chan ==0.4.0.0
+ - unagi-chan ==0.4.1.0
- unbounded-delays ==0.1.1.0
- unbound-generics ==0.3.1
- unboxed-ref ==0.4.0.0
- uncertain ==0.3.1.0
- unexceptionalio ==0.3.0
- - unfoldable ==0.9.4
+ - unfoldable ==0.9.5
- unfoldable-restricted ==0.0.3
- unicode ==0.0
- unicode-show ==0.1.0.2
@@ -2404,10 +2409,10 @@ default-package-overrides:
- union-find ==0.2
- uniplate ==1.6.12
- uniq-deep ==1.1.0.0
- - Unique ==0.4.7.1
- unique ==0
+ - Unique ==0.4.7.2
- unit-constraint ==0.0.0
- - units-parser ==0.1.1
+ - units-parser ==0.1.1.2
- universe ==1.0
- universe-base ==1.0.2.1
- universe-instances-base ==1.0
@@ -2418,13 +2423,13 @@ default-package-overrides:
- unix-bytestring ==0.3.7.3
- unix-compat ==0.5.0.1
- unix-time ==0.3.7
- - unliftio ==0.2.0.0
- - unliftio-core ==0.1.0.0
+ - unliftio ==0.2.4.0
+ - unliftio-core ==0.1.1.0
- unlit ==0.4.0.0
- unordered-containers ==0.2.8.0
- unordered-intmap ==0.1.0.0
- unsafe ==0.0
- - uri-bytestring ==0.3.0.1
+ - uri-bytestring ==0.3.1.0
- uri-bytestring-aeson ==0.1.0.4
- uri-encode ==1.5.0.5
- uri-templater ==0.3.1.0
@@ -2444,7 +2449,7 @@ default-package-overrides:
- validate-input ==0.4.0.0
- validation ==0.6.2
- validationt ==0.2.0.0
- - validity ==0.4.0.2
+ - validity ==0.4.0.3
- validity-aeson ==0.1.0.0
- validity-bytestring ==0.2.0.0
- validity-containers ==0.2.0.0
@@ -2475,22 +2480,22 @@ default-package-overrides:
- versions ==3.3.1
- vhd ==0.2.2
- ViennaRNAParser ==1.3.3
- - viewprof ==0.0.0.12
+ - viewprof ==0.0.0.13
- vinyl ==0.7.0
- vivid ==0.3.0.2
- vivid-osc ==0.3.0.0
- vivid-supercollider ==0.3.0.0
- void ==0.7.2
- - vty ==5.19
+ - vty ==5.19.2
- wai ==3.2.1.1
- wai-app-static ==3.1.6.1
- wai-cli ==0.1.1
- wai-conduit ==3.0.0.3
- wai-cors ==0.2.6
- wai-eventsource ==3.0.0
- - wai-extra ==3.0.20.2
+ - wai-extra ==3.0.22.0
- wai-handler-launch ==3.0.2.3
- - wai-logger ==2.3.0
+ - wai-logger ==2.3.1
- wai-middleware-auth ==0.1.2.1
- wai-middleware-caching ==0.1.0.2
- wai-middleware-caching-lru ==0.1.0.0
@@ -2499,7 +2504,7 @@ default-package-overrides:
- wai-middleware-crowd ==0.1.4.2
- wai-middleware-metrics ==0.2.4
- wai-middleware-prometheus ==0.3.0
- - wai-middleware-rollbar ==0.8.0
+ - wai-middleware-rollbar ==0.8.2
- wai-middleware-static ==0.8.1
- wai-middleware-throttle ==0.2.2.0
- wai-predicates ==0.10.0
@@ -2518,22 +2523,22 @@ default-package-overrides:
- webdriver-angular ==0.1.11
- webpage ==0.0.5
- web-plugins ==0.2.9
- - web-routes ==0.27.12
+ - web-routes ==0.27.13
- web-routes-boomerang ==0.28.4.2
- web-routes-happstack ==0.23.11
- web-routes-hsp ==0.24.6.1
- web-routes-th ==0.22.6.2
- web-routes-wai ==0.24.3
- webrtc-vad ==0.1.0.3
- - websockets ==0.12.2.0
+ - websockets ==0.12.3.1
- websockets-rpc ==0.6.0
- websockets-simple ==0.0.6.3
- websockets-snap ==0.10.2.4
- - weeder ==0.1.9
+ - weeder ==0.1.13
- weigh ==0.0.7
- wide-word ==0.1.0.5
- wikicfp-scraper ==0.1.0.9
- - wild-bind ==0.1.0.3
+ - wild-bind ==0.1.1.0
- wild-bind-x11 ==0.1.0.7
- Win32 ==2.5.4.1
- Win32-notify ==0.3.0.3
@@ -2555,15 +2560,15 @@ default-package-overrides:
- word-wrap ==0.4.1
- Workflow ==0.8.3
- wrap ==0.0.0
- - wrecker ==1.2.3.0
- - wreq ==0.5.1.0
- - wreq-stringless ==0.5.1.0
+ - wrecker ==1.2.4.0
+ - wreq ==0.5.2.0
+ - wreq-stringless ==0.5.9.1
- writer-cps-full ==0.1.0.0
- writer-cps-lens ==0.1.0.1
- writer-cps-morph ==0.1.0.2
- writer-cps-mtl ==0.1.1.4
- writer-cps-transformers ==0.1.1.3
- - wuss ==1.1.5
+ - wuss ==1.1.6
- X11 ==1.8
- X11-xft ==0.3.1
- x11-xim ==0.0.9.0
@@ -2581,7 +2586,7 @@ default-package-overrides:
- xlsx-tabular ==0.2.2
- xml ==1.3.14
- xml-basic ==0.1.2
- - xml-conduit ==1.7.0
+ - xml-conduit ==1.7.1.2
- xml-conduit-parse ==0.3.1.2
- xml-conduit-writer ==0.1.1.2
- xmlgen ==0.6.2.1
@@ -2602,7 +2607,7 @@ default-package-overrides:
- xturtle ==0.2.0.0
- xxhash ==0.0.2
- xxhash-ffi ==0.2.0.0
- - yaml ==0.8.25
+ - yaml ==0.8.28
- Yampa ==0.10.7
- YampaSynth ==0.2
- yeshql ==3.0.1.3
@@ -2612,7 +2617,8 @@ default-package-overrides:
- yesod-auth-basic ==0.1.0.2
- yesod-auth-fb ==1.8.1
- yesod-auth-hashdb ==1.6.2
- - yesod-core ==1.4.37.2
+ - yesod-bin ==1.5.3
+ - yesod-core ==1.4.37.3
- yesod-csp ==0.2.4.0
- yesod-eventsource ==1.4.1
- yesod-fb ==0.4.0
@@ -2628,7 +2634,7 @@ default-package-overrides:
- yesod-static ==1.5.3.1
- yesod-static-angular ==0.1.8
- yesod-table ==2.0.3
- - yesod-test ==1.5.8
+ - yesod-test ==1.5.9.1
- yesod-websockets ==0.2.6
- yes-precure5-command ==5.5.3
- yi-core ==0.17.1
@@ -2652,8 +2658,8 @@ default-package-overrides:
- zeromq4-haskell ==0.7.0
- zim-parser ==0.2.1.0
- zip ==0.2.0
- - zip-archive ==0.3.1.1
- - zippers ==0.2.4
+ - zip-archive ==0.3.2.2
+ - zippers ==0.2.5
- ziptastic-client ==0.3.0.3
- ziptastic-core ==0.2.0.3
- zlib ==0.6.1.2
@@ -2672,20 +2678,25 @@ extra-packages:
- Cabal == 1.18.* # required for cabal-install et al on old GHC versions
- Cabal == 1.20.* # required for cabal-install et al on old GHC versions
- Cabal == 1.24.* # required for jailbreak-cabal etc.
+ - colour < 2.3.4 # newer versions don't support GHC 7.10.x
- containers < 0.5 # required to build alex with GHC 6.12.3
- control-monad-free < 0.6 # newer versions don't compile with anything but GHC 7.8.x
- deepseq == 1.3.0.1 # required to build Cabal with GHC 6.12.3
- generic-deriving == 1.10.5.* # new versions don't compile with GHC 7.10.x
- gloss < 1.9.3 # new versions don't compile with GHC 7.8.x
- haddock < 2.17 # required on GHC 7.10.x
+ - haddock == 2.17.* # required on GHC 8.0.x
- haddock-api == 2.15.* # required on GHC 7.8.x
- haddock-api == 2.16.* # required on GHC 7.10.x
+ - haddock-api == 2.17.* # required on GHC 8.0.x
- haddock-library == 1.2.* # required for haddock-api-2.16.x
- haddock-library == 1.4.4 # required for haddock-api-2.18.x
- happy <1.19.6 # newer versions break Agda
- haskell-gi-overloading == 0.0 # gi-* packages use this dependency to disable overloading support
- haskell-src-exts == 1.19.* # required by hindent and structured-haskell-mode
- - hpack == 0.20.* # required by stack-1.6.1
+ - hoogle == 5.0.14 # required by hie-hoogle
+ - inline-c < 0.6 # required on GHC 8.0.x
+ - inline-c-cpp < 0.2 # required on GHC 8.0.x
- language-c == 0.7.0 # required by c2hs hack to work around https://github.com/haskell/c2hs/issues/192.
- mtl < 2.2 # newer versions require transformers > 0.4.x, which we cannot provide in GHC 7.8.x
- mtl-prelude < 2 # required for to build postgrest on mtl 2.1.x platforms
@@ -2695,6 +2706,7 @@ extra-packages:
- QuickCheck < 2 # required by test-framework-quickcheck and its users
- seqid < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x
- seqid-streams < 0.2 # newer versions depend on transformers 0.4.x which we cannot provide in GHC 7.8.x
+ - ShellCheck == 0.4.6 # required by multi-ghc-travis
- split < 0.2 # newer versions don't work with GHC 6.12.3
- tar < 0.4.2.0 # later versions don't work with GHC < 7.6.x
- transformers == 0.4.3.* # the latest version isn't supported by mtl yet
@@ -2704,6 +2716,7 @@ package-maintainers:
peti:
- cabal-install
- cabal2nix
+ - cabal2spec
- funcmp
- git-annex
- hackage-db
@@ -2716,6 +2729,8 @@ package-maintainers:
- hsemail
- hsyslog
- jailbreak-cabal
+ - lambdabot-core
+ - lambdabot-irc-plugins
- language-nix
- logging-facade-syslog
- pandoc
@@ -2745,17 +2760,14 @@ package-maintainers:
- path-pieces
- persistent
- persistent-postgresql
- - persistent-redis
- persistent-sqlite
- persistent-template
- shakespeare
abbradar:
- Agda
- - lambdabot
alunduil:
- - collection-json
+ - network-arbitrary
- network-uri-json
- - siren-json
dont-distribute-packages:
# hard restrictions that really belong into meta.platforms
@@ -2862,6 +2874,7 @@ dont-distribute-packages:
nomyx-library: [ i686-linux, x86_64-linux, x86_64-darwin ]
nomyx-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
passman-cli: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ passman-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
reflex-dom-colonnade: [ i686-linux, x86_64-linux, x86_64-darwin ]
reflex-dom-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
reflex-dom-helpers: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -2901,6 +2914,7 @@ dont-distribute-packages:
AC-MiniTest: [ i686-linux, x86_64-linux, x86_64-darwin ]
AC-Terminal: [ i686-linux, x86_64-linux, x86_64-darwin ]
AC-VanillaArray: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ accelerate-fourier: [ i686-linux, x86_64-linux, x86_64-darwin ]
accelerate-llvm-native: [ i686-linux, x86_64-linux, x86_64-darwin ]
accelerate-llvm: [ i686-linux, x86_64-linux, x86_64-darwin ]
accelerate-random: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -2951,8 +2965,11 @@ dont-distribute-packages:
AERN-Real: [ i686-linux, x86_64-linux, x86_64-darwin ]
AERN-RnToRm-Plot: [ i686-linux, x86_64-linux, x86_64-darwin ]
AERN-RnToRm: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aern2-mp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aern2-real: [ i686-linux, x86_64-linux, x86_64-darwin ]
aeson-applicative: [ i686-linux, x86_64-linux, x86_64-darwin ]
aeson-bson: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ aeson-diff: [ i686-linux, x86_64-linux, x86_64-darwin ]
aeson-extra: [ i686-linux, x86_64-linux, x86_64-darwin ]
aeson-flowtyped: [ i686-linux, x86_64-linux, x86_64-darwin ]
aeson-native: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3218,6 +3235,7 @@ dont-distribute-packages:
battleships: [ i686-linux, x86_64-linux, x86_64-darwin ]
bayes-stack: [ i686-linux, x86_64-linux, x86_64-darwin ]
BCMtools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ bdcs: [ i686-linux, x86_64-linux, x86_64-darwin ]
beam-th: [ i686-linux, x86_64-linux, x86_64-darwin ]
beam: [ i686-linux, x86_64-linux, x86_64-darwin ]
beamable: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3226,6 +3244,7 @@ dont-distribute-packages:
beeminder-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
Befunge93: [ i686-linux, x86_64-linux, x86_64-darwin ]
bein: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ belka: [ i686-linux, x86_64-linux, x86_64-darwin ]
BenchmarkHistory: [ i686-linux, x86_64-linux, x86_64-darwin ]
bencoding: [ i686-linux, x86_64-linux, x86_64-darwin ]
berkeleydb: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3328,6 +3347,7 @@ dont-distribute-packages:
bla: [ i686-linux, x86_64-linux, x86_64-darwin ]
blakesum-demo: [ i686-linux, x86_64-linux, x86_64-darwin ]
blakesum: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blank-canvas: [ i686-linux, x86_64-linux, x86_64-darwin ]
blas-carray: [ i686-linux, x86_64-linux, x86_64-darwin ]
blas-ffi: [ i686-linux, x86_64-linux, x86_64-darwin ]
blas-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3336,6 +3356,7 @@ dont-distribute-packages:
blaze-builder-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
blaze-html-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ]
blaze-html-hexpat: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ blaze-html-truncate: [ i686-linux, x86_64-linux, x86_64-darwin ]
blaze-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
blaze-textual-native: [ i686-linux, x86_64-linux, x86_64-darwin ]
ble: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3377,6 +3398,7 @@ dont-distribute-packages:
breakout: [ i686-linux, x86_64-linux, x86_64-darwin ]
breve: [ i686-linux, x86_64-linux, x86_64-darwin ]
brians-brain: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ brick-skylighting: [ i686-linux, x86_64-linux, x86_64-darwin ]
bricks: [ i686-linux, x86_64-linux, x86_64-darwin ]
brillig: [ i686-linux, x86_64-linux, x86_64-darwin ]
brittany: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3452,7 +3474,6 @@ dont-distribute-packages:
cabal2doap: [ i686-linux, x86_64-linux, x86_64-darwin ]
cabal2ebuild: [ i686-linux, x86_64-linux, x86_64-darwin ]
cabal2ghci: [ i686-linux, x86_64-linux, x86_64-darwin ]
- cabal2spec: [ i686-linux, x86_64-linux, x86_64-darwin ]
cabalgraph: [ i686-linux, x86_64-linux, x86_64-darwin ]
cabalish: [ i686-linux, x86_64-linux, x86_64-darwin ]
cabalmdvrpm: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3484,6 +3505,7 @@ dont-distribute-packages:
cao: [ i686-linux, x86_64-linux, x86_64-darwin ]
cap: [ i686-linux, x86_64-linux, x86_64-darwin ]
Capabilities: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ capataz: [ i686-linux, x86_64-linux, x86_64-darwin ]
capri: [ i686-linux, x86_64-linux, x86_64-darwin ]
car-pool: [ i686-linux, x86_64-linux, x86_64-darwin ]
carboncopy: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3585,6 +3607,8 @@ dont-distribute-packages:
chp-spec: [ i686-linux, x86_64-linux, x86_64-darwin ]
chp-transformers: [ i686-linux, x86_64-linux, x86_64-darwin ]
chp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chr-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ chr-lang: [ i686-linux, x86_64-linux, x86_64-darwin ]
ChristmasTree: [ i686-linux, x86_64-linux, x86_64-darwin ]
chronograph: [ i686-linux, x86_64-linux, x86_64-darwin ]
chu2: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3601,6 +3625,8 @@ dont-distribute-packages:
citeproc-hs: [ i686-linux, x86_64-linux, x86_64-darwin ]
cjk: [ i686-linux, x86_64-linux, x86_64-darwin ]
clac: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clafer: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ claferIG: [ i686-linux, x86_64-linux, x86_64-darwin ]
claferwiki: [ i686-linux, x86_64-linux, x86_64-darwin ]
clang-pure: [ i686-linux, x86_64-linux, x86_64-darwin ]
clanki: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3639,6 +3665,7 @@ dont-distribute-packages:
click-clack: [ i686-linux, x86_64-linux, x86_64-darwin ]
clif: [ i686-linux, x86_64-linux, x86_64-darwin ]
clifford: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ clingo: [ i686-linux, x86_64-linux, x86_64-darwin ]
clippard: [ i686-linux, x86_64-linux, x86_64-darwin ]
clipper: [ i686-linux, x86_64-linux, x86_64-darwin ]
clippings: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3671,20 +3698,24 @@ dont-distribute-packages:
cmv: [ i686-linux, x86_64-linux, x86_64-darwin ]
cnc-spec-compiler: [ i686-linux, x86_64-linux, x86_64-darwin ]
Coadjute: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ coalpit: [ i686-linux, x86_64-linux, x86_64-darwin ]
codec-libevent: [ i686-linux, x86_64-linux, x86_64-darwin ]
codec-rpm: [ i686-linux, x86_64-linux, x86_64-darwin ]
codecov-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
codemonitor: [ i686-linux, x86_64-linux, x86_64-darwin ]
codepad: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ codeworld-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
codex: [ i686-linux, x86_64-linux, x86_64-darwin ]
cognimeta-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
coin: [ i686-linux, x86_64-linux, x86_64-darwin ]
coinbase-exchange: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ coincident-root-loci: [ i686-linux, x86_64-linux, x86_64-darwin ]
colada: [ i686-linux, x86_64-linux, x86_64-darwin ]
colchis: [ i686-linux, x86_64-linux, x86_64-darwin ]
collada-output: [ i686-linux, x86_64-linux, x86_64-darwin ]
collada-types: [ i686-linux, x86_64-linux, x86_64-darwin ]
collapse-util: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ collection-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
collections-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
collections-base-instances: [ i686-linux, x86_64-linux, x86_64-darwin ]
collections: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3695,6 +3726,8 @@ dont-distribute-packages:
coltrane: [ i686-linux, x86_64-linux, x86_64-darwin ]
columbia: [ i686-linux, x86_64-linux, x86_64-darwin ]
com: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ combinat-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ combinat: [ i686-linux, x86_64-linux, x86_64-darwin ]
combinator-interactive: [ i686-linux, x86_64-linux, x86_64-darwin ]
combinatorial-problems: [ i686-linux, x86_64-linux, x86_64-darwin ]
Combinatorrent: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3829,6 +3862,7 @@ dont-distribute-packages:
couchdb-enumerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
CouchDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
countable-inflections: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ courier: [ i686-linux, x86_64-linux, x86_64-darwin ]
court: [ i686-linux, x86_64-linux, x86_64-darwin ]
coverage: [ i686-linux, x86_64-linux, x86_64-darwin ]
cparsing: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -3902,6 +3936,7 @@ dont-distribute-packages:
currency-convert: [ i686-linux, x86_64-linux, x86_64-darwin ]
curry-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
curry-frontend: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ curry: [ i686-linux, x86_64-linux, x86_64-darwin ]
CurryDB: [ i686-linux, x86_64-linux, x86_64-darwin ]
curryrs: [ i686-linux, x86_64-linux, x86_64-darwin ]
curve25519: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4067,6 +4102,7 @@ dont-distribute-packages:
dhcp-lease-parser: [ i686-linux, x86_64-linux, x86_64-darwin ]
diagrams-boolean: [ i686-linux, x86_64-linux, x86_64-darwin ]
diagrams-builder: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ diagrams-canvas: [ i686-linux, x86_64-linux, x86_64-darwin ]
diagrams-graphviz: [ i686-linux, x86_64-linux, x86_64-darwin ]
diagrams-gtk: [ i686-linux, x86_64-linux, x86_64-darwin ]
diagrams-haddock: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4173,6 +4209,7 @@ dont-distribute-packages:
domain-auth: [ i686-linux, x86_64-linux, x86_64-darwin ]
domplate: [ i686-linux, x86_64-linux, x86_64-darwin ]
dot-linker: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ dotenv: [ i686-linux, x86_64-linux, x86_64-darwin ]
dotfs: [ i686-linux, x86_64-linux, x86_64-darwin ]
doublify-toolkit: [ i686-linux, x86_64-linux, x86_64-darwin ]
download-media-content: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4249,6 +4286,7 @@ dont-distribute-packages:
eccrypto: [ i686-linux, x86_64-linux, x86_64-darwin ]
ecdsa: [ i686-linux, x86_64-linux, x86_64-darwin ]
ecma262: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ecstasy: [ i686-linux, x86_64-linux, x86_64-darwin ]
ecu: [ i686-linux, x86_64-linux, x86_64-darwin ]
eddie: [ i686-linux, x86_64-linux, x86_64-darwin ]
edenmodules: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4393,6 +4431,7 @@ dont-distribute-packages:
explicit-sharing: [ i686-linux, x86_64-linux, x86_64-darwin ]
explore: [ i686-linux, x86_64-linux, x86_64-darwin ]
exposed-containers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ expressions-z3: [ i686-linux, x86_64-linux, x86_64-darwin ]
extcore: [ i686-linux, x86_64-linux, x86_64-darwin ]
extemp: [ i686-linux, x86_64-linux, x86_64-darwin ]
extended-categories: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4416,6 +4455,8 @@ dont-distribute-packages:
falling-turnip: [ i686-linux, x86_64-linux, x86_64-darwin ]
fallingblocks: [ i686-linux, x86_64-linux, x86_64-darwin ]
family-tree: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fast-arithmetic: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ fast-combinatorics: [ i686-linux, x86_64-linux, x86_64-darwin ]
fast-nats: [ i686-linux, x86_64-linux, x86_64-darwin ]
fast-tagsoup: [ i686-linux, x86_64-linux, x86_64-darwin ]
fastbayes: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4664,6 +4705,7 @@ dont-distribute-packages:
geek: [ i686-linux, x86_64-linux, x86_64-darwin ]
gegl: [ i686-linux, x86_64-linux, x86_64-darwin ]
gemstone: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gen-imports: [ i686-linux, x86_64-linux, x86_64-darwin ]
gen-passwd: [ i686-linux, x86_64-linux, x86_64-darwin ]
gencheck: [ i686-linux, x86_64-linux, x86_64-darwin ]
gender: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4718,6 +4760,7 @@ dont-distribute-packages:
geolite-csv: [ i686-linux, x86_64-linux, x86_64-darwin ]
geom2d: [ i686-linux, x86_64-linux, x86_64-darwin ]
GeomPredicates-SSE: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ geos: [ i686-linux, x86_64-linux, x86_64-darwin ]
getemx: [ i686-linux, x86_64-linux, x86_64-darwin ]
getflag: [ i686-linux, x86_64-linux, x86_64-darwin ]
gf: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4755,6 +4798,7 @@ dont-distribute-packages:
gi-gdkx11: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-ggit: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gio: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gi-girepository: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gst: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gstaudio: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-gstbase: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4773,6 +4817,7 @@ dont-distribute-packages:
gi-secret: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-soup: [ i686-linux, x86_64-linux, x86_64-darwin ]
gi-vte: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ gi-xlib: [ i686-linux, x86_64-linux, x86_64-darwin ]
giak: [ i686-linux, x86_64-linux, x86_64-darwin ]
Gifcurry: [ i686-linux, x86_64-linux, x86_64-darwin ]
ginsu: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -4965,6 +5010,7 @@ dont-distribute-packages:
gyah-bin: [ i686-linux, x86_64-linux, x86_64-darwin ]
h-booru: [ i686-linux, x86_64-linux, x86_64-darwin ]
h-gpgme: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ h-reversi: [ i686-linux, x86_64-linux, x86_64-darwin ]
h2048: [ i686-linux, x86_64-linux, x86_64-darwin ]
h2c: [ i686-linux, x86_64-linux, x86_64-darwin ]
haar: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5011,6 +5057,7 @@ dont-distribute-packages:
haddock-test: [ i686-linux, x86_64-linux, x86_64-darwin ]
haddock: [ i686-linux, x86_64-linux, x86_64-darwin ]
haddocset: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hadolint: [ i686-linux, x86_64-linux, x86_64-darwin ]
hadoop-formats: [ i686-linux, x86_64-linux, x86_64-darwin ]
hadoop-rpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
hadoop-tools: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5325,6 +5372,7 @@ dont-distribute-packages:
heap: [ i686-linux, x86_64-linux, x86_64-darwin ]
hecc: [ i686-linux, x86_64-linux, x86_64-darwin ]
heckle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hedgehog-gen-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
Hedi: [ i686-linux, x86_64-linux, x86_64-darwin ]
hedis-config: [ i686-linux, x86_64-linux, x86_64-darwin ]
hedis-pile: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5487,6 +5535,7 @@ dont-distribute-packages:
hlibfam: [ i686-linux, x86_64-linux, x86_64-darwin ]
hlibsass: [ i686-linux, x86_64-linux, x86_64-darwin ]
HList: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hlist: [ i686-linux, x86_64-linux, x86_64-darwin ]
HListPP: [ i686-linux, x86_64-linux, x86_64-darwin ]
HLogger: [ i686-linux, x86_64-linux, x86_64-darwin ]
hlogger: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5588,6 +5637,7 @@ dont-distribute-packages:
hpg: [ i686-linux, x86_64-linux, x86_64-darwin ]
HPhone: [ i686-linux, x86_64-linux, x86_64-darwin ]
HPi: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hpio: [ i686-linux, x86_64-linux, x86_64-darwin ]
hplaylist: [ i686-linux, x86_64-linux, x86_64-darwin ]
HPlot: [ i686-linux, x86_64-linux, x86_64-darwin ]
hpodder: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5678,6 +5728,7 @@ dont-distribute-packages:
hsdns-cache: [ i686-linux, x86_64-linux, x86_64-darwin ]
Hsed: [ i686-linux, x86_64-linux, x86_64-darwin ]
hsenv: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hsfacter: [ i686-linux, x86_64-linux, x86_64-darwin ]
hsfcsh: [ i686-linux, x86_64-linux, x86_64-darwin ]
HSFFIG: [ i686-linux, x86_64-linux, x86_64-darwin ]
hsfilt: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5808,6 +5859,8 @@ dont-distribute-packages:
hunit-gui: [ i686-linux, x86_64-linux, x86_64-darwin ]
hunit-rematch: [ i686-linux, x86_64-linux, x86_64-darwin ]
hunp: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hunt-searchengine: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hunt-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
hup: [ i686-linux, x86_64-linux, x86_64-darwin ]
hurdle: [ i686-linux, x86_64-linux, x86_64-darwin ]
hurriyet: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5819,9 +5872,13 @@ dont-distribute-packages:
hw-kafka-avro: [ i686-linux, x86_64-linux, x86_64-darwin ]
hwall-auth-iitk: [ i686-linux, x86_64-linux, x86_64-darwin ]
hweblib: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hwhile: [ i686-linux, x86_64-linux, x86_64-darwin ]
hworker-ses: [ i686-linux, x86_64-linux, x86_64-darwin ]
hworker: [ i686-linux, x86_64-linux, x86_64-darwin ]
hws: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hwsl2-bytevector: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hwsl2-reducers: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ hwsl2: [ i686-linux, x86_64-linux, x86_64-darwin ]
HXMPP: [ i686-linux, x86_64-linux, x86_64-darwin ]
hxmppc: [ i686-linux, x86_64-linux, x86_64-darwin ]
hxournal: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5891,6 +5948,7 @@ dont-distribute-packages:
ihaskell-charts: [ i686-linux, x86_64-linux, x86_64-darwin ]
ihaskell-diagrams: [ i686-linux, x86_64-linux, x86_64-darwin ]
ihaskell-display: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ihaskell-gnuplot: [ i686-linux, x86_64-linux, x86_64-darwin ]
ihaskell-hatex: [ i686-linux, x86_64-linux, x86_64-darwin ]
ihaskell-inline-r: [ i686-linux, x86_64-linux, x86_64-darwin ]
ihaskell-juicypixels: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5953,7 +6011,6 @@ dont-distribute-packages:
interleavableIO: [ i686-linux, x86_64-linux, x86_64-darwin ]
interlude-l: [ i686-linux, x86_64-linux, x86_64-darwin ]
internetmarke: [ i686-linux, x86_64-linux, x86_64-darwin ]
- intero-nix-shim: [ i686-linux, x86_64-linux, x86_64-darwin ]
interpol: [ i686-linux, x86_64-linux, x86_64-darwin ]
interpolatedstring-qq-mwotton: [ i686-linux, x86_64-linux, x86_64-darwin ]
interpolatedstring-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -5983,6 +6040,7 @@ dont-distribute-packages:
irc-fun-color: [ i686-linux, x86_64-linux, x86_64-darwin ]
Irc: [ i686-linux, x86_64-linux, x86_64-darwin ]
ircbot: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ iri: [ i686-linux, x86_64-linux, x86_64-darwin ]
iridium: [ i686-linux, x86_64-linux, x86_64-darwin ]
iron-mq: [ i686-linux, x86_64-linux, x86_64-darwin ]
ironforge: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6181,7 +6239,9 @@ dont-distribute-packages:
lambda-toolbox: [ i686-linux, x86_64-linux, x86_64-darwin ]
lambda2js: [ i686-linux, x86_64-linux, x86_64-darwin ]
lambdaBase: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdabot-haskell-plugins: [ i686-linux, x86_64-linux, x86_64-darwin ]
lambdabot-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lambdabot: [ i686-linux, x86_64-linux, x86_64-darwin ]
lambdacms-core: [ i686-linux, x86_64-linux, x86_64-darwin ]
lambdacms-media: [ i686-linux, x86_64-linux, x86_64-darwin ]
lambdacube-bullet: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6444,9 +6504,11 @@ dont-distribute-packages:
lscabal: [ i686-linux, x86_64-linux, x86_64-darwin ]
LslPlus: [ i686-linux, x86_64-linux, x86_64-darwin ]
lsystem: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ltk: [ i686-linux, x86_64-linux, x86_64-darwin ]
lua-bc: [ i686-linux, x86_64-linux, x86_64-darwin ]
luachunk: [ i686-linux, x86_64-linux, x86_64-darwin ]
luautils: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ lucid-colonnade: [ i686-linux, x86_64-linux, x86_64-darwin ]
lucid-svg: [ i686-linux, x86_64-linux, x86_64-darwin ]
lucienne: [ i686-linux, x86_64-linux, x86_64-darwin ]
Lucu: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6477,6 +6539,7 @@ dont-distribute-packages:
macosx-make-standalone: [ i686-linux, x86_64-linux, x86_64-darwin ]
madlang: [ i686-linux, x86_64-linux, x86_64-darwin ]
mage: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ magic-wormhole: [ i686-linux, x86_64-linux, x86_64-darwin ]
magicbane: [ i686-linux, x86_64-linux, x86_64-darwin ]
MagicHaskeller: [ i686-linux, x86_64-linux, x86_64-darwin ]
magico: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6635,6 +6698,7 @@ dont-distribute-packages:
mkbndl: [ i686-linux, x86_64-linux, x86_64-darwin ]
ml-w: [ i686-linux, x86_64-linux, x86_64-darwin ]
mlist: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ mmark-cli: [ i686-linux, x86_64-linux, x86_64-darwin ]
mmtf: [ i686-linux, x86_64-linux, x86_64-darwin ]
mmtl-base: [ i686-linux, x86_64-linux, x86_64-darwin ]
mmtl: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6846,6 +6910,7 @@ dont-distribute-packages:
nero-wai: [ i686-linux, x86_64-linux, x86_64-darwin ]
nero-warp: [ i686-linux, x86_64-linux, x86_64-darwin ]
nero: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ nest: [ i686-linux, x86_64-linux, x86_64-darwin ]
nested-routes: [ i686-linux, x86_64-linux, x86_64-darwin ]
NestedFunctor: [ i686-linux, x86_64-linux, x86_64-darwin ]
nestedmap: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6941,6 +7006,7 @@ dont-distribute-packages:
notzero: [ i686-linux, x86_64-linux, x86_64-darwin ]
np-linear: [ i686-linux, x86_64-linux, x86_64-darwin ]
nptools: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ ntha: [ i686-linux, x86_64-linux, x86_64-darwin ]
ntrip-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
NTRU: [ i686-linux, x86_64-linux, x86_64-darwin ]
null-canvas: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6954,6 +7020,7 @@ dont-distribute-packages:
numeric-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
numeric-ranges: [ i686-linux, x86_64-linux, x86_64-darwin ]
numhask-array: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ numhask-histogram: [ i686-linux, x86_64-linux, x86_64-darwin ]
numhask-range: [ i686-linux, x86_64-linux, x86_64-darwin ]
numhask: [ i686-linux, x86_64-linux, x86_64-darwin ]
Nussinov78: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6962,6 +7029,7 @@ dont-distribute-packages:
NXTDSL: [ i686-linux, x86_64-linux, x86_64-darwin ]
nylas: [ i686-linux, x86_64-linux, x86_64-darwin ]
nymphaea: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ o-clock: [ i686-linux, x86_64-linux, x86_64-darwin ]
oanda-rest-api: [ i686-linux, x86_64-linux, x86_64-darwin ]
oauthenticated: [ i686-linux, x86_64-linux, x86_64-darwin ]
obd: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -6978,6 +7046,7 @@ dont-distribute-packages:
oculus: [ i686-linux, x86_64-linux, x86_64-darwin ]
OddWord: [ i686-linux, x86_64-linux, x86_64-darwin ]
oden-go-packages: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ odpic-raw: [ i686-linux, x86_64-linux, x86_64-darwin ]
off-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
OGL: [ i686-linux, x86_64-linux, x86_64-darwin ]
ogmarkup: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7077,6 +7146,7 @@ dont-distribute-packages:
panda: [ i686-linux, x86_64-linux, x86_64-darwin ]
pandoc-crossref: [ i686-linux, x86_64-linux, x86_64-darwin ]
pandoc-csv2table: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pandoc-emphasize-code: [ i686-linux, x86_64-linux, x86_64-darwin ]
pandoc-include-code: [ i686-linux, x86_64-linux, x86_64-darwin ]
pandoc-include: [ i686-linux, x86_64-linux, x86_64-darwin ]
pandoc-japanese-filters: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7100,6 +7170,7 @@ dont-distribute-packages:
paprika: [ i686-linux, x86_64-linux, x86_64-darwin ]
paragon: [ i686-linux, x86_64-linux, x86_64-darwin ]
Paraiso: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ Parallel-Arrows-Eden: [ i686-linux, x86_64-linux, x86_64-darwin ]
parallel-tasks: [ i686-linux, x86_64-linux, x86_64-darwin ]
paranoia: [ i686-linux, x86_64-linux, x86_64-darwin ]
parco-attoparsec: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7175,6 +7246,7 @@ dont-distribute-packages:
persistent-map: [ i686-linux, x86_64-linux, x86_64-darwin ]
persistent-mysql-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ]
persistent-protobuf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ persistent-redis: [ i686-linux, x86_64-linux, x86_64-darwin ]
persistent-relational-record: [ i686-linux, x86_64-linux, x86_64-darwin ]
persistent-zookeeper: [ i686-linux, x86_64-linux, x86_64-darwin ]
persona-idp: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7234,6 +7306,7 @@ dont-distribute-packages:
pipes-s3: [ i686-linux, x86_64-linux, x86_64-darwin ]
pipes-shell: [ i686-linux, x86_64-linux, x86_64-darwin ]
pipes-sqlite-simple: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ pipes-transduce: [ i686-linux, x86_64-linux, x86_64-darwin ]
pipes-zeromq4: [ i686-linux, x86_64-linux, x86_64-darwin ]
pipes-zlib: [ i686-linux, x86_64-linux, x86_64-darwin ]
pisigma: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7369,6 +7442,7 @@ dont-distribute-packages:
process-listlike: [ i686-linux, x86_64-linux, x86_64-darwin ]
process-progress: [ i686-linux, x86_64-linux, x86_64-darwin ]
process-qq: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ process-streaming: [ i686-linux, x86_64-linux, x86_64-darwin ]
processing: [ i686-linux, x86_64-linux, x86_64-darwin ]
procrastinating-structure: [ i686-linux, x86_64-linux, x86_64-darwin ]
procrastinating-variable: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7423,6 +7497,7 @@ dont-distribute-packages:
PUH-Project: [ i686-linux, x86_64-linux, x86_64-darwin ]
punkt: [ i686-linux, x86_64-linux, x86_64-darwin ]
Pup-Events-Demo: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ puppetresources: [ i686-linux, x86_64-linux, x86_64-darwin ]
pure-cdb: [ i686-linux, x86_64-linux, x86_64-darwin ]
pure-priority-queue-tests: [ i686-linux, x86_64-linux, x86_64-darwin ]
pure-priority-queue: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7444,6 +7519,7 @@ dont-distribute-packages:
pyffi: [ i686-linux, x86_64-linux, x86_64-darwin ]
pyfi: [ i686-linux, x86_64-linux, x86_64-darwin ]
python-pickle: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ q4c12-twofinger: [ i686-linux, x86_64-linux, x86_64-darwin ]
qc-oi-testgenerator: [ i686-linux, x86_64-linux, x86_64-darwin ]
qd-vec: [ i686-linux, x86_64-linux, x86_64-darwin ]
qd: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7605,6 +7681,7 @@ dont-distribute-packages:
reflex-sdl2: [ i686-linux, x86_64-linux, x86_64-darwin ]
reflex-transformers: [ i686-linux, x86_64-linux, x86_64-darwin ]
reflex: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ reformat: [ i686-linux, x86_64-linux, x86_64-darwin ]
refresht: [ i686-linux, x86_64-linux, x86_64-darwin ]
refurb: [ i686-linux, x86_64-linux, x86_64-darwin ]
regex-deriv: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7707,6 +7784,7 @@ dont-distribute-packages:
rewrite: [ i686-linux, x86_64-linux, x86_64-darwin ]
rewriting: [ i686-linux, x86_64-linux, x86_64-darwin ]
rezoom: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rfc: [ i686-linux, x86_64-linux, x86_64-darwin ]
rhine-gloss: [ i686-linux, x86_64-linux, x86_64-darwin ]
rhine: [ i686-linux, x86_64-linux, x86_64-darwin ]
rhythm-game-tutorial: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7715,6 +7793,7 @@ dont-distribute-packages:
ridley: [ i686-linux, x86_64-linux, x86_64-darwin ]
riemann: [ i686-linux, x86_64-linux, x86_64-darwin ]
riff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ rio: [ i686-linux, x86_64-linux, x86_64-darwin ]
riot: [ i686-linux, x86_64-linux, x86_64-darwin ]
ripple-federation: [ i686-linux, x86_64-linux, x86_64-darwin ]
ripple: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -7933,6 +8012,7 @@ dont-distribute-packages:
servant-mock: [ i686-linux, x86_64-linux, x86_64-darwin ]
servant-pool: [ i686-linux, x86_64-linux, x86_64-darwin ]
servant-postgresql: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ servant-proto-lens: [ i686-linux, x86_64-linux, x86_64-darwin ]
servant-pushbullet-client: [ i686-linux, x86_64-linux, x86_64-darwin ]
servant-py: [ i686-linux, x86_64-linux, x86_64-darwin ]
servant-router: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -8005,6 +8085,7 @@ dont-distribute-packages:
sibe: [ i686-linux, x86_64-linux, x86_64-darwin ]
sifflet-lib: [ i686-linux, x86_64-linux, x86_64-darwin ]
sifflet: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ sigma-ij: [ i686-linux, x86_64-linux, x86_64-darwin ]
sign: [ i686-linux, x86_64-linux, x86_64-darwin ]
signals: [ i686-linux, x86_64-linux, x86_64-darwin ]
signed-multiset: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -8047,6 +8128,7 @@ dont-distribute-packages:
singnal: [ i686-linux, x86_64-linux, x86_64-darwin ]
sink: [ i686-linux, x86_64-linux, x86_64-darwin ]
siphon: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ siren-json: [ i686-linux, x86_64-linux, x86_64-darwin ]
sirkel: [ i686-linux, x86_64-linux, x86_64-darwin ]
sitepipe: [ i686-linux, x86_64-linux, x86_64-darwin ]
sixfiguregroup: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -8342,6 +8424,7 @@ dont-distribute-packages:
stutter: [ i686-linux, x86_64-linux, x86_64-darwin ]
stylized: [ i686-linux, x86_64-linux, x86_64-darwin ]
sub-state: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ subhask: [ i686-linux, x86_64-linux, x86_64-darwin ]
subleq-toolchain: [ i686-linux, x86_64-linux, x86_64-darwin ]
submark: [ i686-linux, x86_64-linux, x86_64-darwin ]
successors: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -8448,6 +8531,7 @@ dont-distribute-packages:
tamarin-prover-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
tamarin-prover: [ i686-linux, x86_64-linux, x86_64-darwin ]
Tape: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ target: [ i686-linux, x86_64-linux, x86_64-darwin ]
tart: [ i686-linux, x86_64-linux, x86_64-darwin ]
task-distribution: [ i686-linux, x86_64-linux, x86_64-darwin ]
task: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -8551,6 +8635,7 @@ dont-distribute-packages:
th-alpha: [ i686-linux, x86_64-linux, x86_64-darwin ]
th-build: [ i686-linux, x86_64-linux, x86_64-darwin ]
th-context: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ th-dict-discovery: [ i686-linux, x86_64-linux, x86_64-darwin ]
th-fold: [ i686-linux, x86_64-linux, x86_64-darwin ]
th-instance-reification: [ i686-linux, x86_64-linux, x86_64-darwin ]
th-instances: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -8873,7 +8958,6 @@ dont-distribute-packages:
variables: [ i686-linux, x86_64-linux, x86_64-darwin ]
vault-tool-server: [ i686-linux, x86_64-linux, x86_64-darwin ]
vaultaire-common: [ i686-linux, x86_64-linux, x86_64-darwin ]
- vaultenv: [ i686-linux, x86_64-linux, x86_64-darwin ]
vcatt: [ i686-linux, x86_64-linux, x86_64-darwin ]
vcsgui: [ i686-linux, x86_64-linux, x86_64-darwin ]
Vec-Boolean: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -9027,6 +9111,7 @@ dont-distribute-packages:
why3: [ i686-linux, x86_64-linux, x86_64-darwin ]
WikimediaParser: [ i686-linux, x86_64-linux, x86_64-darwin ]
wikipedia4epub: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ wild-bind-task-x11: [ i686-linux, x86_64-linux, x86_64-darwin ]
windns: [ i686-linux, x86_64-linux, x86_64-darwin ]
windowslive: [ i686-linux, x86_64-linux, x86_64-darwin ]
winerror: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -9043,6 +9128,7 @@ dont-distribute-packages:
wobsurv: [ i686-linux, x86_64-linux, x86_64-darwin ]
woffex: [ i686-linux, x86_64-linux, x86_64-darwin ]
wolf: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ word2vec-model: [ i686-linux, x86_64-linux, x86_64-darwin ]
WordAlignment: [ i686-linux, x86_64-linux, x86_64-darwin ]
Wordlint: [ i686-linux, x86_64-linux, x86_64-darwin ]
WordNet-ghc74: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -9165,6 +9251,7 @@ dont-distribute-packages:
yaml-rpc: [ i686-linux, x86_64-linux, x86_64-darwin ]
yaml2owl: [ i686-linux, x86_64-linux, x86_64-darwin ]
yamlkeysdiff: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ yampa-canvas: [ i686-linux, x86_64-linux, x86_64-darwin ]
yampa-glfw: [ i686-linux, x86_64-linux, x86_64-darwin ]
yampa-glut: [ i686-linux, x86_64-linux, x86_64-darwin ]
yampa2048: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -9254,6 +9341,7 @@ dont-distribute-packages:
yuuko: [ i686-linux, x86_64-linux, x86_64-darwin ]
yxdb-utils: [ i686-linux, x86_64-linux, x86_64-darwin ]
z3-encoding: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ z3: [ i686-linux, x86_64-linux, x86_64-darwin ]
zabt: [ i686-linux, x86_64-linux, x86_64-darwin ]
zampolit: [ i686-linux, x86_64-linux, x86_64-darwin ]
zasni-gerna: [ i686-linux, x86_64-linux, x86_64-darwin ]
@@ -9293,4 +9381,5 @@ dont-distribute-packages:
Zora: [ i686-linux, x86_64-linux, x86_64-darwin ]
zsh-battery: [ i686-linux, x86_64-linux, x86_64-darwin ]
zstd: [ i686-linux, x86_64-linux, x86_64-darwin ]
+ zuramaru: [ i686-linux, x86_64-linux, x86_64-darwin ]
Zwaluw: [ i686-linux, x86_64-linux, x86_64-darwin ]
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 50ed1f19637..2320d6a8752 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -53,7 +53,7 @@ self: super: builtins.intersectAttrs super {
# Use the default version of mysql to build this package (which is actually mariadb).
# test phase requires networking
- mysql = dontCheck (super.mysql.override { mysql = pkgs.mysql.lib; });
+ mysql = dontCheck (super.mysql.override { mysql = pkgs.mysql.connector-c; });
# CUDA needs help finding the SDK headers and libraries.
cuda = overrideCabal super.cuda (drv: {
@@ -258,7 +258,7 @@ self: super: builtins.intersectAttrs super {
}
);
- llvm-hs = super.llvm-hs.override { llvm-config = pkgs.llvm_4; };
+ llvm-hs = super.llvm-hs.override { llvm-config = pkgs.llvm_5; };
# Needs help finding LLVM.
spaceprobe = addBuildTool super.spaceprobe self.llvmPackages.llvm;
@@ -502,4 +502,7 @@ self: super: builtins.intersectAttrs super {
partial-semigroup = dontCheck super.partial-semigroup;
colour = dontCheck super.colour;
+ LDAP = dontCheck (overrideCabal super.LDAP (drv: {
+ librarySystemDepends = drv.librarySystemDepends or [] ++ [ pkgs.cyrus_sasl.dev ];
+ }));
}
diff --git a/pkgs/development/haskell-modules/default.nix b/pkgs/development/haskell-modules/default.nix
index 1658ce79393..d528230b77c 100644
--- a/pkgs/development/haskell-modules/default.nix
+++ b/pkgs/development/haskell-modules/default.nix
@@ -1,8 +1,9 @@
{ pkgs, stdenv, lib, haskellLib, ghc, all-cabal-hashes
+, buildHaskellPackages
, compilerConfig ? (self: super: {})
, packageSetConfig ? (self: super: {})
, overrides ? (self: super: {})
-, initialPackages ? import ./hackage-packages.nix
+, initialPackages ? import ./initial-packages.nix
, configurationCommon ? import ./configuration-common.nix
, configurationNix ? import ./configuration-nix.nix
}:
@@ -14,7 +15,7 @@ let
haskellPackages = pkgs.callPackage makePackageSet {
package-set = initialPackages;
- inherit stdenv haskellLib ghc extensible-self;
+ inherit stdenv haskellLib ghc buildHaskellPackages extensible-self;
};
commonConfiguration = configurationCommon { inherit pkgs haskellLib; };
diff --git a/pkgs/development/haskell-modules/generic-builder.nix b/pkgs/development/haskell-modules/generic-builder.nix
index 3182b4846c0..eb66a6f8922 100644
--- a/pkgs/development/haskell-modules/generic-builder.nix
+++ b/pkgs/development/haskell-modules/generic-builder.nix
@@ -1,7 +1,14 @@
-{ stdenv, fetchurl, ghc, pkgconfig, glibcLocales, coreutils, gnugrep, gnused
-, jailbreak-cabal, hscolour, cpphs, nodejs, lib, removeReferencesTo
+{ stdenv, buildPackages, buildHaskellPackages, ghc
+, jailbreak-cabal, hscolour, cpphs, nodejs
+, buildPlatform, hostPlatform
}:
-let isCross = (ghc.cross or null) != null; in
+
+let
+ isCross = buildPlatform != hostPlatform;
+ inherit (buildPackages)
+ fetchurl removeReferencesTo
+ pkgconfig coreutils gnugrep gnused glibcLocales;
+in
{ pname
, dontStrip ? (ghc.isGhcjs or false)
@@ -20,8 +27,8 @@ let isCross = (ghc.cross or null) != null; in
, enableLibraryProfiling ? false
, enableExecutableProfiling ? false
# TODO enable shared libs for cross-compiling
-, enableSharedExecutables ? !isCross && (((ghc.isGhcjs or false) || stdenv.lib.versionOlder "7.7" ghc.version))
-, enableSharedLibraries ? !isCross && (((ghc.isGhcjs or false) || stdenv.lib.versionOlder "7.7" ghc.version))
+, enableSharedExecutables ? ((ghc.isGhcjs or false) || stdenv.lib.versionOlder "7.7" ghc.version)
+, enableSharedLibraries ? ((ghc.isGhcjs or false) || stdenv.lib.versionOlder "7.7" ghc.version)
, enableSplitObjs ? null # OBSOLETE, use enableDeadCodeElimination
, enableDeadCodeElimination ? (!stdenv.isDarwin) # TODO: use -dead_strip for darwin
, enableStaticLibraries ? true
@@ -53,7 +60,7 @@ let isCross = (ghc.cross or null) != null; in
, shellHook ? ""
, coreSetup ? false # Use only core packages to build Setup.hs.
, useCpphs ? false
-, hardeningDisable ? lib.optional (ghc.isHaLVM or false) "all"
+, hardeningDisable ? stdenv.lib.optional (ghc.isHaLVM or false) "all"
, enableSeparateDataOutput ? false
, enableSeparateDocOutput ? doHaddock
} @ args:
@@ -74,7 +81,11 @@ let
then "package-db"
else "package-conf";
- nativeGhc = if isCross || isGhcjs then ghc.bootPkgs.ghc else ghc;
+ # GHC used for building Setup.hs
+ #
+ # Same as our GHC, unless we're cross, in which case it is native GHC with the
+ # same version, or ghcjs, in which case its the ghc used to build ghcjs.
+ nativeGhc = buildHaskellPackages.ghc;
nativePackageDbFlag = if versionOlder "7.6" nativeGhc.version
then "package-db"
else "package-conf";
@@ -102,11 +113,12 @@ let
enableParallelBuilding = (versionOlder "7.8" ghc.version && !hasActiveLibrary) || versionOlder "8.0.1" ghc.version;
crossCabalFlags = [
- "--with-ghc=${ghc.cross.config}-ghc"
- "--with-ghc-pkg=${ghc.cross.config}-ghc-pkg"
- "--with-gcc=${ghc.cc}"
- "--with-ld=${ghc.ld}"
- "--with-hsc2hs=${nativeGhc}/bin/hsc2hs"
+ "--with-ghc=${ghc.targetPrefix}ghc"
+ "--with-ghc-pkg=${ghc.targetPrefix}ghc-pkg"
+ "--with-gcc=${stdenv.cc.targetPrefix}cc"
+ "--with-ld=${stdenv.cc.bintools.targetPrefix}ld"
+ "--with-hsc2hs=${nativeGhc}/bin/hsc2hs" # not cross one
+ "--with-strip=${stdenv.cc.bintools.targetPrefix}strip"
] ++ (if isHaLVM then [] else ["--hsc2hs-options=--cross-compile"]);
crossCabalFlagsString =
@@ -122,7 +134,7 @@ let
(optionalString (enableSharedExecutables && stdenv.isDarwin) "--ghc-option=-optl=-Wl,-headerpad_max_install_names")
(optionalString enableParallelBuilding "--ghc-option=-j$NIX_BUILD_CORES")
(optionalString useCpphs "--with-cpphs=${cpphs}/bin/cpphs --ghc-options=-cpp --ghc-options=-pgmP${cpphs}/bin/cpphs --ghc-options=-optP--cpp")
- (enableFeature (enableDeadCodeElimination && (versionAtLeast "8.0.1" ghc.version)) "split-objs")
+ (enableFeature (enableDeadCodeElimination && !hostPlatform.isArm && !hostPlatform.isAarch64 && (versionAtLeast "8.0.1" ghc.version)) "split-objs")
(enableFeature enableLibraryProfiling "library-profiling")
(enableFeature enableExecutableProfiling (if versionOlder ghc.version "8" then "executable-profiling" else "profiling"))
(enableFeature enableSharedLibraries "shared")
@@ -135,12 +147,11 @@ let
] ++ optionals isGhcjs [
"--ghcjs"
] ++ optionals isCross ([
- "--configure-option=--host=${ghc.cross.config}"
+ "--configure-option=--host=${hostPlatform.config}"
] ++ crossCabalFlags);
setupCompileFlags = [
- (optionalString (!coreSetup) "-${packageDbFlag}=$packageConfDir")
- (optionalString isGhcjs "-build-runner")
+ (optionalString (!coreSetup) "-${nativePackageDbFlag}=$packageConfDir")
(optionalString (isGhcjs || isHaLVM || versionOlder "7.8" ghc.version) "-j$NIX_BUILD_CORES")
# https://github.com/haskell/cabal/issues/2398
(optionalString (versionOlder "7.10" ghc.version && !isHaLVM) "-threaded")
@@ -152,14 +163,12 @@ let
allPkgconfigDepends = pkgconfigDepends ++ libraryPkgconfigDepends ++ executablePkgconfigDepends ++
optionals doCheck testPkgconfigDepends ++ optionals doBenchmark benchmarkPkgconfigDepends;
- nativeBuildInputs = optional (allPkgconfigDepends != []) pkgconfig ++
- buildTools ++ libraryToolDepends ++ executableToolDepends ++ [ removeReferencesTo ];
+ nativeBuildInputs = [ ghc nativeGhc removeReferencesTo ] ++ optional (allPkgconfigDepends != []) pkgconfig ++
+ buildTools ++ libraryToolDepends ++ executableToolDepends;
propagatedBuildInputs = buildDepends ++ libraryHaskellDepends ++ executableHaskellDepends;
otherBuildInputs = setupHaskellDepends ++ extraLibraries ++ librarySystemDepends ++ executableSystemDepends ++
optionals (allPkgconfigDepends != []) allPkgconfigDepends ++
optionals doCheck (testDepends ++ testHaskellDepends ++ testSystemDepends ++ testToolDepends) ++
- # ghcjs's hsc2hs calls out to the native hsc2hs
- optional isGhcjs nativeGhc ++
optionals doBenchmark (benchmarkDepends ++ benchmarkHaskellDepends ++ benchmarkSystemDepends ++ benchmarkToolDepends);
allBuildInputs = propagatedBuildInputs ++ otherBuildInputs;
@@ -168,13 +177,14 @@ let
ghcEnv = ghc.withPackages (p: haskellBuildInputs);
- setupBuilder = if isCross then "${nativeGhc}/bin/ghc" else ghcCommand;
setupCommand = "./Setup";
+
ghcCommand' = if isGhcjs then "ghcjs" else "ghc";
- crossPrefix = if (ghc.cross or null) != null then "${ghc.cross.config}-" else "";
- ghcCommand = "${crossPrefix}${ghcCommand'}";
+ ghcCommand = "${ghc.targetPrefix}${ghcCommand'}";
ghcCommandCaps= toUpper ghcCommand';
+ nativeGhcCommand = "${nativeGhc.targetPrefix}ghc";
+
in
assert allPkgconfigDepends != [] -> pkgconfig != null;
@@ -213,7 +223,6 @@ stdenv.mkDerivation ({
runHook preSetupCompilerEnvironment
echo "Build with ${ghc}."
- export PATH="${ghc}/bin:$PATH"
${optionalString (hasActiveLibrary && hyperlinkSource) "export PATH=${hscolour}/bin:$PATH"}
packageConfDir="$TMPDIR/package.conf.d"
@@ -222,8 +231,8 @@ stdenv.mkDerivation ({
setupCompileFlags="${concatStringsSep " " setupCompileFlags}"
configureFlags="${concatStringsSep " " defaultConfigureFlags} $configureFlags"
- # nativePkgs defined in stdenv/setup.hs
- for p in "''${nativePkgs[@]}"; do
+ # host.*Pkgs defined in stdenv/setup.hs
+ for p in "''${pkgsHostHost[@]}" "''${pkgsHostTarget[@]}"; do
if [ -d "$p/lib/${ghc.name}/package.conf.d" ]; then
cp -f "$p/lib/${ghc.name}/package.conf.d/"*.conf $packageConfDir/
continue
@@ -243,7 +252,7 @@ stdenv.mkDerivation ({
# libraries) from all the dependencies.
local dynamicLinksDir="$out/lib/links"
mkdir -p $dynamicLinksDir
- for d in $(grep dynamic-library-dirs "$packageConfDir/"*|awk '{print $2}'); do
+ for d in $(grep dynamic-library-dirs "$packageConfDir/"*|awk '{print $2}'|sort -u); do
ln -s "$d/"*.dylib $dynamicLinksDir
done
# Edit the local package DB to reference the links directory.
@@ -264,11 +273,15 @@ stdenv.mkDerivation ({
done
echo setupCompileFlags: $setupCompileFlags
- ${setupBuilder} $setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i
+ ${nativeGhcCommand} $setupCompileFlags --make -o Setup -odir $TMPDIR -hidir $TMPDIR $i
runHook postCompileBuildDriver
'';
+ # Cabal takes flags like `--configure-option=--host=...` instead
+ configurePlatforms = [];
+ inherit configureFlags;
+
configurePhase = ''
runHook preConfigure
@@ -276,7 +289,7 @@ stdenv.mkDerivation ({
echo configureFlags: $configureFlags
${setupCommand} configure $configureFlags 2>&1 | ${coreutils}/bin/tee "$NIX_BUILD_TOP/cabal-configure.log"
- if ${gnugrep}/bin/egrep -q '^Warning:.*depends on multiple versions' "$NIX_BUILD_TOP/cabal-configure.log"; then
+ if ${gnugrep}/bin/egrep -q -z 'Warning:.*depends on multiple versions' "$NIX_BUILD_TOP/cabal-configure.log"; then
echo >&2 "*** abort because of serious configure-time warning from Cabal"
exit 1
fi
@@ -317,8 +330,14 @@ stdenv.mkDerivation ({
local packageConfFile="$packageConfDir/${pname}-${version}.conf"
mkdir -p "$packageConfDir"
${setupCommand} register --gen-pkg-config=$packageConfFile
- local pkgId=$( ${gnused}/bin/sed -n -e 's|^id: ||p' $packageConfFile )
- mv $packageConfFile $packageConfDir/$pkgId.conf
+ if [ -d "$packageConfFile" ]; then
+ mv "$packageConfFile"/* "$packageConfDir"
+ rmdir "$packageConfFile"
+ fi
+ for packageConfFile in "$packageConfDir"/*; do
+ local pkgId=$( ${gnused}/bin/sed -n -e 's|^id: ||p' $packageConfFile )
+ mv $packageConfFile $packageConfDir/$pkgId.conf
+ done
''}
${optionalString isGhcjs ''
for exeDir in "$out/bin/"*.jsexe; do
@@ -350,6 +369,8 @@ stdenv.mkDerivation ({
inherit pname version;
+ compiler = ghc;
+
isHaskellLibrary = hasActiveLibrary;
# TODO: ask why the split outputs are configurable at all?
@@ -394,7 +415,6 @@ stdenv.mkDerivation ({
// optionalAttrs (postCompileBuildDriver != "") { inherit postCompileBuildDriver; }
// optionalAttrs (preUnpack != "") { inherit preUnpack; }
// optionalAttrs (postUnpack != "") { inherit postUnpack; }
-// optionalAttrs (configureFlags != []) { inherit configureFlags; }
// optionalAttrs (patches != []) { inherit patches; }
// optionalAttrs (patchPhase != "") { inherit patchPhase; }
// optionalAttrs (preConfigure != "") { inherit preConfigure; }
@@ -413,5 +433,5 @@ stdenv.mkDerivation ({
// optionalAttrs (postFixup != "") { inherit postFixup; }
// optionalAttrs (dontStrip) { inherit dontStrip; }
// optionalAttrs (hardeningDisable != []) { inherit hardeningDisable; }
-// optionalAttrs (stdenv.isLinux) { LOCALE_ARCHIVE = "${glibcLocales}/lib/locale/locale-archive"; }
+// optionalAttrs (buildPlatform.isLinux){ LOCALE_ARCHIVE = "${glibcLocales}/lib/locale/locale-archive"; }
)
diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix
index c5bb3145fa4..d2e3281bbba 100644
--- a/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/pkgs/development/haskell-modules/hackage-packages.nix
@@ -753,6 +753,8 @@ self: {
pname = "Agda";
version = "2.5.3";
sha256 = "0r80vw7vnvbgq47y50v050malv7zvv2p2kg6f47i04r0b2ix855a";
+ revision = "3";
+ editedCabalFile = "1hd1viy4wj7fyskjmmf5hqziyvk5qxjr0zcnbp5zdyacng0yyafi";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -1819,21 +1821,19 @@ self: {
, containers, data-default, directory, filepath, HaXml, haxr
, highlighting-kate, hscolour, HTTP, lens, mtl, pandoc
, pandoc-citeproc, pandoc-types, parsec, process, split, strict
- , tagsoup, temporary, transformers
+ , tagsoup, temporary, text, transformers
}:
mkDerivation {
pname = "BlogLiterately";
- version = "0.8.4.3";
- sha256 = "088pfqgp1m1qv7qdi7h4vvflhlsnay40zg6vnsa3nykyvkm9sy2n";
- revision = "1";
- editedCabalFile = "01fpw6xqfdrhm26frf1mm05spk2zp6f3swl48mk4pz3zbffaskps";
+ version = "0.8.5";
+ sha256 = "0xcliysj78z51vapjbndwdh39gn3vcwqxnylqb3501i15rmsfm63";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base blaze-html bool-extras bytestring cmdargs containers
data-default directory filepath HaXml haxr highlighting-kate
hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec
- process split strict tagsoup temporary transformers
+ process split strict tagsoup temporary text transformers
];
executableHaskellDepends = [ base cmdargs ];
homepage = "http://byorgey.wordpress.com/blogliterately/";
@@ -2692,6 +2692,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ChannelT_0_0_0_7" = callPackage
+ ({ mkDerivation, base, free, mmorph, mtl, transformers-base }:
+ mkDerivation {
+ pname = "ChannelT";
+ version = "0.0.0.7";
+ sha256 = "183pghm74vk1vdcn0mdn6g5q284sncpl1cc49lpczz1wbr15s89y";
+ libraryHaskellDepends = [ base free mmorph mtl transformers-base ];
+ homepage = "https://github.com/pthariensflame/ChannelT";
+ description = "Generalized stream processors";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"Chart" = callPackage
({ mkDerivation, array, base, colour, data-default-class, lens, mtl
, old-locale, operational, time, vector
@@ -4006,6 +4019,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Decimal_0_5_1" = callPackage
+ ({ mkDerivation, base, deepseq, HUnit, QuickCheck, test-framework
+ , test-framework-hunit, test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "Decimal";
+ version = "0.5.1";
+ sha256 = "0k7kh05mr2f54w1lpgq1nln0h8k6s6h99dyp5jzsb9cfbb3aap2p";
+ libraryHaskellDepends = [ base deepseq ];
+ testHaskellDepends = [
+ base deepseq HUnit QuickCheck test-framework test-framework-hunit
+ test-framework-quickcheck2
+ ];
+ homepage = "https://github.com/PaulJohnson/Haskell-Decimal";
+ description = "Decimal numbers with variable precision";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"DecisionTree" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
@@ -4706,6 +4738,23 @@ self: {
license = "unknown";
}) {};
+ "EdisonCore_1_3_2_1" = callPackage
+ ({ mkDerivation, array, base, containers, EdisonAPI, mtl
+ , QuickCheck
+ }:
+ mkDerivation {
+ pname = "EdisonCore";
+ version = "1.3.2.1";
+ sha256 = "0fgj5iwiv3v2gdgx7kjcr15dcs4x1kvmjspp3p99wyhh0x6h3ikk";
+ libraryHaskellDepends = [
+ array base containers EdisonAPI mtl QuickCheck
+ ];
+ homepage = "http://rwd.rdockins.name/edison/home/";
+ description = "A library of efficient, purely-functional data structures (Core Implementations)";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"EditTimeReport" = callPackage
({ mkDerivation, array, base, containers, csv, directory, editline
, filepath, haskell98, html, pretty, xhtml
@@ -6002,8 +6051,8 @@ self: {
({ mkDerivation, base, GLFW, monad-task, OpenGL, transformers }:
mkDerivation {
pname = "GLFW-task";
- version = "0.2.0";
- sha256 = "110iwxp6xs3wj4bva8m6mgz7iq90zrcz2dnjlq3s2x3in2m4818p";
+ version = "0.3.0";
+ sha256 = "1il8npm7ygg0j8byczlxadlnnf6xxy5hn307k75drbhn4z8swcqg";
libraryHaskellDepends = [
base GLFW monad-task OpenGL transformers
];
@@ -6515,6 +6564,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "Get" = callPackage
+ ({ mkDerivation, base, constraints, singletons }:
+ mkDerivation {
+ pname = "Get";
+ version = "0.2018.1.10";
+ sha256 = "18i6ags8acgi651453g7axw7isiqivjhb4s0nh3lyl87ynqsch6l";
+ libraryHaskellDepends = [ base constraints singletons ];
+ testHaskellDepends = [ base constraints singletons ];
+ homepage = "https://github.com/MarisaKirisame/Get#readme";
+ description = "get stuff out of stuff";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"GiST" = callPackage
({ mkDerivation, base, text }:
mkDerivation {
@@ -7381,8 +7443,8 @@ self: {
({ mkDerivation, base, bytestring, fuse, unix }:
mkDerivation {
pname = "HFuse";
- version = "0.2.4.5";
- sha256 = "1894dk7flfdblyyrx0d1acznrdbjw41dnal45cqvrxz5vy4hd3p2";
+ version = "0.2.5.0";
+ sha256 = "1sv7w1jn0p2dgdcqy7pnmwgp1dghh4jqz21m7ixvidks0nlfkq02";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base bytestring unix ];
@@ -8461,13 +8523,11 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "HSlippyMap";
- version = "2.2";
- sha256 = "17n1kpva97lwhwg2vs7875bfqlwcq6xpl2agqc53qb7j4153p559";
- revision = "2";
- editedCabalFile = "0iw3s7snb255jxj555vyfl3ckgqxf6xivbzl4z9ypy18a5glpzri";
+ version = "3.0";
+ sha256 = "1kqyahisqzilndargvyh0gqln3471ll1jkpnayirfi9am1by4f93";
libraryHaskellDepends = [ base ];
- homepage = "https://github.com/41px/HSlippyMap";
- description = "OpenStreetMap (OSM) Slippy Map";
+ homepage = "https://github.com/apeyroux/HSlippyMap";
+ description = "OpenStreetMap Slippy Map";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -8536,6 +8596,8 @@ self: {
pname = "HStringTemplate";
version = "0.8.6";
sha256 = "1kam09fhnz1485swp5z1k8whjiwz9fcscp6zibxkq8hw3sfcn8kh";
+ revision = "1";
+ editedCabalFile = "05j23rsll9xxj92gk1qvaksd9z985fpdmbp8mv73ywwjl29kfwyb";
libraryHaskellDepends = [
array base blaze-builder bytestring containers deepseq directory
filepath mtl old-locale parsec pretty syb template-haskell text
@@ -9071,6 +9133,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "HappyTree" = callPackage
+ ({ mkDerivation, base, constraints, generics-sop, safe, singletons
+ }:
+ mkDerivation {
+ pname = "HappyTree";
+ version = "0.2018.1.8";
+ sha256 = "01mc5qh786aw2vbpj5h8kzarhwi5h73bd65m51x7xiyabwfmln0b";
+ libraryHaskellDepends = [
+ base constraints generics-sop safe singletons
+ ];
+ testHaskellDepends = [
+ base constraints generics-sop safe singletons
+ ];
+ homepage = "https://github.com/MarisaKirisame/HappyTree#readme";
+ description = "Type Safe and End to End Decision Tree";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"HarmTrace" = callPackage
({ mkDerivation, array, base, binary, cmdargs, deepseq, Diff
, directory, filepath, ghc-prim, HarmTrace-Base, instant-generics
@@ -9337,15 +9417,16 @@ self: {
}) {};
"Hastodon" = callPackage
- ({ mkDerivation, aeson, base, bytestring, http-conduit, http-types
- , MissingH, text
+ ({ mkDerivation, aeson, base, bytestring, http-client, http-conduit
+ , http-types, mime-types, MissingH, text
}:
mkDerivation {
pname = "Hastodon";
- version = "0.2.0";
- sha256 = "1ybchvkcv9n4wp8r4xassmgw1z0kdscmkccg3rbhz72lwp3m13zz";
+ version = "0.3.1";
+ sha256 = "0z8ph9frrad5nn23hi3qr2gj7lh7p2qpcmx4rdyv8vlqal38zdv1";
libraryHaskellDepends = [
- aeson base bytestring http-conduit http-types MissingH text
+ aeson base bytestring http-client http-conduit http-types
+ mime-types MissingH text
];
homepage = "https://github.com/syucream/hastodon";
description = "mastodon client module for Haskell";
@@ -9633,23 +9714,52 @@ self: {
}) {};
"Hoed" = callPackage
- ({ mkDerivation, array, base, bytestring, cereal, containers
- , directory, filepath, libgraph, mtl, process, regex-posix, time
+ ({ mkDerivation, array, base, bytestring, cereal, clock, containers
+ , deepseq, directory, libgraph, process, QuickCheck, regex-tdfa
+ , semigroups, strict, template-haskell, terminal-size, uniplate
+ , vector
}:
mkDerivation {
pname = "Hoed";
- version = "0.4.0";
- sha256 = "0l01viv04dkxinysd7wbzn7k5rm8c21ix8k5a4p940hml879m9f1";
- enableSeparateDataOutput = true;
+ version = "0.4.1";
+ sha256 = "14d4wypx75xmhb81f4lplvw04f5hjc97ncgzv4s07vd09bal8kq7";
libraryHaskellDepends = [
- array base bytestring cereal containers directory filepath libgraph
- mtl process regex-posix time
+ array base bytestring cereal clock containers deepseq directory
+ libgraph process QuickCheck regex-tdfa semigroups strict
+ template-haskell terminal-size uniplate vector
];
- homepage = "https://wiki.haskell.org/Hoed";
+ testHaskellDepends = [ base process QuickCheck ];
+ homepage = "https://github.com/MaartenFaddegon/Hoed";
description = "Lightweight algorithmic debugging";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Hoed_0_5_0" = callPackage
+ ({ mkDerivation, array, base, bytestring, cereal, cereal-text
+ , cereal-vector, clock, containers, deepseq, directory, hashable
+ , hashtables, libgraph, open-browser, primitive, process
+ , QuickCheck, regex-tdfa, regex-tdfa-text, semigroups, strict
+ , template-haskell, terminal-size, text, transformers, uniplate
+ , vector, vector-th-unbox
+ }:
+ mkDerivation {
+ pname = "Hoed";
+ version = "0.5.0";
+ sha256 = "1pj2scisdissbhlf6gn5bxqp09zvi5v7h8n7l3y1rirkqwwf74a8";
+ libraryHaskellDepends = [
+ array base bytestring cereal cereal-text cereal-vector clock
+ containers deepseq directory hashable hashtables libgraph
+ open-browser primitive process QuickCheck regex-tdfa
+ regex-tdfa-text semigroups strict template-haskell terminal-size
+ text transformers uniplate vector vector-th-unbox
+ ];
+ testHaskellDepends = [ base process QuickCheck ];
+ homepage = "https://github.com/MaartenFaddegon/Hoed";
+ description = "Lightweight algorithmic debugging";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"HoleyMonoid" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -9918,8 +10028,8 @@ self: {
}:
mkDerivation {
pname = "HsOpenSSL";
- version = "0.11.4.11";
- sha256 = "0dgywjkvzxwpr33l642cw8v2gqn3s8kclg97xs1w8a5pqcg647pp";
+ version = "0.11.4.12";
+ sha256 = "18hmbjg15rlpnqq95z2d2xskj5l0hcv5mp9hb16jb26rcdi54sim";
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
base bytestring integer-gmp network time
@@ -10245,8 +10355,8 @@ self: {
}:
mkDerivation {
pname = "IPv6DB";
- version = "0.2.3";
- sha256 = "0j51v7y475wdrhjwrqrmlh6574l032vh7zsdhxqx723f7iswjimf";
+ version = "0.2.4";
+ sha256 = "1axppdhckdch3kjcmw8dga76v865xccdwsksxfnahg32k613g8zd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -10664,10 +10774,8 @@ self: {
}:
mkDerivation {
pname = "JuicyPixels";
- version = "3.2.9.1";
- sha256 = "1g31zgsg7gq5ac9r5aizghvrg7jwn1a0qs4qwnfillqn4wkw6y5b";
- revision = "1";
- editedCabalFile = "04llw8m0s7bqz1d1vymhnzr51y9y6r9vwn4acwch1a10kq02kkpg";
+ version = "3.2.9.3";
+ sha256 = "14s57fgf6kd5n5al2kcvk1aaxbq1ph0r5h8blflrjkx83yl6r8yn";
libraryHaskellDepends = [
base binary bytestring containers deepseq mtl primitive
transformers vector zlib
@@ -10677,6 +10785,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "JuicyPixels_3_2_9_4" = callPackage
+ ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl
+ , primitive, transformers, vector, zlib
+ }:
+ mkDerivation {
+ pname = "JuicyPixels";
+ version = "3.2.9.4";
+ sha256 = "1mlj3zcr3c49mjv0sddsfdzvzv3m0cbv56fbrkarygs5dxyh8dgz";
+ libraryHaskellDepends = [
+ base binary bytestring containers deepseq mtl primitive
+ transformers vector zlib
+ ];
+ homepage = "https://github.com/Twinside/Juicy.Pixels";
+ description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"JuicyPixels-canvas" = callPackage
({ mkDerivation, base, containers, JuicyPixels }:
mkDerivation {
@@ -10696,6 +10822,8 @@ self: {
pname = "JuicyPixels-extra";
version = "0.2.2";
sha256 = "1f0ysxwd73s04mrqzqj9rfp6dd5441ckc96x2a4zkc1hixgkfzld";
+ revision = "1";
+ editedCabalFile = "1h88x4bp9jvxx8laz69izna82a9d3bapr7nfpa9gpbvqpmi7d3vd";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base JuicyPixels ];
testHaskellDepends = [ base hspec JuicyPixels ];
@@ -11541,6 +11669,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ListLike_4_6" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, deepseq
+ , dlist, fmlist, HUnit, QuickCheck, random, semigroups, text
+ , utf8-string, vector
+ }:
+ mkDerivation {
+ pname = "ListLike";
+ version = "4.6";
+ sha256 = "16jsj979mzjrgmpa20pls9ganym3wsps49paks1sb1gmlmwyrkf1";
+ libraryHaskellDepends = [
+ array base bytestring containers deepseq dlist fmlist semigroups
+ text utf8-string vector
+ ];
+ testHaskellDepends = [
+ array base bytestring containers dlist fmlist HUnit QuickCheck
+ random semigroups text utf8-string vector
+ ];
+ homepage = "http://github.com/JohnLato/listlike";
+ description = "Generic support for list-like structures";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ListT" = callPackage
({ mkDerivation, base, smallcheck, tasty, tasty-smallcheck
, transformers, util
@@ -11824,8 +11975,8 @@ self: {
({ mkDerivation, base, bytestring, hidapi, mtl }:
mkDerivation {
pname = "MBot";
- version = "0.2.3.0";
- sha256 = "1h2fapfjr5hzsr9grpk268rxfaiwl4yfgfw7wz0khrcnhjs5m9b2";
+ version = "0.2.4.0";
+ sha256 = "1jzjf1p1ld9xdxqb9jf32nyhzmp29mirpinz24s8blwpscia5v56";
libraryHaskellDepends = [ base bytestring hidapi mtl ];
description = "Haskell interface for controlling the mBot educational robot";
license = stdenv.lib.licenses.gpl3;
@@ -12091,6 +12242,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "MemoTrie_0_6_9" = callPackage
+ ({ mkDerivation, base, newtype-generics }:
+ mkDerivation {
+ pname = "MemoTrie";
+ version = "0.6.9";
+ sha256 = "157p0pi6rrq74a35mq6zkkycv4ah7xhkbrcmnkb9xf7pznw4aq0x";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base newtype-generics ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/conal/MemoTrie";
+ description = "Trie-based memo functions";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"MetaHDBC" = callPackage
({ mkDerivation, base, convertible, hashtables, HDBC, HDBC-odbc
, mtl, template-haskell
@@ -13009,6 +13176,7 @@ self: {
libraryHaskellDepends = [ array base integer ];
description = "A binary I/O library";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {integer = null;};
@@ -13681,8 +13849,8 @@ self: {
}:
mkDerivation {
pname = "OpenGLRaw";
- version = "3.2.6.0";
- sha256 = "1fsrlc0wy27dvb1551zwgwyf1sdxd37kn1ddv33rxbli988wha60";
+ version = "3.2.7.0";
+ sha256 = "024aln102d1mmsdalq9jd5mmwjbnrb8gxcak73lybrc7q87kswk2";
libraryHaskellDepends = [
base bytestring containers fixed half text transformers
];
@@ -13845,6 +14013,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "Ordinary" = callPackage
+ ({ mkDerivation, base, safe, threepenny-gui }:
+ mkDerivation {
+ pname = "Ordinary";
+ version = "0.2018.1.8";
+ sha256 = "0n4mk28cdcj71qxifh1prib2a83fjk4dzw6h5dm8a81z6ijribb1";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base safe threepenny-gui ];
+ executableHaskellDepends = [ base safe threepenny-gui ];
+ testHaskellDepends = [ base safe threepenny-gui ];
+ homepage = "https://github.com/MarisaKirisame/Ordinary#readme";
+ description = "A Programming Language in Construction";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"PArrows" = callPackage
({ mkDerivation, base, containers, ghc-prim, mtl }:
mkDerivation {
@@ -14072,6 +14256,99 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "Parallel-Arrows-BaseSpec" = callPackage
+ ({ mkDerivation, base, deepseq, hspec, Parallel-Arrows-Definition
+ , split
+ }:
+ mkDerivation {
+ pname = "Parallel-Arrows-BaseSpec";
+ version = "0.1.1.0";
+ sha256 = "014fy1sv1b82wxd3wpsxvnv3jn07d24r4ph3bi7p6i8aykx2a9f4";
+ libraryHaskellDepends = [
+ base deepseq hspec Parallel-Arrows-Definition split
+ ];
+ testHaskellDepends = [
+ base hspec Parallel-Arrows-Definition split
+ ];
+ homepage = "https://github.com/s4ke/Parrows#readme";
+ description = "BaseSpecs used for @Parallel-Arrows-Definition@ and Co";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "Parallel-Arrows-Definition" = callPackage
+ ({ mkDerivation, base, deepseq, split }:
+ mkDerivation {
+ pname = "Parallel-Arrows-Definition";
+ version = "0.1.1.0";
+ sha256 = "1zdsvg0nx2vnvgx9vcwq8l1kanfp056mmiscs3716lswkrvhdlbf";
+ libraryHaskellDepends = [ base deepseq split ];
+ homepage = "https://github.com/s4ke/Parrows#readme";
+ description = "Multithreaded evaluation using Arrows";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "Parallel-Arrows-Eden" = callPackage
+ ({ mkDerivation, base, deepseq, edenmodules, hspec, parallel
+ , Parallel-Arrows-BaseSpec, Parallel-Arrows-Definition, QuickCheck
+ , split
+ }:
+ mkDerivation {
+ pname = "Parallel-Arrows-Eden";
+ version = "0.1.1.0";
+ sha256 = "1iihlxghr2f70zbw3kkilckzfw24sjax6ck0g42272kj61gk2zy7";
+ libraryHaskellDepends = [
+ base deepseq edenmodules parallel Parallel-Arrows-Definition split
+ ];
+ testHaskellDepends = [
+ base deepseq edenmodules hspec parallel Parallel-Arrows-BaseSpec
+ Parallel-Arrows-Definition QuickCheck split
+ ];
+ homepage = "https://github.com/s4ke/Parrows#readme";
+ description = "Eden based backend for @Parallel-Arrows-Definition@";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "Parallel-Arrows-Multicore" = callPackage
+ ({ mkDerivation, base, deepseq, hspec, parallel
+ , Parallel-Arrows-BaseSpec, Parallel-Arrows-Definition, split
+ }:
+ mkDerivation {
+ pname = "Parallel-Arrows-Multicore";
+ version = "0.1.1.0";
+ sha256 = "0g9ag9lk8mvnbfgzay27sq517an6cmv02fapxsn2lmr5vs7k63ar";
+ libraryHaskellDepends = [
+ base deepseq parallel Parallel-Arrows-Definition split
+ ];
+ testHaskellDepends = [
+ base deepseq hspec parallel Parallel-Arrows-BaseSpec
+ Parallel-Arrows-Definition split
+ ];
+ homepage = "https://github.com/s4ke/Parrows#readme";
+ description = "GpH based backend for @Parallel-Arrows-Definition@ in a multicore variant";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "Parallel-Arrows-ParMonad" = callPackage
+ ({ mkDerivation, base, deepseq, hspec, monad-par
+ , Parallel-Arrows-BaseSpec, Parallel-Arrows-Definition, split
+ }:
+ mkDerivation {
+ pname = "Parallel-Arrows-ParMonad";
+ version = "0.1.1.0";
+ sha256 = "193794v158wfblriklp2jgxa3hk86p4kxbp8sj1hh16dwb0qa9cr";
+ libraryHaskellDepends = [
+ base deepseq monad-par Parallel-Arrows-Definition split
+ ];
+ testHaskellDepends = [
+ base deepseq hspec monad-par Parallel-Arrows-BaseSpec
+ Parallel-Arrows-Definition split
+ ];
+ homepage = "https://github.com/s4ke/Parrows#readme";
+ description = "Par Monad (@monad-par@) based backend for @Parallel-Arrows-Definition@";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"Parry" = callPackage
({ mkDerivation, base, binary, bytestring, containers, directory
, ghc-prim, network, old-locale, process, random, RSA
@@ -14801,6 +15078,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "QuickCheck_2_11_3" = callPackage
+ ({ mkDerivation, base, containers, deepseq, random
+ , template-haskell, tf-random, transformers
+ }:
+ mkDerivation {
+ pname = "QuickCheck";
+ version = "2.11.3";
+ sha256 = "0xhqk35fkzlbjcqbabg6962jkv8d688nzmz7ng4bm84x2d95d328";
+ libraryHaskellDepends = [
+ base containers deepseq random template-haskell tf-random
+ transformers
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/nick8325/quickcheck";
+ description = "Automatic testing of Haskell programs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"QuickCheck-GenT" = callPackage
({ mkDerivation, base, mtl, QuickCheck, random }:
mkDerivation {
@@ -15574,7 +15870,7 @@ self: {
sha256 = "139lggc8f7sw703asdyxqbja0jfcgphx0l5si1046lsryinvywa9";
libraryHaskellDepends = [ base containers text time ];
testHaskellDepends = [
- base containers hspec QuickCheck text time
+ base containers hspec QuickCheck scalendar text time
];
homepage = "https://www.researchgate.net/publication/311582722_Method_of_Managing_Resources_in_a_Telecommunication_Network_or_a_Computing_System";
description = "This is a library for handling calendars and resource availability based on the \"top-nodes algorithm\" and set operations";
@@ -15673,6 +15969,7 @@ self: {
librarySystemDepends = [ SDL2_ttf ];
description = "Binding to libSDL-ttf";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {SDL2 = null; inherit (pkgs) SDL2_ttf;};
@@ -16259,6 +16556,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ShellCheck_0_4_6" = callPackage
+ ({ mkDerivation, base, containers, directory, json, mtl, parsec
+ , process, QuickCheck, regex-tdfa
+ }:
+ mkDerivation {
+ pname = "ShellCheck";
+ version = "0.4.6";
+ sha256 = "1g5ihsma3zgb7q89n2j4772f504nnhfn065xdz6bqgrnjhkrpsqi";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers directory json mtl parsec process QuickCheck
+ regex-tdfa
+ ];
+ executableHaskellDepends = [
+ base containers directory json mtl parsec QuickCheck regex-tdfa
+ ];
+ testHaskellDepends = [
+ base containers directory json mtl parsec QuickCheck regex-tdfa
+ ];
+ homepage = "http://www.shellcheck.net/";
+ description = "Shell script analysis tool";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ShellCheck" = callPackage
({ mkDerivation, base, containers, directory, json, mtl, parsec
, process, QuickCheck, regex-tdfa
@@ -17059,8 +17382,8 @@ self: {
}:
mkDerivation {
pname = "StockholmAlignment";
- version = "1.1.1";
- sha256 = "085kw1rw4dkyivjpm7l5alj0x9cgzd8c2ai4f2k1kkcwjkhbpllv";
+ version = "1.1.2";
+ sha256 = "1x41m0xcmz9j4gypbl4pi6a6v53j6v37ndl8g5rq60fqfl18hizb";
libraryHaskellDepends = [
base colour diagrams-cairo diagrams-lib directory either-unwrap
filepath parsec ParsecTools SVGFonts text vector
@@ -17159,6 +17482,7 @@ self: {
libraryHaskellDepends = [ base mtl ];
homepage = "http://naesten.dyndns.org:8080/repos/StrategyLib";
license = stdenv.lib.licenses.unfree;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"Stream" = callPackage
@@ -18136,8 +18460,8 @@ self: {
}:
mkDerivation {
pname = "Unique";
- version = "0.4.7.1";
- sha256 = "1a912180fk2xhz6md50n21xz0z89n9ylansyqxq034jgsfkz8b7s";
+ version = "0.4.7.2";
+ sha256 = "0ssvg5sjhvadsfym02y0l712viv9xk2sfvrfs1q7260p7025aqdm";
libraryHaskellDepends = [
base containers extra hashable unordered-containers
];
@@ -18403,13 +18727,13 @@ self: {
"Villefort" = callPackage
({ mkDerivation, base, bytestring, directory, filepath, HDBC
- , HDBC-sqlite3, MissingH, mtl, process, random, scotty, split
- , strict, text, time, transformers, unix
+ , HDBC-sqlite3, hspec, MissingH, mtl, process, QuickCheck, random
+ , scotty, split, strict, text, time, transformers, unix, webdriver
}:
mkDerivation {
pname = "Villefort";
- version = "0.1.2.5";
- sha256 = "1d4yq1bzjqk3w0rsjmb7y50jg0gyjbjckgbfhw9np0qbzbv2vpy3";
+ version = "0.1.2.9";
+ sha256 = "1mnh2snr1pwv5nwv4g7scwmclh2nm871kqb5py0v5sx4ff04kgbi";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -18420,7 +18744,9 @@ self: {
executableHaskellDepends = [
base HDBC HDBC-sqlite3 random scotty split text time
];
- testHaskellDepends = [ base HDBC HDBC-sqlite3 ];
+ testHaskellDepends = [
+ base HDBC HDBC-sqlite3 hspec mtl QuickCheck webdriver
+ ];
homepage = "https://github.com/Chrisr850/Villefort#readme";
description = "Villefort is a task manager and time tracker written in haskell";
license = stdenv.lib.licenses.bsd3;
@@ -19051,7 +19377,7 @@ self: {
"X11" = callPackage
({ mkDerivation, base, data-default, libX11, libXext, libXinerama
- , libXrandr, libXrender
+ , libXrandr, libXrender, libXScrnSaver
}:
mkDerivation {
pname = "X11";
@@ -19059,14 +19385,14 @@ self: {
sha256 = "13lxq36856fzp61y4api78vssykyh8fm2aplr0nsj18ymdm1c6sl";
libraryHaskellDepends = [ base data-default ];
librarySystemDepends = [
- libX11 libXext libXinerama libXrandr libXrender
+ libX11 libXext libXinerama libXrandr libXrender libXScrnSaver
];
homepage = "https://github.com/xmonad/X11";
description = "A binding to the X11 graphics library";
license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXext;
- inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrandr;
- inherit (pkgs.xorg) libXrender;};
+ }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXScrnSaver;
+ inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXinerama;
+ inherit (pkgs.xorg) libXrandr; inherit (pkgs.xorg) libXrender;};
"X11-extras" = callPackage
({ mkDerivation, base, libX11, X11 }:
@@ -20092,8 +20418,8 @@ self: {
}:
mkDerivation {
pname = "accelerate-fourier";
- version = "1.0.0.2";
- sha256 = "1rcbxrhh55jrp8f8g7pb8a4mq0cmhrhfx6q8z8n1hlyazswfdw1d";
+ version = "1.0.0.3";
+ sha256 = "1xh6anashsvj5mfkwbl3as9gjgwl69q0qz3js0xbii8vdmhbbbnb";
libraryHaskellDepends = [
accelerate accelerate-arithmetic accelerate-utility base containers
QuickCheck transformers utility-ht
@@ -20109,6 +20435,7 @@ self: {
homepage = "http://hub.darcs.net/thielema/accelerate-fourier/";
description = "Fast Fourier transform and convolution using the Accelerate framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"accelerate-fourier-benchmark" = callPackage
@@ -20202,10 +20529,8 @@ self: {
}:
mkDerivation {
pname = "accelerate-llvm-ptx";
- version = "1.1.0.0";
- sha256 = "1av0s4wgq7l2jhkmg7cmr1fivwqankqgyjikpwg1q569dapfrasw";
- revision = "1";
- editedCabalFile = "1zap2f9xalxqgc3pkzmq7ykpiini1q4d02kyxibnwbh9cyk1kkvp";
+ version = "1.1.0.1";
+ sha256 = "0j1j4y0gx219ib8hyklydv0l610j53zg6qan4n7477rs58ninv5j";
libraryHaskellDepends = [
accelerate accelerate-llvm base bytestring containers cuda deepseq
directory dlist fclabels file-embed filepath hashable llvm-hs
@@ -20471,6 +20796,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "acme-cuteboy" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "acme-cuteboy";
+ version = "0.1.0.0";
+ sha256 = "1x21mvm1n6cka07c3d3w8ycp84gx58af1nvpsfcaa7sccj13jvj9";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/chessai/acme-cuteboy";
+ description = "Maybe gives you a cute boy";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
"acme-cutegirl" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -20711,6 +21051,20 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "acme-mutable-package" = callPackage
+ ({ mkDerivation, base, Cabal }:
+ mkDerivation {
+ pname = "acme-mutable-package";
+ version = "0";
+ sha256 = "16da6pkkdr2g77dn3n4v9x6mwi6yz3xlpisvpn0id2xz0bayipmr";
+ revision = "3";
+ editedCabalFile = "094kr4ib0hldgccr5bvy9azpfvkf5dmq3hq6xk5hyha6djjkx2gc";
+ setupHaskellDepends = [ base Cabal ];
+ libraryHaskellDepends = [ base ];
+ description = "A mutable package";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"acme-now" = callPackage
({ mkDerivation, base, time }:
mkDerivation {
@@ -20944,8 +21298,8 @@ self: {
pname = "active";
version = "0.2.0.13";
sha256 = "1yw029rh0gb63bhwwjynbv173mny14is4cyjkrlvzvxwb0fi96jx";
- revision = "2";
- editedCabalFile = "1ml42hbvfhqzpdi1y5q6dqp4wq6zqb30f15r34n9ip9iv44qjwwf";
+ revision = "3";
+ editedCabalFile = "0jm8kkqa5k9nppis3jdx11nmds6w0x62rmnv5bn5q3b75llhnlc1";
libraryHaskellDepends = [
base lens linear semigroupoids semigroups vector
];
@@ -21030,18 +21384,18 @@ self: {
"ad" = callPackage
({ mkDerivation, array, base, Cabal, cabal-doctest, comonad
, containers, criterion, data-reify, directory, doctest, erf
- , filepath, free, nats, reflection, transformers
+ , filepath, free, nats, reflection, semigroups, transformers
}:
mkDerivation {
pname = "ad";
- version = "4.3.4";
- sha256 = "0r3qixsj624q5c88xlr444fn7z5c36m32ciyxz732lngg06pvwdz";
+ version = "4.3.5";
+ sha256 = "0q4dvi02k21jq8xf0ywgmcs5mph4hpx5s3y3pj839y0g3x5paplw";
revision = "1";
- editedCabalFile = "0rfxjifhaxvq8nv1n1l8wf49gh13ailcnyachffk7y55nqr0zqdf";
+ editedCabalFile = "10azjkyjx9gxz8pp6aapx2jkniyayns5qqdapb5vi7i7ykx6j92n";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
array base comonad containers data-reify erf free nats reflection
- transformers
+ semigroups transformers
];
testHaskellDepends = [ base directory doctest filepath ];
benchmarkHaskellDepends = [ base criterion erf ];
@@ -21188,6 +21542,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "adjunctions_4_4" = callPackage
+ ({ mkDerivation, array, base, comonad, containers, contravariant
+ , distributive, free, generic-deriving, hspec, hspec-discover, mtl
+ , profunctors, semigroupoids, semigroups, tagged, transformers
+ , transformers-compat, void
+ }:
+ mkDerivation {
+ pname = "adjunctions";
+ version = "4.4";
+ sha256 = "1sbal7cbhm12crfnfhkk322jnzgx7lhw3jzq0p463bipagsjwz2h";
+ libraryHaskellDepends = [
+ array base comonad containers contravariant distributive free mtl
+ profunctors semigroupoids semigroups tagged transformers
+ transformers-compat void
+ ];
+ testHaskellDepends = [ base distributive generic-deriving hspec ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "http://github.com/ekmett/adjunctions/";
+ description = "Adjunctions and representable functors";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"adler32" = callPackage
({ mkDerivation, base, bytestring, hspec, zlib }:
mkDerivation {
@@ -21288,6 +21665,7 @@ self: {
homepage = "https://github.com/michalkonecny/aern2";
description = "Multi-precision floats via MPFR";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aern2-real" = callPackage
@@ -21312,6 +21690,7 @@ self: {
homepage = "https://github.com/michalkonecny/aern2";
description = "Exact real numbers via Cauchy sequences and MPFR";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson_0_7_0_6" = callPackage
@@ -21518,6 +21897,7 @@ self: {
homepage = "https://github.com/thsutton/aeson-diff";
description = "Extract and apply patches to JSON documents";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"aeson-extra" = callPackage
@@ -21623,8 +22003,8 @@ self: {
({ mkDerivation, aeson, base }:
mkDerivation {
pname = "aeson-generic-compat";
- version = "0.0.1.0";
- sha256 = "1bfkj0hmnpw6f5iql86iky3ivj4hv7f8a317gv7g8l0k6m6mx86l";
+ version = "0.0.1.1";
+ sha256 = "1davhg48x4k9nsizpafjlicwryi05ijfh902bn35x76pay7alims";
libraryHaskellDepends = [ aeson base ];
description = "Compatible generic class names of Aeson";
license = stdenv.lib.licenses.bsd3;
@@ -21730,6 +22110,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "aeson-picker" = callPackage
+ ({ mkDerivation, aeson, base, hspec, lens, lens-aeson, text }:
+ mkDerivation {
+ pname = "aeson-picker";
+ version = "0.1.0.0";
+ sha256 = "1976cf67y0077gd1s13vrfws5w5mcak94dc6ygnl1pir6ysanaf7";
+ libraryHaskellDepends = [ aeson base lens lens-aeson text ];
+ testHaskellDepends = [ base hspec text ];
+ homepage = "https://github.com/ozzzzz/aeson-picker#readme";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"aeson-prefix" = callPackage
({ mkDerivation, aeson, base, bytestring, hspec, mtl, text
, unordered-containers, vector
@@ -21969,6 +22361,30 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "aeson-typescript" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, directory
+ , filepath, hspec, interpolate, mtl, process, tasty, tasty-ant-xml
+ , tasty-hspec, template-haskell, temporary, text, th-abstraction
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "aeson-typescript";
+ version = "0.1.0.3";
+ sha256 = "0f5s26fhkpcciqy5wcdsq123nzgcxf2dx9g2v0n9i6h3jkp5800b";
+ libraryHaskellDepends = [
+ aeson base containers interpolate mtl template-haskell text
+ th-abstraction unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers directory filepath hspec
+ interpolate mtl process tasty tasty-ant-xml tasty-hspec
+ template-haskell temporary text th-abstraction unordered-containers
+ ];
+ homepage = "https://github.com/codedownio/aeson-typescript#readme";
+ description = "Generate TypeScript definition files from your ADTs";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"aeson-utils" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, scientific
, text
@@ -22018,18 +22434,18 @@ self: {
}) {};
"affection" = callPackage
- ({ mkDerivation, babl, base, clock, containers, gegl, glib
- , monad-loops, monad-parallel, mtl, sdl2, text
+ ({ mkDerivation, base, bytestring, clock, containers, glib, linear
+ , monad-loops, monad-parallel, mtl, OpenGL, sdl2, stm, text, uuid
}:
mkDerivation {
pname = "affection";
- version = "0.0.0.6";
- sha256 = "0fc071zl68acm01ik4v1admy0hs4jp787kpadw9ddavwykmr6jdz";
+ version = "0.0.0.7";
+ sha256 = "0qnlh1ny4cysxzh45vsh1d49gk4kc2kzpdjrqnn3mh66wz2fc177";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- babl base clock containers gegl glib monad-loops monad-parallel mtl
- sdl2 text
+ base bytestring clock containers glib linear monad-loops
+ monad-parallel mtl OpenGL sdl2 stm text uuid
];
homepage = "https://github.com/nek0/affection#readme";
description = "A simple Game Engine using SDL";
@@ -22214,8 +22630,8 @@ self: {
({ mkDerivation, base, containers }:
mkDerivation {
pname = "agum";
- version = "2.6";
- sha256 = "1j2qlwnvg7rxjx8fk3y5n3wjkikv1d17p8grh4gzp4c5a7pn5kim";
+ version = "2.7";
+ sha256 = "1x1yd2wxff2am7g50nvwmk4slw6p31zl61mlm8rdgcjbds4a2qrk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base containers ];
@@ -22821,8 +23237,8 @@ self: {
}:
mkDerivation {
pname = "algebra";
- version = "4.3";
- sha256 = "1h61lvy9fkkzm2gpr78b09bid0yi1fd7xa4mx90jy2sd16gq6k1r";
+ version = "4.3.1";
+ sha256 = "090jaipyx5pcav2wqcqzds51fwx49l4c9cpp9nnk16bgkf92z615";
libraryHaskellDepends = [
adjunctions array base containers distributive mtl nats
semigroupoids semigroups tagged transformers void
@@ -23346,8 +23762,8 @@ self: {
({ mkDerivation, base, mmorph, transformers }:
mkDerivation {
pname = "alternators";
- version = "0.1.1.1";
- sha256 = "03ivs1iwqgyf5slhyv0alkvik3jn49dqbhqs1vi4h9gwdc9d8l4n";
+ version = "0.1.2.0";
+ sha256 = "19i2yhi6nsd2nl7sisbj6wrii5nw1z7xj7zk0fjmivyclnj03r5g";
libraryHaskellDepends = [ base mmorph transformers ];
homepage = "https://github.com/louispan/alternators#readme";
description = "Handy functions when using transformers";
@@ -23454,6 +23870,8 @@ self: {
pname = "amazonka";
version = "1.5.0";
sha256 = "0g5fb1kwydhhi4pvp4skc0l26gy0kdpbrl3pixmnml5d2fxa86pw";
+ revision = "1";
+ editedCabalFile = "0v4wfwrm0zjzm1g2gw9qi521hlvzg26dm79x03zy8i2aqg8rqgri";
libraryHaskellDepends = [
amazonka-core base bytestring conduit conduit-extra directory
exceptions http-conduit ini mmorph monad-control mtl resourcet
@@ -23982,6 +24400,8 @@ self: {
pname = "amazonka-core";
version = "1.5.0";
sha256 = "173mdmk3p9jqnskjf5g9r1kr568plrmshb6p17cq11n1wnngkxnk";
+ revision = "1";
+ editedCabalFile = "0w04b2cpshrv1r8nkw70y0n70wshzmnl0lp1khpj8qzzj1zxl1i2";
libraryHaskellDepends = [
aeson attoparsec base bifunctors bytestring case-insensitive
conduit conduit-extra cryptonite deepseq exceptions hashable
@@ -25069,8 +25489,8 @@ self: {
}:
mkDerivation {
pname = "amazonka-s3-streaming";
- version = "0.2.0.3";
- sha256 = "1pndy65mk3kjl51jr75k1dk182wsbzfd2q9zsvcxpalfs0nsaf30";
+ version = "0.2.0.4";
+ sha256 = "1lz9a4ra6mjk19spm4i014n076f9x557ax6dsjdg8kn868hqcj56";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -25871,8 +26291,8 @@ self: {
}:
mkDerivation {
pname = "animate";
- version = "0.3.0";
- sha256 = "040csdyzncfbdf46jy8mkgn2n4hd80na0jm4p3q954zhaqk2bvck";
+ version = "0.4.0";
+ sha256 = "1mzjvnr1q8lj380ijhqpnqpbqfz34bcv4frg1phsr478j55x17v4";
libraryHaskellDepends = [
aeson base bytestring containers text vector
];
@@ -26046,18 +26466,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "ansi-terminal_0_8_0_1" = callPackage
+ ({ mkDerivation, base, colour }:
+ mkDerivation {
+ pname = "ansi-terminal";
+ version = "0.8.0.1";
+ sha256 = "0na61wyqn686qvzy5xbi3c8i1ba5ps6qlwnkkigzhj3c2xf3bm0v";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base colour ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/feuerbach/ansi-terminal";
+ description = "Simple ANSI terminal support, with Windows compatibility";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ansi-wl-pprint" = callPackage
({ mkDerivation, ansi-terminal, base }:
mkDerivation {
pname = "ansi-wl-pprint";
- version = "0.6.8.1";
- sha256 = "0qxk0iibbyqk7fmrq5cbkr1269bd6vqbdmj2n8s5bvds0836mnnm";
- revision = "1";
- editedCabalFile = "0miriy5zkssjwg8zk1wzg7wx3l5ljzvrhga33m2iz7j4y0sb4fx7";
+ version = "0.6.8.2";
+ sha256 = "0gnb4mkqryv08vncxnj0bzwcnd749613yw3cxfzw6y3nsldp4c56";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ ansi-terminal base ];
- executableHaskellDepends = [ ansi-terminal base ];
homepage = "http://github.com/ekmett/ansi-wl-pprint";
description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output";
license = stdenv.lib.licenses.bsd3;
@@ -26067,8 +26500,8 @@ self: {
({ mkDerivation, ansi-terminal, base, hspec, QuickCheck }:
mkDerivation {
pname = "ansigraph";
- version = "0.3.0.4";
- sha256 = "0gyim5a4b0gc4z45hsbxwl3gn3xcad3068xwcgwh8gc4ikannki9";
+ version = "0.3.0.5";
+ sha256 = "03ks75ik0jyfz55iz3gcccxgg73v1dw2nn0myl40c2rc31mwz39f";
libraryHaskellDepends = [ ansi-terminal base ];
testHaskellDepends = [ base hspec QuickCheck ];
homepage = "https://github.com/BlackBrane/ansigraph";
@@ -26372,8 +26805,8 @@ self: {
}:
mkDerivation {
pname = "api-builder";
- version = "0.12.0.0";
- sha256 = "16abl6yph5a0kc9rn46ab0564d4xbsvlml45zryhvdswl4jr3jni";
+ version = "0.14.0.0";
+ sha256 = "12pr670c4zw8dhmj5vgsqr44mw2jz5kqdqn3alfqhmkmb13kzc4v";
libraryHaskellDepends = [
aeson base bifunctors bytestring HTTP http-client http-client-tls
http-types text tls transformers
@@ -27201,26 +27634,26 @@ self: {
}) {arbb_dev = null;};
"arbtt" = callPackage
- ({ mkDerivation, aeson, array, base, binary, bytestring
- , bytestring-progress, containers, deepseq, directory, filepath
- , libXScrnSaver, parsec, pcre-light, process-extras, strict, tasty
- , tasty-golden, tasty-hunit, terminal-progress-bar, time
- , transformers, unix, utf8-string, X11
+ ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring
+ , bytestring-progress, conduit, conduit-extra, containers, deepseq
+ , directory, exceptions, filepath, mtl, parsec, pcre-light
+ , process-extras, strict, tasty, tasty-golden, tasty-hunit
+ , terminal-progress-bar, time, transformers, unix, utf8-string, X11
}:
mkDerivation {
pname = "arbtt";
- version = "0.9.0.13";
- sha256 = "0ga0jq47s83w36ipmz1wdcrg6ir5z2klppx6kcxpmkikf8f85gl9";
+ version = "0.10";
+ sha256 = "0klxsxyq4yij11c9z11jgrarmz1fya2rpx0zax7kqpvc26xbc24n";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- aeson array base binary bytestring bytestring-progress containers
- deepseq directory filepath parsec pcre-light strict
- terminal-progress-bar time transformers unix utf8-string X11
+ aeson array attoparsec base binary bytestring bytestring-progress
+ conduit conduit-extra containers deepseq directory exceptions
+ filepath mtl parsec pcre-light strict terminal-progress-bar time
+ transformers unix utf8-string X11
];
- executableSystemDepends = [ libXScrnSaver ];
testHaskellDepends = [
- base binary bytestring containers deepseq directory parsec
+ base binary bytestring containers deepseq directory mtl parsec
pcre-light process-extras tasty tasty-golden tasty-hunit time
transformers unix utf8-string
];
@@ -27228,7 +27661,7 @@ self: {
description = "Automatic Rule-Based Time Tracker";
license = "GPL";
hydraPlatforms = stdenv.lib.platforms.none;
- }) {inherit (pkgs.xorg) libXScrnSaver;};
+ }) {};
"arcgrid" = callPackage
({ mkDerivation, base, parsec, parsec-numeric }:
@@ -27280,6 +27713,7 @@ self: {
];
description = "A library and programs for creating hardlinked incremental archives or backups";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {debian-mirror = null; help = null;};
@@ -27613,36 +28047,6 @@ self: {
}) {};
"arithmoi" = callPackage
- ({ mkDerivation, array, base, containers, criterion, exact-pi
- , ghc-prim, integer-gmp, integer-logarithms, mtl, QuickCheck
- , random, smallcheck, tasty, tasty-hunit, tasty-quickcheck
- , tasty-smallcheck, transformers
- }:
- mkDerivation {
- pname = "arithmoi";
- version = "0.6.0.0";
- sha256 = "14kcv5n9rm48f9vac333cbazy4hlpb0wqgb4fbv97ivxnjs7g22m";
- revision = "2";
- editedCabalFile = "1n2aqkcz2glzcmpiv6wi29pgvgkhqp5gwv134slhz9v3jj4ji1j3";
- configureFlags = [ "-f-llvm" ];
- libraryHaskellDepends = [
- array base containers exact-pi ghc-prim integer-gmp
- integer-logarithms mtl random
- ];
- testHaskellDepends = [
- base containers integer-gmp QuickCheck smallcheck tasty tasty-hunit
- tasty-quickcheck tasty-smallcheck transformers
- ];
- benchmarkHaskellDepends = [
- base containers criterion integer-logarithms random
- ];
- homepage = "https://github.com/cartazio/arithmoi";
- description = "Efficient basic number-theoretic functions";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "arithmoi_0_6_0_1" = callPackage
({ mkDerivation, array, base, containers, criterion, exact-pi
, ghc-prim, integer-gmp, integer-logarithms, mtl, QuickCheck
, random, smallcheck, tasty, tasty-hunit, tasty-quickcheck
@@ -27652,6 +28056,8 @@ self: {
pname = "arithmoi";
version = "0.6.0.1";
sha256 = "0dhr55r5vi10d9wqr054fy8rxp7h9z0kfpwvckaly0j90d6gvkqm";
+ revision = "2";
+ editedCabalFile = "1z16qjjz7qy0jribxzxn394f78b71lddv2sg199s2k8r8ndzkp0c";
configureFlags = [ "-f-llvm" ];
libraryHaskellDepends = [
array base containers exact-pi ghc-prim integer-gmp
@@ -28054,8 +28460,8 @@ self: {
}:
mkDerivation {
pname = "ascii-table";
- version = "0.3.0.0";
- sha256 = "13lr4ylrwxyv08qmrb20f5i2gazda18gcx804c8qhxywzjm4irf9";
+ version = "0.3.0.1";
+ sha256 = "01m7rdvjrn0mrqc100d81ji17f1h8lyqyyp5ydv2xzns8cmrcdzp";
libraryHaskellDepends = [
aeson base containers dlist hashable text unordered-containers
vector wl-pprint-extras
@@ -28285,6 +28691,7 @@ self: {
executableHaskellDepends = [ base containers ghc-binary parsec ];
description = "Haskell Assembler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {ghc-binary = null;};
@@ -28885,6 +29292,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "atomic-file-ops" = callPackage
+ ({ mkDerivation, base, directory, filelock, filepath
+ , io-string-like
+ }:
+ mkDerivation {
+ pname = "atomic-file-ops";
+ version = "0.3.0.0";
+ sha256 = "15gg5g9wnypj3hk5lhrqln2xcf86g84ivm8c8aflhmal26x86x44";
+ libraryHaskellDepends = [
+ base directory filelock filepath io-string-like
+ ];
+ homepage = "https://github.com/clintonmead/atomic-file-ops#readme";
+ description = "Functions to atomically write to files";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"atomic-modify" = callPackage
({ mkDerivation, base, stm }:
mkDerivation {
@@ -29021,36 +29444,71 @@ self: {
}) {};
"ats-format" = callPackage
- ({ mkDerivation, alex, ansi-terminal, ansi-wl-pprint, array, base
- , bytestring, Cabal, composition-prelude, criterion, deepseq
- , directory, file-embed, happy, hspec, htoml-megaparsec, lens
- , megaparsec, optparse-applicative, process, recursion-schemes
- , text, unordered-containers
+ ({ mkDerivation, alex, ansi-wl-pprint, base, Cabal, cli-setup
+ , directory, file-embed, happy, htoml-megaparsec, language-ats
+ , optparse-applicative, process, text, unordered-containers
}:
mkDerivation {
pname = "ats-format";
- version = "0.1.0.3";
- sha256 = "0pisqcx11n2xrdr5xq1y08fbx0hhnvhqngf2bh1wqpfr1ad4vj76";
+ version = "0.2.0.5";
+ sha256 = "1b5sawd2i890cnj5wkp99psfgk0l52wv82xa00vr25nb708k8pkw";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
- setupHaskellDepends = [ base Cabal directory lens process ];
+ setupHaskellDepends = [ base Cabal cli-setup ];
libraryHaskellDepends = [
- ansi-terminal ansi-wl-pprint array base bytestring
- composition-prelude deepseq directory file-embed htoml-megaparsec
- lens megaparsec optparse-applicative process recursion-schemes text
- unordered-containers
+ ansi-wl-pprint base directory file-embed htoml-megaparsec
+ language-ats optparse-applicative process text unordered-containers
];
libraryToolDepends = [ alex happy ];
executableHaskellDepends = [ base ];
- testHaskellDepends = [ base hspec ];
- benchmarkHaskellDepends = [ base criterion ];
homepage = "https://hub.darcs.net/vmchale/ats-format#readme";
description = "A source-code formatter for ATS";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ats-pkg" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, bytestring, Cabal, cli-setup
+ , composition-prelude, dhall, directory, filemanip, http-client
+ , http-client-tls, lens, optparse-applicative, parallel-io, process
+ , shake, shake-ats, shake-ext, tar, temporary, text, unix, zlib
+ }:
+ mkDerivation {
+ pname = "ats-pkg";
+ version = "1.4.0.6";
+ sha256 = "0lh6blxawz9crx7sgb2ih9ls7ca9z0lid15viczrzws44d6s3s2g";
+ isLibrary = true;
+ isExecutable = true;
+ setupHaskellDepends = [ base Cabal cli-setup ];
+ libraryHaskellDepends = [
+ ansi-wl-pprint base bytestring composition-prelude dhall directory
+ filemanip http-client http-client-tls lens optparse-applicative
+ parallel-io process shake shake-ats shake-ext tar temporary text
+ unix zlib
+ ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/vmchale/ats-pkg#readme";
+ description = "Package manager for ATS";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "ats-setup" = callPackage
+ ({ mkDerivation, base, Cabal, directory, http-client
+ , http-client-tls, parallel-io, tar, zlib
+ }:
+ mkDerivation {
+ pname = "ats-setup";
+ version = "0.1.0.2";
+ sha256 = "0si95yvwmjxy79z1ifqqxmps289l8xfqdzm9y430s341638ajivj";
+ libraryHaskellDepends = [
+ base Cabal directory http-client http-client-tls parallel-io tar
+ zlib
+ ];
+ description = "ATS scripts for Cabal builds";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"attempt" = callPackage
({ mkDerivation, base, failure }:
mkDerivation {
@@ -29137,8 +29595,8 @@ self: {
}:
mkDerivation {
pname = "attoparsec";
- version = "0.13.2.0";
- sha256 = "1wrwj359r0kgrcc2kw1yl9cpvkihhq0qm3i12kw39707s6m2x0pd";
+ version = "0.13.2.2";
+ sha256 = "0j6qcwd146yzlkc9mcvzvnixsyl65n2a68l28322q5v9p4g4g4yx";
libraryHaskellDepends = [
array base bytestring containers deepseq scientific text
transformers
@@ -29696,8 +30154,8 @@ self: {
({ mkDerivation, base, Cabal, directory, filepath }:
mkDerivation {
pname = "autoexporter";
- version = "1.1.2";
- sha256 = "1n7pzpxz3bb4l20hy53qdda4r1gwf6j47py08n9w568j7hygrklx";
+ version = "1.1.3";
+ sha256 = "0rkgb2vfznn6a28h40c26if43mzcavwd81myi27zbg8811g9bv6m";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base Cabal directory filepath ];
@@ -29979,6 +30437,7 @@ self: {
homepage = "https://github.com/data61/aviation-cessna172-diagrams";
description = "Diagrams for the Cessna 172 aircraft in aviation";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {aviation-cessna172-weight-balance = null;
aviation-units = null; aviation-weight-balance = null;};
@@ -30696,6 +31155,7 @@ self: {
];
description = "Specify axioms for type classes and quickCheck all available instances";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {control-invariants = null;};
@@ -31667,6 +32127,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "basement_0_0_6" = callPackage
+ ({ mkDerivation, base, ghc-prim }:
+ mkDerivation {
+ pname = "basement";
+ version = "0.0.6";
+ sha256 = "1xszp4nf55hr6iglqf1dx1yb9pgm3gpw81wwpjkwdn0602a3p8lw";
+ libraryHaskellDepends = [ base ghc-prim ];
+ homepage = "https://github.com/haskell-foundation/foundation";
+ description = "Foundation scrap box of array & string";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"basex-client" = callPackage
({ mkDerivation, base, network, pureMD5, utf8-string }:
mkDerivation {
@@ -31766,6 +32239,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "batch" = callPackage
+ ({ mkDerivation, async, base, hspec, lifted-async, lifted-base
+ , monad-control, mtl, stm, timespan, transformers-base
+ }:
+ mkDerivation {
+ pname = "batch";
+ version = "0.1.0.0";
+ sha256 = "18jphm2dpn5gz4514gk525rhhgwflzb6f913rwf08dqaqlshr39r";
+ libraryHaskellDepends = [
+ async base lifted-async lifted-base monad-control mtl stm timespan
+ transformers-base
+ ];
+ testHaskellDepends = [ base hspec stm timespan ];
+ homepage = "https://github.com/agrafix/batch#readme";
+ description = "Simplify queuing up data and processing it in batch";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"batch-rename" = callPackage
({ mkDerivation, base, directory, filepath, Glob }:
mkDerivation {
@@ -31930,8 +32421,8 @@ self: {
({ mkDerivation, base, bytestring, data-default, entropy, memory }:
mkDerivation {
pname = "bcrypt";
- version = "0.0.10";
- sha256 = "1dhfxpz0nbm39xi28khnvqvriwh1rpycc66p9k5hpggjipzzk604";
+ version = "0.0.11";
+ sha256 = "1vzwf9g6mvn4v1cn1m0axjyi2l0glnvv8c49v1j51dm7xn41fcz4";
libraryHaskellDepends = [
base bytestring data-default entropy memory
];
@@ -31939,6 +32430,54 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bdcs" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal
+ , codec-rpm, cond, conduit, conduit-combinators, conduit-extra
+ , containers, content-store, cpio-conduit, cryptonite, directory
+ , esqueleto, exceptions, filepath, gi-gio, gi-glib, gi-ostree
+ , gitrev, hspec, http-conduit, HUnit, memory, monad-control
+ , monad-logger, monad-loops, mtl, network-uri, ostree, parsec
+ , parsec-numbers, persistent, persistent-sqlite
+ , persistent-template, process, regex-pcre, resourcet, split, tar
+ , tar-conduit, temporary, text, time, unix, unordered-containers
+ , xml-conduit
+ }:
+ mkDerivation {
+ pname = "bdcs";
+ version = "0.1.1";
+ sha256 = "1sxksvn852glnq181cj8y2pw2gkfg7afvhxx4rshvkxb7y58v8w9";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal filepath ];
+ libraryHaskellDepends = [
+ aeson base bytestring codec-rpm cond conduit conduit-combinators
+ conduit-extra containers content-store cpio-conduit cryptonite
+ directory esqueleto exceptions filepath gi-gio gi-glib gi-ostree
+ gitrev http-conduit memory monad-control monad-logger mtl
+ network-uri parsec parsec-numbers persistent persistent-sqlite
+ persistent-template process regex-pcre resourcet split tar
+ tar-conduit temporary text time unix unordered-containers
+ xml-conduit
+ ];
+ libraryPkgconfigDepends = [ ostree ];
+ executableHaskellDepends = [
+ aeson aeson-pretty base bytestring cond conduit content-store
+ directory filepath monad-loops mtl network-uri persistent-sqlite
+ process regex-pcre text time
+ ];
+ testHaskellDepends = [
+ aeson base bytestring codec-rpm cond conduit conduit-combinators
+ containers directory esqueleto filepath gi-gio gi-glib hspec HUnit
+ monad-logger mtl parsec parsec-numbers persistent persistent-sqlite
+ persistent-template resourcet text time unix
+ ];
+ homepage = "https://github.com/weldr/bdcs";
+ description = "Tools for managing a content store of software packages";
+ license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) ostree;};
+
"bdd" = callPackage
({ mkDerivation, base, directory, HUnit, mtl, process
, test-framework, test-framework-hunit, transformers
@@ -32003,6 +32542,65 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "beam-core" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, dlist, free
+ , ghc-prim, hashable, microlens, mtl, network-uri, tasty
+ , tasty-hunit, text, time, vector-sized
+ }:
+ mkDerivation {
+ pname = "beam-core";
+ version = "0.6.0.0";
+ sha256 = "1pnxmy5xv84fng0391cckizwdrwzh0p0v3g0vc29z5vpksqr24kg";
+ libraryHaskellDepends = [
+ aeson base bytestring containers dlist free ghc-prim hashable
+ microlens mtl network-uri text time vector-sized
+ ];
+ testHaskellDepends = [
+ base bytestring tasty tasty-hunit text time
+ ];
+ homepage = "http://travis.athougies.net/projects/beam.html";
+ description = "Type-safe, feature-complete SQL query and manipulation interface for Haskell";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "beam-migrate" = callPackage
+ ({ mkDerivation, aeson, base, beam-core, bytestring, containers
+ , deepseq, dependent-map, dependent-sum, free, ghc-prim, hashable
+ , haskell-src-exts, mtl, parallel, pqueue, pretty, scientific, text
+ , time, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "beam-migrate";
+ version = "0.2.0.0";
+ sha256 = "17c1wh2ygbjlr8hrm0vnk2130kmzy795sswp7wyqkjjhfp4rzyzb";
+ libraryHaskellDepends = [
+ aeson base beam-core bytestring containers deepseq dependent-map
+ dependent-sum free ghc-prim hashable haskell-src-exts mtl parallel
+ pqueue pretty scientific text time unordered-containers vector
+ ];
+ homepage = "https://travis.athougies.net/projects/beam.html";
+ description = "SQL DDL support and migrations support library for Beam";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
+ "beam-sqlite" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, beam-core, beam-migrate
+ , bytestring, dlist, free, hashable, mtl, network-uri, scientific
+ , sqlite-simple, text, time
+ }:
+ mkDerivation {
+ pname = "beam-sqlite";
+ version = "0.2.0.0";
+ sha256 = "0a0z5nrgrc3m7c4b81avjnkf2y5i30z5yws0jrsw5gg2b682v0ry";
+ libraryHaskellDepends = [
+ aeson attoparsec base beam-core beam-migrate bytestring dlist free
+ hashable mtl network-uri scientific sqlite-simple text time
+ ];
+ homepage = "http://tathougies.github.io/beam/user-guide/backends/beam-sqlite/";
+ description = "Beam driver for SQLite";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"beam-th" = callPackage
({ mkDerivation, base, beam, doctest, doctest-discover, microlens
, mtl, tasty, tasty-hunit, template-haskell, text, th-expand-syns
@@ -32148,14 +32746,44 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "belka" = callPackage
+ ({ mkDerivation, aeson, aeson-value-parser, attoparsec, base
+ , base-prelude, base64-bytestring, bug, bytestring
+ , case-insensitive, hashable, http-client, http-client-tls
+ , http-media, http-types, iri, json-bytes-builder, mtl, potoki
+ , potoki-core, ptr, QuickCheck, quickcheck-instances, rerebase
+ , semigroups, tasty, tasty-hunit, tasty-quickcheck, text
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "belka";
+ version = "0.8";
+ sha256 = "1827pjvw13a2zk69rq98sddg70rp9hzjy79jkkc0xa4c6s7y5fny";
+ libraryHaskellDepends = [
+ aeson aeson-value-parser attoparsec base base-prelude
+ base64-bytestring bug bytestring case-insensitive hashable
+ http-client http-client-tls http-media http-types iri
+ json-bytes-builder mtl potoki potoki-core ptr semigroups text
+ transformers unordered-containers vector
+ ];
+ testHaskellDepends = [
+ bug iri potoki QuickCheck quickcheck-instances rerebase tasty
+ tasty-hunit tasty-quickcheck
+ ];
+ homepage = "https://github.com/nikita-volkov/belka";
+ description = "HTTP client DSL";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bench" = callPackage
({ mkDerivation, base, criterion, optparse-applicative, process
, silently, text, turtle
}:
mkDerivation {
pname = "bench";
- version = "1.0.7";
- sha256 = "1mn9lsix5ng9a6k0c26mw6fbqx4gap2c3cqzm30ariisdkh2bdaf";
+ version = "1.0.8";
+ sha256 = "18lyjkyz1yynnln92ihn9g28w2s2xmahaqg1lr1cr2v3kpv8ilvl";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -32445,6 +33073,26 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "bhoogle" = callPackage
+ ({ mkDerivation, base, brick, bytestring, containers, directory
+ , filepath, hoogle, lens, process, protolude, text, time, vector
+ , vty
+ }:
+ mkDerivation {
+ pname = "bhoogle";
+ version = "0.1.2.4";
+ sha256 = "0r19z0ywxnzymd23kr9skl287w1d0g4420rxwdpq087gw77a67wl";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base brick bytestring containers directory filepath hoogle lens
+ process protolude text time vector vty
+ ];
+ homepage = "https://github.com/githubuser/bhoogle#readme";
+ description = "Simple terminal GUI for local hoogle";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"bibdb" = callPackage
({ mkDerivation, alex, array, async, base, bibtex, bytestring
, containers, curl, download-curl, filepath, happy, microlens
@@ -32644,6 +33292,7 @@ self: {
homepage = "http://www.leksah.org";
description = "Leksah plugin base";
license = "LGPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {leksah-dummy = null; leksah-main = null;
leksah-plugin-pane = null;};
@@ -32983,6 +33632,8 @@ self: {
pname = "binary-orphans";
version = "0.1.8.0";
sha256 = "1k6067wn9zki7xvbslvxx8cq1wrmz3kjb3q3x8mxycc9v765fxgi";
+ revision = "1";
+ editedCabalFile = "1zgp08sikp71k9llcplkdrfhh2gn43gk7hx81nslixl5s91a1j9q";
libraryHaskellDepends = [
aeson base binary case-insensitive hashable scientific tagged text
text-binary time unordered-containers vector
@@ -33152,6 +33803,7 @@ self: {
];
description = "Format to store data using the binary transform";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {binary-transform = null;};
@@ -34275,15 +34927,15 @@ self: {
}:
mkDerivation {
pname = "biohazard";
- version = "0.6.16";
- sha256 = "05w44blv6bawkiw2vyb32swnv6wg92033xz9p03fhrc2yhl33pps";
+ version = "1.0.0";
+ sha256 = "0cc855d3h1fh52ldvqzwf3f834g8singavvpk1ir157fgg8qjz3g";
libraryHaskellDepends = [
async attoparsec base base-prelude binary bytestring containers
directory exceptions filepath hashable primitive random scientific
stm text transformers unix unordered-containers vector
vector-algorithms vector-th-unbox zlib
];
- homepage = "http://github.com/udo-stenzel/biohazard";
+ homepage = "https://bitbucket.org/ustenzel/biohazard";
description = "bioinformatics support library";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -34444,6 +35096,37 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "bishbosh" = callPackage
+ ({ mkDerivation, array, base, Cabal, containers, data-default
+ , deepseq, directory, extra, factory, filepath, HUnit, hxt
+ , hxt-relaxng, mtl, parallel, polyparse, QuickCheck, random, time
+ , toolshed, unix
+ }:
+ mkDerivation {
+ pname = "bishbosh";
+ version = "0.0.0.2";
+ sha256 = "18smrav39awp25j43c7k9r1laxwf7iix61qb2yi5h2b6djbgxq9h";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ array base Cabal containers data-default deepseq extra factory
+ filepath hxt mtl parallel polyparse random time toolshed
+ ];
+ executableHaskellDepends = [
+ array base Cabal containers data-default deepseq directory extra
+ factory filepath hxt hxt-relaxng mtl parallel polyparse random time
+ toolshed unix
+ ];
+ testHaskellDepends = [
+ array base Cabal containers data-default extra filepath HUnit hxt
+ mtl polyparse QuickCheck random toolshed
+ ];
+ homepage = "https://functionalley.eu/BishBosh/bishbosh.html";
+ description = "Plays chess";
+ license = "GPL";
+ }) {};
+
"bit-array" = callPackage
({ mkDerivation, base, directory, doctest, filepath, numeric-qq }:
mkDerivation {
@@ -34643,6 +35326,7 @@ self: {
homepage = "https://github.com/runeksvendsen/bitcoin-payment-channel";
description = "Instant, two-party Bitcoin payments";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {blockchain-restful-address-index-api = null;};
@@ -35013,6 +35697,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "bittrex" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, flow, http-client-tls
+ , lens, lens-aeson, scientific, SHA, split, text, time, turtle
+ , wreq
+ }:
+ mkDerivation {
+ pname = "bittrex";
+ version = "0.6.0.0";
+ sha256 = "02h8r753dkkkgpzxhycdmjpccdqfsc5gnmw6qi9kpl1165jrd2fd";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring flow http-client-tls lens lens-aeson
+ scientific SHA split text time wreq
+ ];
+ executableHaskellDepends = [ base text turtle ];
+ homepage = "https://github.com/dmjio/bittrex";
+ description = "Bindings for the Bittrex API";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"bitvec" = callPackage
({ mkDerivation, base, HUnit, primitive, QuickCheck, test-framework
, test-framework-hunit, test-framework-quickcheck2, vector
@@ -35072,13 +35777,40 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bitx-bitcoin_0_12_0_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, deepseq, directory
+ , doctest, exceptions, hspec, http-client, http-client-tls
+ , http-types, microlens, microlens-th, network, QuickCheck, safe
+ , scientific, split, text, time
+ }:
+ mkDerivation {
+ pname = "bitx-bitcoin";
+ version = "0.12.0.0";
+ sha256 = "0wf86pkpm5vlcv5cci2sn6by0ajmq44b3azxc41zivqdpf5kkwii";
+ libraryHaskellDepends = [
+ aeson base bytestring deepseq exceptions http-client
+ http-client-tls http-types microlens microlens-th network
+ QuickCheck scientific split text time
+ ];
+ testHaskellDepends = [
+ aeson base bytestring directory doctest hspec http-client
+ http-types microlens safe text time
+ ];
+ homepage = "https://github.com/tebello-thejane/bitx.hs";
+ description = "A Haskell library for working with the BitX bitcoin exchange";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bizzlelude" = callPackage
- ({ mkDerivation, base, containers, directory, text }:
+ ({ mkDerivation, base-noprelude, containers, directory, text }:
mkDerivation {
pname = "bizzlelude";
- version = "1.0.3";
- sha256 = "135wbjk79j0ayipkpv761ybnsq1001mvbcry3pl8fg1s8zbdaqfh";
- libraryHaskellDepends = [ base containers directory text ];
+ version = "1.1.0";
+ sha256 = "1vpdh9fm4jrl7zkzp8wh8ng3x6glwk3h88fbjmajz6qpqw3z2w4h";
+ libraryHaskellDepends = [
+ base-noprelude containers directory text
+ ];
homepage = "http://github.com/TheBizzle";
description = "A lousy Prelude replacement by a lousy dude";
license = stdenv.lib.licenses.bsd3;
@@ -35258,21 +35990,22 @@ self: {
"blank-canvas" = callPackage
({ mkDerivation, aeson, base, base-compat, base64-bytestring
, bytestring, colour, containers, data-default-class, directory
- , http-types, kansas-comet, mime-types, process, scotty, shake, stm
- , text, text-show, time, transformers, unix, vector, wai, wai-extra
- , warp
+ , http-types, kansas-comet, mime-types, process, scotty, semigroups
+ , shake, stm, text, text-show, time, transformers, unix, vector
+ , wai, wai-extra, warp
}:
mkDerivation {
pname = "blank-canvas";
- version = "0.6.1";
- sha256 = "06jsbqbd67hyb1k2yv0iqn11rhqhycl1c9afrnmwh05bic9wsdf6";
- revision = "2";
- editedCabalFile = "1lb4q70s3xgwzkirgci6b5flq8y9lfj8qspx52hl20zrwvhi6h1n";
+ version = "0.6.2";
+ sha256 = "1qhdvxia8wlnv0ss9dsrxdfw3qsf376ypnpsijz7vxkj9dmzyq84";
+ revision = "1";
+ editedCabalFile = "0zc84pjrmb2xpsvavvf950vrwyd6nlfj3x2hi930wq1kjm7pr4ps";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base base-compat base64-bytestring bytestring colour
containers data-default-class http-types kansas-comet mime-types
- scotty stm text text-show transformers vector wai wai-extra warp
+ scotty semigroups stm text text-show transformers vector wai
+ wai-extra warp
];
testHaskellDepends = [
base containers directory process shake stm text time unix vector
@@ -35280,6 +36013,7 @@ self: {
homepage = "https://github.com/ku-fpg/blank-canvas/wiki";
description = "HTML5 Canvas Graphics Library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blas" = callPackage
@@ -35549,6 +36283,7 @@ self: {
homepage = "http://github.com/mruegenberg/blaze-html-truncate";
description = "A truncator for blaze-html";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"blaze-json" = callPackage
@@ -35576,17 +36311,16 @@ self: {
"blaze-markup" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, containers, HUnit
- , QuickCheck, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text
+ , QuickCheck, tasty, tasty-hunit, tasty-quickcheck, text
}:
mkDerivation {
pname = "blaze-markup";
- version = "0.8.0.0";
- sha256 = "03sl7xs6vk4zxbjszgyjpsppi1cknswg7z7rswz2f0rq62wwpq8r";
+ version = "0.8.2.0";
+ sha256 = "0m3h3ryxj5r74mv5g5dnfq5jbbwmvkl7ray18vi20d5vd93sydj4";
libraryHaskellDepends = [ base blaze-builder bytestring text ];
testHaskellDepends = [
- base blaze-builder bytestring containers HUnit QuickCheck
- test-framework test-framework-hunit test-framework-quickcheck2 text
+ base blaze-builder bytestring containers HUnit QuickCheck tasty
+ tasty-hunit tasty-quickcheck text
];
homepage = "http://jaspervdj.be/blaze";
description = "A blazingly fast markup combinator library for Haskell";
@@ -35866,8 +36600,8 @@ self: {
}:
mkDerivation {
pname = "bloodhound";
- version = "0.15.0.0";
- sha256 = "05q2zxmrxxqmi4vr98dvgfly8gir5h4iaimb3lwiflk0pw8nfn6n";
+ version = "0.15.0.1";
+ sha256 = "0g85fp2vppx6p1zbx506jnsfcik8q7nmc98fwrhcckgvkbdpi2v8";
libraryHaskellDepends = [
aeson base blaze-builder bytestring containers data-default-class
exceptions hashable http-client http-types mtl mtl-compat
@@ -35885,6 +36619,36 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "bloodhound_0_15_0_2" = callPackage
+ ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers
+ , data-default-class, errors, exceptions, generics-sop, hashable
+ , hspec, http-client, http-types, mtl, mtl-compat, network-uri
+ , QuickCheck, quickcheck-properties, scientific, semigroups
+ , temporary, text, time, transformers, unix-compat
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "bloodhound";
+ version = "0.15.0.2";
+ sha256 = "17xw085k72dmw1q4cbqjs07gvvwwfsijcs9lsb3smxxhri1s229i";
+ libraryHaskellDepends = [
+ aeson base blaze-builder bytestring containers data-default-class
+ exceptions hashable http-client http-types mtl mtl-compat
+ network-uri scientific semigroups text time transformers
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers errors exceptions generics-sop
+ hspec http-client http-types mtl network-uri QuickCheck
+ quickcheck-properties semigroups temporary text time unix-compat
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/bitemyapp/bloodhound";
+ description = "ElasticSearch client library for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bloodhound-amazonka-auth" = callPackage
({ mkDerivation, aeson, amazonka, amazonka-core
, amazonka-elasticsearch, base, bloodhound, exceptions, http-client
@@ -36387,8 +37151,8 @@ self: {
}:
mkDerivation {
pname = "bookkeeping-jp";
- version = "0.1.1.0";
- sha256 = "1hmh8q041p0f4v58ywpwd833v7k0jg900r1la3wh4x1h08bxmbxm";
+ version = "0.1.1.1";
+ sha256 = "1mnjwfdzhp1kbd02g7vdc1x2rrm10hzi96j6ljin17vynh06dmm0";
libraryHaskellDepends = [
base bookkeeping mono-traversable text time
];
@@ -37039,7 +37803,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "brick_0_30" = callPackage
+ "brick_0_33" = callPackage
({ mkDerivation, base, config-ini, containers, contravariant
, data-clist, deepseq, dlist, microlens, microlens-mtl
, microlens-th, stm, template-haskell, text, text-zipper
@@ -37047,8 +37811,8 @@ self: {
}:
mkDerivation {
pname = "brick";
- version = "0.30";
- sha256 = "0annvmb68vazmk3cabk01n9i00lifijxmxkbq1280yhack2q0mzz";
+ version = "0.33";
+ sha256 = "0052hdwvqrprf5911axikxpigbc1iv3h4kq3zhrnvpy038wjbis1";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -37065,6 +37829,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "brick-skylighting" = callPackage
+ ({ mkDerivation, base, brick, containers, skylighting, text, vty }:
+ mkDerivation {
+ pname = "brick-skylighting";
+ version = "0.1";
+ sha256 = "189qpq2cg45binlb9nq43h05g97ch56855xlz2givxw8psb0kb1i";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base brick containers skylighting text vty
+ ];
+ executableHaskellDepends = [ base brick skylighting text vty ];
+ homepage = "https://github.com/jtdaugherty/brick-skylighting/";
+ description = "Show syntax-highlighted text in your Brick UI";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"bricks" = callPackage
({ mkDerivation, base, containers, doctest, hedgehog, parsec
, template-haskell, text
@@ -37842,6 +38624,8 @@ self: {
pname = "butcher";
version = "1.2.1.0";
sha256 = "0vam5lqbp2k8r56d997bcp63lnsc4bbs7yd4lzjvibimr38g032w";
+ revision = "3";
+ editedCabalFile = "1faax0pipbywayjn961id2bc19y109bq0ny2hl1p9mh209iccnza";
libraryHaskellDepends = [
base bifunctors containers deque either extra free microlens
microlens-th mtl multistate pretty transformers unsafe void
@@ -38221,8 +39005,8 @@ self: {
({ mkDerivation, base, bytestring, terminal-progress-bar, time }:
mkDerivation {
pname = "bytestring-progress";
- version = "1.0.7";
- sha256 = "0c1pz39jp9p8ppajnj3f2phph12nvhhjj7iz8sm580gzdl5rbc4p";
+ version = "1.0.8";
+ sha256 = "0zqb9aanlwq2ddcn7n8xar73fjb04xvfym7k5pjah2cs1lh3cv8l";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base bytestring terminal-progress-bar time
@@ -38702,6 +39486,7 @@ self: {
doHaddock = false;
description = "placeholder for Cabal package, you want the upper case Cabal";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {youProbablyWantCapitalCabal = null;};
@@ -38725,19 +39510,21 @@ self: {
}) {};
"cabal-bounds" = callPackage
- ({ mkDerivation, base, Cabal, cabal-lenses, cmdargs, directory
- , either, filepath, Glob, lens, process, strict, tasty
- , tasty-golden, transformers, unordered-containers
+ ({ mkDerivation, aeson, base, bytestring, Cabal, cabal-lenses
+ , cmdargs, directory, either, filepath, Glob, lens, lens-aeson
+ , process, strict, tasty, tasty-golden, text, transformers
+ , unordered-containers
}:
mkDerivation {
pname = "cabal-bounds";
- version = "1.2.0";
- sha256 = "1lbkfz5sw292br1zcki2r3qpzc1q5hk3h40xkbbhflqmw3m1h0fj";
+ version = "1.5.0";
+ sha256 = "0qkrrbv8b0ij4hrqzlzzkn2rislz77kbvqb67mh0pnlfrn77kwy7";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base Cabal cabal-lenses cmdargs directory either filepath lens
- strict transformers unordered-containers
+ aeson base bytestring Cabal cabal-lenses cmdargs directory either
+ filepath lens lens-aeson strict text transformers
+ unordered-containers
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
@@ -38755,8 +39542,8 @@ self: {
}:
mkDerivation {
pname = "cabal-cargs";
- version = "0.8.1";
- sha256 = "0xzzxzh41k8h6sf04b6j49b44c68gvghh0slifywj171ip4zv5g3";
+ version = "0.9.0";
+ sha256 = "0w371991841m4d9r73nr86j4jnr0jilj9jnvkmgh9a055vyi573s";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -38898,14 +39685,27 @@ self: {
({ mkDerivation, base, Cabal, directory, filepath }:
mkDerivation {
pname = "cabal-doctest";
- version = "1.0.4";
- sha256 = "03sawamkp95jycq9sah72iw525pdndb3x4h489zf4s3ir9avds3d";
+ version = "1.0.5";
+ sha256 = "0x3m97q3xjmvf601vzkx4a8sl77x1y8jf0lwbq67181s37jp9asm";
libraryHaskellDepends = [ base Cabal directory filepath ];
homepage = "https://github.com/phadej/cabal-doctest";
description = "A Setup.hs helper for doctests running";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cabal-doctest_1_0_6" = callPackage
+ ({ mkDerivation, base, Cabal, directory, filepath }:
+ mkDerivation {
+ pname = "cabal-doctest";
+ version = "1.0.6";
+ sha256 = "0bgd4jdmzxq5y465r4sf4jv2ix73yvblnr4c9wyazazafddamjny";
+ libraryHaskellDepends = [ base Cabal directory filepath ];
+ homepage = "https://github.com/phadej/cabal-doctest";
+ description = "A Setup.hs helper for doctests running";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"cabal-file-th" = callPackage
({ mkDerivation, base, Cabal, directory, pretty, template-haskell
}:
@@ -38974,35 +39774,35 @@ self: {
"cabal-helper" = callPackage
({ mkDerivation, base, bytestring, Cabal, cabal-install, containers
- , directory, extra, filepath, ghc-prim, mtl, process
- , template-haskell, temporary, transformers, unix, utf8-string
+ , directory, exceptions, filepath, ghc, ghc-paths, ghc-prim, mtl
+ , process, semigroupoids, template-haskell, temporary, transformers
+ , unix, unix-compat, utf8-string
}:
mkDerivation {
pname = "cabal-helper";
- version = "0.7.3.0";
- sha256 = "194j278109q5wdp0kl85y172n3c8hg0sms9gxfn2kl2x43smah3r";
- revision = "1";
- editedCabalFile = "0jhv5hx807zqrsa7fpzmhrhl6l1zjrpm96bvfsq0sq1bmi9y9h0y";
+ version = "0.8.0.0";
+ sha256 = "050g5y74ldpv8haj8grqpk2cw72l3gm0hypza72f556dl9j5hz2m";
isLibrary = true;
isExecutable = true;
- setupHaskellDepends = [
- base Cabal containers directory filepath process template-haskell
- transformers
- ];
+ setupHaskellDepends = [ base Cabal directory filepath ];
libraryHaskellDepends = [
- base Cabal directory filepath ghc-prim mtl process transformers
+ base Cabal directory filepath ghc-prim mtl process semigroupoids
+ transformers unix unix-compat
];
executableHaskellDepends = [
- base bytestring Cabal directory filepath ghc-prim mtl process
- template-haskell temporary transformers utf8-string
+ base bytestring Cabal containers directory exceptions filepath
+ ghc-prim mtl process template-haskell temporary transformers unix
+ unix-compat utf8-string
];
+ executableToolDepends = [ cabal-install ];
testHaskellDepends = [
- base bytestring Cabal directory extra filepath ghc-prim mtl process
- template-haskell temporary transformers unix utf8-string
+ base bytestring Cabal directory exceptions filepath ghc ghc-paths
+ ghc-prim mtl process template-haskell temporary transformers unix
+ unix-compat utf8-string
];
testToolDepends = [ cabal-install ];
doCheck = false;
- description = "Simple interface to some of Cabal's configuration state used by ghc-mod";
+ description = "Simple interface to some of Cabal's configuration state, mainly used by ghc-mod";
license = stdenv.lib.licenses.agpl3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -39138,8 +39938,8 @@ self: {
}:
mkDerivation {
pname = "cabal-lenses";
- version = "0.4.9";
- sha256 = "0f4250cssh42xvrr6npnv71303pxkhv3k26bh6j2ifwz489nmfsr";
+ version = "0.7.0";
+ sha256 = "07xyn4sy2snj8a5983p6g6w9pwklzmd3w9wzj02ig4pdnz7682ls";
libraryHaskellDepends = [
base Cabal either lens strict system-fileio system-filepath text
transformers unordered-containers
@@ -39237,25 +40037,26 @@ self: {
}) {};
"cabal-plan" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, base, base16-bytestring
- , bytestring, containers, directory, filepath, mtl
- , optparse-applicative, text
+ ({ mkDerivation, aeson, ansi-terminal, base, base-compat
+ , base-orphans, base16-bytestring, bytestring, containers
+ , directory, filepath, mtl, optparse-applicative, parsec, text
+ , vector
}:
mkDerivation {
pname = "cabal-plan";
- version = "0.2.0.0";
- sha256 = "1hxsrk6avv69gqajx94n2nzlivhy3ywwmlx6c0w2nnaz854j1ya0";
+ version = "0.3.0.0";
+ sha256 = "1axi3a60zq08d760w2x6akmszad599kij0r8zmlq8pin9mmmggls";
+ configureFlags = [ "-fexe" ];
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson base base16-bytestring bytestring containers directory
- filepath text
+ aeson base base-compat base-orphans base16-bytestring bytestring
+ containers directory filepath text vector
];
executableHaskellDepends = [
- ansi-terminal base bytestring containers mtl optparse-applicative
- text
+ ansi-terminal base base-compat bytestring containers mtl
+ optparse-applicative parsec text vector
];
- homepage = "https://github.com/hvr/cabal-plan";
description = "Library and utiltity for processing cabal's plan.json file";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -39462,8 +40263,8 @@ self: {
}:
mkDerivation {
pname = "cabal-toolkit";
- version = "0.0.3";
- sha256 = "1l0ak8jch6hvmk5phibadzphwac60f00l1rkq03irifqs17c9a1f";
+ version = "0.0.4";
+ sha256 = "04afwsbbqsw9lj7flbnrfwy3qbv1c9nkwm65ylspy2nzf9v06ljj";
libraryHaskellDepends = [
base binary bytestring Cabal containers ghc template-haskell
];
@@ -39574,19 +40375,19 @@ self: {
"cabal2nix" = callPackage
({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal
- , cabal-doctest, containers, deepseq, directory
- , distribution-nixpkgs, doctest, filepath, hackage-db, hopenssl
- , hpack, language-nix, lens, monad-par, monad-par-extras, mtl
- , optparse-applicative, pretty, process, split, text, time
- , transformers, utf8-string, yaml
+ , containers, deepseq, directory, distribution-nixpkgs, filepath
+ , hackage-db, hopenssl, hpack, language-nix, lens, monad-par
+ , monad-par-extras, mtl, optparse-applicative, pretty, process
+ , split, text, time, transformers, utf8-string, yaml
}:
mkDerivation {
pname = "cabal2nix";
- version = "2.7";
- sha256 = "1ypzldvifqm4nv9bwzvm5pfsxxn4mp19z50fpkxk84fhb5pb6nbd";
+ version = "2.8.1";
+ sha256 = "1ahdqyiw76fixk90bi1b87ym5ii09fskpk0q9f9csbdmjif945x7";
+ revision = "1";
+ editedCabalFile = "0pq2cns1q7hbxd7gpyy643vaz8pcc7l96vlw23y30hpdgcnn23d3";
isLibrary = true;
isExecutable = true;
- setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
aeson ansi-wl-pprint base bytestring Cabal containers deepseq
directory distribution-nixpkgs filepath hackage-db hopenssl hpack
@@ -39594,17 +40395,9 @@ self: {
time transformers yaml
];
executableHaskellDepends = [
- aeson ansi-wl-pprint base bytestring Cabal containers deepseq
- directory distribution-nixpkgs filepath hackage-db hopenssl hpack
- language-nix lens monad-par monad-par-extras mtl
- optparse-applicative pretty process split text time transformers
- utf8-string yaml
- ];
- testHaskellDepends = [
- aeson ansi-wl-pprint base bytestring Cabal containers deepseq
- directory distribution-nixpkgs doctest filepath hackage-db hopenssl
- hpack language-nix lens optparse-applicative pretty process split
- text time transformers yaml
+ aeson base bytestring Cabal containers directory
+ distribution-nixpkgs filepath hopenssl language-nix lens monad-par
+ monad-par-extras mtl optparse-applicative pretty utf8-string
];
homepage = "https://github.com/nixos/cabal2nix#readme";
description = "Convert Cabal files into Nix build instructions";
@@ -39613,23 +40406,24 @@ self: {
}) {};
"cabal2spec" = callPackage
- ({ mkDerivation, base, bytestring, Cabal, directory, filepath
- , haskell98, old-locale, process, tar, time, unix, Unixutils, zlib
+ ({ mkDerivation, base, Cabal, filepath, optparse-applicative, tasty
+ , tasty-golden, time
}:
mkDerivation {
pname = "cabal2spec";
- version = "1.0";
- sha256 = "08y8rwj86n7f3bqfv2ximlx8qas12zspiz6ix8gg01whsry43nsj";
- isLibrary = false;
+ version = "2.0.0";
+ sha256 = "16xvv9qg1rxxnb9mdymx574kx6awhrn855x59ihl27bzp2q2pa53";
+ isLibrary = true;
isExecutable = true;
+ libraryHaskellDepends = [ base Cabal filepath time ];
executableHaskellDepends = [
- base bytestring Cabal directory filepath haskell98 old-locale
- process tar time unix Unixutils zlib
+ base Cabal filepath optparse-applicative
];
- homepage = "https://fedorahosted.org/cabal2spec/";
- description = "Generates RPM Spec files from cabal files";
- license = "GPL";
- hydraPlatforms = stdenv.lib.platforms.none;
+ testHaskellDepends = [ base Cabal filepath tasty tasty-golden ];
+ homepage = "https://github.com/peti/cabal2spec";
+ description = "Convert Cabal files into rpm spec files";
+ license = stdenv.lib.licenses.gpl3;
+ maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
"cabalQuery" = callPackage
@@ -39790,8 +40584,8 @@ self: {
}:
mkDerivation {
pname = "cache";
- version = "0.1.0.0";
- sha256 = "1l7vn3fnspbnm3qrrxai7ldcy63wkppa4amspxhpqaajch5f97hl";
+ version = "0.1.0.1";
+ sha256 = "0bv7s9lffhggh0z5ad03ryqzq6bcqga1zg4c6f57i7hh9q8161qd";
libraryHaskellDepends = [
base clock hashable stm transformers unordered-containers
];
@@ -40456,6 +41250,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "capataz" = callPackage
+ ({ mkDerivation, async, base, bytestring, data-default, pretty-show
+ , protolude, safe-exceptions, stm, tasty, tasty-hunit, tasty-rerun
+ , tasty-smallcheck, teardown, text, time, unordered-containers
+ , uuid, vector
+ }:
+ mkDerivation {
+ pname = "capataz";
+ version = "0.0.0.2";
+ sha256 = "0d6k13qqm30rcs27qr6q8p0a4wlqw75qyfmk9x2s6zhydl4cwb85";
+ libraryHaskellDepends = [
+ async base bytestring data-default protolude safe-exceptions stm
+ teardown text time unordered-containers uuid vector
+ ];
+ testHaskellDepends = [
+ async base bytestring data-default pretty-show protolude
+ safe-exceptions stm tasty tasty-hunit tasty-rerun tasty-smallcheck
+ teardown text time unordered-containers uuid vector
+ ];
+ homepage = "https://github.com/roman/Haskell-capataz#readme";
+ description = "OTP-like supervision trees in Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"capped-list" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -40821,6 +41640,8 @@ self: {
pname = "case-insensitive";
version = "1.2.0.10";
sha256 = "0v1hclvv0516fnlj5j2izd9xmakl7dshi9cb32iz6dgvzx01qck6";
+ revision = "1";
+ editedCabalFile = "153x2i7gw7lyhydlf0924vfxmkk53r65c40104bbha2bhp1vj7fi";
libraryHaskellDepends = [ base bytestring deepseq hashable text ];
testHaskellDepends = [
base bytestring HUnit test-framework test-framework-hunit text
@@ -41207,6 +42028,8 @@ self: {
pname = "cassava-megaparsec";
version = "1.0.0";
sha256 = "14d1idyw4pm8gq41383sy6cid6v1dr9zc7wviy4vd786406j2n28";
+ revision = "1";
+ editedCabalFile = "0dk6bxyvlg0iq83m81cbyysiydcj3dsvhlishjc119hzpy8g8xd6";
libraryHaskellDepends = [
base bytestring cassava containers megaparsec unordered-containers
vector
@@ -41220,6 +42043,29 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "cassava-records" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, cassava, containers
+ , foldl, HUnit, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
+ , template-haskell, text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "cassava-records";
+ version = "0.1.0.4";
+ sha256 = "13dgcqrlvcqifgisfk80f9siwzzbk96jhhbrnmrpmg95270k5y0i";
+ libraryHaskellDepends = [
+ attoparsec base bytestring cassava foldl template-haskell text
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ attoparsec base bytestring cassava containers foldl HUnit
+ QuickCheck tasty tasty-hunit tasty-quickcheck template-haskell text
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/gdevanla/cassava-records#readme";
+ description = "Auto-generation of records data type";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cassava-streams" = callPackage
({ mkDerivation, base, bytestring, cassava, io-streams, QuickCheck
, tasty, tasty-quickcheck, vector
@@ -41387,10 +42233,8 @@ self: {
({ mkDerivation, alg, base }:
mkDerivation {
pname = "category";
- version = "0.2.0.0";
- sha256 = "1zl7jsc99wqdw6fibxr9l3zf7xprkh5q1681gx6d5kvj9cfahcav";
- revision = "1";
- editedCabalFile = "0j24ymqy443wx7r5w8xklqsp1x133pwlwfni92qm0im66flfdb44";
+ version = "0.2.0.1";
+ sha256 = "0v5b15lgbdjrqpln532kw2d4isl5lf633jbld3clcp7c71vb7l07";
libraryHaskellDepends = [ alg base ];
description = "Categorical types and classes";
license = stdenv.lib.licenses.bsd3;
@@ -41492,8 +42336,8 @@ self: {
}:
mkDerivation {
pname = "cayley-client";
- version = "0.4.1";
- sha256 = "11q92jbc4sgvif6akd5vvsdj3ncx0xhwk0mimyc55m4m7srjdplq";
+ version = "0.4.2";
+ sha256 = "1pzsr7jcqsi27mnxgq4y5np4ysig29cmk27iqp0m73xj5fiss6z8";
libraryHaskellDepends = [
aeson attoparsec base binary bytestring exceptions http-client
http-conduit lens lens-aeson mtl text transformers
@@ -41755,8 +42599,8 @@ self: {
}:
mkDerivation {
pname = "celtchar";
- version = "0.1.2.0";
- sha256 = "1p53fyv15vvch6zjv2mgycj9wpcxkxpfbwkmbi7dpjgi65wyaz97";
+ version = "0.1.3.0";
+ sha256 = "1f67vi6kjjhnnr4kxnzgkva1qvcadx9968cmac3iix2g56xs26wn";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -41807,8 +42651,8 @@ self: {
}:
mkDerivation {
pname = "cereal";
- version = "0.5.4.0";
- sha256 = "1rzyr8r9pjlgas5pc8n776r22i0ficanq05ypqrs477jxxd6rjns";
+ version = "0.5.5.0";
+ sha256 = "08k8y6nf3n8h8gzw4a44mssy7rhgpmfj28lhczjz4vgszc7k55qb";
libraryHaskellDepends = [
array base bytestring containers ghc-prim
];
@@ -42181,8 +43025,8 @@ self: {
}:
mkDerivation {
pname = "cgrep";
- version = "6.6.17";
- sha256 = "18si8gmgkfzky9rd53llz489j2wgzaw2b7hgr1djlc9yvp5h7482";
+ version = "6.6.22";
+ sha256 = "0nh8smbhwkqygxdv61yd82n26q6d4sdh4zzixcq5pczzacfzp8j9";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -42273,8 +43117,8 @@ self: {
({ mkDerivation, async, base, stm }:
mkDerivation {
pname = "chan";
- version = "0.0.2";
- sha256 = "1qig63k7iarmmfjnm3zl32b9268ix9bjmhh2gf99hknr0c5h7dmc";
+ version = "0.0.3";
+ sha256 = "0ci20y0wd232qnh1mql3vjqml13mkrpm9dgv005wcgym7w18isgr";
libraryHaskellDepends = [ async base stm ];
testHaskellDepends = [ async base stm ];
homepage = "https://github.com/athanclark/chan#readme";
@@ -42389,24 +43233,25 @@ self: {
({ mkDerivation, base, colour, containers, data-default
, diagrams-lib, diagrams-svg, foldl, formatting, lens, linear
, mwc-probability, mwc-random, numhask, numhask-range, palette
- , primitive, protolude, SVGFonts, tasty, tasty-hspec, tdigest, text
+ , primitive, protolude, scientific, SVGFonts, tasty, tasty-hspec
+ , tdigest, text
}:
mkDerivation {
pname = "chart-unit";
- version = "0.5.4";
- sha256 = "1zyfh713sr8bhyn6v2la52xzyq7frg0igwxhfl8ym8l7nhxrrby7";
+ version = "0.5.5.0";
+ sha256 = "0hskfcg17h22fyprr9y264g6jz4lq1a7akqvdyji4fln61mqn07r";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base colour data-default diagrams-lib diagrams-svg foldl formatting
- lens linear numhask numhask-range palette SVGFonts text
+ lens linear numhask numhask-range palette scientific SVGFonts text
];
executableHaskellDepends = [
base containers diagrams-lib diagrams-svg foldl formatting lens
mwc-probability mwc-random numhask primitive protolude tdigest text
];
testHaskellDepends = [ base numhask tasty tasty-hspec text ];
- homepage = "https://github.com/tonyday567/chart-unit";
+ homepage = "https://github.com/tonyday567/chart-unit#readme";
description = "Native haskell charts";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -42517,27 +43362,26 @@ self: {
"chatwork" = callPackage
({ mkDerivation, aeson, aeson-casing, base, bytestring, connection
, data-default-class, hspec, http-api-data, http-client
- , http-client-tls, http-types, req, retry, servant-server, text
- , warp
+ , http-client-tls, http-types, req, servant-server, text, warp
}:
mkDerivation {
pname = "chatwork";
- version = "0.1.2.0";
- sha256 = "1qgb5b8y99rh243x1mz0n12lv59l73vnhczxzq8s2h5lzcay3bps";
+ version = "0.1.3.0";
+ sha256 = "1b6s5f2v4qc19l2psbpwlx6nyq0285mpfl25gfv4p9xrsdmqcyr4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-casing base bytestring connection data-default-class
- http-api-data http-client http-client-tls http-types req retry text
+ http-api-data http-client http-client-tls http-types req text
];
executableHaskellDepends = [
aeson aeson-casing base bytestring connection data-default-class
- http-api-data http-client http-client-tls http-types req retry text
+ http-api-data http-client http-client-tls http-types req text
];
testHaskellDepends = [
aeson aeson-casing base bytestring connection data-default-class
hspec http-api-data http-client http-client-tls http-types req
- retry servant-server text warp
+ servant-server text warp
];
homepage = "https://github.com/matsubara0507/chatwork#readme";
description = "The ChatWork API in Haskell";
@@ -42969,6 +43813,94 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "chr-core" = callPackage
+ ({ mkDerivation, base, chr-data, chr-pretty, containers, hashable
+ , logict-state, mtl, pqueue, unordered-containers
+ }:
+ mkDerivation {
+ pname = "chr-core";
+ version = "0.1.0.1";
+ sha256 = "07lc9h9k3zy1ylw5b5xv6kls7sj7ppr18gacvzfqz3ppys54kkja";
+ libraryHaskellDepends = [
+ base chr-data chr-pretty containers hashable logict-state mtl
+ pqueue unordered-containers
+ ];
+ homepage = "https://github.com/atzedijkstra/chr";
+ description = "Constraint Handling Rules";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "chr-data" = callPackage
+ ({ mkDerivation, array, base, chr-pretty, containers, fclabels
+ , hashable, microlens, microlens-mtl, microlens-th, mtl
+ , template-haskell, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "chr-data";
+ version = "0.1.0.0";
+ sha256 = "0igcqrqbxy3l26b3girh6qpmls5z2jcgzywxid2qq348jan88bgh";
+ revision = "1";
+ editedCabalFile = "1wzhcwzaskbl28plgs0z26jh3mj99mf2rbkn75n75yr6gf8fqs44";
+ libraryHaskellDepends = [
+ array base chr-pretty containers fclabels hashable microlens
+ microlens-mtl microlens-th mtl template-haskell
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/atzedijkstra/chr";
+ description = "Datatypes required for chr library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "chr-lang" = callPackage
+ ({ mkDerivation, base, chr-core, chr-data, chr-parse, chr-pretty
+ , containers, fgl, hashable, mtl, time, unordered-containers
+ }:
+ mkDerivation {
+ pname = "chr-lang";
+ version = "0.1.0.1";
+ sha256 = "0dd4xlk2klnqn6xyfh3b7gcy17z8x1lvyps5f5mypk9ijmrckhdy";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base chr-core chr-data chr-parse chr-pretty containers fgl hashable
+ mtl time unordered-containers
+ ];
+ executableHaskellDepends = [ base chr-data ];
+ homepage = "https://github.com/atzedijkstra/chr";
+ description = "AST + surface language around chr";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "chr-parse" = callPackage
+ ({ mkDerivation, base, containers, uulib }:
+ mkDerivation {
+ pname = "chr-parse";
+ version = "0.1.0.0";
+ sha256 = "00jlfpanzkawiz0fh5gc4czda9ip5r203pnjwllcqhmy9w04ip9k";
+ revision = "1";
+ editedCabalFile = "0h3qyn306sxqsvxmz9hfba169nkc3hx7ygkxr5j2sz033fvi31jc";
+ libraryHaskellDepends = [ base containers uulib ];
+ homepage = "https://github.com/atzedijkstra/chr";
+ description = "Parsing for chr library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "chr-pretty" = callPackage
+ ({ mkDerivation, base, containers }:
+ mkDerivation {
+ pname = "chr-pretty";
+ version = "0.1.0.0";
+ sha256 = "0flm7phvi5x84m8vbkvhd3xq3dwnj1vxwi27fw78ikbzx91q376n";
+ revision = "1";
+ editedCabalFile = "15v5bv7azi7qw33rg849wggpy07ingd8fp24dm0azwgwsqd05mb9";
+ libraryHaskellDepends = [ base containers ];
+ homepage = "https://github.com/atzedijkstra/chr";
+ description = "Pretty printing for chr library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"chronograph" = callPackage
({ mkDerivation, base, deepseq, ghc-prim, thyme, vector-space }:
mkDerivation {
@@ -43063,12 +43995,12 @@ self: {
}:
mkDerivation {
pname = "chunked-data";
- version = "0.3.0";
- sha256 = "0bszq6fijnr4pmadzz89smj7kfmzx0ca3wd9ga8gv0in9jk9vgp1";
+ version = "0.3.1";
+ sha256 = "16m7y7fwrirbjbqqcsfmr4yxa9qvfax6r7pw0zl9ky71ms0wa47p";
libraryHaskellDepends = [
base bytestring containers semigroups text transformers vector
];
- homepage = "https://github.com/snoyberg/mono-traversable";
+ homepage = "https://github.com/snoyberg/mono-traversable#readme";
description = "Typeclasses for dealing with various chunked data representations";
license = stdenv.lib.licenses.mit;
}) {};
@@ -43630,6 +44562,7 @@ self: {
homepage = "http://clafer.org";
description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"claferIG" = callPackage
@@ -43663,6 +44596,7 @@ self: {
homepage = "http://clafer.org";
description = "claferIG is an interactive tool that generates instances of Clafer models";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"claferwiki" = callPackage
@@ -44468,6 +45402,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "cli-setup" = callPackage
+ ({ mkDerivation, base, bytestring, directory, process }:
+ mkDerivation {
+ pname = "cli-setup";
+ version = "0.1.0.3";
+ sha256 = "1w41pdprifdgp7h2z08m78jg058i49530pfvgmr53lmch5dkk4vf";
+ libraryHaskellDepends = [ base bytestring directory process ];
+ homepage = "https://github.com/vmchale/cli-setup#readme";
+ description = "Helper setup scripts for packaging command-line tools";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"click-clack" = callPackage
({ mkDerivation, base, containers, GLFW, Hipmunk, MonadRandom, mtl
, OpenGL, random, StateVar, transformers
@@ -44583,6 +45529,7 @@ self: {
homepage = "https://github.com/tsahyt/clingo-haskell#readme";
description = "Haskell bindings to the Clingo ASP solver";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) clingo;};
"clippard" = callPackage
@@ -45319,8 +46266,8 @@ self: {
}:
mkDerivation {
pname = "cmdargs";
- version = "0.10.18";
- sha256 = "1lnmcsf6p9yrwwz1zvrw5lbc32xpff7b70yz4ylawaflnlz6wrlh";
+ version = "0.10.20";
+ sha256 = "0cbkmgrcnwgigg6z88y3c09gm7g6dwm7gzbgr53h8k1xik29s9hf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -45438,8 +46385,8 @@ self: {
({ mkDerivation, array, base, containers }:
mkDerivation {
pname = "cmu";
- version = "1.10";
- sha256 = "0zlc6spb51s2k455s9mspqjjk8xm90wwjlj2nm7949ihkim4j5gy";
+ version = "1.11";
+ sha256 = "1zldm0j4cxhc3zwxz2zn35mbnrqpjagh3v90akvnjz95jy60z171";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ array base containers ];
@@ -45457,8 +46404,8 @@ self: {
}:
mkDerivation {
pname = "cmv";
- version = "1.0.6";
- sha256 = "1djqw8szaq8p8mhxp4789gx5mgibdlcwhbkilzc5zcxf619pn3c1";
+ version = "1.0.8";
+ sha256 = "1l113yawclfpvhb5p3j6mhi3nqh8d1ix64k7d2q9slnvs3vdvphb";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -45504,14 +46451,33 @@ self: {
({ mkDerivation, array, base, bytestring, file-embed, text }:
mkDerivation {
pname = "cndict";
- version = "0.9.0";
- sha256 = "0v0drr7zxh2ndq91vhpsi4ykna993fnkfmxana7g1q4c2vn8b5sc";
+ version = "0.10.0";
+ sha256 = "12vybpji4bxwn8in18xqp4l2js1cbnn8fgk3r6m5c8idp769ph2m";
libraryHaskellDepends = [ array base bytestring file-embed text ];
homepage = "https://github.com/Lemmih/cndict";
description = "Chinese/Mandarin <-> English dictionary, Chinese lexer";
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "coalpit" = callPackage
+ ({ mkDerivation, base, generic-random, megaparsec, network-uri
+ , scientific, tasty, tasty-quickcheck, tasty-travis, time
+ }:
+ mkDerivation {
+ pname = "coalpit";
+ version = "0.1.1.0";
+ sha256 = "0adays54vg3pyrc3hsdmir0cj7h4r4vvm3a4zakia82gd8bz99iq";
+ libraryHaskellDepends = [
+ base megaparsec network-uri scientific time
+ ];
+ testHaskellDepends = [
+ base generic-random tasty tasty-quickcheck tasty-travis
+ ];
+ description = "Command-line options and DSV parsing and printing";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"code-builder" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
@@ -45691,6 +46657,7 @@ self: {
];
description = "Graphics library for CodeWorld";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"codex" = callPackage
@@ -45857,6 +46824,7 @@ self: {
homepage = "http://code.haskell.org/~bkomuves/";
description = "Equivariant CSM classes of coincident root loci";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"colada" = callPackage
@@ -45968,25 +46936,27 @@ self: {
}) {};
"collection-json" = callPackage
- ({ mkDerivation, aeson, base, bytestring, hspec, network-uri
- , network-uri-json, QuickCheck, quickcheck-instances
- , test-invariant, text
+ ({ mkDerivation, aeson, base, bytestring, hspec, hspec-discover
+ , network-arbitrary, network-uri, network-uri-json, QuickCheck
+ , quickcheck-instances, test-invariant, text
}:
mkDerivation {
pname = "collection-json";
- version = "1.1.0.2";
- sha256 = "033hwm20w1432nh3gvphkkyl9i4rjm74l3szplpsq0a9rp097la0";
+ version = "1.1.2.1";
+ sha256 = "1x43b1rmlrsv8jmr2mawy2ykwljbbb4h8cfcfd6gxrkzxwvlxhsl";
libraryHaskellDepends = [
aeson base network-uri network-uri-json text
];
testHaskellDepends = [
- aeson base bytestring hspec network-uri network-uri-json QuickCheck
- quickcheck-instances test-invariant text
+ aeson base bytestring hspec network-arbitrary network-uri
+ network-uri-json QuickCheck quickcheck-instances test-invariant
+ text
];
+ testToolDepends = [ hspec-discover ];
homepage = "https://github.com/alunduil/collection-json.hs";
description = "Collection+JSON—Hypermedia Type Tools";
license = stdenv.lib.licenses.mit;
- maintainers = with stdenv.lib.maintainers; [ alunduil ];
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"collections" = callPackage
@@ -46185,6 +47155,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "colour_2_3_3" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "colour";
+ version = "2.3.3";
+ sha256 = "1qmn1778xzg07jg9nx4k1spdz2llivpblf6wwrps1qpqjhsac5cd";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [ base ];
+ homepage = "http://www.haskell.org/haskellwiki/Colour";
+ description = "A model for human colour/color perception";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"colour" = callPackage
({ mkDerivation, base, QuickCheck, random, test-framework
, test-framework-quickcheck2
@@ -46319,6 +47303,7 @@ self: {
];
description = "Commonmark (markdown) to HTML renderer";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {comark-testutils = null;};
@@ -46345,6 +47330,7 @@ self: {
];
description = "Parser for Commonmark (markdown)";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {comark-testutils = null;};
@@ -46377,6 +47363,7 @@ self: {
homepage = "http://code.haskell.org/~bkomuves/";
description = "Generate and manipulate various combinatorial objects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"combinat-diagrams" = callPackage
@@ -46394,6 +47381,7 @@ self: {
homepage = "http://code.haskell.org/~bkomuves/";
description = "Graphical representations for various combinatorial objects";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"combinator-interactive" = callPackage
@@ -46436,6 +47424,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "combinatorial_0_1" = callPackage
+ ({ mkDerivation, array, base, containers, QuickCheck, transformers
+ , utility-ht
+ }:
+ mkDerivation {
+ pname = "combinatorial";
+ version = "0.1";
+ sha256 = "1a5l4iixjhvqca8dvwkx3zvlaimp6ggr3fcm7vk7r77rv6n6svh9";
+ libraryHaskellDepends = [
+ array base containers transformers utility-ht
+ ];
+ testHaskellDepends = [
+ array base containers QuickCheck transformers utility-ht
+ ];
+ homepage = "http://hub.darcs.net/thielema/combinatorial/";
+ description = "Count, enumerate, rank and unrank combinatorial objects";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"combinatorial-problems" = callPackage
({ mkDerivation, array, base, bytestring, bytestring-lexing
, containers, parsec, random
@@ -46658,8 +47666,8 @@ self: {
pname = "comonad";
version = "5.0.2";
sha256 = "115pai560rllsmym76bj787kwz5xx19y8bl6262005nddqwzxc0v";
- revision = "1";
- editedCabalFile = "1lnsnx8p3wlfhd1xfc68za3b00vq77z2m6b0vqiw2laqmpj9akcw";
+ revision = "2";
+ editedCabalFile = "1ngks9bym68rw0xdq43n14nay4kxdxv2n7alwfd9wcpismfz009g";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base containers contravariant distributive semigroups tagged
@@ -46824,10 +47832,10 @@ self: {
({ mkDerivation, base, containers, transformers, vector }:
mkDerivation {
pname = "compactable";
- version = "0.1.0.2";
- sha256 = "19ra58dz8wcwx3f5znfqqc0dvnfhldkbd8rg9psc7cynf9xcf93m";
+ version = "0.1.0.4";
+ sha256 = "1xf13k0syj8ssjgf2snddkgljwxpb4gpl0di9hsf1iy1wcx6pgh6";
libraryHaskellDepends = [ base containers transformers vector ];
- description = "A generalization for containers that can be stripped of Nothings";
+ description = "A typeclass for structures which can be catMaybed, filtered, and partitioned";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -47241,8 +48249,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "composition-prelude";
- version = "0.1.1.1";
- sha256 = "124r75vmbjd6nvibj3yadwnrkhr1r2d6i30qx3acidljw0fjfcnm";
+ version = "1.1.0.2";
+ sha256 = "1r6i0b9kphx8pmmlkna50gdsqwsmsc538nxhax3imxydi2lhxsdd";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/vmchale/composition-prelude#readme";
description = "Higher-order function combinators";
@@ -47283,10 +48291,8 @@ self: {
}:
mkDerivation {
pname = "compressed";
- version = "3.10";
- sha256 = "1y290n421knfh8k8zbcabhw24hb13xj9pkxx4h4v15yji97p5mcw";
- revision = "1";
- editedCabalFile = "1fv1ix8bsqbsrzp44i7nz0wp1dwi3l2wdvqvp46a8vbakp5nif8a";
+ version = "3.11";
+ sha256 = "0gfxmfyzgpa176igsby50jpfhpfvd078d7nyvwwg2cjx8hpvyyyp";
libraryHaskellDepends = [
base comonad containers fingertree hashable keys pointed reducers
semigroupoids semigroups unordered-containers
@@ -47678,6 +48684,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "concurrency_1_4_0_0" = callPackage
+ ({ mkDerivation, array, atomic-primops, base, exceptions
+ , monad-control, mtl, stm, transformers
+ }:
+ mkDerivation {
+ pname = "concurrency";
+ version = "1.4.0.0";
+ sha256 = "0rpljvcswb1smidvxh7nwb6ms2gr8wf0gzs0kapiqc9g3wlr1r9r";
+ libraryHaskellDepends = [
+ array atomic-primops base exceptions monad-control mtl stm
+ transformers
+ ];
+ homepage = "https://github.com/barrucadu/dejafu";
+ description = "Typeclasses, functions, and data types for concurrency and STM";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"concurrent-barrier" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -47761,8 +48785,8 @@ self: {
}:
mkDerivation {
pname = "concurrent-machines";
- version = "0.3.1";
- sha256 = "0n04gnnv323fk1h9mp8krqbl2v6ljjv1vzw5df38cxvj2xd64y94";
+ version = "0.3.1.1";
+ sha256 = "109c202sqhsx6fr8m0zkwgzsy7pnnaps2nhyykp7cd6rw0ak6i28";
libraryHaskellDepends = [
async base containers lifted-async machines monad-control
semigroups time transformers transformers-base
@@ -47782,8 +48806,8 @@ self: {
}:
mkDerivation {
pname = "concurrent-output";
- version = "1.10.1";
- sha256 = "17h081vj2sksv9ldpp9jlir2avnzbx92ay321lha8cjm9cpv4996";
+ version = "1.10.2";
+ sha256 = "02kfg61f7lm8796n4pdi7yvscg8n869vhl9i6rd9rpyb4l9myzd1";
libraryHaskellDepends = [
ansi-terminal async base directory exceptions process stm
terminal-size text transformers unix
@@ -47870,10 +48894,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "concurrent-utilities";
- version = "0.2.0.0";
- sha256 = "12limyhs55ccjxls1dw4cch9ffdn6nrvybaykcyis733w0qvh26i";
- revision = "1";
- editedCabalFile = "0sjgrya7v24lmcfhh2x72b6iyzklcsw0fbbsasb4dl31lf118w9b";
+ version = "0.2.0.1";
+ sha256 = "168prywiw4fhh2syzj452pyqj8byy4sb929mgkv5srgwkzqr6g0f";
libraryHaskellDepends = [ base ];
homepage = "-";
description = "More utilities and broad-used datastructures for concurrency";
@@ -48004,8 +49026,8 @@ self: {
}:
mkDerivation {
pname = "conduit";
- version = "1.2.12.1";
- sha256 = "0zl6gflh7y36y2vypjhqx13nhkk5y3h12c1zj7kjfclrmwnvnwh0";
+ version = "1.2.13";
+ sha256 = "1b0i6zbmp9j0km150nghmq77rz3iahkib3dd2m9hihabc6n1p793";
libraryHaskellDepends = [
base exceptions lifted-base mmorph monad-control mtl primitive
resourcet transformers transformers-base transformers-compat
@@ -48026,25 +49048,26 @@ self: {
"conduit-algorithms" = callPackage
({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit
, conduit-combinators, conduit-extra, containers, deepseq
- , directory, HUnit, mtl, resourcet, stm, stm-conduit
+ , directory, HUnit, lzma-conduit, mtl, resourcet, stm, stm-conduit
, test-framework, test-framework-hunit, test-framework-th
- , transformers
+ , transformers, vector
}:
mkDerivation {
pname = "conduit-algorithms";
- version = "0.0.6.1";
- sha256 = "0zs7klxlkirch0j7gasxqalfw9nc4pfslgrg93jwn5vhpxdxhgwk";
+ version = "0.0.7.1";
+ sha256 = "153g4lhd8ah97hbdvjxc1j4cnkdmpy6x2pbdjv2n7wyn80mqh9i7";
libraryHaskellDepends = [
async base bytestring bzlib-conduit conduit conduit-combinators
- conduit-extra containers deepseq mtl resourcet stm stm-conduit
- transformers
+ conduit-extra containers deepseq lzma-conduit mtl resourcet stm
+ stm-conduit transformers vector
];
testHaskellDepends = [
async base bytestring bzlib-conduit conduit conduit-combinators
- conduit-extra containers deepseq directory HUnit mtl resourcet stm
- stm-conduit test-framework test-framework-hunit test-framework-th
- transformers
+ conduit-extra containers deepseq directory HUnit lzma-conduit mtl
+ resourcet stm stm-conduit test-framework test-framework-hunit
+ test-framework-th transformers vector
];
+ homepage = "https://github.com/luispedro/conduit-algorithms#readme";
description = "Conduit-based algorithms";
license = stdenv.lib.licenses.mit;
}) {};
@@ -48174,8 +49197,8 @@ self: {
}:
mkDerivation {
pname = "conduit-extra";
- version = "1.2.2";
- sha256 = "04bc1vy9giwfdcavrhjbmzm31lrf5360swns38yg6brql4pa2vii";
+ version = "1.2.3.2";
+ sha256 = "1xihl8zrd6jyfnlmsrqshwwqc8176whs5im4jvxvk9038wl6cnqx";
libraryHaskellDepends = [
async attoparsec base blaze-builder bytestring conduit directory
exceptions filepath monad-control network primitive process
@@ -48328,8 +49351,8 @@ self: {
}:
mkDerivation {
pname = "conduit-throttle";
- version = "0.3.0.0";
- sha256 = "1kwrryplhck8q6hn6lx6j741d9hllzf84ykmqwiq0h34fjdd0a4r";
+ version = "0.3.1.0";
+ sha256 = "0ad3balm1r5jm4jvf26pr1kaiqnzvjznjh5kidk2bknxylbddmld";
libraryHaskellDepends = [
async base conduit conduit-combinators conduit-extra monad-control
resourcet stm stm-chans throttle-io-stream unliftio unliftio-core
@@ -48426,8 +49449,8 @@ self: {
}:
mkDerivation {
pname = "config-ini";
- version = "0.2.1.1";
- sha256 = "0rhjqbg6f37jmcddad0yiqvn9i4i8k7rcivnqz92swd2bikyrp3n";
+ version = "0.2.2.0";
+ sha256 = "1820w4y8k0qrlilrizkqckwiyli0x4qcdjmagvcngy5bfsw6fk9n";
libraryHaskellDepends = [
base containers megaparsec text transformers unordered-containers
];
@@ -48463,13 +49486,13 @@ self: {
}) {};
"config-parser" = callPackage
- ({ mkDerivation, base, hspec, lens, parsec, text }:
+ ({ mkDerivation, base, extra, hspec, lens, parsec, text }:
mkDerivation {
pname = "config-parser";
- version = "1.0.0.0";
- sha256 = "0ak3yhlfnw24d8rbv0z8mpkg839048ywp0c64slbxam3sxs8g170";
+ version = "1.2.0.0";
+ sha256 = "1jmb8c2ksxp9gfryymg100hjfn5kfshi95a1533d6h18ypqd5zb3";
libraryHaskellDepends = [ base parsec text ];
- testHaskellDepends = [ base hspec lens parsec text ];
+ testHaskellDepends = [ base extra hspec lens parsec text ];
homepage = "https://github.com/protoben/config-parser";
description = "Parse config files using parsec and generate parse errors on unhandled keys";
license = stdenv.lib.licenses.mit;
@@ -48484,6 +49507,8 @@ self: {
pname = "config-schema";
version = "0.5.0.0";
sha256 = "108gjzafzc5hv1vilnxagf65bh2xia2rfwxcjw6axzzhw5lszgli";
+ revision = "1";
+ editedCabalFile = "03py056v8wvabykx95h5z52g0a5sxglmvvk67wvr94ig8161gbjc";
libraryHaskellDepends = [
base config-value containers free kan-extensions pretty
semigroupoids text transformers
@@ -48948,8 +49973,8 @@ self: {
({ mkDerivation, base, category }:
mkDerivation {
pname = "constraint";
- version = "0.1.1.0";
- sha256 = "15kkkbqy6vjhbjl1jdqrsazrhv5k2l2vqymdjjdn3l07cfnf9lzj";
+ version = "0.1.1.1";
+ sha256 = "0iyz3n8qplp892cw2k2z5pp4pv54p5qaqrcjgpiwfm9jkri0v012";
libraryHaskellDepends = [ base category ];
description = "Reified constraints";
license = stdenv.lib.licenses.bsd3;
@@ -48997,6 +50022,27 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "constraints_0_10" = callPackage
+ ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, hspec
+ , hspec-discover, mtl, semigroups, transformers
+ , transformers-compat
+ }:
+ mkDerivation {
+ pname = "constraints";
+ version = "0.10";
+ sha256 = "1ii6j62xihxwb85akvy8cdd73g9qr7rd5zl37h4925y2acpbh962";
+ libraryHaskellDepends = [
+ base binary deepseq ghc-prim hashable mtl semigroups transformers
+ transformers-compat
+ ];
+ testHaskellDepends = [ base hspec ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "http://github.com/ekmett/constraints/";
+ description = "Constraint manipulation";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"constructible" = callPackage
({ mkDerivation, arithmoi, base, binary-search, complex-generic }:
mkDerivation {
@@ -49134,15 +50180,15 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "containers_0_5_10_2" = callPackage
+ "containers_0_5_11_0" = callPackage
({ mkDerivation, array, base, ChasingBottoms, criterion, deepseq
, ghc-prim, HUnit, QuickCheck, random, test-framework
, test-framework-hunit, test-framework-quickcheck2, transformers
}:
mkDerivation {
pname = "containers";
- version = "0.5.10.2";
- sha256 = "08wc6asnyjdvabqyp15lsbccqwbjy77zjdhwrbg2q9xyj3rgwkm0";
+ version = "0.5.11.0";
+ sha256 = "0j29w09kvcn1c0yi4clmrdbgs2gqmpxs2m7q80ib2ix1smm25kaq";
libraryHaskellDepends = [ array base deepseq ghc-prim ];
testHaskellDepends = [
array base ChasingBottoms deepseq ghc-prim HUnit QuickCheck
@@ -49282,12 +50328,12 @@ self: {
}) {};
"continued-fraction" = callPackage
- ({ mkDerivation, base, criterion, free, hspec, recursion-schemes }:
+ ({ mkDerivation, base, criterion, hspec, recursion-schemes }:
mkDerivation {
pname = "continued-fraction";
- version = "0.1.0.3";
- sha256 = "08zvphhxm5w79zrrj1qsixdq4i5flwz0ci47mmkh671dp99qjriq";
- libraryHaskellDepends = [ base free recursion-schemes ];
+ version = "0.1.0.6";
+ sha256 = "04vv2qnpz2pfkizrx8layf3z9kfjkika15ha5kpm0av52d405fiz";
+ libraryHaskellDepends = [ base recursion-schemes ];
testHaskellDepends = [ base hspec ];
benchmarkHaskellDepends = [ base criterion ];
homepage = "https://hub.darcs.net/vmchale/continued-fraction#readme";
@@ -49348,15 +50394,14 @@ self: {
}) {};
"contravariant" = callPackage
- ({ mkDerivation, base, semigroups, StateVar, transformers
- , transformers-compat, void
+ ({ mkDerivation, base, StateVar, transformers, transformers-compat
}:
mkDerivation {
pname = "contravariant";
- version = "1.4";
- sha256 = "117fff8kkrvlmr8cb2jpj71z7lf2pdiyks6ilyx89mry6zqnsrp1";
+ version = "1.4.1";
+ sha256 = "1vfhk8c5cxmmakx7rflap1ipkx5q0j5vnlrcz7yz6y53kxhksgf9";
libraryHaskellDepends = [
- base semigroups StateVar transformers transformers-compat void
+ base StateVar transformers transformers-compat
];
homepage = "http://github.com/ekmett/contravariant/";
description = "Contravariant functors";
@@ -49395,8 +50440,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "control-dotdotdot";
- version = "0.1.0.0";
- sha256 = "0wacfs0s0dy2vzj8yxm3zqsjc93fm8m4iiw5x92wpiz2z2lm3k8d";
+ version = "0.1.0.1";
+ sha256 = "0rwi5zwvqn18g7qyp9aw51w3yzkqbff9g7rcqdk1l871fvq8qhha";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/erisco/control-dotdotdot";
description = "Haskell operator `g ... f = \x1 .. xn -> g (f x1 .. xn)`.";
@@ -50348,6 +51393,7 @@ self: {
homepage = "http://github.com/hargettp/courier";
description = "A message-passing library for simplifying network applications";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"court" = callPackage
@@ -50524,8 +51570,8 @@ self: {
({ mkDerivation, base, containers, parallel }:
mkDerivation {
pname = "cpsa";
- version = "3.4.0";
- sha256 = "01imn0nnb567m1l48bjaa6nqp0555bw5lp40d9bqz56dalh4lnlk";
+ version = "3.4.1";
+ sha256 = "1sd6h0xw76iwvgl7i4c9wy6q5fmq75inq5vh79rzf3bhmahb1529";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -51035,17 +52081,20 @@ self: {
}) {};
"crdt" = callPackage
- ({ mkDerivation, base, containers, mtl, QuickCheck, tasty
- , tasty-discover, tasty-quickcheck
+ ({ mkDerivation, base, binary, bytestring, containers, mtl
+ , network-info, QuickCheck, quickcheck-instances, safe, stm, tasty
+ , tasty-discover, tasty-quickcheck, time
}:
mkDerivation {
pname = "crdt";
- version = "4.0";
- sha256 = "16lsyvcnz8qjy5lakf4dxzz9b4rcgz8bk6wzf3cmxn51kpxyc0rn";
- libraryHaskellDepends = [ base containers mtl ];
+ version = "6.2";
+ sha256 = "0d88s8wj3679v4hjgh2jzhsp3iscbh8ph8vkc2rv528abkxfrqfv";
+ libraryHaskellDepends = [
+ base binary bytestring containers mtl network-info safe stm time
+ ];
testHaskellDepends = [
- base containers mtl QuickCheck tasty tasty-discover
- tasty-quickcheck
+ base containers QuickCheck quickcheck-instances tasty
+ tasty-discover tasty-quickcheck
];
homepage = "https://github.com/cblp/crdt#readme";
description = "Conflict-free replicated data types";
@@ -51086,8 +52135,8 @@ self: {
}:
mkDerivation {
pname = "credential-store";
- version = "0.1.1";
- sha256 = "1qim9hqyak3c7giqjrkvdvlpgwlbgnyz418q6pndwvyrhzm7n21m";
+ version = "0.1.2";
+ sha256 = "114jdbpiyx8xnjxnpz05nqpnb5s29y1iv330b0i491vik8hvrbad";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -51287,6 +52336,42 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "criterion_1_3_0_0" = callPackage
+ ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat, binary
+ , bytestring, cassava, code-page, containers, deepseq, directory
+ , exceptions, filepath, Glob, HUnit, js-flot, js-jquery
+ , microstache, mtl, mwc-random, optparse-applicative, parsec
+ , QuickCheck, semigroups, statistics, tasty, tasty-hunit
+ , tasty-quickcheck, text, time, transformers, transformers-compat
+ , vector, vector-algorithms
+ }:
+ mkDerivation {
+ pname = "criterion";
+ version = "1.3.0.0";
+ sha256 = "0csgk6njr6a3i895d10pajf7z4r9hx8aj2r0c3rj5li6vrm37f8q";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson ansi-wl-pprint base base-compat binary bytestring cassava
+ code-page containers deepseq directory exceptions filepath Glob
+ js-flot js-jquery microstache mtl mwc-random optparse-applicative
+ parsec semigroups statistics text time transformers
+ transformers-compat vector vector-algorithms
+ ];
+ executableHaskellDepends = [
+ base base-compat optparse-applicative semigroups
+ ];
+ testHaskellDepends = [
+ aeson base base-compat bytestring deepseq directory HUnit
+ QuickCheck statistics tasty tasty-hunit tasty-quickcheck vector
+ ];
+ homepage = "http://www.serpentine.com/criterion";
+ description = "Robust, reliable performance measurement and analysis";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"criterion-plus" = callPackage
({ mkDerivation, base, criterion, deepseq, HTF, HUnit, loch-th
, monad-control, mtl, optparse-applicative, placeholders
@@ -51523,8 +52608,10 @@ self: {
}:
mkDerivation {
pname = "crypto-api";
- version = "0.13.2";
- sha256 = "1vc27qcgbg7hf50rkqhlrs58zn1888ilh4b6wrrm07bnm48xacak";
+ version = "0.13.3";
+ sha256 = "19bsmkqkpnvh01b77pmyarx00fic15j4hvg4pzscrj4prskrx2i9";
+ revision = "1";
+ editedCabalFile = "1z6n1sa5pn3iqvqjrd8hv4bc2pxzsrhm5sh0l8z7g9lbqp6w0wp5";
libraryHaskellDepends = [
base bytestring cereal entropy tagged transformers
];
@@ -51656,10 +52743,8 @@ self: {
}:
mkDerivation {
pname = "crypto-enigma";
- version = "0.0.2.9";
- sha256 = "18nc5gqsy4dsm22van6iz96lqq45f7jqik4fljczgp6n1knyig9z";
- revision = "1";
- editedCabalFile = "1hbcnj3w5z7cmlrmfih7mv27n75bpcpbiq66wsfgrrvaiycrb58n";
+ version = "0.0.2.10";
+ sha256 = "1c7baw7k9shllfxp1yg5czr9m0392pnpqiblaz8v17rc71d402p6";
libraryHaskellDepends = [ base containers MissingH mtl split ];
testHaskellDepends = [ base HUnit QuickCheck ];
homepage = "https://github.com/orome/crypto-enigma-hs";
@@ -52071,21 +53156,33 @@ self: {
}) {};
"cryptoids" = callPackage
- ({ mkDerivation, base, binary, bytestring, cryptoids-types
- , cryptonite, directory, exceptions, filepath, memory
+ ({ mkDerivation, base, binary, bytestring, cryptoids-class
+ , cryptoids-types, cryptonite, directory, exceptions, filepath
+ , memory
}:
mkDerivation {
pname = "cryptoids";
- version = "0.4.0.0";
- sha256 = "1km63vgckjsxxrkd45w7c5gc3d5hk6dg6f0y4z4c8wajz4ddp1a3";
+ version = "0.5.0.0";
+ sha256 = "05xywzs7waz01c0p3y02qlf4yfhfpmpzpdfs2cmv5rmphf1hzck2";
libraryHaskellDepends = [
- base binary bytestring cryptoids-types cryptonite directory
- exceptions filepath memory
+ base binary bytestring cryptoids-class cryptoids-types cryptonite
+ directory exceptions filepath memory
];
description = "Reversable and secure encoding of object ids as a bytestring";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "cryptoids-class" = callPackage
+ ({ mkDerivation, base, cryptoids-types, exceptions }:
+ mkDerivation {
+ pname = "cryptoids-class";
+ version = "0.0.0";
+ sha256 = "0zp0d815r0dv2xqdi6drq846zz2a82gpqp6nvap3b5dnx2q3hbjy";
+ libraryHaskellDepends = [ base cryptoids-types exceptions ];
+ description = "Typeclass-based interface to cryptoids";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"cryptoids-types" = callPackage
({ mkDerivation, base, binary, http-api-data, path-pieces }:
mkDerivation {
@@ -52658,8 +53755,8 @@ self: {
}:
mkDerivation {
pname = "cubicbezier";
- version = "0.6.0.4";
- sha256 = "1bdrl26fm09vmmwdlg09ihq3b42qbz7dphzq03b983zlzrj1064f";
+ version = "0.6.0.5";
+ sha256 = "0n17nr20skrds3b9gzy0v86jgnqz8zbds796n9cl0z6rh9bq5jf5";
libraryHaskellDepends = [
base containers fast-math integration matrices microlens
microlens-mtl microlens-th mtl vector vector-space
@@ -52754,8 +53851,8 @@ self: {
}:
mkDerivation {
pname = "cue-sheet";
- version = "1.0.0";
- sha256 = "05fj4iqg0ixrs8076p9jcl5my0qx4hgzcprnaymfkkr0n9x06sz1";
+ version = "1.0.1";
+ sha256 = "13vzay3i385k8i2k56bl9rr9sy7mnhas4b35xc8q7744gbl5hji1";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base bytestring containers data-default-class exceptions megaparsec
@@ -52790,12 +53887,14 @@ self: {
}) {};
"curl" = callPackage
- ({ mkDerivation, base, bytestring, curl }:
+ ({ mkDerivation, base, bytestring, containers, curl }:
mkDerivation {
pname = "curl";
version = "1.3.8";
sha256 = "0vj4hpaa30jz7c702xpsfvqaqdxz28zslsqnsfx6bf6dpwvck1wh";
- libraryHaskellDepends = [ base bytestring ];
+ revision = "1";
+ editedCabalFile = "02sq2bjw5igc2k9f9ssh58k2ivii2xsvk5r00ky3cxh8j61qy86q";
+ libraryHaskellDepends = [ base bytestring containers ];
librarySystemDepends = [ curl ];
description = "Haskell binding to libcurl";
license = stdenv.lib.licenses.bsd3;
@@ -52897,41 +53996,61 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "curry" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "curry";
+ version = "0.0.0.0";
+ sha256 = "09kwv72pww29xhp4sp7czp3pgjdggzs5ggj8cmzng8xzzgsgd1dv";
+ libraryHaskellDepends = [ base ];
+ description = "Curry types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"curry-base" = callPackage
- ({ mkDerivation, base, containers, directory, filepath, mtl
- , old-time, pretty, syb
+ ({ mkDerivation, base, Cabal, containers, directory, extra
+ , filepath, mtl, parsec, pretty, time, transformers
}:
mkDerivation {
pname = "curry-base";
- version = "0.2.9";
- sha256 = "0sdwygsbqmvcbzi7zsr0jd02s2r19pc7zsk4b6hjxv4vzjc9f120";
+ version = "1.0.0";
+ sha256 = "05j0wv2aj5979j5gq13bn317pd9gis96qjp6inqa08aafc4l3yya";
libraryHaskellDepends = [
- base containers directory filepath mtl old-time pretty syb
+ base containers directory extra filepath mtl parsec pretty time
+ transformers
];
- homepage = "http://www.curry-language.org";
+ testHaskellDepends = [ base Cabal filepath mtl ];
+ homepage = "http://curry-language.org";
description = "Functions for manipulating Curry programs";
- license = "unknown";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"curry-frontend" = callPackage
- ({ mkDerivation, base, containers, curry-base, filepath, mtl
- , old-time, pretty, syb
+ ({ mkDerivation, base, Cabal, containers, curry-base, directory
+ , extra, filepath, mtl, network-uri, pretty, process, set-extra
+ , transformers
}:
mkDerivation {
pname = "curry-frontend";
- version = "0.2.12";
- sha256 = "1igys4i7wwj1ildkf4is66gq22zsjg158kv3ald5xiilwkmvfc4h";
+ version = "1.0.1";
+ sha256 = "07khd3b5v8ys1vidz3gkxj91k4pwq5hn5zlyr99n0n1rm24vhbf8";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
- libraryHaskellDepends = [ filepath ];
- executableHaskellDepends = [
- base containers curry-base mtl old-time pretty syb
+ libraryHaskellDepends = [
+ base containers curry-base directory extra filepath mtl network-uri
+ pretty process set-extra transformers
];
- homepage = "http://www.curry-language.org";
+ executableHaskellDepends = [
+ base containers curry-base directory extra filepath mtl network-uri
+ pretty process set-extra transformers
+ ];
+ testHaskellDepends = [ base Cabal curry-base filepath ];
+ homepage = "http://curry-language.org";
description = "Compile the functional logic language Curry to several intermediate formats";
- license = "unknown";
+ license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -53919,6 +55038,7 @@ self: {
homepage = "https://gitlab.com/haskell-hr/basic";
description = "A database library with a focus on ease of use, type safety and useful error messages";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {basic = null;};
@@ -54309,8 +55429,8 @@ self: {
}:
mkDerivation {
pname = "data-diverse";
- version = "2.0.0.0";
- sha256 = "07lb6cyjskl5483qw6wqhipznpb996gvyr07dhplayc2djy8cjvw";
+ version = "2.0.1.0";
+ sha256 = "0997mn0amfl4k70rvrxjw24dzyr6sv42nr1d24whyy114lsiv05b";
libraryHaskellDepends = [
base containers deepseq ghc-prim tagged
];
@@ -54340,14 +55460,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "data-diverse-lens_2_1_0_0" = callPackage
+ ({ mkDerivation, base, data-diverse, generic-lens, hspec, lens
+ , profunctors, tagged
+ }:
+ mkDerivation {
+ pname = "data-diverse-lens";
+ version = "2.1.0.0";
+ sha256 = "1i71f67agjaflb1cz8v6qpfy1qfwwmw8fjq8zl6kqd28z4k0mms7";
+ libraryHaskellDepends = [
+ base data-diverse generic-lens lens profunctors tagged
+ ];
+ testHaskellDepends = [
+ base data-diverse generic-lens hspec lens tagged
+ ];
+ homepage = "https://github.com/louispan/data-diverse-lens#readme";
+ description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"data-dword" = callPackage
({ mkDerivation, base, data-bword, ghc-prim, hashable, tasty
, tasty-quickcheck, template-haskell
}:
mkDerivation {
pname = "data-dword";
- version = "0.3.1.1";
- sha256 = "0dgs30yvs7cpikf6f2x4r7rb1f4fv3xi2rgr579af8nhrb2d6z7p";
+ version = "0.3.1.2";
+ sha256 = "084invjg8zj7ndxnz9clqmq06ch47k1d9lhxwap6xs0x4807crvb";
libraryHaskellDepends = [
base data-bword ghc-prim hashable template-haskell
];
@@ -54587,8 +55727,8 @@ self: {
({ mkDerivation, base, containers }:
mkDerivation {
pname = "data-foldapp";
- version = "0.1.0.0";
- sha256 = "0m2rwai52q712fxkpk4k23cc8x9dx87c8wwwsg9w5y5pxq78csn8";
+ version = "0.1.1.0";
+ sha256 = "1415cf59wkf1599qcqmrpn9m4v9br3d763v1809mwg9bm2310x65";
libraryHaskellDepends = [ base containers ];
homepage = "https://github.com/erisco/data-foldapp";
description = "Fold function applications. Framework for variadic functions.";
@@ -54783,8 +55923,8 @@ self: {
}:
mkDerivation {
pname = "data-lens";
- version = "2.11.1";
- sha256 = "0ciwqxm79a8zdfi7wymy9hhan6362hlhd6n8sz79pyjlsyvhpgpv";
+ version = "2.11.2";
+ sha256 = "123rxp37qjg0rkwz0521s5181qcm4v9gk94ny2j86vw7311kd0ax";
libraryHaskellDepends = [
base comonad containers semigroupoids transformers
];
@@ -54900,23 +56040,22 @@ self: {
"data-msgpack" = callPackage
({ mkDerivation, base, binary, bytestring, containers, criterion
- , data-binary-ieee754, deepseq, groom, hashable, hspec, QuickCheck
- , text, unordered-containers, vector, void
+ , data-binary-ieee754, data-msgpack-types, deepseq, groom, hashable
+ , hspec, QuickCheck, text, unordered-containers, vector, void
}:
mkDerivation {
pname = "data-msgpack";
- version = "0.0.10";
- sha256 = "0vpv4l6phsa9b3l0wxk798w9kzkc454v2kk554rcmz94wq3k6n61";
+ version = "0.0.11";
+ sha256 = "11dq5s1s6zcjfa7n464amwiz4sfrkqa7bb5x1rfqiivxc6bgq119";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base binary bytestring containers data-binary-ieee754 deepseq
- hashable QuickCheck text unordered-containers vector void
+ base binary bytestring data-binary-ieee754 data-msgpack-types text
];
executableHaskellDepends = [ base bytestring groom ];
testHaskellDepends = [
- base bytestring containers hashable hspec QuickCheck text
- unordered-containers vector void
+ base bytestring containers data-msgpack-types hashable hspec
+ QuickCheck text unordered-containers vector void
];
benchmarkHaskellDepends = [
base bytestring criterion deepseq QuickCheck
@@ -55487,19 +56626,28 @@ self: {
"datadog" = callPackage
({ mkDerivation, aeson, auto-update, base, buffer-builder
- , bytestring, lens, lifted-base, monad-control, network, old-locale
- , text, time, transformers-base
+ , bytestring, Cabal, dlist, exceptions, hspec, http-client
+ , http-client-tls, http-types, lens, lifted-base, monad-control
+ , network, old-locale, random, text, time, transformers-base
+ , unordered-containers, vector
}:
mkDerivation {
pname = "datadog";
- version = "0.1.0.1";
- sha256 = "05hfpkaizbgqi998wa0l0hb8qph8y7gwyx05690ljr0883m5a663";
+ version = "0.2.0.0";
+ sha256 = "0zk4dkd6q2rv0fbylp2fprizahfx2imczhrj08n0qd5h3mnck3c9";
libraryHaskellDepends = [
- aeson auto-update base buffer-builder bytestring lens lifted-base
- monad-control network old-locale text time transformers-base
+ aeson auto-update base buffer-builder bytestring dlist http-client
+ http-client-tls http-types lens lifted-base monad-control network
+ old-locale text time transformers-base unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson auto-update base buffer-builder bytestring Cabal dlist
+ exceptions hspec http-client http-client-tls http-types lens
+ lifted-base monad-control network old-locale random text time
+ transformers-base unordered-containers vector
];
homepage = "https://github.com/iand675/datadog";
- description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming.";
+ description = "Datadog client for Haskell. Supports both the HTTP API and StatsD.";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -55662,8 +56810,8 @@ self: {
({ mkDerivation, base, dates, hspec, QuickCheck, time }:
mkDerivation {
pname = "date-conversions";
- version = "0.1.0.0";
- sha256 = "0348mi754n9611hzs62v17f3qba4vyls9x82capjasy8f2mw1cqn";
+ version = "0.2.0.0";
+ sha256 = "1bx8r66wfghrfbmcyddsi6z5b66kc9skrq0hnk2mvz4gx2cl0gdq";
libraryHaskellDepends = [ base dates time ];
testHaskellDepends = [ base dates hspec QuickCheck time ];
homepage = "https://github.com/thoughtbot/date-conversions#readme";
@@ -55930,25 +57078,26 @@ self: {
}) {};
"dbus" = callPackage
- ({ mkDerivation, base, bytestring, cereal, chell, chell-quickcheck
- , containers, criterion, deepseq, directory, filepath, libxml-sax
- , network, parsec, process, QuickCheck, random, text, transformers
- , unix, vector, xml-types
+ ({ mkDerivation, base, bytestring, cereal, containers, criterion
+ , deepseq, directory, extra, filepath, libxml-sax, network, parsec
+ , process, QuickCheck, random, resourcet, tasty, tasty-hunit
+ , tasty-quickcheck, text, transformers, unix, vector, xml-types
}:
mkDerivation {
pname = "dbus";
- version = "0.10.13";
- sha256 = "1jksgv3c2bhi9d3kshllx6j1znyqmx189j6yml7j9gm0m3xsx55a";
+ version = "0.10.15";
+ sha256 = "1a5sjavq8mfzz4zxpkd9b6jxsvy0kl1rjq2hhy40gcz2qjfnamb4";
libraryHaskellDepends = [
- base bytestring cereal containers libxml-sax network parsec random
- text transformers unix vector xml-types
+ base bytestring cereal containers deepseq libxml-sax network parsec
+ random text transformers unix vector xml-types
];
testHaskellDepends = [
- base bytestring cereal chell chell-quickcheck containers directory
- filepath libxml-sax network parsec process QuickCheck random text
- transformers unix vector xml-types
+ base bytestring cereal containers directory extra filepath
+ libxml-sax network parsec process QuickCheck random resourcet tasty
+ tasty-hunit tasty-quickcheck text transformers unix vector
+ xml-types
];
- benchmarkHaskellDepends = [ base criterion deepseq ];
+ benchmarkHaskellDepends = [ base criterion ];
doCheck = false;
homepage = "https://github.com/rblaze/haskell-dbus#readme";
description = "A client library for the D-Bus IPC system";
@@ -56581,6 +57730,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "debug-pp" = callPackage
+ ({ mkDerivation, aeson, base, debug-hoed, directory, filepath, yaml
+ }:
+ mkDerivation {
+ pname = "debug-pp";
+ version = "0.1.1";
+ sha256 = "1hja3kgczsr9zr7vf0glsi0czdfgb97kchwwqhi1gr5nfdphncjb";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ aeson base debug-hoed directory filepath yaml
+ ];
+ homepage = "https://github.com/pepeiborra/debug-hoed-pp#readme";
+ description = "A preprocessor for the debug package";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {debug-hoed = null;};
+
"debug-time" = callPackage
({ mkDerivation, base, clock, containers }:
mkDerivation {
@@ -57060,6 +58228,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "dejafu_1_0_0_1" = callPackage
+ ({ mkDerivation, base, concurrency, containers, deepseq, exceptions
+ , leancheck, profunctors, random, ref-fd, transformers
+ }:
+ mkDerivation {
+ pname = "dejafu";
+ version = "1.0.0.1";
+ sha256 = "1v2hizvwf4clvqwwaab6ijlmwv7n97h8ag7dw9a63w4lipfl2anf";
+ libraryHaskellDepends = [
+ base concurrency containers deepseq exceptions leancheck
+ profunctors random ref-fd transformers
+ ];
+ homepage = "https://github.com/barrucadu/dejafu";
+ description = "A library for unit-testing concurrent programs";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"deka" = callPackage
({ mkDerivation, base, bytestring, mpdec, parsec, transformers }:
mkDerivation {
@@ -57664,8 +58850,8 @@ self: {
({ mkDerivation, base, doctest }:
mkDerivation {
pname = "derulo";
- version = "0.0.3";
- sha256 = "19g7nrgd5z7larkw1nb4vm9hfid1j8s2pcqyqflff4mp764m2ipg";
+ version = "1.0.0";
+ sha256 = "0ylfaj73yv9bzp1sygbhcipji2g9jws2r4alvhns1y7wzl74fgbz";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base ];
@@ -57908,6 +59094,38 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dhall_1_9_0" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, base16-bytestring
+ , bytestring, case-insensitive, charset, containers, contravariant
+ , cryptohash, deepseq, exceptions, http-client, http-client-tls
+ , lens, optparse-generic, parsers, prettyprinter, system-fileio
+ , system-filepath, tasty, tasty-hunit, text, text-format
+ , transformers, trifecta, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "dhall";
+ version = "1.9.0";
+ sha256 = "1i59rvjjkqikz964kzrnbxfwjhwvnwqwvaw9m03yq540qi4kmiaz";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-wl-pprint base base16-bytestring bytestring case-insensitive
+ charset containers contravariant cryptohash exceptions http-client
+ http-client-tls lens parsers prettyprinter system-fileio
+ system-filepath text text-format transformers trifecta
+ unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ base optparse-generic prettyprinter system-filepath text trifecta
+ ];
+ testHaskellDepends = [
+ base containers deepseq prettyprinter tasty tasty-hunit text vector
+ ];
+ description = "A configuration language guaranteed to terminate";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dhall-bash" = callPackage
({ mkDerivation, base, bytestring, containers, dhall
, neat-interpolation, optparse-generic, shell-escape, text
@@ -57930,6 +59148,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dhall-bash_1_0_7" = callPackage
+ ({ mkDerivation, base, bytestring, containers, dhall
+ , neat-interpolation, optparse-generic, shell-escape, text
+ , text-format, trifecta, vector
+ }:
+ mkDerivation {
+ pname = "dhall-bash";
+ version = "1.0.7";
+ sha256 = "1mwxzrr5dmlm1892a4akgs52jl0bwiyf2qpl2mnr91y7fnmn00qs";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers dhall neat-interpolation shell-escape
+ text text-format vector
+ ];
+ executableHaskellDepends = [
+ base bytestring dhall optparse-generic text trifecta
+ ];
+ description = "Compile Dhall to Bash";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dhall-check" = callPackage
({ mkDerivation, base, containers, dhall, directory, filepath
, fsnotify, text, trifecta
@@ -57968,6 +59209,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dhall-json_1_0_10" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, dhall
+ , optparse-generic, text, trifecta, vector, yaml
+ }:
+ mkDerivation {
+ pname = "dhall-json";
+ version = "1.0.10";
+ sha256 = "0zqb5hh3520l75walfnyr1i9dqphjxcawchvm12shjz2vqpi6wpq";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ aeson base dhall text vector ];
+ executableHaskellDepends = [
+ aeson aeson-pretty base bytestring dhall optparse-generic text
+ trifecta yaml
+ ];
+ description = "Compile Dhall to JSON or YAML";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dhall-nix" = callPackage
({ mkDerivation, base, containers, data-fix, dhall, hnix
, neat-interpolation, optparse-generic, text, text-format, trifecta
@@ -57990,6 +59251,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dhall-nix_1_0_10" = callPackage
+ ({ mkDerivation, base, containers, data-fix, dhall, hnix
+ , neat-interpolation, optparse-generic, text, text-format, trifecta
+ , vector
+ }:
+ mkDerivation {
+ pname = "dhall-nix";
+ version = "1.0.10";
+ sha256 = "09iy1a0nc2mwbsly58na9lw4jh7wv7zq0lspdcynhsxj3xv2q23n";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers data-fix dhall hnix neat-interpolation text
+ text-format vector
+ ];
+ executableHaskellDepends = [
+ base dhall hnix optparse-generic text trifecta
+ ];
+ description = "Dhall to Nix compiler";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dhall-text" = callPackage
({ mkDerivation, base, dhall, optparse-generic, text }:
mkDerivation {
@@ -58003,6 +59287,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "dhall-text_1_0_5" = callPackage
+ ({ mkDerivation, base, dhall, optparse-generic, text }:
+ mkDerivation {
+ pname = "dhall-text";
+ version = "1.0.5";
+ sha256 = "195nfflpk787m8jjmspw2x4rb2s7vd0z5wz5s0bzfwdl6c7xgg27";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [ base dhall optparse-generic text ];
+ description = "Template text using Dhall";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dhcp-lease-parser" = callPackage
({ mkDerivation, attoparsec, base, bytestring, chronos, ip, tasty
, tasty-hunit, text
@@ -58110,10 +59408,8 @@ self: {
}:
mkDerivation {
pname = "diagrams-builder";
- version = "0.8.0.1";
- sha256 = "072vzskwp20qb768rv87876ngn6gnj959m91vpzri9ls9jx0x6vf";
- revision = "3";
- editedCabalFile = "00lpy8ch7zjc2z3ifwg8j1jfsrf4sg1fk9pngykl8bqb79hm5h3i";
+ version = "0.8.0.2";
+ sha256 = "1jr98sza6bhzq9myfb9f2p8lfbs9qcxck67h2hvxisgpvmy0gjn2";
configureFlags = [ "-fcairo" "-fps" "-frasterific" "-fsvg" ];
isLibrary = true;
isExecutable = true;
@@ -58175,6 +59471,7 @@ self: {
homepage = "http://projects.haskell.org/diagrams/";
description = "HTML5 canvas backend for diagrams drawing EDSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"diagrams-contrib" = callPackage
@@ -58189,6 +59486,8 @@ self: {
pname = "diagrams-contrib";
version = "1.4.1";
sha256 = "1apbgicaq7qaij42hwh5aiy67si2fjd0m4lah1hw4vz0cqfxxs2v";
+ revision = "1";
+ editedCabalFile = "0143vrfnb5qp3m23nvh5h67b2wvkq8y27yn6jjq601cs95f3b41c";
libraryHaskellDepends = [
base circle-packing colour containers cubicbezier data-default
data-default-class diagrams-core diagrams-lib diagrams-solve
@@ -58247,6 +59546,8 @@ self: {
pname = "diagrams-gtk";
version = "1.4";
sha256 = "1sga2wwkircjgryd4pn9i0wvvcnh3qnhpxas32crpdq939idwsxn";
+ revision = "1";
+ editedCabalFile = "0afpcbgkc897gp0hpqi5frwbzln1qapf36p93v9zxl05my6nj04i";
libraryHaskellDepends = [
base cairo diagrams-cairo diagrams-lib gtk
];
@@ -58338,10 +59639,10 @@ self: {
}:
mkDerivation {
pname = "diagrams-lib";
- version = "1.4.1.2";
- sha256 = "0w16cljv9jcvn46hd19qvw1bfvxijlak286nap9qbvyavq2qhvjb";
- revision = "4";
- editedCabalFile = "0wlb4ng803rhx82msl49b39im4cw8naik0pcyyybpphyqbxxs6dd";
+ version = "1.4.2";
+ sha256 = "1rdg8b46hc1ybk1y9dw7w725rag58rkr7hs7z3gvk4isxm11gm79";
+ revision = "1";
+ editedCabalFile = "0vz16br2gn4agi35k92qw84cja2dqj63g7q3ak64jhc8r99bd4a1";
libraryHaskellDepends = [
active adjunctions array base bytestring cereal colour containers
data-default-class diagrams-core diagrams-solve directory
@@ -58473,6 +59774,8 @@ self: {
pname = "diagrams-rasterific";
version = "1.4";
sha256 = "190mc32fjjf3770fjp1bmbh3zc8l5bhqhqy30vv48l0pypfjrsns";
+ revision = "1";
+ editedCabalFile = "0y4hf13l9y4179vhdsak8zq69wyn3rgmwnz9wp0x4rj32gdjjp3j";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base bytestring containers data-default-class diagrams-core
@@ -58611,21 +59914,21 @@ self: {
}) {};
"dib" = callPackage
- ({ mkDerivation, base, bytestring, cereal, containers, digest
- , directory, filepath, mtl, process, text, time
+ ({ mkDerivation, ansi-terminal, base, bytestring, cereal
+ , containers, digest, directory, filepath, mtl, process, text, time
}:
mkDerivation {
pname = "dib";
- version = "0.6.1";
- sha256 = "0y7bkmmzqi9rgiq98m006gfjkr3q2wz2hpxx1dn9pyv896g1cr9l";
+ version = "0.7.2";
+ sha256 = "0r1hk45fdyhygmscnphl4n6dcs0rvgavhbg5si0aqsck4wsnql83";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base bytestring cereal containers digest directory filepath mtl
- process text time
+ ansi-terminal base bytestring cereal containers digest directory
+ filepath mtl process text time
];
executableHaskellDepends = [
- base containers directory filepath mtl time
+ base containers directory filepath mtl process time
];
description = "A simple, forward build system";
license = stdenv.lib.licenses.mit;
@@ -58702,8 +60005,8 @@ self: {
}:
mkDerivation {
pname = "dictionaries";
- version = "0.2.0.3";
- sha256 = "0a8d20vfd5gcxrfhsa0530fnzb9fqh47qsjbyhf7pnh0f0p0qbi6";
+ version = "0.2.0.4";
+ sha256 = "1m581w0fmb9ggwqkyfgxjw6zxfkk6iapmh17sizsqkmg2vbw7qzx";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -58963,8 +60266,8 @@ self: {
}:
mkDerivation {
pname = "digestive-functors";
- version = "0.8.2.0";
- sha256 = "0jkdn8hwpn01hn0ddsc5ary52r512hzvcyn6f422v0a0sikg49mg";
+ version = "0.8.3.0";
+ sha256 = "00nnhjd85fwav95k8f2pdsfk96rqmg7pc54zysqva3h2n5drhmp6";
libraryHaskellDepends = [
base bytestring containers mtl old-locale text time
];
@@ -59008,8 +60311,8 @@ self: {
}:
mkDerivation {
pname = "digestive-functors-blaze";
- version = "0.6.1.0";
- sha256 = "03czax6c5ch3z99azf8a6zpfawvkzfwq2nxicx9kkz460di5irsb";
+ version = "0.6.2.0";
+ sha256 = "19019nmzg84mgdvhpkyrd4v9dsnd9yjn3cmgcj3aj7yx4z4m1c24";
libraryHaskellDepends = [
base blaze-html blaze-markup digestive-functors text
];
@@ -59025,8 +60328,8 @@ self: {
}:
mkDerivation {
pname = "digestive-functors-happstack";
- version = "0.6.1.1";
- sha256 = "0d613rxwja327fb2dm79xh55vhpa4mg8c1ch4xzrgw3jcchykag5";
+ version = "0.6.1.2";
+ sha256 = "18i4hb39rkgj2jz2ii697gayxi02dqpfbx5arv6zyjvmp1ydynvz";
libraryHaskellDepends = [
base bytestring digestive-functors happstack-server text
];
@@ -59042,8 +60345,8 @@ self: {
}:
mkDerivation {
pname = "digestive-functors-heist";
- version = "0.8.7.0";
- sha256 = "13m7kz8mrc1a0il86xcqc4bfcipml2kynhpw01mjcz7cwxgcrlg6";
+ version = "0.8.8.0";
+ sha256 = "0i9aqabrlk4hj6l3dbc0fl1vwq6bpdwfgc03m2xl4lwlhj14j56w";
libraryHaskellDepends = [
base blaze-builder digestive-functors heist map-syntax mtl text
xmlhtml
@@ -60584,8 +61887,8 @@ self: {
pname = "distributive";
version = "0.5.3";
sha256 = "0y566r97sfyvhsmd4yxiz4ns2mqgwf5bdbp56wgxl6wlkidq0wwi";
- revision = "2";
- editedCabalFile = "02j27xvlj0jw3b2jpfg6wbysj0blllin792wj6qnrgnrvd4haj7v";
+ revision = "3";
+ editedCabalFile = "17qqdl8p04vy314jp045100989lh84cbhqv6ghizm87xpk7ck4j3";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base base-orphans tagged transformers transformers-compat
@@ -60733,17 +62036,13 @@ self: {
}) {};
"dlist" = callPackage
- ({ mkDerivation, base, Cabal, deepseq, QuickCheck
- , quickcheck-instances
- }:
+ ({ mkDerivation, base, Cabal, deepseq, QuickCheck }:
mkDerivation {
pname = "dlist";
- version = "0.8.0.3";
- sha256 = "0brgai4vs7xz29p06kd6gzg5bpa8iy3k7yzgcc44izspd74q4rw7";
+ version = "0.8.0.4";
+ sha256 = "0yirrh0s6acjy9hhvf5fqg2d6q5y6gm9xs04v6w1imndh1xqdwdc";
libraryHaskellDepends = [ base deepseq ];
- testHaskellDepends = [
- base Cabal QuickCheck quickcheck-instances
- ];
+ testHaskellDepends = [ base Cabal QuickCheck ];
homepage = "https://github.com/spl/dlist";
description = "Difference lists";
license = stdenv.lib.licenses.bsd3;
@@ -60881,8 +62180,8 @@ self: {
}:
mkDerivation {
pname = "dns";
- version = "3.0.0";
- sha256 = "1i2mdrzvyxclfrpik2rm36ljm3c3z1a73vjy7vivzy6wcmfzyb56";
+ version = "3.0.1";
+ sha256 = "1aq8n0qglvx134fl8ry1liw7kpw7flm631s9qb7is7bw510wgdd6";
libraryHaskellDepends = [
async attoparsec auto-update base base64-bytestring binary
bytestring conduit conduit-extra containers cryptonite iproute mtl
@@ -61039,6 +62338,8 @@ self: {
pname = "docker";
version = "0.4.1.1";
sha256 = "103j8hcabfwrzjmjzxw3ks7b90nnanznck941v956q1h3240npka";
+ revision = "1";
+ editedCabalFile = "1zbi904jaq2mvbxhmw2l181xz0p6q8mia843g5arsz3akckq2z72";
libraryHaskellDepends = [
aeson base blaze-builder bytestring conduit conduit-combinators
conduit-extra containers data-default-class directory exceptions
@@ -61058,6 +62359,43 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "docker_0_5_0_1" = callPackage
+ ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit
+ , conduit-combinators, conduit-extra, connection, containers
+ , data-default-class, directory, exceptions, filemanip, filepath
+ , http-client, http-client-tls, http-conduit, http-types, lens
+ , lens-aeson, monad-control, mtl, network, process, QuickCheck
+ , resourcet, scientific, tar, tasty, tasty-hunit, tasty-quickcheck
+ , temporary, text, time, tls, transformers, transformers-base
+ , unordered-containers, uuid, vector, x509, x509-store, x509-system
+ , zlib
+ }:
+ mkDerivation {
+ pname = "docker";
+ version = "0.5.0.1";
+ sha256 = "0357d9hnrr990ysp87c17a8brnkp1w2w666m5jxhkap53n2dji4v";
+ revision = "1";
+ editedCabalFile = "1rrhgk3g33ppzxp3yqwdsj7l9nrmxl2xssb97slm7l81vypvs5z5";
+ libraryHaskellDepends = [
+ aeson base blaze-builder bytestring conduit conduit-combinators
+ conduit-extra containers data-default-class directory exceptions
+ filemanip filepath http-client http-conduit http-types
+ monad-control mtl network resourcet scientific tar temporary text
+ time tls transformers transformers-base unordered-containers uuid
+ vector x509 x509-store x509-system zlib
+ ];
+ testHaskellDepends = [
+ aeson base bytestring connection containers directory http-client
+ http-client-tls http-types lens lens-aeson process QuickCheck tasty
+ tasty-hunit tasty-quickcheck text transformers unordered-containers
+ vector
+ ];
+ homepage = "https://github.com/denibertovic/docker-hs";
+ description = "An API client for docker written in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"docker-build-cacher" = callPackage
({ mkDerivation, base, containers, foldl, language-docker
, system-filepath, text, turtle
@@ -61075,6 +62413,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "docker-build-cacher_1_9_1" = callPackage
+ ({ mkDerivation, base, containers, foldl, language-docker
+ , system-filepath, text, turtle
+ }:
+ mkDerivation {
+ pname = "docker-build-cacher";
+ version = "1.9.1";
+ sha256 = "1d8v9900j9ygx060gahwk208i5f36sdpnlpdaa1qqhcnywvmfzi4";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base containers foldl language-docker system-filepath text turtle
+ ];
+ homepage = "https://github.com/seatgeek/docker-build-cacher#readme";
+ description = "Builds a services with docker and caches all of its intermediate stages";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"dockercook" = callPackage
({ mkDerivation, aeson, aeson-pretty, attoparsec, base
, base16-bytestring, bytestring, conduit, conduit-combinators
@@ -61516,31 +62873,33 @@ self: {
}) {};
"dotenv" = callPackage
- ({ mkDerivation, base, base-compat, exceptions, hspec
+ ({ mkDerivation, base, base-compat, directory, exceptions, hspec
, hspec-megaparsec, megaparsec, optparse-applicative, process, text
- , transformers
+ , transformers, yaml
}:
mkDerivation {
pname = "dotenv";
- version = "0.5.1.1";
- sha256 = "1i4892xc2d05qnswcyf40ww5idjd1m3wwqz9wxwhph1jqzvsgc9b";
+ version = "0.5.2.3";
+ sha256 = "194cjf641q54b19daldg9nyi9gf8j4fxql6aslqzbgy7bfg5aj5b";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base base-compat exceptions megaparsec process text transformers
+ base base-compat directory exceptions megaparsec process text
+ transformers yaml
];
executableHaskellDepends = [
base base-compat megaparsec optparse-applicative process text
- transformers
+ transformers yaml
];
testHaskellDepends = [
- base base-compat exceptions hspec hspec-megaparsec megaparsec
- process text transformers
+ base base-compat directory exceptions hspec hspec-megaparsec
+ megaparsec process text transformers yaml
];
homepage = "https://github.com/stackbuilders/dotenv-hs";
description = "Loads environment variables from dotenv files";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"dotfs" = callPackage
@@ -62056,16 +63415,15 @@ self: {
"drifter-postgresql" = callPackage
({ mkDerivation, base, containers, drifter, either, mtl
, postgresql-simple, tasty, tasty-hunit, text, time, transformers
+ , transformers-compat
}:
mkDerivation {
pname = "drifter-postgresql";
- version = "0.2.0";
- sha256 = "0nl26zzvj3wvz13xgjn1j70br69wlaj1ddaz10d9ib6n1brn6hcd";
- revision = "1";
- editedCabalFile = "1nfzgzbqdnhdxg8zjhfgkbs9birdpwcr7ym14ynysrfv15w69bnq";
+ version = "0.2.1";
+ sha256 = "0p7ddvfmjhf22psga0phhw2m0sdhymsc5k13jrwrdawsxivh2clk";
libraryHaskellDepends = [
- base containers drifter either mtl postgresql-simple time
- transformers
+ base containers drifter mtl postgresql-simple time transformers
+ transformers-compat
];
testHaskellDepends = [
base drifter either postgresql-simple tasty tasty-hunit text
@@ -62077,13 +63435,19 @@ self: {
}) {};
"drinkery" = callPackage
- ({ mkDerivation, base, criterion, mtl, transformers }:
+ ({ mkDerivation, base, conduit, conduit-combinators, gauge, list-t
+ , ListT, machines, mtl, pipes, transformers
+ }:
mkDerivation {
pname = "drinkery";
- version = "0";
- sha256 = "06ad33l3xv9paspb5ymr97zzb4dkdfq9sg40b3i62nf52gpjfdly";
+ version = "0.1";
+ sha256 = "0cwv7z7gzbbkxrdfikkbmkhd6asbib1m0j9h98nwhm7i1c498rhi";
+ revision = "1";
+ editedCabalFile = "19zjmmfjkkx3dsy4zwz8f3iciwgvlra9rxp5y11mkb5glg5qy3f9";
libraryHaskellDepends = [ base mtl transformers ];
- benchmarkHaskellDepends = [ base criterion ];
+ benchmarkHaskellDepends = [
+ base conduit conduit-combinators gauge list-t ListT machines pipes
+ ];
homepage = "https://github.com/fumieval/drinkery#readme";
description = "Boozy streaming library";
license = stdenv.lib.licenses.bsd3;
@@ -62826,8 +64190,8 @@ self: {
}:
mkDerivation {
pname = "dynamic-graph";
- version = "0.1.0.9";
- sha256 = "0paa9y5h0pp4b44kq5yn8m43nir4wg9hgfmns2d76r8qjry617qp";
+ version = "0.1.0.11";
+ sha256 = "0mgciglcq8cshbcrc0ff858596zlm07z6wcmjpaa3irqbkdn7ma1";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base cairo colour either GLFW-b GLUtil OpenGL pango pipes
@@ -63396,6 +64760,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ecstasy" = callPackage
+ ({ mkDerivation, base, containers, mtl, transformers }:
+ mkDerivation {
+ pname = "ecstasy";
+ version = "0.1.0.0";
+ sha256 = "0hid87vwyzxf1fsp0y8yw69wpsxzljyjr27bm1q7b79r9zsg63vj";
+ libraryHaskellDepends = [ base containers mtl transformers ];
+ homepage = "http://github.com/isovector/ecstasy/";
+ description = "A GHC.Generics based entity component system.";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ecu" = callPackage
({ mkDerivation, base, bytestring, canlib, digest, directory
, process, vcd
@@ -63725,10 +65102,10 @@ self: {
({ mkDerivation, base, type-level-sets }:
mkDerivation {
pname = "effect-monad";
- version = "0.7.0.0";
- sha256 = "05jlh86hfxawkbckvw2f2xj8yc36w2hr1w3l6q75359mwa7bp7fy";
+ version = "0.8.1.0";
+ sha256 = "0lrx586ij1c09hv1rj14l2xi3papzdg8496kas6czdld0kfj8kw1";
libraryHaskellDepends = [ base type-level-sets ];
- description = "Embeds effect systems into Haskell using graded monads";
+ description = "Embeds effect systems and program logics into Haskell using graded monads and parameterised monads";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -63822,8 +65199,8 @@ self: {
}:
mkDerivation {
pname = "egison";
- version = "3.7.9";
- sha256 = "1jx6nrp2v581nbwgblrpqv052lbnbba5nppd3m8npbx5pvpda994";
+ version = "3.7.10";
+ sha256 = "129g0xw951pkizs4rmbn5mhy1w0lhqw06hj2sr8sf7r2wnqmn0dy";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -64150,16 +65527,17 @@ self: {
}) {};
"ekg-elasticsearch" = callPackage
- ({ mkDerivation, aeson, base, bytestring, ekg-core, hostname
- , http-client, lens, text, time, unordered-containers, wreq
+ ({ mkDerivation, aeson, base, bytestring, data-default-class
+ , ekg-core, hostname, http-client, lens, req, text, time
+ , unordered-containers
}:
mkDerivation {
pname = "ekg-elasticsearch";
- version = "0.3.1.1";
- sha256 = "0v78xrmnxx6z0lgx8lvc15hmd0zgm2kqibvkf9sj3cdza75vsr1q";
+ version = "0.4.0.0";
+ sha256 = "03bh278n6xvvjr9z8lws25nf1x0j5rw12zmd7h55vmfjn0iblajy";
libraryHaskellDepends = [
- aeson base bytestring ekg-core hostname http-client lens text time
- unordered-containers wreq
+ aeson base bytestring data-default-class ekg-core hostname
+ http-client lens req text time unordered-containers
];
homepage = "https://github.com/cdodev/ekg-elasticsearch";
description = "Push metrics to elasticsearch";
@@ -64422,6 +65800,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "eliminators_0_4" = callPackage
+ ({ mkDerivation, base, extra, hspec, hspec-discover, singleton-nats
+ , singletons, template-haskell, th-abstraction, th-desugar
+ }:
+ mkDerivation {
+ pname = "eliminators";
+ version = "0.4";
+ sha256 = "1lsvz498db2vlaj4d9p4bi4pl4cnsl27gmmhw1ipfxw4kxmfdf4z";
+ revision = "1";
+ editedCabalFile = "188dnmw7gwfp4fxyljhb3gv78bj9gai4v2if8d9gcnss6ykp5mn1";
+ libraryHaskellDepends = [
+ base extra singleton-nats singletons template-haskell
+ th-abstraction th-desugar
+ ];
+ testHaskellDepends = [ base hspec singleton-nats singletons ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "https://github.com/RyanGlScott/eliminators";
+ description = "Dependently typed elimination functions using singletons";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"elision" = callPackage
({ mkDerivation, base, profunctors }:
mkDerivation {
@@ -64439,18 +65839,16 @@ self: {
}) {};
"elm-bridge" = callPackage
- ({ mkDerivation, aeson, base, containers, hspec, QuickCheck
- , template-haskell, text
+ ({ mkDerivation, aeson, base, containers, hspec, hspec-discover
+ , QuickCheck, template-haskell, text
}:
mkDerivation {
pname = "elm-bridge";
- version = "0.4.1";
- sha256 = "1wp813l6bdw5x7vpiq098v1gbxzvv3129n2rl4div9mrj53a3i2l";
- revision = "1";
- editedCabalFile = "05kk6lsh10ligdgj4dw0iyhvv0blnrcvmk94hn27qq70bpv8xcqz";
+ version = "0.4.2";
+ sha256 = "1mcaic3xdll6bdv4yjp0j0861yapgfgb4wd0ckh7dpcmcnfnarhx";
libraryHaskellDepends = [ aeson base template-haskell ];
testHaskellDepends = [
- aeson base containers hspec QuickCheck text
+ aeson base containers hspec hspec-discover QuickCheck text
];
homepage = "https://github.com/agrafix/elm-bridge";
description = "Derive Elm types and Json code from Haskell types";
@@ -64940,8 +66338,8 @@ self: {
}:
mkDerivation {
pname = "email-validate";
- version = "2.3.2";
- sha256 = "1h15z89qsp7b08nnjgs2rcwavfhfrkanvh7j8jp0rrx7xh0rz6lv";
+ version = "2.3.2.1";
+ sha256 = "0qvxysiap3r4mi3xff5nsk9qv6diqxfgwj186bypbamzvzlz0lav";
libraryHaskellDepends = [
attoparsec base bytestring template-haskell
];
@@ -65096,6 +66494,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "emoji" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, template-haskell, text
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "emoji";
+ version = "0.1.0.2";
+ sha256 = "1307phy81cki9ijpsl8hfczxm5wi1lrmmvmyxxn9a109nz9aqfla";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring template-haskell text unordered-containers
+ ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/nakaji-dayo/hs-emoji#readme";
+ description = "emoji utility";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"empty" = callPackage
({ mkDerivation }:
mkDerivation {
@@ -65233,6 +66650,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "eng-stemmer" = callPackage
+ ({ mkDerivation, base, containers, doctest, mtl, tasty, tasty-hunit
+ , text
+ }:
+ mkDerivation {
+ pname = "eng-stemmer";
+ version = "0.1.0.2";
+ sha256 = "0fz7dwgmhlna906x6m5s5yrk6w5wswsj75irrkc2hrwxrq1f6mqw";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base containers mtl text ];
+ executableHaskellDepends = [ base containers text ];
+ testHaskellDepends = [
+ base containers doctest tasty tasty-hunit text
+ ];
+ homepage = "https://github.com/ChrisCoffey/eng-stemmer";
+ description = "An English language stemmer (Porter2)";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"engine-io" = callPackage
({ mkDerivation, aeson, async, attoparsec, base, base64-bytestring
, bytestring, either, free, monad-loops, mwc-random, stm, stm-delay
@@ -65371,6 +66808,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "entropy_0_4" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, directory, filepath
+ , process, unix
+ }:
+ mkDerivation {
+ pname = "entropy";
+ version = "0.4";
+ sha256 = "0h8icprikafidq4x88crz5phfgp6zgmxq4awam2dhs0z2fswd9wc";
+ revision = "1";
+ editedCabalFile = "1hx5yxzypi708zlg1almqhfasfgmaisrv44fr0i8ldvvqxf5slza";
+ setupHaskellDepends = [ base Cabal directory filepath process ];
+ libraryHaskellDepends = [ base bytestring unix ];
+ homepage = "https://github.com/TomMD/entropy";
+ description = "A platform independent entropy source";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"enumerable" = callPackage
({ mkDerivation, base, control-monad-omega, tagged }:
mkDerivation {
@@ -65757,8 +67212,8 @@ self: {
}:
mkDerivation {
pname = "epub-tools";
- version = "2.9";
- sha256 = "198fzgd04j1dyiv9cpkg6aqvawfiqb4k5awyqbiw6ll84sy0ymgb";
+ version = "2.11";
+ sha256 = "18k4aipaw6zlzhpxidl5b7q5hvy51sj030p7mw89flrgd8kd3g2p";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -65768,9 +67223,9 @@ self: {
testHaskellDepends = [
base directory epub-metadata filepath HUnit mtl parsec regex-compat
];
- homepage = "http://hub.darcs.net/dino/epub-tools";
+ homepage = "https://github.com/dino-/epub-tools.git";
description = "Command line utilities for working with epub files";
- license = stdenv.lib.licenses.bsd3;
+ license = stdenv.lib.licenses.isc;
}) {};
"epubname" = callPackage
@@ -65803,6 +67258,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "eq_4_1" = callPackage
+ ({ mkDerivation, base, semigroupoids }:
+ mkDerivation {
+ pname = "eq";
+ version = "4.1";
+ sha256 = "10k1xnvga7c6ijmkfq2qd4vc5i2lnkz4xjmba74g0xzhk6gkvp0n";
+ libraryHaskellDepends = [ base semigroupoids ];
+ homepage = "http://github.com/ekmett/eq/";
+ description = "Leibnizian equality";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"equal-files" = callPackage
({ mkDerivation, base, bytestring, explicit-exception, filemanip
, transformers, utility-ht
@@ -66151,23 +67619,23 @@ self: {
"ersatz" = callPackage
({ mkDerivation, array, attoparsec, base, bytestring, Cabal
, cabal-doctest, containers, data-default, directory, doctest
- , filepath, lens, mtl, parsec, process, temporary, transformers
- , unordered-containers
+ , filepath, lens, mtl, parsec, process, semigroups, temporary
+ , transformers, unordered-containers
}:
mkDerivation {
pname = "ersatz";
- version = "0.4.1";
- sha256 = "0na9i2jc5assjis12pfpi08ykf90b79ydsvv1lqsbgsbij9w2w91";
+ version = "0.4.2";
+ sha256 = "1rr46awz0rbzg0i6424rnrykcwkgwxfzgx5d5qmva4y41l62vkxf";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
array attoparsec base bytestring containers data-default lens mtl
- process temporary transformers unordered-containers
+ process semigroups temporary transformers unordered-containers
];
executableHaskellDepends = [
- array base containers lens mtl parsec
+ array base containers lens mtl parsec semigroups
];
testHaskellDepends = [ array base directory doctest filepath mtl ];
homepage = "http://github.com/ekmett/ersatz";
@@ -66443,8 +67911,8 @@ self: {
}:
mkDerivation {
pname = "ethereum-analyzer";
- version = "3.2.0";
- sha256 = "1rqzx2b6fn8vzls05g7hs163h5fjw2cdhkyqbfr8a7p9cyv32nk8";
+ version = "3.3.4";
+ sha256 = "0d9xw77i8dzb4sk3j7qhnbdand58vz1bhfvqb0qhvg0qdfg732vi";
libraryHaskellDepends = [
aeson base bimap bytestring containers ethereum-analyzer-deps extra
fgl GenericPretty graphviz hexstring hoopl pretty protolude split
@@ -66469,8 +67937,8 @@ self: {
}:
mkDerivation {
pname = "ethereum-analyzer-cli";
- version = "3.2.0";
- sha256 = "1svyxmk4441x95xxfqn3z18dqvkqykyksqiyb4298pb8g0cq54sx";
+ version = "3.3.4";
+ sha256 = "1bpr5l8hsn6ggiqs3b4mw27r52ikpqibdhn4w22k1gk8mdfr9gzc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -66496,8 +67964,8 @@ self: {
}:
mkDerivation {
pname = "ethereum-analyzer-deps";
- version = "3.2.0";
- sha256 = "1ahpk43ihr3ddzzpxi6vx27f77i84grny5avsakjn0hlzz3ady19";
+ version = "3.3.4";
+ sha256 = "00v0f797z99yil4ihgirsyw9l4yiscg3aidlwjq4maixvzsqvr02";
libraryHaskellDepends = [
aeson ansi-wl-pprint base base16-bytestring binary bytestring
containers deepseq fast-logger global-lock monad-logger split text
@@ -66516,8 +67984,8 @@ self: {
}:
mkDerivation {
pname = "ethereum-analyzer-webui";
- version = "3.2.0";
- sha256 = "17hmsmr13qvmfl9w9yfmxbbi6lv3b3r3kqsgnbji5i01jvgnggvs";
+ version = "3.3.4";
+ sha256 = "11h5q6xmig8fk3bxk797s231pk5dnsvvxs9r68zbxv7jk466yq97";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -66664,6 +68132,28 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "euler-tour-tree" = callPackage
+ ({ mkDerivation, base, containers, fingertree, hlint, keys, mtl
+ , parser-combinators, QuickCheck, sequence, tasty, tasty-hunit
+ , tasty-quickcheck, transformers, Unique
+ }:
+ mkDerivation {
+ pname = "euler-tour-tree";
+ version = "0.1.0.1";
+ sha256 = "12fxs5992rlfg91xxh2sahm2vykcjcjc30iwzkfm894qrk4flbz4";
+ libraryHaskellDepends = [
+ base containers fingertree mtl parser-combinators transformers
+ Unique
+ ];
+ testHaskellDepends = [
+ base containers hlint keys QuickCheck sequence tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ homepage = "https://github.com/k0ral/euler-tour-tree";
+ description = "Euler tour trees";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
"euphoria" = callPackage
({ mkDerivation, base, containers, criterion, deepseq, elerea
, enummapset-th, hashable, HUnit, test-framework
@@ -66971,8 +68461,8 @@ self: {
}:
mkDerivation {
pname = "eventloop";
- version = "0.8.2.5";
- sha256 = "0vl9kc0grhp72rlx922khvf5833qshyx4danismf8n5r3i9f7qr0";
+ version = "0.8.2.6";
+ sha256 = "1f3dmkrxjfj128pdkarrc6mka09jmh360bn6vgbp4qm2xv5hl16s";
libraryHaskellDepends = [
aeson base bytestring concurrent-utilities deepseq network stm
suspend text timers websockets
@@ -67042,15 +68532,15 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "eventsource-geteventstore-store_1_0_5" = callPackage
+ "eventsource-geteventstore-store_1_0_6" = callPackage
({ mkDerivation, aeson, base, eventsource-api
, eventsource-store-specs, eventstore, mtl, protolude
, string-conversions, tasty, tasty-hspec, transformers-base
}:
mkDerivation {
pname = "eventsource-geteventstore-store";
- version = "1.0.5";
- sha256 = "0lbgjbl14p6480pmr27zls91g0zy8g0id59ls0hajaghwibcabb6";
+ version = "1.0.6";
+ sha256 = "0fy1sgc43a6d4hrwyc3kawcnvpm4zlmwnznw27zd40hrbzkkkzw2";
libraryHaskellDepends = [
aeson base eventsource-api eventstore mtl string-conversions
transformers-base
@@ -67199,7 +68689,7 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "eventstore_1_0_0" = callPackage
+ "eventstore_1_1_0" = callPackage
({ mkDerivation, aeson, array, async, base, bifunctors, bytestring
, cereal, clock, connection, containers, dns, dotnet-timespan
, ekg-core, exceptions, fast-logger, hashable, http-client
@@ -67211,8 +68701,8 @@ self: {
}:
mkDerivation {
pname = "eventstore";
- version = "1.0.0";
- sha256 = "1mhgvh1mm6fkibjd9p8k2wjhi064b22knwkjdk4i396zya6210f0";
+ version = "1.1.0";
+ sha256 = "0r91vgnq291aq4smbap07agm6bry1xflawihm31d0krzv0j69rx1";
libraryHaskellDepends = [
aeson array base bifunctors bytestring cereal clock connection
containers dns dotnet-timespan ekg-core exceptions fast-logger
@@ -67286,8 +68776,8 @@ self: {
}:
mkDerivation {
pname = "ex-pool";
- version = "0.2";
- sha256 = "0da5grl2fdca24zhlngq2n16smdb4f5vvxqzc29ipsc3j7wkbmva";
+ version = "0.2.1";
+ sha256 = "0djk2g99jn24jcnq2l5yzrs2ra7wq1h3p80xkqx30arkqq5wbf0d";
libraryHaskellDepends = [
base exceptions hashable stm time transformers vector
];
@@ -67340,6 +68830,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "exact-pi_0_4_1_3" = callPackage
+ ({ mkDerivation, base, numtype-dk, semigroups }:
+ mkDerivation {
+ pname = "exact-pi";
+ version = "0.4.1.3";
+ sha256 = "1r1cjyz6aqbq8ydn3gq4107n3hnd6zbygj7pw299nqdaag38g7jf";
+ libraryHaskellDepends = [ base numtype-dk semigroups ];
+ homepage = "https://github.com/dmcclean/exact-pi/";
+ description = "Exact rational multiples of pi (and integer powers of pi)";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"exact-real" = callPackage
({ mkDerivation, base, checkers, criterion, directory, doctest
, filepath, groups, integer-gmp, memoize, QuickCheck, random, tasty
@@ -67486,8 +68989,8 @@ self: {
pname = "exceptions";
version = "0.8.3";
sha256 = "1gl7xzffsqmigam6zg0jsglncgzxqafld2p6kb7ccp9xirzdjsjd";
- revision = "2";
- editedCabalFile = "1vl59j0l7m53hkzlcfmdbqbab8dk4lp9gzwryn7nsr6ylg94wayw";
+ revision = "4";
+ editedCabalFile = "18iip6wffnrp1jgnf09gxg4v17ymjank50kjshxvcy9s9l9g13ln";
libraryHaskellDepends = [
base mtl stm template-haskell transformers transformers-compat
];
@@ -67754,6 +69257,7 @@ self: {
];
description = "Existential types with lens-like accessors";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {control-invariants = null;};
@@ -67919,6 +69423,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "explicit-constraint-lens" = callPackage
+ ({ mkDerivation, base, tasty, tasty-hunit }:
+ mkDerivation {
+ pname = "explicit-constraint-lens";
+ version = "0.1.0.0";
+ sha256 = "181frvmgv65rcjpiya4gswvpq9ahz97c8lalhgmwknx9jx5nqd98";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base tasty tasty-hunit ];
+ homepage = "https://github.com/leftaroundabout/explicit-constraint-lens";
+ description = "Fully-flexible polymorphic lenses, without any bizarre profunctors";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"explicit-determinant" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -68078,6 +69595,7 @@ self: {
];
description = "Encode and Decode expressions from Z3 ASTs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"extcore" = callPackage
@@ -68165,8 +69683,8 @@ self: {
}:
mkDerivation {
pname = "extensible";
- version = "0.4.7";
- sha256 = "0a0xmixyhfxlkrqr0nk1nvi8177i4432xamg91y5971mgail7kgv";
+ version = "0.4.7.1";
+ sha256 = "04gb1havami26mkwdr9vbqs28r1rc9ggd9xxcaf6zw9s5z2hvr5a";
libraryHaskellDepends = [
base comonad constraints deepseq ghc-prim hashable monad-skeleton
mtl primitive profunctors QuickCheck semigroups StateVar tagged
@@ -68216,6 +69734,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "extensible-effects_2_4_0_0" = callPackage
+ ({ mkDerivation, base, criterion, HUnit, mtl, QuickCheck, silently
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , test-framework-th, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "extensible-effects";
+ version = "2.4.0.0";
+ sha256 = "024566vv5mmnma2fwnbfg9bzayi6inl1a6ys4nqg0cv57rqny6nc";
+ libraryHaskellDepends = [ base transformers transformers-base ];
+ testHaskellDepends = [
+ base HUnit QuickCheck silently test-framework test-framework-hunit
+ test-framework-quickcheck2 test-framework-th
+ ];
+ benchmarkHaskellDepends = [
+ base criterion HUnit mtl test-framework test-framework-hunit
+ test-framework-quickcheck2 test-framework-th
+ ];
+ homepage = "https://github.com/suhailshergill/extensible-effects";
+ description = "An Alternative to Monad Transformers";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"extensible-exceptions" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -68258,8 +69800,8 @@ self: {
}:
mkDerivation {
pname = "extra";
- version = "1.6.2";
- sha256 = "1l8l8724g3kd3f01pq429y7czr1bnhbrq2y0lii1hi767sjxgnz4";
+ version = "1.6.3";
+ sha256 = "06ds0jlx6sljwdf63l154qbzia9mnsri79i9qm3xikky3nj9ia1m";
libraryHaskellDepends = [
base clock directory filepath process time unix
];
@@ -68344,8 +69886,8 @@ self: {
({ mkDerivation, base, leancheck, speculate, template-haskell }:
mkDerivation {
pname = "extrapolate";
- version = "0.3.0";
- sha256 = "1mqhn515mq730frzcadw4m0zsizk1vkhcygazy6y03533mai0z2g";
+ version = "0.3.1";
+ sha256 = "1hz03mdascy4jvqhyrqqmb1py3pb03g4z3if05z2cbdxgbgsbbn4";
libraryHaskellDepends = [
base leancheck speculate template-haskell
];
@@ -68399,8 +69941,8 @@ self: {
}:
mkDerivation {
pname = "factory";
- version = "0.3.0.0";
- sha256 = "0izhwb0plxhlsr4ghk2rybm367n83d598s3nk8ss0mnnv7gv5wpm";
+ version = "0.3.1.4";
+ sha256 = "0k5bb0imp001f1sj785qqy9k67wvb91mr4fpdcg5riykiv8j9l1x";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -68673,6 +70215,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "fast-arithmetic" = callPackage
+ ({ mkDerivation, arithmoi, ats-setup, base, Cabal, combinat
+ , composition-prelude, criterion, hspec, QuickCheck
+ , recursion-schemes
+ }:
+ mkDerivation {
+ pname = "fast-arithmetic";
+ version = "0.3.2.4";
+ sha256 = "0dvrwlcpfsrrw8la5brvhjc78k48s2kaz08cg6xqx82vkrzipm63";
+ setupHaskellDepends = [ ats-setup base Cabal ];
+ libraryHaskellDepends = [
+ base composition-prelude recursion-schemes
+ ];
+ testHaskellDepends = [ arithmoi base combinat hspec QuickCheck ];
+ benchmarkHaskellDepends = [ arithmoi base combinat criterion ];
+ homepage = "https://github.com/vmchale/fast-arithmetic#readme";
+ description = "Fast functions on integers";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"fast-builder" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, criterion
, deepseq, ghc-prim, process, QuickCheck, scientific, stm
@@ -68694,6 +70257,26 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "fast-combinatorics" = callPackage
+ ({ mkDerivation, base, Cabal, composition-prelude, criterion
+ , directory, hspec, http-client, http-client-tls, tar, zlib
+ }:
+ mkDerivation {
+ pname = "fast-combinatorics";
+ version = "0.1.0.9";
+ sha256 = "0p9pdp51ii0ggf6ghh7aijk1q1crf850qwdvyi7nkx65nfi9qc7z";
+ setupHaskellDepends = [
+ base Cabal directory http-client http-client-tls tar zlib
+ ];
+ libraryHaskellDepends = [ base composition-prelude ];
+ testHaskellDepends = [ base hspec ];
+ benchmarkHaskellDepends = [ base criterion ];
+ homepage = "https://github.com//fast-combinatorics#readme";
+ description = "Fast combinatorics";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"fast-digits" = callPackage
({ mkDerivation, base, criterion, digits, integer-gmp, QuickCheck
, smallcheck, tasty, tasty-quickcheck, tasty-smallcheck
@@ -68984,15 +70567,13 @@ self: {
, haskell-src-exts, language-ecmascript, mtl, mtl-compat
, optparse-applicative, process, safe, sourcemap, split, spoon, syb
, text, time, transformers, transformers-compat
- , traverse-with-class, type-eq, uniplate, unordered-containers
- , utf8-string, vector
+ , traverse-with-class, uniplate, unordered-containers, utf8-string
+ , vector
}:
mkDerivation {
pname = "fay";
- version = "0.23.1.16";
- sha256 = "0r4ac76mn7dykva0dz6ar2zfcij2kiz8kjfcywpgdg40g75zhvn4";
- revision = "8";
- editedCabalFile = "1ybc4vv0d3vya4a1xgr2sbq1zx1bzm82acxivs458i9pj56wp87j";
+ version = "0.23.2.0";
+ sha256 = "1fhdznpqyrgk2m239qdq6zxsdhx3qhciq8fi2ka7s6l7h9z277dw";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -69001,8 +70582,8 @@ self: {
data-lens-light directory filepath ghc-paths haskell-src-exts
language-ecmascript mtl mtl-compat process safe sourcemap split
spoon syb text time transformers transformers-compat
- traverse-with-class type-eq uniplate unordered-containers
- utf8-string vector
+ traverse-with-class uniplate unordered-containers utf8-string
+ vector
];
executableHaskellDepends = [ base mtl optparse-applicative split ];
homepage = "https://github.com/faylang/fay/wiki";
@@ -69740,6 +71321,7 @@ self: {
homepage = "https://github.com/markus-git/feldspar-signal";
description = "Signal Processing extension for Feldspar";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {feldspar-compiler-shim = null; monadic-edsl-priv = null;};
@@ -70358,12 +71940,12 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "filepath_1_4_1_2" = callPackage
+ "filepath_1_4_2" = callPackage
({ mkDerivation, base, QuickCheck }:
mkDerivation {
pname = "filepath";
- version = "1.4.1.2";
- sha256 = "1hrbi7ckrkqzw73ziqiyh00xp28c79pk0jrj1vqiq5nwfs3hryvv";
+ version = "1.4.2";
+ sha256 = "0bnryq00xbcsswxmahl42x85bfh23mxsap0gq8q0dm1v67ij7a0q";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base QuickCheck ];
homepage = "https://github.com/haskell/filepath#readme";
@@ -70374,16 +71956,16 @@ self: {
"filepath-crypto" = callPackage
({ mkDerivation, base, binary, bytestring, case-insensitive
- , cryptoids, cryptoids-types, encoding, exceptions, filepath, sandi
- , template-haskell
+ , cryptoids, cryptoids-class, cryptoids-types, exceptions, filepath
+ , sandi, template-haskell
}:
mkDerivation {
pname = "filepath-crypto";
- version = "0.0.0.2";
- sha256 = "1i6y0bpyndghkfip2l0ijk9mnhia0fjmd6skzl1a3dbh5pibf7fd";
+ version = "0.1.0.0";
+ sha256 = "1bj9haa4ignmk6c6gdiqb4rnwy395pwqdyfy4kgg0z16w0l39mw0";
libraryHaskellDepends = [
- base binary bytestring case-insensitive cryptoids cryptoids-types
- encoding exceptions filepath sandi template-haskell
+ base binary bytestring case-insensitive cryptoids cryptoids-class
+ cryptoids-types exceptions filepath sandi template-haskell
];
description = "Reversable and secure encoding of object ids as filepaths";
license = stdenv.lib.licenses.bsd3;
@@ -70847,8 +72429,8 @@ self: {
}:
mkDerivation {
pname = "fishfood";
- version = "0.0.1.7";
- sha256 = "1b2nabliv1xqi42q2bknri85gizb1xbh7j5729dxv3sybzq50wd8";
+ version = "0.0.1.8";
+ sha256 = "04wqj8s8b97i6448f66ljv5wk6nhcjs80vapg96vwmlslxwcmhnc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -71172,6 +72754,35 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "fixer" = callPackage
+ ({ mkDerivation, aeson, base, containers, directory, genvalidity
+ , genvalidity-containers, genvalidity-hspec
+ , genvalidity-hspec-aeson, genvalidity-text, genvalidity-time
+ , hspec, http-api-data, http-client, mtl, QuickCheck, servant
+ , servant-client, stm, text, time, validity, validity-containers
+ , validity-time, yaml
+ }:
+ mkDerivation {
+ pname = "fixer";
+ version = "0.0.0.0";
+ sha256 = "044l199r91gsxplahilsh6ims8bxlqdi6srprdvdygqhxzhpvanf";
+ libraryHaskellDepends = [
+ aeson base containers directory http-api-data http-client mtl
+ servant servant-client stm text time validity validity-containers
+ validity-time yaml
+ ];
+ testHaskellDepends = [
+ aeson base containers directory genvalidity genvalidity-containers
+ genvalidity-hspec genvalidity-hspec-aeson genvalidity-text
+ genvalidity-time hspec http-api-data http-client mtl QuickCheck
+ servant servant-client stm text time validity validity-containers
+ validity-time yaml
+ ];
+ homepage = "https://github.com/NorfairKing/fixer#readme";
+ description = "A Haskell client for http://fixer.io/";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"fixfile" = callPackage
({ mkDerivation, array, base, bytestring, cereal, containers
, directory, exceptions, filepath, hashable, hashtables, lens, mtl
@@ -71714,8 +73325,8 @@ self: {
pname = "flock";
version = "0.3.1.8";
sha256 = "1g1gf7qnlqkl57h28nzxnbzj7v2h73czffp5y7s7jm9vbihcwd4n";
- revision = "2";
- editedCabalFile = "0xsi6bwqd57qwr9bjd2nck7q3gbmbsl9pb1rk6h4bbmm1ciybv19";
+ revision = "3";
+ editedCabalFile = "06hdirzgghlxpdymb5b5l58v20m34lmn2z8hmp9lwcskc8xfqqfn";
libraryHaskellDepends = [
base lifted-base monad-control transformers unix
];
@@ -71729,8 +73340,8 @@ self: {
({ mkDerivation, base, doctest, QuickCheck, template-haskell }:
mkDerivation {
pname = "flow";
- version = "1.0.9";
- sha256 = "1rqljbq4s9swh19r57gpp3nzxwgwa1j0q53m971i455wq1xszx1m";
+ version = "1.0.10";
+ sha256 = "1k8p475m1485nq4236jf53gmls264c5dy8x57zihb7gbvgnl71fj";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base doctest QuickCheck template-haskell ];
homepage = "https://github.com/tfausak/flow#readme";
@@ -71913,18 +73524,20 @@ self: {
"fltkhs" = callPackage
({ mkDerivation, base, bytestring, c2hs, Cabal, directory, filepath
- , mtl, parsec, text
+ , mtl, OpenGLRaw, parsec, text
}:
mkDerivation {
pname = "fltkhs";
- version = "0.5.4.1";
- sha256 = "0yclwq488g9mz6wsjcch7c5kwgc97rxp0lqjlfj44vbqbjk72l5x";
+ version = "0.5.4.4";
+ sha256 = "1bv7djak2ilirk7ajm8w6100bk6vx14znf3699blih72kyql6rgh";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal directory filepath ];
libraryHaskellDepends = [ base bytestring text ];
libraryToolDepends = [ c2hs ];
- executableHaskellDepends = [ base directory filepath mtl parsec ];
+ executableHaskellDepends = [
+ base directory filepath mtl OpenGLRaw parsec text
+ ];
homepage = "http://github.com/deech/fltkhs";
description = "FLTK bindings";
license = stdenv.lib.licenses.mit;
@@ -72156,8 +73769,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "fmlist";
- version = "0.9";
- sha256 = "1gzwmsrbxk22v7syf8zfvxphm23dmjzfpysz6qww3qvib8wm64aq";
+ version = "0.9.2";
+ sha256 = "02868865hqm189h5wjd916abvqwkhbrx5b0119s1dwp70ifvbi4g";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/sjoerdvisscher/fmlist";
description = "FoldMap lists";
@@ -72326,15 +73939,18 @@ self: {
}) {};
"foldl-statistics" = callPackage
- ({ mkDerivation, base, criterion, foldl, math-functions, mwc-random
- , profunctors, quickcheck-instances, statistics, tasty
- , tasty-quickcheck, vector
+ ({ mkDerivation, base, containers, criterion, foldl, hashable
+ , math-functions, mwc-random, profunctors, quickcheck-instances
+ , statistics, tasty, tasty-quickcheck, unordered-containers, vector
}:
mkDerivation {
pname = "foldl-statistics";
- version = "0.1.4.6";
- sha256 = "05ibj8gw86n5jspn5qnvvqyihb1fanmk86xxrm04sghxbfc9szzy";
- libraryHaskellDepends = [ base foldl math-functions profunctors ];
+ version = "0.1.5.0";
+ sha256 = "1z9qx7kiaidl3icz6g3rd6pyycwnvyv7xyw8g6p1n7rpvz60633b";
+ libraryHaskellDepends = [
+ base containers foldl hashable math-functions profunctors
+ unordered-containers
+ ];
testHaskellDepends = [
base foldl profunctors quickcheck-instances statistics tasty
tasty-quickcheck vector
@@ -72436,16 +74052,20 @@ self: {
}) {};
"folgerhs" = callPackage
- ({ mkDerivation, base, xml }:
+ ({ mkDerivation, array, base, containers, gloss
+ , optparse-applicative, xml
+ }:
mkDerivation {
pname = "folgerhs";
- version = "0.1.0.1";
- sha256 = "0kn89abvbk7faynhsyg177rayxddvwnkgsjb5cng8044n9glw9sb";
+ version = "0.3.0.2";
+ sha256 = "0dxig93mf29778sq71wz913d405g07dzkpbjp8cm4xsz1p86xryh";
isLibrary = true;
isExecutable = true;
- libraryHaskellDepends = [ base xml ];
- executableHaskellDepends = [ base xml ];
- homepage = "https://github.com/SU-LOSP/tools#readme";
+ libraryHaskellDepends = [ array base containers gloss xml ];
+ executableHaskellDepends = [
+ array base containers gloss optparse-applicative xml
+ ];
+ homepage = "https://github.com/SU-LOSP/folgerhs#readme";
description = "Toolset for Folger Shakespeare Library's XML annotated plays";
license = stdenv.lib.licenses.gpl3;
}) {};
@@ -72613,8 +74233,8 @@ self: {
pname = "force-layout";
version = "0.4.0.6";
sha256 = "17956k3mab2xhrmfy7fj5gh08h43yjlsryi5acjhnkmin5arhwpp";
- revision = "1";
- editedCabalFile = "1ydj5ng7wsi9jg6xw9bg8c7wrsg2jpnvjkjvzxaf6n8sjs0gxhvw";
+ revision = "2";
+ editedCabalFile = "1dj785ih5bla68yzxkpsilwj1p1xv6a8rh76rz799aap5injda0z";
libraryHaskellDepends = [
base containers data-default-class lens linear
];
@@ -72709,8 +74329,8 @@ self: {
}:
mkDerivation {
pname = "forest-fire";
- version = "0.2.2";
- sha256 = "053gp1wmzfhn26gq0awhz3fas8vcjbx953cis4r4ahfzwvy71r7r";
+ version = "0.3";
+ sha256 = "09h8hpb9b0hsj2bpwywxdk2a1ww1si3g5rn5n6ajq5dgvqki8rlp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -72878,6 +74498,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "formatting_6_3_0" = callPackage
+ ({ mkDerivation, array, base, bytestring, clock, ghc-prim, hspec
+ , integer-gmp, old-locale, scientific, text, time, transformers
+ }:
+ mkDerivation {
+ pname = "formatting";
+ version = "6.3.0";
+ sha256 = "16xngayk1jd92bj2qaf7fmrgzdskdnc7rsgpk1ij06xd8cdgahf1";
+ libraryHaskellDepends = [
+ array base bytestring clock ghc-prim integer-gmp old-locale
+ scientific text time transformers
+ ];
+ testHaskellDepends = [ base hspec ];
+ description = "Combinator-based type-safe formatting (like printf() or FORMAT)";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"forml" = callPackage
({ mkDerivation, ansi-terminal, base, bytestring, cereal
, containers, directory, file-embed, ghc-prim, GraphSCC, hslogger
@@ -72962,6 +74600,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "forsyde-shallow" = callPackage
+ ({ mkDerivation, base, directory, hspec, old-time, process, random
+ }:
+ mkDerivation {
+ pname = "forsyde-shallow";
+ version = "3.3.2.0";
+ sha256 = "1cfqv2mn1ccbp2j7vnjj123ys2n5s414dqid4ywy1l749pzf7w1j";
+ libraryHaskellDepends = [ base directory old-time process random ];
+ testHaskellDepends = [ base hspec ];
+ homepage = "http://forsyde.ict.kth.se/";
+ description = "ForSyDe's Haskell-embedded Domain Specific Language";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"forth-hll" = callPackage
({ mkDerivation, array-forth, base, free, mtl }:
mkDerivation {
@@ -73008,8 +74660,8 @@ self: {
}:
mkDerivation {
pname = "fortytwo";
- version = "1.0.2";
- sha256 = "15imj5ps040iz5abfnzjpgfq726j9c28bwwg06zbf07ji74dz190";
+ version = "1.0.3";
+ sha256 = "113z46b5dnf6z7bxw1a4vhr84w5pw0iridsi3wjimhjz0rr530cm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ ansi-terminal base text ];
@@ -73119,6 +74771,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "foundation_0_0_19" = callPackage
+ ({ mkDerivation, base, basement, gauge, ghc-prim }:
+ mkDerivation {
+ pname = "foundation";
+ version = "0.0.19";
+ sha256 = "053g5fdg9p74irvdh3g19hkb6g28h0sngkh2zqwplbxwy59dhfxq";
+ libraryHaskellDepends = [ base basement ghc-prim ];
+ testHaskellDepends = [ base basement ];
+ benchmarkHaskellDepends = [ base basement gauge ];
+ homepage = "https://github.com/haskell-foundation/foundation";
+ description = "Alternative prelude with batteries and no dependencies";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"foundation-edge" = callPackage
({ mkDerivation, bytestring, foundation, text }:
mkDerivation {
@@ -73347,6 +75014,7 @@ self: {
executableHaskellDepends = [ pretty ];
description = "A simple web framework";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {ghc-binary = null;};
@@ -73435,6 +75103,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "free_5" = callPackage
+ ({ mkDerivation, base, bifunctors, comonad, containers
+ , distributive, exceptions, mtl, profunctors, semigroupoids
+ , semigroups, template-haskell, transformers, transformers-base
+ , transformers-compat
+ }:
+ mkDerivation {
+ pname = "free";
+ version = "5";
+ sha256 = "1s4avwm4lnscmxv3fy0zws3vbg61sczgxm1m3cdnqxp95bd6p4c7";
+ libraryHaskellDepends = [
+ base bifunctors comonad containers distributive exceptions mtl
+ profunctors semigroupoids semigroups template-haskell transformers
+ transformers-base transformers-compat
+ ];
+ homepage = "http://github.com/ekmett/free/";
+ description = "Monads for free";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"free-concurrent" = callPackage
({ mkDerivation, base, type-aligned }:
mkDerivation {
@@ -73687,18 +75376,19 @@ self: {
}) {};
"freelude" = callPackage
- ({ mkDerivation, array, base, containers, doctest, indextype
- , transformers
+ ({ mkDerivation, array, base, bytestring, containers, doctest
+ , indextype, text, transformers
}:
mkDerivation {
pname = "freelude";
- version = "0.1.0.1";
- sha256 = "0a16vbm17dvvfk9wp8y9df8qypy14vld4yq20hh273p2cdxx5p2n";
+ version = "0.3.1.0";
+ sha256 = "1rz7xpffyw4nl7iaxfmhzzmn7kyvv8rfh4wvv2d02i2ihfykirxs";
libraryHaskellDepends = [
- array base containers indextype transformers
+ array base bytestring containers indextype text transformers
];
testHaskellDepends = [
- array base containers doctest indextype transformers
+ array base bytestring containers doctest indextype text
+ transformers
];
homepage = "https://github.com/clintonmead/freelude#readme";
description = "A generalisation of the Category->Functor->Applicative->Monad hierarchy and more";
@@ -73808,6 +75498,33 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "freer-simple_1_0_1_0" = callPackage
+ ({ mkDerivation, base, criterion, extensible-effects, free, mtl
+ , natural-transformation, QuickCheck, tasty, tasty-hunit
+ , tasty-quickcheck, transformers-base
+ }:
+ mkDerivation {
+ pname = "freer-simple";
+ version = "1.0.1.0";
+ sha256 = "0vh14z39pk1ni16hcq9yw0x8ckhcbyi8hgndpv7gmqzhvcdd0saf";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base natural-transformation transformers-base
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base QuickCheck tasty tasty-hunit tasty-quickcheck
+ ];
+ benchmarkHaskellDepends = [
+ base criterion extensible-effects free mtl
+ ];
+ homepage = "https://github.com/lexi-lambda/freer-simple#readme";
+ description = "Implementation of a friendly effect system for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"freesect" = callPackage
({ mkDerivation, array, base, cpphs, directory, mtl, parallel
, pretty, random, syb
@@ -73968,8 +75685,8 @@ self: {
}:
mkDerivation {
pname = "friday-juicypixels";
- version = "0.1.2.2";
- sha256 = "1sci0whrkjlm731z1qk7p7sg7vaw61brcb167w9f6fbkagn2f67l";
+ version = "0.1.2.3";
+ sha256 = "19j321vqca8sl366j3acdskr8zhzcki429zxzs8xawdmxqh93vzv";
libraryHaskellDepends = [ base friday JuicyPixels vector ];
testHaskellDepends = [
base bytestring file-embed friday hspec JuicyPixels
@@ -74014,8 +75731,8 @@ self: {
({ mkDerivation, array, base, containers, mtl, semigroups }:
mkDerivation {
pname = "frisby";
- version = "0.2.1";
- sha256 = "1xlfidsivvq9a152k3cg3ancyma3lc177jcbk6c0cgpd7zzpiib4";
+ version = "0.2.2";
+ sha256 = "1mdncc38qwakadr8q4ncz9vzvx9scfhlgk2m540y2mjdypdiicy1";
libraryHaskellDepends = [ array base containers mtl semigroups ];
homepage = "http://repetae.net/computer/frisby/";
description = "Linear time composable parser for PEG grammars";
@@ -74395,6 +76112,7 @@ self: {
homepage = "https://github.com/mr/ftp-client";
description = "Transfer file with FTP and FTPS with Conduit";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {ftp-clientconduit = null;};
@@ -74618,14 +76336,31 @@ self: {
pname = "funcmp";
version = "1.8";
sha256 = "09kmfgl15d71fr5h66j2b0ngw69y8dp41d55lz35nrjxq3l3gz1k";
+ revision = "1";
+ editedCabalFile = "1fkjmx4mmfmf2y08w7mgw1rp6q6w9zxdj95zfydgxgkmvk9b37c4";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base filepath process ];
- homepage = "http://savannah.nongnu.org/projects/funcmp/";
+ homepage = "https://github.com/peti/funcmp";
description = "Functional MetaPost";
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
+ "funcmp_1_9" = callPackage
+ ({ mkDerivation, base, filepath, pretty, process }:
+ mkDerivation {
+ pname = "funcmp";
+ version = "1.9";
+ sha256 = "1d5appkjhajb9ndv2gwnfz8lw2w53v8baajzmrhg26ihzj1bkch8";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [ base filepath pretty process ];
+ homepage = "https://github.com/peti/funcmp";
+ description = "Functional MetaPost is a Haskell frontend to the MetaPost language";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ maintainers = with stdenv.lib.maintainers; [ peti ];
+ }) {};
+
"funcons-tools" = callPackage
({ mkDerivation, base, bv, containers, directory, mtl, multiset
, parsec, split, text, vector
@@ -75017,8 +76752,8 @@ self: {
}:
mkDerivation {
pname = "fuzzyset";
- version = "0.1.0.2";
- sha256 = "1gpx8qw9vxlardjxncgkbbk3zvq8zjrc6nhjk80va7d7ix5zpdhz";
+ version = "0.1.0.4";
+ sha256 = "1nk3qrjcg5q4mnv2lzbw08ikgibix0ns6910z9xixcfq5kgij6my";
libraryHaskellDepends = [
base base-unicode-symbols data-default lens text text-metrics
unordered-containers vector
@@ -75032,6 +76767,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "fuzzyset_0_1_0_5" = callPackage
+ ({ mkDerivation, base, base-unicode-symbols, data-default, hspec
+ , ieee754, lens, text, text-metrics, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "fuzzyset";
+ version = "0.1.0.5";
+ sha256 = "12cl135ph7qjnfm0x36yw3mvjilsw4pm509yvh7i5whsafs3kakq";
+ libraryHaskellDepends = [
+ base base-unicode-symbols data-default lens text text-metrics
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ base base-unicode-symbols hspec ieee754 lens text
+ unordered-containers
+ ];
+ homepage = "https://github.com/laserpants/fuzzyset-haskell";
+ description = "Fuzzy set for approximate string matching";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"fuzzytime" = callPackage
({ mkDerivation, base, cmdargs, directory, old-time, process }:
mkDerivation {
@@ -75101,12 +76858,12 @@ self: {
}) {};
"fx" = callPackage
- ({ mkDerivation, base, base-prelude, transformers }:
+ ({ mkDerivation, base }:
mkDerivation {
pname = "fx";
- version = "0.7";
- sha256 = "114psjyz9jvda86gk29x9xl2h1r6a6lxxhpl4zw5wkf3zszjsylc";
- libraryHaskellDepends = [ base base-prelude transformers ];
+ version = "0.10.1";
+ sha256 = "1awscv2y8ywcyyn08hdmlh3qdjs33akr7grfdfls59rmhidg4fhd";
+ libraryHaskellDepends = [ base ];
homepage = "https://github.com/nikita-volkov/fx";
description = "Horizontally composable effects";
license = stdenv.lib.licenses.mit;
@@ -75350,6 +77107,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "gauge_0_2_1" = callPackage
+ ({ mkDerivation, base, basement, bytestring, deepseq, directory
+ , HUnit, process, tasty, tasty-hunit, vector
+ }:
+ mkDerivation {
+ pname = "gauge";
+ version = "0.2.1";
+ sha256 = "0401b5jzfib4wxwicqynhkn79q98hnxrpiqk1b353a6wix55hy1d";
+ libraryHaskellDepends = [
+ base basement deepseq directory process vector
+ ];
+ testHaskellDepends = [
+ base bytestring deepseq directory HUnit tasty tasty-hunit
+ ];
+ benchmarkHaskellDepends = [ base ];
+ homepage = "https://github.com/vincenthz/hs-gauge";
+ description = "small framework for performance measurement and analysis";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gbu" = callPackage
({ mkDerivation, base, containers, fgl, Graphalyze, haskell98, mtl
, regex-posix
@@ -75791,6 +77569,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "gen-imports" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, filepath
+ , hackage-db, pretty
+ }:
+ mkDerivation {
+ pname = "gen-imports";
+ version = "0.1.0.2";
+ sha256 = "1qm01lnvicg59cnj659famd7f9z1z6l9r4jsl7gakrq0ylw7mkqd";
+ libraryHaskellDepends = [
+ base bytestring Cabal containers filepath hackage-db pretty
+ ];
+ homepage = "https://github.com/clintonmead/gen-imports#readme";
+ description = "Code to generate instances for the package \"ghc-instances\"";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"gen-passwd" = callPackage
({ mkDerivation, base, bytestring, optparse-applicative, random
, vector
@@ -76039,17 +77834,20 @@ self: {
}) {};
"generic-deriving" = callPackage
- ({ mkDerivation, base, containers, ghc-prim, hspec
+ ({ mkDerivation, base, containers, ghc-prim, hspec, hspec-discover
, template-haskell
}:
mkDerivation {
pname = "generic-deriving";
- version = "1.12";
- sha256 = "09nl2c2b54ngqv4rgv3avvallyvfnv5jfld0wk2v90srl3x6p5vk";
+ version = "1.12.1";
+ sha256 = "0wwl29f5mlxmrigh0kp35q7aj10ymknnjabmdrdfxpi079rkzzgm";
+ revision = "1";
+ editedCabalFile = "1vr9lyvcrdiar6ndqnspwvhvrbnc1fvsjyx458ivpcr6j75j0l5j";
libraryHaskellDepends = [
base containers ghc-prim template-haskell
];
testHaskellDepends = [ base hspec template-haskell ];
+ testToolDepends = [ hspec-discover ];
homepage = "https://github.com/dreixel/generic-deriving";
description = "Generic programming library for generalised deriving";
license = stdenv.lib.licenses.bsd3;
@@ -76074,10 +77872,10 @@ self: {
}:
mkDerivation {
pname = "generic-lens";
- version = "0.5.0.0";
- sha256 = "0jp6qy45j7cg251pxq5x4ygg6m7gc6v57nd8ky26r18g9wn9f7w3";
+ version = "0.5.1.0";
+ sha256 = "09q13axb00kgy2w9c7lq84sh113vhxlw0g8zcjg07a1kp9wj7l47";
libraryHaskellDepends = [ base profunctors tagged ];
- testHaskellDepends = [ base doctest inspection-testing ];
+ testHaskellDepends = [ base doctest inspection-testing lens ];
benchmarkHaskellDepends = [
base criterion deepseq lens QuickCheck
];
@@ -76086,6 +77884,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "generic-lens-labels" = callPackage
+ ({ mkDerivation, base, generic-lens }:
+ mkDerivation {
+ pname = "generic-lens-labels";
+ version = "0.1.0.2";
+ sha256 = "0lhzxknz8117zc28d7l9wfvln5lp7alxfx8f6q4b986i93dzkl09";
+ libraryHaskellDepends = [ base generic-lens ];
+ homepage = "https://github.com/duog/generic-lens-labels";
+ description = "GHC.OverloadedLabels.IsLabel instance for lenses from ghc-generics";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"generic-lucid-scaffold" = callPackage
({ mkDerivation, base, lucid, text }:
mkDerivation {
@@ -76155,6 +77965,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "generic-random_1_1_0_2" = callPackage
+ ({ mkDerivation, base, QuickCheck }:
+ mkDerivation {
+ pname = "generic-random";
+ version = "1.1.0.2";
+ sha256 = "0zslrz4cizw8c76q5szgmpc58f25hx4qf01lavxshynn771cx271";
+ libraryHaskellDepends = [ base QuickCheck ];
+ testHaskellDepends = [ base QuickCheck ];
+ homepage = "http://github.com/lysxia/generic-random";
+ description = "Generic random generators";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"generic-records" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -76238,8 +78062,8 @@ self: {
pname = "generic-xmlpickler";
version = "0.1.0.5";
sha256 = "1brnlgnbys811qy64aps2j03ks2p0rkihaqzaszfwl80cpsn05ym";
- revision = "5";
- editedCabalFile = "18hs5adb6wfasazdlv2wf92xszyjw94i3v20w8058hl7q1ax9dv0";
+ revision = "6";
+ editedCabalFile = "0jc2rnh8kyzay8ny59ahqb9q6vmp7si4aps1a42la79735078x51";
libraryHaskellDepends = [ base generic-deriving hxt text ];
testHaskellDepends = [
base hxt hxt-pickle-utils tasty tasty-hunit tasty-th
@@ -76271,8 +78095,8 @@ self: {
({ mkDerivation, base, deepseq, ghc-prim, template-haskell }:
mkDerivation {
pname = "generics-sop";
- version = "0.3.1.0";
- sha256 = "1bazlhgmxcwv7vd44jhdx74cnhmaz6yy47jxfycapjj4mjrnp0x7";
+ version = "0.3.2.0";
+ sha256 = "168v62i845jh9jbfaz3ldz8svz4wmzq9mf2vhb7pxlnbkk8fqq1h";
libraryHaskellDepends = [ base deepseq ghc-prim template-haskell ];
testHaskellDepends = [ base ];
description = "Generic Programming using True Sums of Products";
@@ -76285,8 +78109,8 @@ self: {
pname = "generics-sop-lens";
version = "0.1.2.1";
sha256 = "0p2ji955hy9r6c1wmiziga9pbbli24my3vmx19gf4i8db36d8jaf";
- revision = "2";
- editedCabalFile = "1zavix9vzj6qnr6izfmq1ggsdzsqzz41dlmh228lpvfm2mddx6w2";
+ revision = "3";
+ editedCabalFile = "1phq0hjpgxfvb8ay9v4ix6axk07mbd266javss9nmqmqmn3vnb51";
libraryHaskellDepends = [ base generics-sop lens ];
homepage = "https://github.com/phadej/generics-sop-lens#readme";
description = "Lenses for types in generics-sop";
@@ -76535,8 +78359,8 @@ self: {
({ mkDerivation, base, hspec, QuickCheck, validity }:
mkDerivation {
pname = "genvalidity";
- version = "0.4.0.2";
- sha256 = "1kmbjx57212v7v1b7b7585m0i9sd5qh32ln83pc63m6jdpw161a1";
+ version = "0.4.0.4";
+ sha256 = "0gfndjss4j2dmyk46r9ab3ahw8pmc6bry7nzzx7qpgim6zz5597w";
libraryHaskellDepends = [ base QuickCheck validity ];
testHaskellDepends = [ base hspec QuickCheck ];
homepage = "https://github.com/NorfairKing/validity#readme";
@@ -76790,8 +78614,8 @@ self: {
}:
mkDerivation {
pname = "genvalidity-time";
- version = "0.1.0.0";
- sha256 = "0jgfrrspyawvymp2p55ba56pxggqkg352c1n2bmyyi9hs99fp0jf";
+ version = "0.1.0.1";
+ sha256 = "1d9j6scv83kzxk4jngmad4i0843lm2bkr7yq4qsdbxpsj6akkdrg";
libraryHaskellDepends = [
base genvalidity QuickCheck time validity-time
];
@@ -77064,6 +78888,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "geos" = callPackage
+ ({ mkDerivation, base, bytestring, cassava, geos_c, hspec, mtl
+ , transformers, vector
+ }:
+ mkDerivation {
+ pname = "geos";
+ version = "0.1.0.0";
+ sha256 = "02r9c063kkqalyadfqwhhwfb42kky7nkfp5k968l1qidyx6aha5j";
+ libraryHaskellDepends = [
+ base bytestring cassava mtl transformers vector
+ ];
+ librarySystemDepends = [ geos_c ];
+ testHaskellDepends = [ base bytestring cassava hspec mtl vector ];
+ testSystemDepends = [ geos_c ];
+ description = "Bindings for GEOS";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {geos_c = null;};
+
"getemx" = callPackage
({ mkDerivation, base, curl, directory, filepath, haskell98, hxt
, mtl, old-locale, process, time
@@ -77442,6 +79285,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ghc-exactprint_0_5_6_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, Diff, directory
+ , filemanip, filepath, free, ghc, ghc-boot, ghc-paths, HUnit, mtl
+ , silently, syb
+ }:
+ mkDerivation {
+ pname = "ghc-exactprint";
+ version = "0.5.6.0";
+ sha256 = "0fbq7p2kykqq2pzf0mld0brj3pdrgxb1zvpa05pqxsfs66czlbsg";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers directory filepath free ghc ghc-boot
+ ghc-paths mtl syb
+ ];
+ testHaskellDepends = [
+ base bytestring containers Diff directory filemanip filepath ghc
+ ghc-boot ghc-paths HUnit mtl silently syb
+ ];
+ description = "ExactPrint for GHC";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ghc-gc-tune" = callPackage
({ mkDerivation, base, directory, filepath, process }:
mkDerivation {
@@ -77524,6 +79391,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ghc-instances" = callPackage
+ ({ mkDerivation, array, base, binary, bytestring, Cabal, containers
+ , deepseq, directory, filepath, ghc, ghc-boot, ghc-compact
+ , ghc-prim, hoopl, hpc, integer-gmp, process, template-haskell
+ , time, unix
+ }:
+ mkDerivation {
+ pname = "ghc-instances";
+ version = "0.1.0.1";
+ sha256 = "0vfqwd2w95lwqa4sbxaz9yl0mk8qj2v28zgzqhmlfg4xg25l76qs";
+ revision = "1";
+ editedCabalFile = "0rkg9mmxad74fqa1k8np8yj3p0agicpj8cy2983397ibzhyrsjwc";
+ libraryHaskellDepends = [
+ array base binary bytestring Cabal containers deepseq directory
+ filepath ghc ghc-boot ghc-compact ghc-prim hoopl hpc integer-gmp
+ process template-haskell time unix
+ ];
+ homepage = "https://github.com/clintonmead/ghc-instances#readme";
+ description = "Easily import all instances contained in GHC distributed libraries";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"ghc-make" = callPackage
({ mkDerivation, base, process, shake, unordered-containers }:
mkDerivation {
@@ -77640,6 +79529,7 @@ self: {
homepage = "https://github.com/ranjitjhala/ghc-options.git";
description = "Utilities for extracting GHC options needed to compile a given Haskell target";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {bin-package-db = null;};
@@ -77673,8 +79563,8 @@ self: {
({ mkDerivation, base, cpphs, ghc, happy }:
mkDerivation {
pname = "ghc-parser";
- version = "0.2.0.0";
- sha256 = "0jd02qgjs529ac0jvg59rgrjvpm541j993lyfpqr9aqwqj1n3ylp";
+ version = "0.2.0.1";
+ sha256 = "10xx2d9awgizjz1jrlw2m30nsl938mh297azp7zay7zkdzsv0fyh";
libraryHaskellDepends = [ base ghc ];
libraryToolDepends = [ cpphs happy ];
homepage = "https://github.com/gibiansky/IHaskell";
@@ -77731,12 +79621,12 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "ghc-prim_0_5_1_0" = callPackage
+ "ghc-prim_0_5_1_1" = callPackage
({ mkDerivation, rts }:
mkDerivation {
pname = "ghc-prim";
- version = "0.5.1.0";
- sha256 = "13ypjfpz5b4zpbr2q8x37nbqjd0224l9g8xn62iv7mbqbgynkbf9";
+ version = "0.5.1.1";
+ sha256 = "1dkl0l891min86jpndcah8dx7i3ssnaj6yf2ghxplp8619bmqhb2";
libraryHaskellDepends = [ rts ];
description = "GHC primitives";
license = stdenv.lib.licenses.bsd3;
@@ -77846,10 +79736,8 @@ self: {
({ mkDerivation, array, base, containers, ghc, hpc }:
mkDerivation {
pname = "ghc-srcspan-plugin";
- version = "0.2.2.0";
- sha256 = "1wdgc1m914iy4876cf8qwxad0q2abqvs10f6dj0dnfs6sgqyqdz1";
- revision = "1";
- editedCabalFile = "1h821qji9xgf9d4sd040fw10v1312dxzin556ppc67wxbx5mjc9i";
+ version = "0.2.2.1";
+ sha256 = "10zh7i4nx4ds3f1d7m2m1caqnxmi3dh6a900fl8mcp6a09isvglh";
libraryHaskellDepends = [ array base containers ghc hpc ];
description = "Generic GHC Plugin for annotating Haskell code with source location data";
license = stdenv.lib.licenses.bsd3;
@@ -77886,8 +79774,8 @@ self: {
({ mkDerivation, base, ghc }:
mkDerivation {
pname = "ghc-tcplugins-extra";
- version = "0.2.1";
- sha256 = "04m8cblgxb3axjhsbwlb18jmlcfhcllm68c1d5pzv6av404ild4z";
+ version = "0.2.2";
+ sha256 = "1k52r8hdbhsp5ydfi010976nck81q38lm8x069x6sdvslmwda1wq";
libraryHaskellDepends = [ base ghc ];
homepage = "http://github.com/clash-lang/ghc-tcplugins-extra";
description = "Utilities for writing GHC type-checker plugins";
@@ -77930,15 +79818,15 @@ self: {
"ghc-typelits-extra" = callPackage
({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra
, ghc-typelits-knownnat, ghc-typelits-natnormalise, integer-gmp
- , singletons, tasty, tasty-hunit, template-haskell, transformers
+ , tasty, tasty-hunit, template-haskell, transformers
}:
mkDerivation {
pname = "ghc-typelits-extra";
- version = "0.2.3";
- sha256 = "1fl1bbsn1hkz3i7100k1k0pwniv7iyxnq1l0i50gj5s8ygxi78zw";
+ version = "0.2.4";
+ sha256 = "0inj776401846brd945p00qkjylniwlvycn1c300p90kyighkpdg";
libraryHaskellDepends = [
base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-knownnat
- ghc-typelits-natnormalise integer-gmp singletons transformers
+ ghc-typelits-natnormalise integer-gmp transformers
];
testHaskellDepends = [
base ghc-typelits-knownnat ghc-typelits-natnormalise tasty
@@ -77951,20 +79839,19 @@ self: {
"ghc-typelits-knownnat" = callPackage
({ mkDerivation, base, ghc, ghc-tcplugins-extra
- , ghc-typelits-natnormalise, singletons, tasty, tasty-hunit
- , tasty-quickcheck, template-haskell, transformers
+ , ghc-typelits-natnormalise, tasty, tasty-hunit, tasty-quickcheck
+ , template-haskell, transformers
}:
mkDerivation {
pname = "ghc-typelits-knownnat";
- version = "0.3.1";
- sha256 = "1kprh0fahkbpf7rqbgi8l6883784a8n7k8g40nkdhii7gal9715g";
+ version = "0.4";
+ sha256 = "0qwp44jpp8jbrgri0i3yviqnypdj79b8hpxxbk80dwwsjg1q5ynv";
libraryHaskellDepends = [
- base ghc ghc-tcplugins-extra ghc-typelits-natnormalise singletons
+ base ghc ghc-tcplugins-extra ghc-typelits-natnormalise
template-haskell transformers
];
testHaskellDepends = [
- base ghc-typelits-natnormalise singletons tasty tasty-hunit
- tasty-quickcheck
+ base ghc-typelits-natnormalise tasty tasty-hunit tasty-quickcheck
];
homepage = "http://clash-lang.org/";
description = "Derive KnownNat constraints from other KnownNat constraints";
@@ -77977,8 +79864,8 @@ self: {
}:
mkDerivation {
pname = "ghc-typelits-natnormalise";
- version = "0.5.7";
- sha256 = "0spqlrj7iys6i355sv7r71niimaqx9n3p4p5pfkfck8n5rfc9lq3";
+ version = "0.5.8";
+ sha256 = "0xkhj0kka7j9achgzn66zbxs84pxr5h9jq35x4kdnha5hw34c0i1";
libraryHaskellDepends = [
base ghc ghc-tcplugins-extra integer-gmp
];
@@ -78164,12 +80051,12 @@ self: {
}:
mkDerivation {
pname = "ghcid";
- version = "0.6.8";
- sha256 = "1ca8962sh41jkz82lx1snx8fzp8s2v5dsq0mczgzc7aqjgclb35g";
+ version = "0.6.9";
+ sha256 = "0bkhbzjjp4n97dsf8q4ggphsfh0rxwgdn4kmg8l87zbrih41gdpc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base cmdargs directory extra filepath process time unix
+ base cmdargs directory extra filepath process time
];
executableHaskellDepends = [
ansi-terminal base cmdargs containers directory extra filepath
@@ -78385,6 +80272,7 @@ self: {
];
description = "Virtual-dom bindings for GHCJS";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {ghcjs-ffiqq = null; ghcjs-prim = null;};
@@ -78519,6 +80407,28 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs) atk;};
+ "gi-atk_2_0_15" = callPackage
+ ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib
+ , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading
+ , text, transformers
+ }:
+ mkDerivation {
+ pname = "gi-atk";
+ version = "2.0.15";
+ sha256 = "1vmzby12nvbrka6f44pr1pjwccl0p6s984pxvibajzp72x2knxc9";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
+ libraryHaskellDepends = [
+ base bytestring containers gi-glib gi-gobject haskell-gi
+ haskell-gi-base haskell-gi-overloading text transformers
+ ];
+ libraryPkgconfigDepends = [ atk ];
+ doHaddock = false;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Atk bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) atk;};
+
"gi-cairo" = callPackage
({ mkDerivation, base, bytestring, Cabal, cairo, containers
, haskell-gi, haskell-gi-base, haskell-gi-overloading, text
@@ -78544,6 +80454,32 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs) cairo;};
+ "gi-cairo_1_0_15" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, cairo, containers
+ , haskell-gi, haskell-gi-base, haskell-gi-overloading, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "gi-cairo";
+ version = "1.0.15";
+ sha256 = "1hm8bcd6j11dimb3ksfjkcqf9wqa9frq1jyjpbr2j5s8srrf7031";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
+ libraryHaskellDepends = [
+ base bytestring containers haskell-gi haskell-gi-base
+ haskell-gi-overloading text transformers
+ ];
+ libraryPkgconfigDepends = [ cairo ];
+ doHaddock = false;
+ preCompileBuildDriver = ''
+ PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig"
+ setupCompileFlags+=" $(pkg-config --libs cairo-gobject)"
+ '';
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Cairo bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) cairo;};
+
"gi-gdk" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo
, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3
@@ -78552,8 +80488,8 @@ self: {
}:
mkDerivation {
pname = "gi-gdk";
- version = "3.0.14";
- sha256 = "0ds8h0sjl4jf8y5vjfl18gsbarhy6pxl6if7nd4lqaznbribw4jl";
+ version = "3.0.15";
+ sha256 = "17cjg6m69xlmlnwlwa6s23f1j28bfrwkg08v3n5xmz56zvzsgykg";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib
@@ -78575,8 +80511,8 @@ self: {
}:
mkDerivation {
pname = "gi-gdkpixbuf";
- version = "2.0.14";
- sha256 = "1p8sksyg9jrva2mm0ipqxv10df0hnmzmiv2rs05ayl1ris366h2q";
+ version = "2.0.15";
+ sha256 = "0j2bqphjfhgm9nk8pyfpd6zp7i3q4b11s4vlgas9xdwwi9p1md8r";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
@@ -78597,8 +80533,8 @@ self: {
}:
mkDerivation {
pname = "gi-gdkx11";
- version = "3.0.1";
- sha256 = "0y9dkiwrx6d7r94ihczc250c2wzg2l4jsz9i198r4kysjdgm7q7v";
+ version = "3.0.2";
+ sha256 = "0s3iry866p6v2hm4d841fcimrhjsk9miskkqf9js8as7mwlk7jac";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gdk gi-gio gi-gobject gi-xlib
@@ -78619,8 +80555,8 @@ self: {
}:
mkDerivation {
pname = "gi-ggit";
- version = "1.0.1";
- sha256 = "08jfsfjvdbyd1m1si2r50frc4s3x5x9710r2np6wl1p0y3pk20cf";
+ version = "1.0.2";
+ sha256 = "17449xz5v5n1i6c7vgrszq395v78q2hp2zjlnc85zxj5qlnkwz64";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
@@ -78641,8 +80577,8 @@ self: {
}:
mkDerivation {
pname = "gi-gio";
- version = "2.0.14";
- sha256 = "0dwy8zd66b04jbn0g7c5n511nl2xxjvchzf56bmw8cfcm384r66d";
+ version = "2.0.15";
+ sha256 = "1mxiwwm6dnbxxnqm05bh73qnb27dbfsyz3pr2bvgwvhp4f2m0nn3";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi
@@ -78663,8 +80599,8 @@ self: {
}:
mkDerivation {
pname = "gi-girepository";
- version = "1.0.14";
- sha256 = "1pains4g8a4yxacggx6jama3d1rdky684kcm758m6kiigsplkfkp";
+ version = "1.0.15";
+ sha256 = "1g9bvf850zsbqi4dw8i1nbclqwi599zvwny4fsl0hp8lqb9w7ps6";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gobject haskell-gi haskell-gi-base
@@ -78675,6 +80611,7 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "GIRepository (gobject-introspection) bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) gobjectIntrospection;};
"gi-glib" = callPackage
@@ -78698,6 +80635,28 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs) glib;};
+ "gi-glib_2_0_16" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, glib
+ , haskell-gi, haskell-gi-base, haskell-gi-overloading, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "gi-glib";
+ version = "2.0.16";
+ sha256 = "03hl5szq0cyzg37kxh4kyxzciibs4grsypf78ihfsa6nvj4n5fqw";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
+ libraryHaskellDepends = [
+ base bytestring containers haskell-gi haskell-gi-base
+ haskell-gi-overloading text transformers
+ ];
+ libraryPkgconfigDepends = [ glib ];
+ doHaddock = false;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "GLib bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib;};
+
"gi-gobject" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib
, haskell-gi, haskell-gi-base, haskell-gi-overloading, text
@@ -78719,6 +80678,28 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs) glib;};
+ "gi-gobject_2_0_16" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib
+ , haskell-gi, haskell-gi-base, haskell-gi-overloading, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "gi-gobject";
+ version = "2.0.16";
+ sha256 = "1bgn4ywx94py0v213iv7mbjjvvy3y7gvpgw4wpn38s2np7al8y65";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
+ libraryHaskellDepends = [
+ base bytestring containers gi-glib haskell-gi haskell-gi-base
+ haskell-gi-overloading text transformers
+ ];
+ libraryPkgconfigDepends = [ glib ];
+ doHaddock = false;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "GObject bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib;};
+
"gi-gst" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-glib
, gi-gobject, gstreamer, haskell-gi, haskell-gi-base
@@ -78726,8 +80707,8 @@ self: {
}:
mkDerivation {
pname = "gi-gst";
- version = "1.0.14";
- sha256 = "1yjimqcaqq9ah9nkyd1rq0bvs2sp4vbicfw6d5d0s6pcavqzxhpg";
+ version = "1.0.15";
+ sha256 = "09h4ilyg85d9b20chqf6fp6zqvxcclqn9i8s02bqw86cq7s19cq4";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi
@@ -78748,8 +80729,8 @@ self: {
}:
mkDerivation {
pname = "gi-gstaudio";
- version = "1.0.14";
- sha256 = "1l3cldq3i5anb8cmwya33gfpwj9njbhk3f40nz0772sa29j4311h";
+ version = "1.0.15";
+ sha256 = "0yw6z11d0wgfa19446s34hr260mfasbsd1h7mzfyd690nzicyh8p";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
@@ -78770,8 +80751,8 @@ self: {
}:
mkDerivation {
pname = "gi-gstbase";
- version = "1.0.15";
- sha256 = "1gb7q5gxdrpblc8xfbrvv4072vfz910v3fg0h38ixda8p30fh30j";
+ version = "1.0.16";
+ sha256 = "1pqkiqlhvwjkw9b9i36md7nhi8205940d4jbcvaqywa82hv7k2aa";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst haskell-gi
@@ -78793,8 +80774,8 @@ self: {
}:
mkDerivation {
pname = "gi-gstpbutils";
- version = "1.0.14";
- sha256 = "0pjjxqsfrl06v88mz3aacwy5812i752m4h979gw1qn8h431kgg4y";
+ version = "1.0.15";
+ sha256 = "161wh4rn4f6lsnk8x12fwzn016fv4pymfb3vg6zlfijyj3avhdh9";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstaudio
@@ -78816,8 +80797,8 @@ self: {
}:
mkDerivation {
pname = "gi-gsttag";
- version = "1.0.14";
- sha256 = "056wbkkjds3gk2x0wm4abskpqqw5f8gyhwscl3ih5j90w78d0a28";
+ version = "1.0.15";
+ sha256 = "1i5wqrhipyagsv94yfjfg6wmdbgnjg03mjxbfq5mx09g61iznl2r";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
@@ -78838,8 +80819,8 @@ self: {
}:
mkDerivation {
pname = "gi-gstvideo";
- version = "1.0.14";
- sha256 = "1hr20yf43zgcmpmygca5vdn1qb2fhhqqbh8s24kwjfy7bwl8zly1";
+ version = "1.0.15";
+ sha256 = "1k35x6cc1kiyhwq978dlckib2sfz7k3w2gxfqsha591a0661k10d";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase
@@ -78861,8 +80842,8 @@ self: {
}:
mkDerivation {
pname = "gi-gtk";
- version = "3.0.18";
- sha256 = "1fp84dba8hg6pvkdy0mip2pz9npx0kwp492gx8p1bgf119rqqfl1";
+ version = "3.0.19";
+ sha256 = "1qcivdbwa3g05dzgzd3jnzha33j5jm06gp2ml9fma0d1160dqa2g";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
@@ -78903,8 +80884,8 @@ self: {
}:
mkDerivation {
pname = "gi-gtkosxapplication";
- version = "2.0.14";
- sha256 = "1hx01rr99kw8ja1py7s8fzzxy7psaarsyk9g773rijf25xq4b53f";
+ version = "2.0.15";
+ sha256 = "1znsrbzin2fxdb7gkip0qhr335f9pinaszn2r320j05sz6k8qdfw";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gdkpixbuf gi-gobject gi-gtk
@@ -78926,8 +80907,8 @@ self: {
}:
mkDerivation {
pname = "gi-gtksource";
- version = "3.0.15";
- sha256 = "09vfxh75wbg3012mbzy39bczlvwyxndiy9wqmhwvhgh3iq0yk2fd";
+ version = "3.0.16";
+ sha256 = "0fm5bnyq4f9icyhxkyxf42mmanmc2klbdgin75dcdq5r92gipfcp";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
@@ -78964,6 +80945,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs.gnome3) webkitgtk;};
+ "gi-javascriptcore_4_0_15" = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi
+ , haskell-gi-base, haskell-gi-overloading, text, transformers
+ , webkitgtk
+ }:
+ mkDerivation {
+ pname = "gi-javascriptcore";
+ version = "4.0.15";
+ sha256 = "07dz5kisis93x0ywb207w8nv54bfdgsahq325dyvbfvlgkqrxsh3";
+ setupHaskellDepends = [ base Cabal haskell-gi ];
+ libraryHaskellDepends = [
+ base bytestring containers haskell-gi haskell-gi-base
+ haskell-gi-overloading text transformers
+ ];
+ libraryPkgconfigDepends = [ webkitgtk ];
+ doHaddock = false;
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "JavaScriptCore bindings";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs.gnome3) webkitgtk;};
+
"gi-notify" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, gi-gdkpixbuf
, gi-glib, gi-gobject, haskell-gi, haskell-gi-base
@@ -78971,8 +80974,8 @@ self: {
}:
mkDerivation {
pname = "gi-notify";
- version = "0.7.14";
- sha256 = "12ahyx3pn2pf63n22pa8qkwgh36yrdza2hw3n6khqws814g2f0ay";
+ version = "0.7.15";
+ sha256 = "1lk27dw7kyiikknmj858g4hv9p48161ixs3qq8pb08jkjlzcwfw8";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gdkpixbuf gi-glib gi-gobject
@@ -78993,8 +80996,8 @@ self: {
}:
mkDerivation {
pname = "gi-ostree";
- version = "1.0.5";
- sha256 = "1w9x0jn2k8wny7925zw2lsmvs18i6j15ijizr515brqff3gyi5fs";
+ version = "1.0.6";
+ sha256 = "04pq0vz2dcyyq03l2gr0mms1l0dvh4ci17kcla6h1nw1lq5f1l6m";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
@@ -79015,8 +81018,8 @@ self: {
}:
mkDerivation {
pname = "gi-pango";
- version = "1.0.15";
- sha256 = "0ymwbbm5ga31fj6i2mc75743ndqfb7p900576yv5y2p9d8cgp5j1";
+ version = "1.0.16";
+ sha256 = "1x3q1q4ww1v6v42p1wcaghxsja8cigqaqvklkfg4gxyp2f2cdg57";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-glib gi-gobject haskell-gi
@@ -79042,8 +81045,8 @@ self: {
}:
mkDerivation {
pname = "gi-pangocairo";
- version = "1.0.15";
- sha256 = "0vy5fg2867dda19myyjbkxnrrbwgp3n7yqnfwqc67m5n8ziha2sb";
+ version = "1.0.16";
+ sha256 = "0hp90rx33xbi3w2y3iacf19p9mhkz6s4q8q6hcsrh5jnbavbpjwy";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-glib gi-gobject gi-pango
@@ -79068,8 +81071,8 @@ self: {
}:
mkDerivation {
pname = "gi-poppler";
- version = "0.18.14";
- sha256 = "03dgkaqiy7y808x7g1xmmns1m19xc94f4kg0vjhyb1f1xr7k7hzj";
+ version = "0.18.15";
+ sha256 = "1qbsmgx0nfn3pm6ffkhaq1wy26jdwnq5zjsxs32cf8ipdzlhg3cv";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-cairo gi-gio gi-glib gi-gobject
@@ -79090,8 +81093,8 @@ self: {
}:
mkDerivation {
pname = "gi-secret";
- version = "0.0.4";
- sha256 = "12kvdnxvsaj4mljkjhnma7n0d6qav6k9a4laca881ww50hdbwid2";
+ version = "0.0.5";
+ sha256 = "0jwdv8fmc7wbwbh3nc1may4ij078xz9xc55rkr62x1szxi6ihdq5";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
@@ -79112,8 +81115,8 @@ self: {
}:
mkDerivation {
pname = "gi-soup";
- version = "2.4.14";
- sha256 = "1z0cxhyadampjdibsrvqi6rw3kmcvq0q3mf4gk33ss2xb0f86m75";
+ version = "2.4.15";
+ sha256 = "1imgkbqfkdf7vbx4x170qnnyivy7jdn4hcj428wv3996ff5pjqa6";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gio gi-glib gi-gobject haskell-gi
@@ -79134,8 +81137,8 @@ self: {
}:
mkDerivation {
pname = "gi-vte";
- version = "2.91.16";
- sha256 = "0gv1ab2an6gfk83d5ryjpfz92rwrll2jyl41i48ql6fagbxx0n18";
+ version = "2.91.17";
+ sha256 = "1pslywq1mkcvrvbb3d5a4nc6vrmr9hvbgmg8dcsjq061fcg6b2aw";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject
@@ -79158,8 +81161,8 @@ self: {
}:
mkDerivation {
pname = "gi-webkit";
- version = "3.0.14";
- sha256 = "006jja6hr7bsqff2yxgzjrdnhbccym32fcr9vd7dscyj4wqw1ng1";
+ version = "3.0.15";
+ sha256 = "1bd2db34bfza9s84fwqd073wpf8cjp9rrjrlgi2q2hb6y6rn26w3";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf
@@ -79182,8 +81185,8 @@ self: {
}:
mkDerivation {
pname = "gi-webkit2";
- version = "4.0.14";
- sha256 = "15r5kq0vq5gc4rsi0icw2f5zbqjw7kgdwpa3fbzn6jx7xmbl39kp";
+ version = "4.0.15";
+ sha256 = "1mwd5jyis7rfqpigyk1yp3rx2hkdb2gwg4m1l41dggdb8svv1jhp";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-atk gi-cairo gi-gdk gi-gio gi-glib
@@ -79206,8 +81209,8 @@ self: {
}:
mkDerivation {
pname = "gi-webkit2webextension";
- version = "4.0.15";
- sha256 = "100m6m13gcyz1wgwj20gh2mybmfpzq9fvqn44a9as37680srx2bi";
+ version = "4.0.16";
+ sha256 = "010svwg3p3sdd209l8cnwhsm2dp9n6qf0shzqjdx5l1pkjv32zqm";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers gi-gio gi-gobject gi-gtk
@@ -79228,8 +81231,8 @@ self: {
}:
mkDerivation {
pname = "gi-xlib";
- version = "2.0.1";
- sha256 = "1f1f3jnrvqisdalsad9k9wjr92c4ykw2i1gngsygainflk3hzgia";
+ version = "2.0.2";
+ sha256 = "0w9dwnd7a9hh1qn3swa48i8hp4gx9kznc92zjf198lrmrbkamp22";
setupHaskellDepends = [ base Cabal haskell-gi ];
libraryHaskellDepends = [
base bytestring containers haskell-gi haskell-gi-base
@@ -79240,6 +81243,7 @@ self: {
homepage = "https://github.com/haskell-gi/haskell-gi";
description = "xlib bindings";
license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) x11;};
"giak" = callPackage
@@ -79338,8 +81342,8 @@ self: {
}:
mkDerivation {
pname = "gio";
- version = "0.13.4.0";
- sha256 = "1jjkz7d81dljhgdcpc5zr5bn1jxnlb23f8hpzx4xz5v9jfy0bflr";
+ version = "0.13.4.1";
+ sha256 = "11w567c4zafcdm5i6wpi1dr4m6mpfvyqyda4llq7wgvjbshy5fqk";
enableSeparateDataOutput = true;
setupHaskellDepends = [ base Cabal gtk2hs-buildtools ];
libraryHaskellDepends = [
@@ -79468,7 +81472,7 @@ self: {
"git-annex" = callPackage
({ mkDerivation, aeson, async, aws, base, blaze-builder
- , bloomfilter, bup, byteable, bytestring, case-insensitive
+ , bloomfilter, bup, byteable, bytestring, Cabal, case-insensitive
, clientsession, concurrent-output, conduit, conduit-extra
, containers, crypto-api, cryptonite, curl, data-default, DAV, dbus
, directory, disk-free-space, dlist, dns, edit-distance, esqueleto
@@ -79488,8 +81492,8 @@ self: {
}:
mkDerivation {
pname = "git-annex";
- version = "6.20171214";
- sha256 = "06nmsibpb1ng058gkfdspwkmv8psgd144qrxchwf3d8lfdphpkih";
+ version = "6.20180112";
+ sha256 = "0662780hzv2afajphjmgglm01d5w5vs4rp7xa1px1bznk67yjdxw";
configureFlags = [
"-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns"
"-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3"
@@ -79498,6 +81502,10 @@ self: {
];
isLibrary = false;
isExecutable = true;
+ setupHaskellDepends = [
+ base bytestring Cabal data-default directory exceptions filepath
+ hslogger IfElse process split unix-compat utf8-string
+ ];
executableHaskellDepends = [
aeson async aws base blaze-builder bloomfilter byteable bytestring
case-insensitive clientsession concurrent-output conduit
@@ -79885,17 +81893,18 @@ self: {
({ mkDerivation, aeson, aeson-compat, base, base-compat
, base16-bytestring, binary, binary-orphans, byteable, bytestring
, containers, cryptohash, deepseq, deepseq-generics, exceptions
- , file-embed, hashable, hspec, http-client, http-client-tls
- , http-link-header, http-types, iso8601-time, mtl, network-uri
- , semigroups, text, time, tls, transformers, transformers-compat
- , unordered-containers, vector, vector-instances
+ , file-embed, hashable, hspec, hspec-discover, http-client
+ , http-client-tls, http-link-header, http-types, iso8601-time, mtl
+ , network-uri, semigroups, text, time, tls, transformers
+ , transformers-compat, unordered-containers, vector
+ , vector-instances
}:
mkDerivation {
pname = "github";
version = "0.18";
sha256 = "0i4cs6d95ik5c8zs2508nmhjh2v30a0qjyxfqyxhjsz48p9h5p1i";
- revision = "1";
- editedCabalFile = "1krz0plxhm1q1k7bb0wzl969zd5fqkgqcgfr6rmqw60njpwrdsrp";
+ revision = "2";
+ editedCabalFile = "1rywfb78acwh81mdnxb4q35n374k1wbxg0562biis0i0jjxfp211";
libraryHaskellDepends = [
aeson aeson-compat base base-compat base16-bytestring binary
binary-orphans byteable bytestring containers cryptohash deepseq
@@ -79908,6 +81917,7 @@ self: {
aeson-compat base base-compat bytestring file-embed hspec
unordered-containers vector
];
+ testToolDepends = [ hspec-discover ];
homepage = "https://github.com/phadej/github";
description = "Access to the GitHub API, v3";
license = stdenv.lib.licenses.bsd3;
@@ -79941,6 +81951,30 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {inherit (pkgs) git;};
+ "github-data" = callPackage
+ ({ mkDerivation, aeson, aeson-compat, base, base-compat
+ , base16-bytestring, binary, binary-orphans, bytestring, containers
+ , deepseq, deepseq-generics, exceptions, hashable, http-client
+ , http-types, iso8601-time, network-uri, text, time, tls
+ , transformers, transformers-compat, unordered-containers, vector
+ , vector-instances
+ }:
+ mkDerivation {
+ pname = "github-data";
+ version = "0.18";
+ sha256 = "1rqnjw8cz4xby1gbc9w8wpk1z0vg8wsm8jq7qz0ncjrm8manii5p";
+ libraryHaskellDepends = [
+ aeson aeson-compat base base-compat base16-bytestring binary
+ binary-orphans bytestring containers deepseq deepseq-generics
+ exceptions hashable http-client http-types iso8601-time network-uri
+ text time tls transformers transformers-compat unordered-containers
+ vector vector-instances
+ ];
+ homepage = "https://github.com/strake/github.hs";
+ description = "Access to the GitHub API, v3";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"github-post-receive" = callPackage
({ mkDerivation, aeson, base, bytestring, containers
, email-validate, http-types, text, wai, wai-logger, warp
@@ -79965,8 +81999,8 @@ self: {
}:
mkDerivation {
pname = "github-release";
- version = "1.1.0";
- sha256 = "1a3a7pil5k0danybcfk19b4rql5s4alrlbprgq9053npb2369js2";
+ version = "1.1.2";
+ sha256 = "0czc53xwg21jvd7g4ggjva0nzc2rpyf36rc4876dss9lckcc2p93";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -79979,6 +82013,28 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "github-release_1_1_3" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, http-client
+ , http-client-tls, http-types, mime-types, optparse-generic, text
+ , unordered-containers, uri-templater
+ }:
+ mkDerivation {
+ pname = "github-release";
+ version = "1.1.3";
+ sha256 = "040yd8npjv54xfh4fv4i1p9x6qsa5qj1m5wblr7xjf0w090sblf0";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring http-client http-client-tls http-types
+ mime-types optparse-generic text unordered-containers uri-templater
+ ];
+ executableHaskellDepends = [ base ];
+ homepage = "https://github.com/tfausak/github-release#readme";
+ description = "Upload files to GitHub releases";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"github-tools" = callPackage
({ mkDerivation, base, bytestring, containers, exceptions, github
, groom, html, http-client, http-client-tls, monad-parallel
@@ -80757,10 +82813,8 @@ self: {
}:
mkDerivation {
pname = "glirc";
- version = "2.24";
- sha256 = "1fhpwr7v2ad49j9699f5za1ww2m1ln39cvnm82z57cngjghpnngs";
- revision = "2";
- editedCabalFile = "0fz8vr8kiny3jhh2jr3c5pv2283zm6nkfi93pj34v7xs62zcpg59";
+ version = "2.25";
+ sha256 = "1hh6zqkk1cm50n7d17i2490q2xh7hzy63krpj58rwhgpmn3ps5sb";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal filepath ];
@@ -81352,8 +83406,8 @@ self: {
}:
mkDerivation {
pname = "gnss-converters";
- version = "0.3.25";
- sha256 = "1ps3jjlf9igqmllyapqznzxjkf7291i7zv8w86p2fnm6wxsd73q9";
+ version = "0.3.30";
+ sha256 = "1cjfhpza7mhfywx09rf2qzglqwyss3ndk9sqn0vwvpv4c2wvglaq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -81403,8 +83457,8 @@ self: {
}:
mkDerivation {
pname = "gnuplot";
- version = "0.5.4.2";
- sha256 = "0s7z8a7cqnmfrs551wyqaj557hslhkw401z35nfb7shx6wrdvpq5";
+ version = "0.5.5";
+ sha256 = "1ka756zvc6q5hkjhi8zknb7d5whizmyl7ff0qzclx1n8qbx4jv98";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -84239,16 +86293,17 @@ self: {
"graphmod" = callPackage
({ mkDerivation, base, Cabal, containers, directory, dotgen
- , filepath, haskell-lexer
+ , filepath, haskell-lexer, pretty
}:
mkDerivation {
pname = "graphmod";
- version = "1.4";
- sha256 = "11gikmhdamsi900nk206hwm9fjjhdcsspj6aa06i8wqg8g4zbblq";
+ version = "1.4.1";
+ sha256 = "029lrdgms3kvqh5g9r762r31nwr0cjkzwksbc501d9kd0gk0ymjh";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base Cabal containers directory dotgen filepath haskell-lexer
+ pretty
];
homepage = "http://github.com/yav/graphmod/wiki";
description = "Present the module dependencies of a program as a \"dot\" graph";
@@ -84923,6 +86978,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "groupBy" = callPackage
+ ({ mkDerivation, base, code-page, criterion, doctest
+ , optparse-applicative, QuickCheck, random, utility-ht
+ }:
+ mkDerivation {
+ pname = "groupBy";
+ version = "0.1.0.0";
+ sha256 = "1w8spv6fhwhfdr6azlfgnjs8dqcyk8sn27hnk2wyi7gpy9zzhxw0";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base doctest QuickCheck ];
+ benchmarkHaskellDepends = [
+ base code-page criterion optparse-applicative random utility-ht
+ ];
+ homepage = "https://github.com/oisdk/groupBy#readme";
+ description = "Replacement definition of Data.List.GroupBy";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"grouped-list" = callPackage
({ mkDerivation, base, containers, criterion, deepseq, pointed
, QuickCheck, tasty, tasty-quickcheck
@@ -85810,6 +87883,7 @@ self: {
homepage = "https://github.com/apoorvingle/h-reversi";
description = "Reversi game in haskell/blank-canvas";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"h2048" = callPackage
@@ -86002,6 +88076,7 @@ self: {
];
description = "A library for analyzing and transforming LLVM (3.5) assembly codes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {hooplext = null;};
@@ -87089,8 +89164,8 @@ self: {
}:
mkDerivation {
pname = "hackage-whatsnew";
- version = "0.1.0.1";
- sha256 = "0bg0l6y6v0nrjz3ywfjx5jknhn9898q2h04m8q3iz1j5y6pzj80d";
+ version = "0.1.0.2";
+ sha256 = "0z57nnp0sn15399b11h7kb5dxqmg1gd3l8qv7vw8knxv65yfgra3";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -87177,6 +89252,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hackernews_1_4_0_0" = callPackage
+ ({ mkDerivation, aeson, base, hspec, http-client, http-client-tls
+ , http-types, QuickCheck, quickcheck-instances, servant
+ , servant-client, string-conversions, text
+ }:
+ mkDerivation {
+ pname = "hackernews";
+ version = "1.4.0.0";
+ sha256 = "0ilj91vjnsfdlzhjh35nqrr3c1z7p6qfabvk3xdz6iqzmpcq3ys8";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base http-client http-types QuickCheck quickcheck-instances
+ servant servant-client string-conversions text
+ ];
+ executableHaskellDepends = [ base http-client http-client-tls ];
+ testHaskellDepends = [
+ aeson base hspec http-client http-client-tls QuickCheck
+ quickcheck-instances
+ ];
+ description = "API for Hacker News";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hackertyper" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -87299,6 +89399,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "haddock_2_17_5" = callPackage
+ ({ mkDerivation, base, filepath, haddock-api, hspec }:
+ mkDerivation {
+ pname = "haddock";
+ version = "2.17.5";
+ sha256 = "1qxy6yxpxgpqpwcs76ydpal45cz4a3hyq3rq07cwma1cs4p034ql";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [ base haddock-api ];
+ testHaskellDepends = [ base filepath hspec ];
+ doCheck = false;
+ preCheck = "unset GHC_PACKAGE_PATH";
+ homepage = "http://www.haskell.org/haddock/";
+ description = "A documentation-generation tool for Haskell libraries";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"haddock" = callPackage
({ mkDerivation, base, filepath, haddock-api, hspec }:
mkDerivation {
@@ -87357,11 +89475,35 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "haddock-api" = callPackage
+ "haddock-api_2_17_4" = callPackage
({ mkDerivation, array, base, bytestring, Cabal, containers
, deepseq, directory, filepath, ghc, ghc-boot, ghc-paths
, haddock-library, hspec, QuickCheck, transformers, xhtml
}:
+ mkDerivation {
+ pname = "haddock-api";
+ version = "2.17.4";
+ sha256 = "00fn6pzgg8xjbaw12d76jdqh2dbc5xy7miyz0x6kidvvar7i35ss";
+ revision = "1";
+ editedCabalFile = "0saa5ksmvxyvwi2nrzh7m4ha1kwh31pkpa79yrppvw7sm39klpyw";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ array base bytestring Cabal containers deepseq directory filepath
+ ghc ghc-boot ghc-paths haddock-library transformers xhtml
+ ];
+ testHaskellDepends = [ base containers ghc hspec QuickCheck ];
+ homepage = "http://www.haskell.org/haddock/";
+ description = "A documentation-generation tool for Haskell libraries";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "haddock-api" = callPackage
+ ({ mkDerivation, array, base, bytestring, Cabal, containers
+ , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths
+ , haddock-library, hspec, hspec-discover, QuickCheck, transformers
+ , xhtml
+ }:
mkDerivation {
pname = "haddock-api";
version = "2.18.1";
@@ -87374,6 +89516,7 @@ self: {
ghc ghc-boot ghc-paths haddock-library transformers xhtml
];
testHaskellDepends = [ base containers ghc hspec QuickCheck ];
+ testToolDepends = [ hspec-discover ];
homepage = "http://www.haskell.org/haddock/";
description = "A documentation-generation tool for Haskell libraries";
license = stdenv.lib.licenses.bsd3;
@@ -87435,21 +89578,38 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "haddock-library_1_4_4" = callPackage
+ ({ mkDerivation, base, base-compat, bytestring, deepseq, hspec
+ , hspec-discover, QuickCheck, transformers
+ }:
+ mkDerivation {
+ pname = "haddock-library";
+ version = "1.4.4";
+ sha256 = "0dx5hawfanglhkj5nqq1dwr2j1v35p0syz30xvdk8gld8rif06p9";
+ libraryHaskellDepends = [ base bytestring deepseq transformers ];
+ testHaskellDepends = [
+ base base-compat bytestring deepseq hspec QuickCheck transformers
+ ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "http://www.haskell.org/haddock/";
+ description = "Library exposing some functionality of Haddock";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"haddock-library_1_4_5" = callPackage
- ({ mkDerivation, attoparsec, base, base-compat, bytestring, deepseq
- , hspec, QuickCheck, transformers
+ ({ mkDerivation, base, base-compat, bytestring, deepseq, hspec
+ , hspec-discover, QuickCheck, transformers
}:
mkDerivation {
pname = "haddock-library";
version = "1.4.5";
sha256 = "0dmpxj6fgv9js90cxlf4yhrclh8kwmn8dm4llwhiyzmiddanjjy9";
- libraryHaskellDepends = [
- attoparsec base bytestring transformers
- ];
+ libraryHaskellDepends = [ base bytestring deepseq transformers ];
testHaskellDepends = [
- attoparsec base base-compat bytestring deepseq hspec QuickCheck
- transformers
+ base base-compat bytestring deepseq hspec QuickCheck transformers
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://www.haskell.org/haddock/";
description = "Library exposing some functionality of Haddock";
license = stdenv.lib.licenses.bsd3;
@@ -87496,6 +89656,33 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hadolint" = callPackage
+ ({ mkDerivation, base, bytestring, directory, filepath, gitrev
+ , hspec, HUnit, language-docker, optparse-applicative, parsec
+ , ShellCheck, split, yaml
+ }:
+ mkDerivation {
+ pname = "hadolint";
+ version = "1.3.0";
+ sha256 = "13z78q36x28h7yn282k03568hj0lvava678d7hhhp5hrbk6ni8xv";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring language-docker parsec ShellCheck split
+ ];
+ executableHaskellDepends = [
+ base directory filepath gitrev language-docker optparse-applicative
+ parsec yaml
+ ];
+ testHaskellDepends = [
+ base bytestring hspec HUnit language-docker parsec ShellCheck split
+ ];
+ homepage = "https://github.com/hadolint/hadolint";
+ description = "Dockerfile Linter JavaScript API";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hadoop-formats" = callPackage
({ mkDerivation, attoparsec, base, bytestring, filepath, snappy
, text, vector
@@ -87778,6 +89965,7 @@ self: {
];
description = "Multi-app web platform framework";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {quickcheck-lio-instances = null;};
@@ -87966,6 +90154,51 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) utillinux;};
+ "hakyll_4_11_0_0" = callPackage
+ ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring
+ , containers, cryptohash, data-default, deepseq, directory
+ , file-embed, filepath, fsnotify, http-conduit, http-types
+ , lrucache, mtl, network, network-uri, optparse-applicative, pandoc
+ , pandoc-citeproc, parsec, process, QuickCheck, random, regex-base
+ , regex-tdfa, resourcet, scientific, tagsoup, tasty, tasty-hunit
+ , tasty-quickcheck, text, time, time-locale-compat
+ , unordered-containers, utillinux, vector, wai, wai-app-static
+ , warp, yaml
+ }:
+ mkDerivation {
+ pname = "hakyll";
+ version = "4.11.0.0";
+ sha256 = "08930cs783krsjqzlswz4fplppdlmw5b29nry5i7kan7d4f4lfb8";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base binary blaze-html blaze-markup bytestring containers
+ cryptohash data-default deepseq directory file-embed filepath
+ fsnotify http-conduit http-types lrucache mtl network network-uri
+ optparse-applicative pandoc pandoc-citeproc parsec process random
+ regex-base regex-tdfa resourcet scientific tagsoup text time
+ time-locale-compat unordered-containers vector wai wai-app-static
+ warp yaml
+ ];
+ executableHaskellDepends = [ base directory filepath pandoc ];
+ testHaskellDepends = [
+ base binary blaze-html blaze-markup bytestring containers
+ cryptohash data-default deepseq directory filepath fsnotify
+ http-conduit http-types lrucache mtl network network-uri
+ optparse-applicative pandoc pandoc-citeproc parsec process
+ QuickCheck random regex-base regex-tdfa resourcet scientific
+ tagsoup tasty tasty-hunit tasty-quickcheck text time
+ time-locale-compat unordered-containers vector wai wai-app-static
+ warp yaml
+ ];
+ testToolDepends = [ utillinux ];
+ homepage = "http://jaspervdj.be/hakyll";
+ description = "A static website compiler library";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) utillinux;};
+
"hakyll-R" = callPackage
({ mkDerivation, base, directory, filepath, hakyll, pandoc, process
}:
@@ -88172,8 +90405,8 @@ self: {
({ mkDerivation, base, hakyll, ogmarkup }:
mkDerivation {
pname = "hakyll-ogmarkup";
- version = "3.0";
- sha256 = "088hcjy34xxyaphy8c7kj82w88pwzdaww1xww791hjrq0r75icf7";
+ version = "4.0";
+ sha256 = "1w8wmqdfxf9w4mb9k77gak9iqxysa7mbb5phfh9a0hy30vx2qb1d";
libraryHaskellDepends = [ base hakyll ogmarkup ];
homepage = "https://github.com/ogma-project/hakyll-ogmarkup#readme";
description = "Integrate ogmarkup document with Hakyll";
@@ -88456,6 +90689,7 @@ self: {
homepage = "http://halvm.org";
description = "A simple, static HaLVM web server";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {HALVMCore = null; XenDevice = null;};
@@ -88477,8 +90711,8 @@ self: {
}:
mkDerivation {
pname = "hamilton";
- version = "0.1.0.1";
- sha256 = "12wp6z2dhcpyijvf1bqcx1bamw19crm23wvzgbpbjw3azyi72sn3";
+ version = "0.1.0.2";
+ sha256 = "1fhwvimqim9jj33wps42wsbwjz28h3waqn7wrwhqci307xbcib0m";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -88574,8 +90808,8 @@ self: {
}:
mkDerivation {
pname = "hamtsolo";
- version = "1.0.0";
- sha256 = "0lpac24fayd9s40b39l46aak9d51vv3bjslg0drgj2xlp1d9w60y";
+ version = "1.0.2";
+ sha256 = "0756ffnh1fxwagwkj3zy8axnwkwhnn8m37583sr0ymwyp9vwi3sx";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -88830,6 +91064,7 @@ self: {
homepage = "https://github.com/tolysz/hans-pfq";
description = "Driver for real ethernet devices for HaNS";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {pfq = null;};
@@ -88853,22 +91088,23 @@ self: {
}) {};
"hapistrano" = callPackage
- ({ mkDerivation, aeson, async, base, directory, filepath, hspec
- , mtl, optparse-applicative, path, path-io, process, stm, temporary
- , time, transformers, yaml
+ ({ mkDerivation, aeson, async, base, directory, filepath
+ , formatting, gitrev, hspec, mtl, optparse-applicative, path
+ , path-io, process, stm, temporary, time, transformers, yaml
}:
mkDerivation {
pname = "hapistrano";
- version = "0.3.5.0";
- sha256 = "15cjssws55awwq8j0xz8f4dd0y826f99zdv6mpxfxq97fah7zlcc";
+ version = "0.3.5.1";
+ sha256 = "1zpvwdq9dzfkq9jh1bpc5x8vh41508x0wph5a020q31rknc8llad";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base filepath mtl path process time transformers
+ base filepath formatting gitrev mtl path process time transformers
];
executableHaskellDepends = [
- aeson async base optparse-applicative path path-io stm yaml
+ aeson async base formatting gitrev optparse-applicative path
+ path-io stm yaml
];
testHaskellDepends = [
base directory filepath hspec mtl path path-io process temporary
@@ -89455,6 +91691,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) openssl;};
+ "happstack-server-tls_7_1_6_5" = callPackage
+ ({ mkDerivation, base, bytestring, extensible-exceptions
+ , happstack-server, hslogger, HsOpenSSL, network, openssl, sendfile
+ , time, unix
+ }:
+ mkDerivation {
+ pname = "happstack-server-tls";
+ version = "7.1.6.5";
+ sha256 = "0hp13wxaghs6ldqpbpyf8agph7b1y488fc516z1n6bvbpzcbhbvq";
+ libraryHaskellDepends = [
+ base bytestring extensible-exceptions happstack-server hslogger
+ HsOpenSSL network sendfile time unix
+ ];
+ librarySystemDepends = [ openssl ];
+ homepage = "http://www.happstack.com/";
+ description = "extend happstack-server with https:// support (TLS/SSL)";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) openssl;};
+
"happstack-server-tls-cryptonite" = callPackage
({ mkDerivation, base, bytestring, cryptonite, data-default-class
, extensible-exceptions, happstack-server, hslogger, network
@@ -90323,14 +92579,31 @@ self: {
({ mkDerivation, base, containers, deepseq, hashable }:
mkDerivation {
pname = "hashmap";
- version = "1.3.2";
- sha256 = "15jppbxwqkwccdif789c7gvlfypyd98gnv1p5dh2kx977r19sh01";
+ version = "1.3.3";
+ sha256 = "0ma7svf9nanlfbj9nkk6bzk4m98i7xd71xrdc3a5dmmws5yba1nw";
libraryHaskellDepends = [ base containers deepseq hashable ];
homepage = "https://github.com/foxik/hashmap";
description = "Persistent containers Map and Set based on hashing";
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hashrename" = callPackage
+ ({ mkDerivation, base, bytestring, cryptohash, directory, filepath
+ }:
+ mkDerivation {
+ pname = "hashrename";
+ version = "0.1.1.0";
+ sha256 = "19w35cdwxzmyw65l4zwhj67w5s741ayca7dm250wz6w2xlc37f5v";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base bytestring cryptohash directory filepath
+ ];
+ homepage = "https://gist.github.com/rnhmjoj/20ea1b366d45b1c4c0e8";
+ description = "Rename every file in a directory with his SHA1 hash";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"hashring" = callPackage
({ mkDerivation, base, containers, hashable, QuickCheck
, test-framework, test-framework-quickcheck2
@@ -90885,6 +93158,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "haskell-dap" = callPackage
+ ({ mkDerivation, array, base, bytestring, containers, deepseq
+ , directory, filepath, ghc, ghc-boot, ghc-paths, ghci, haskeline
+ , process, time, transformers, unix
+ }:
+ mkDerivation {
+ pname = "haskell-dap";
+ version = "0.0.2.0";
+ sha256 = "1wxidyga0abxyxwiy9qxjl8qj456rlcflav18jz3227yc6y4ziwz";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ];
+ executableHaskellDepends = [
+ array base bytestring containers deepseq directory filepath ghc
+ ghc-boot ghc-paths ghci haskeline process time transformers unix
+ ];
+ homepage = "https://github.com/phoityne/haskell-dap";
+ description = "haskell-dap is a GHCi having DAP interface";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"haskell-disque" = callPackage
({ mkDerivation, base, bytestring, hedis, string-conversions
, transformers
@@ -91089,6 +93383,34 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
+ "haskell-gi_0_21_0" = callPackage
+ ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers
+ , directory, doctest, filepath, glib, gobjectIntrospection
+ , haskell-gi-base, mtl, pretty-show, process, regex-tdfa, safe
+ , text, transformers, xdg-basedir, xml-conduit
+ }:
+ mkDerivation {
+ pname = "haskell-gi";
+ version = "0.21.0";
+ sha256 = "109jgixxrb9xjlkqnwkch9zgb2rj79knd8ivgfi1cc4v30299vwi";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base bytestring Cabal containers directory filepath
+ haskell-gi-base mtl pretty-show process regex-tdfa safe text
+ transformers xdg-basedir xml-conduit
+ ];
+ libraryPkgconfigDepends = [ glib gobjectIntrospection ];
+ executableHaskellDepends = [
+ base containers directory filepath haskell-gi-base pretty-show text
+ ];
+ testHaskellDepends = [ base doctest ];
+ homepage = "https://github.com/haskell-gi/haskell-gi";
+ description = "Generate Haskell bindings for GObject Introspection capable libraries";
+ license = stdenv.lib.licenses.lgpl21;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;};
+
"haskell-gi-base" = callPackage
({ mkDerivation, base, bytestring, containers, glib, text }:
mkDerivation {
@@ -91102,6 +93424,20 @@ self: {
license = stdenv.lib.licenses.lgpl21;
}) {inherit (pkgs) glib;};
+ "haskell-gi-base_0_21_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, glib, text }:
+ mkDerivation {
+ pname = "haskell-gi-base";
+ version = "0.21.0";
+ sha256 = "1vrz2vrmvsbahzsp1c06x4qmny5qhbrnz5ybzh5p8z1g3ji9z166";
+ libraryHaskellDepends = [ base bytestring containers text ];
+ libraryPkgconfigDepends = [ glib ];
+ homepage = "https://github.com/haskell-gi/haskell-gi-base";
+ 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 {
@@ -91271,8 +93607,8 @@ self: {
}:
mkDerivation {
pname = "haskell-lsp";
- version = "0.2.0.0";
- sha256 = "1hvqimg580hbanlhim2kxni3wk6rfwsd93agkfjhy216lb8bd9h8";
+ version = "0.2.0.1";
+ sha256 = "0xvgm1kkfz5yf1949f07phg5lic1zhwy5pdbgfnqdpaxrwscxm8y";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -91300,8 +93636,8 @@ self: {
}:
mkDerivation {
pname = "haskell-lsp-client";
- version = "1.0.0.0";
- sha256 = "1c4zjq5vh46gxw3jrfh1f3hk1cbjqg8j2dlz6axb75ir14kxgky1";
+ version = "1.0.0.1";
+ sha256 = "06zx80nhhf5fik84rijaxzjy9yv1c29g6hwfx73axlav80g176qw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -91327,6 +93663,25 @@ self: {
license = stdenv.lib.licenses.lgpl3;
}) {};
+ "haskell-ml" = callPackage
+ ({ mkDerivation, attoparsec, base, binary, hmatrix, MonadRandom
+ , random-shuffle, singletons, text, vector
+ }:
+ mkDerivation {
+ pname = "haskell-ml";
+ version = "0.4.2";
+ sha256 = "0843akac5j1nhq6nknshblx33mg8b5h1lykpmgp627zzlbvzc3d3";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base binary hmatrix MonadRandom singletons text vector
+ ];
+ executableHaskellDepends = [ base hmatrix random-shuffle ];
+ testHaskellDepends = [ base MonadRandom ];
+ description = "Machine learning in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"haskell-modbus" = callPackage
({ mkDerivation, array, base, bytestring, cereal, hspec }:
mkDerivation {
@@ -91753,6 +94108,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "haskell-src-exts-sc" = callPackage
+ ({ mkDerivation, base, haskell-src-exts }:
+ mkDerivation {
+ pname = "haskell-src-exts-sc";
+ version = "0.1.0.4";
+ sha256 = "00db79f99333viibrzhr77cvhv9ihk7vb5yh1xbsz2lirfajwmr2";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base haskell-src-exts ];
+ executableHaskellDepends = [ base haskell-src-exts ];
+ homepage = "https://github.com/achirkin/haskell-src-exts-sc#readme";
+ description = "Pretty print haskell code with comments";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"haskell-src-exts-simple" = callPackage
({ mkDerivation, base, haskell-src-exts }:
mkDerivation {
@@ -91765,16 +94135,30 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "haskell-src-exts-simple_1_20_0_0" = callPackage
+ ({ mkDerivation, base, haskell-src-exts }:
+ mkDerivation {
+ pname = "haskell-src-exts-simple";
+ version = "1.20.0.0";
+ sha256 = "0p79ppmwb14lj2a1wy42zgm3z3zk5jbyn7rfgwxsyw2g424bw1dk";
+ libraryHaskellDepends = [ base haskell-src-exts ];
+ homepage = "https://github.com/int-e/haskell-src-exts-simple";
+ description = "A simplified view on the haskell-src-exts AST";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"haskell-src-exts-util" = callPackage
({ mkDerivation, base, containers, data-default, haskell-src-exts
- , transformers, uniplate
+ , semigroups, transformers, uniplate
}:
mkDerivation {
pname = "haskell-src-exts-util";
- version = "0.2.1.2";
- sha256 = "1a5y6fvzpjdi6az580rb1aq3gjxlcm6gn5dfd9mixyn5dv32aysv";
+ version = "0.2.2";
+ sha256 = "14rhwcrdz3kfb69c64qn8kybl7wnpajrjlfz5p95ca4bva4mwclg";
libraryHaskellDepends = [
- base containers data-default haskell-src-exts transformers uniplate
+ base containers data-default haskell-src-exts semigroups
+ transformers uniplate
];
homepage = "https://github.com/pepeiborra/haskell-src-exts-util";
description = "Helper functions for working with haskell-src-exts trees";
@@ -91788,8 +94172,8 @@ self: {
}:
mkDerivation {
pname = "haskell-src-meta";
- version = "0.8.0.1";
- sha256 = "1i5f21mx061k50nl3pvvffjqsbvvldl50y8d4b9b31g63l0jg5q9";
+ version = "0.8.0.2";
+ sha256 = "12rc4v5dbbbcwdp7j8isvnm9vqpazv124j5kdfwlgwgwjhxi8ysb";
libraryHaskellDepends = [
base haskell-src-exts pretty syb template-haskell th-orphans
];
@@ -91862,8 +94246,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-ast";
- version = "1.0.0.2";
- sha256 = "02g90k13yif22dpil39icx95xfm4ac13b8xc6n40wglci8fmy8pz";
+ version = "1.0.0.4";
+ sha256 = "000dazz2qmc46pyfxskimz02xllf7fs6nl18ki6pvvahp0ammgd9";
libraryHaskellDepends = [
base ghc mtl references template-haskell uniplate
];
@@ -91933,8 +94317,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-backend-ghc";
- version = "1.0.0.2";
- sha256 = "1h1ccqng5w25d0k0iw8w7jpdww3gnm4mzs8gzr0amlbw8azar29d";
+ version = "1.0.0.4";
+ sha256 = "0c909xknb4q28cqm4cckx5girygz1jjg0nwj9v31dj7yhwgm6y2g";
libraryHaskellDepends = [
base bytestring containers ghc ghc-boot-th haskell-tools-ast mtl
references safe split template-haskell transformers uniplate
@@ -91954,8 +94338,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-builtin-refactorings";
- version = "1.0.0.2";
- sha256 = "0ysn8fgyj89f7bnmijb1vcp9qckc7w7zjj209rlg2cx5qfs75dhn";
+ version = "1.0.0.4";
+ sha256 = "1hxl8j8nkn3f59wxbzfyhjbshjypi4bv7v2vrqlpfygnb1n1jhci";
libraryHaskellDepends = [
base Cabal containers directory filepath ghc ghc-paths
haskell-tools-ast haskell-tools-backend-ghc
@@ -91985,8 +94369,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-cli";
- version = "1.0.0.2";
- sha256 = "11x0b85jixdpf1jps6y35v3gsh5yrnr1qvdwim75rzhkd73fxrwn";
+ version = "1.0.0.4";
+ sha256 = "121q9ydi0jlj9bs6zyy2h6vkmaajwf1pcnnq4s21yw99ah4xhy6q";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -92023,8 +94407,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-daemon";
- version = "1.0.0.2";
- sha256 = "0sczrldcby64cghivmd8ks9srdg84xk1h9rxxp1ywysjah86ir6x";
+ version = "1.0.0.4";
+ sha256 = "1gqx9nn87mq2n722lzl0slpw54dg6asc2s77zjs0sywvcpck4b4v";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -92056,8 +94440,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-debug";
- version = "1.0.0.2";
- sha256 = "1shgm21g0s0f0amlf42imfb2s6279s6aqfnb7gqkh22q8pamsvhj";
+ version = "1.0.0.4";
+ sha256 = "0lh48bfjicpjsk2vazl91n6xw0ahff89rw9iiizpla92rz1fcb20";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -92083,8 +94467,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-demo";
- version = "1.0.0.2";
- sha256 = "1hmpjm5z7k4qbq3q1gl2qmqrprx3kd8n980gsmwk53i5lj17h7dp";
+ version = "1.0.0.4";
+ sha256 = "0vqjs4wrgjacj3i6hykfvafhnyik6nn9p8miyb1plmhm9w6g0ynq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -92115,8 +94499,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-experimental-refactorings";
- version = "1.0.0.2";
- sha256 = "0avxnp5zdc3rafqg5arvnfljyhp3v2ass96z39458b4zmrxf2mgd";
+ version = "1.0.0.4";
+ sha256 = "0mzwvs33snv3a3dvhkd1mnidkifip21rj2y44k9dcwdhfzcz6xbl";
libraryHaskellDepends = [
base Cabal containers directory filepath ghc ghc-paths
haskell-tools-ast haskell-tools-backend-ghc
@@ -92142,8 +94526,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-prettyprint";
- version = "1.0.0.2";
- sha256 = "00r76y11l7sj8w76svxnjr4rxb99s47m6lv4jp0k1jdzyybzsjjf";
+ version = "1.0.0.4";
+ sha256 = "001mk8fdxl06il8s3w1i4901s85kb99nyhp3yk7jg6ghh4iaf1c9";
libraryHaskellDepends = [
base containers ghc haskell-tools-ast mtl references split text
uniplate
@@ -92161,8 +94545,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-refactor";
- version = "1.0.0.2";
- sha256 = "03pvjgwz9w79zk7rkx0pm09arbpijnljp3q2aykjpblh7lh6va95";
+ version = "1.0.0.4";
+ sha256 = "192najfy3r05vhxl21bg6lqy8m5081sdxp5yfvw9nyjlarfcb2b9";
libraryHaskellDepends = [
base Cabal containers directory filepath ghc ghc-paths
haskell-tools-ast haskell-tools-backend-ghc
@@ -92181,8 +94565,8 @@ self: {
}:
mkDerivation {
pname = "haskell-tools-rewrite";
- version = "1.0.0.2";
- sha256 = "1lq5xxsplr6w0jrwwih86jl8alvzlzg3dqfb0pimdi0z23jyqq4f";
+ version = "1.0.0.4";
+ sha256 = "1jjg6w2ajlnjz7hl74znm2gaylmlixvp65m2ns7p4iryycsr5fjg";
libraryHaskellDepends = [
base containers ghc haskell-tools-ast haskell-tools-prettyprint mtl
references
@@ -92277,8 +94661,8 @@ self: {
}:
mkDerivation {
pname = "haskell-updater";
- version = "1.3";
- sha256 = "1q9rjy36wqagy665k0ifnfwr9r1fy2if5gnva9q069hdir15lkzm";
+ version = "1.3.1";
+ sha256 = "0q2aix579mm3ksi0hipcmw8g2p5xfbgk6ph7jnraq5i2rxjchg7v";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -92652,6 +95036,7 @@ self: {
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the HSQL Oracle driver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {hsql-oracle = null;};
@@ -92690,6 +95075,7 @@ self: {
homepage = "https://github.com/m4dc4p/haskelldb";
description = "HaskellDB support for the HSQL SQLite driver";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {hsql-sqlite = null;};
@@ -92840,8 +95226,8 @@ self: {
}:
mkDerivation {
pname = "haskey";
- version = "0.2.0.0";
- sha256 = "1c0snqs740gqwfzlpyhr8zggaplmba6mzj8cnl8r47sgn006q95i";
+ version = "0.2.0.1";
+ sha256 = "07q7kp07ipq20v3ag49j3ca116p48yn3pn5im5p101l8372hj58n";
libraryHaskellDepends = [
base binary bytestring containers directory exceptions filepath
focus haskey-btree list-t lz4 mtl semigroups stm stm-containers
@@ -92866,8 +95252,8 @@ self: {
}:
mkDerivation {
pname = "haskey-btree";
- version = "0.2.0.0";
- sha256 = "00gp5fh64b26bqrchdrpdl8s46fdzglsqi07xf0cfrfcm867az23";
+ version = "0.2.0.1";
+ sha256 = "025g1sa41fa29v69hpbghabq2irkb498a6b48bgp0nb8m3cmz2ls";
libraryHaskellDepends = [
base binary bytestring containers hashable mtl semigroups text
transformers vector
@@ -93491,24 +95877,25 @@ self: {
}) {};
"hasmin" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers
- , criterion, directory, doctest, doctest-discover, gitrev, hopfli
- , hspec, hspec-attoparsec, matrix, mtl, numbers
+ ({ mkDerivation, attoparsec, base, bifunctors, bytestring
+ , containers, criterion, directory, doctest, doctest-discover
+ , gitrev, hopfli, hspec, hspec-attoparsec, matrix, mtl, numbers
, optparse-applicative, parsers, QuickCheck, text
}:
mkDerivation {
pname = "hasmin";
- version = "1.0";
- sha256 = "1a512s1fd472agy2pv9qizp61jrz1jzdpxla3213y6wsahi9wdnm";
+ version = "1.0.1";
+ sha256 = "1h5ygl9qmzmbhqfb58hhm2zw850dqfkp4b8cp3bhsnangg4lgbjk";
+ revision = "2";
+ editedCabalFile = "0hav8khv14k41rf4lmh79w6ym4basrmmsjwfc5bww2qya7889d5k";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- attoparsec base bytestring containers matrix mtl numbers parsers
+ attoparsec base bifunctors containers matrix mtl numbers parsers
text
];
executableHaskellDepends = [
- attoparsec base bytestring containers gitrev hopfli matrix mtl
- numbers optparse-applicative parsers text
+ base bytestring gitrev hopfli optparse-applicative text
];
testHaskellDepends = [
attoparsec base doctest doctest-discover hspec hspec-attoparsec mtl
@@ -93669,8 +96056,8 @@ self: {
}:
mkDerivation {
pname = "hasql-generic";
- version = "0.1.0.4";
- sha256 = "10ps2kf0q4lxcmrvyqsw7gkamcyqlyjlj3ljgs68fniri0pbw3fn";
+ version = "0.1.0.5";
+ sha256 = "0prf7ikjccp4bvlxxv78xg34mz0m3gn2y3c2z1lq14jzarya4pcf";
libraryHaskellDepends = [
aeson base binary-parser bytestring containers contravariant
generics-sop hasql postgresql-binary scientific text time uuid
@@ -93966,6 +96353,7 @@ self: {
homepage = "http://haste-lang.org/";
description = "Haskell To ECMAScript compiler";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {bin-package-db = null;};
@@ -94613,10 +97001,10 @@ self: {
}:
mkDerivation {
pname = "hblas";
- version = "0.3.2.1";
- sha256 = "05c2mqhwjq0r8jyaj0cncaxn4n5x27dd8z6lv8g8cdc7r749q59y";
+ version = "0.3.2.2";
+ sha256 = "1r38ch9xi02dg4pfngpp3rndrla14w75pijkdb6kkq5r80i7hxmw";
revision = "2";
- editedCabalFile = "02cxp6nxr2x1ka8bq8zjlx6kjy54lzsc9bdw1zf981f3i8yz9cj8";
+ editedCabalFile = "0rvym111j5rpdx8cng1nwy7fg1f84wcfzfbwi8qgcvg29126jbnf";
libraryHaskellDepends = [ base primitive storable-complex vector ];
librarySystemDepends = [ blas liblapack ];
testHaskellDepends = [ base HUnit tasty tasty-hunit vector ];
@@ -94945,8 +97333,8 @@ self: {
}:
mkDerivation {
pname = "hdaemonize";
- version = "0.5.4";
- sha256 = "0r6bfb2bc9lg4iywbql7ik9swvvn4lfhq0qn7r20v4gq5fkpwgvw";
+ version = "0.5.5";
+ sha256 = "17q2zr9bv6xwnldgbsh1idwfgybp8q4xzq79p2lmmi3f0q6cnl6j";
libraryHaskellDepends = [
base bytestring extensible-exceptions filepath hsyslog mtl unix
];
@@ -95411,10 +97799,8 @@ self: {
}:
mkDerivation {
pname = "heaps";
- version = "0.3.5";
- sha256 = "1p1nsglsf8hric63cn3n1iw1nlbiv3lgk3n5gq0znajj7j7s64qv";
- revision = "1";
- editedCabalFile = "05avm1b16gj3rlm9sjqkxb0flq055r6gqhnacp7yzw4j1bghm5j7";
+ version = "0.3.6";
+ sha256 = "1cnxgmxxvl053yv93vcz5fnla4iir5g9wr697n88ysdyybbkq70q";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base directory doctest filepath ];
@@ -95611,6 +97997,42 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hedgehog-corpus" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "hedgehog-corpus";
+ version = "0.1.0";
+ sha256 = "1whrszkd03d9a86vqnp38sq8gs2hfdc39wxcf5c12w3767c9qmn3";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/tmcgilchrist/hedgehog-corpus";
+ description = "hedgehog-corpus";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "hedgehog-gen-json" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, exceptions
+ , hedgehog, lens, protolude, regex-genex, regex-posix, scientific
+ , tasty, tasty-hedgehog, text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "hedgehog-gen-json";
+ version = "0.1.0";
+ sha256 = "1b2sb33ah8df2v36hq1axf8dc5d3kflvpb70fcs2pbr44wzrv8x4";
+ libraryHaskellDepends = [
+ aeson base bytestring containers exceptions hedgehog lens protolude
+ regex-genex scientific text unordered-containers vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers exceptions hedgehog lens protolude
+ regex-genex regex-posix scientific tasty tasty-hedgehog text
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/githubuser/haskell-hedgehog-gen-json#readme";
+ description = "JSON generators for Hedgehog";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hedgehog-quickcheck" = callPackage
({ mkDerivation, base, hedgehog, QuickCheck, transformers }:
mkDerivation {
@@ -95647,6 +98069,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hedis_0_10_0" = callPackage
+ ({ mkDerivation, async, base, bytestring, bytestring-lexing
+ , deepseq, doctest, errors, HTTP, HUnit, mtl, network, network-uri
+ , resource-pool, scanner, slave-thread, stm, test-framework
+ , test-framework-hunit, text, time, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "hedis";
+ version = "0.10.0";
+ sha256 = "02f095461v812csrncf4bdhvgpn1a3wqpd66gpb72pxij4mrh5zy";
+ libraryHaskellDepends = [
+ async base bytestring bytestring-lexing deepseq errors HTTP mtl
+ network network-uri resource-pool scanner stm text time
+ unordered-containers vector
+ ];
+ testHaskellDepends = [
+ async base bytestring doctest HUnit mtl slave-thread stm
+ test-framework test-framework-hunit text time
+ ];
+ benchmarkHaskellDepends = [ base mtl time ];
+ homepage = "https://github.com/informatikr/hedis";
+ description = "Client library for the Redis datastore: supports full command set, pipelining";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hedis-config" = callPackage
({ mkDerivation, aeson, base, bytestring, hedis, scientific, text
, time
@@ -95808,8 +98256,10 @@ self: {
}:
mkDerivation {
pname = "heist";
- version = "1.0.1.1";
- sha256 = "1incy8w291k3vivnrxxqw12i77qzq8b840z8l99i0mkwbl3w3gf7";
+ version = "1.0.1.2";
+ sha256 = "0kpn5c3j7d42l12axd05hglhxqc4y7l0rz57lcqh3yznjl7mzv71";
+ revision = "1";
+ editedCabalFile = "0aac04b374bi02nj1li7xf0w2z1d87l8qhzjmpsharg9jxrk8ngn";
libraryHaskellDepends = [
aeson attoparsec base blaze-builder blaze-html bytestring
containers directory directory-tree dlist filepath hashable
@@ -96303,8 +98753,8 @@ self: {
}:
mkDerivation {
pname = "here";
- version = "1.2.11";
- sha256 = "1jpcwzi5pq82zlv1w987dlpfyi566gvabaj2wywyr9i95hv97jk8";
+ version = "1.2.12";
+ sha256 = "0kiwcknk145z7y48qgpf73f0kwz4nnqa72q14vypy21sb5bpcgxc";
libraryHaskellDepends = [
base haskell-src-meta mtl parsec template-haskell
];
@@ -96985,8 +99435,8 @@ self: {
}:
mkDerivation {
pname = "heyefi";
- version = "2.0.0.1";
- sha256 = "08lry3bxppnxr1mqpsbplq041nf2c5aaaim4iqhrapvqwwca7n5v";
+ version = "2.0.0.2";
+ sha256 = "1dhjvg5hhqj7apbsz5sq5p05rp3g07igc00r8qa7dmgixrp0a77b";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -97075,25 +99525,26 @@ self: {
}) {};
"hfmt" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, bytestring, Cabal, Diff
- , directory, exceptions, filepath, haskell-src-exts, hindent, hlint
- , HUnit, optparse-applicative, path, path-io, pipes, pretty
- , stylish-haskell, test-framework, test-framework-hunit, text
- , transformers, yaml
+ ({ mkDerivation, ansi-wl-pprint, base, bytestring, Cabal
+ , conduit-combinators, Diff, directory, exceptions, filepath
+ , haskell-src-exts, hindent, hlint, HUnit, optparse-applicative
+ , path, path-io, pretty, stylish-haskell, test-framework
+ , test-framework-hunit, text, transformers, yaml
}:
mkDerivation {
pname = "hfmt";
- version = "0.1.1";
- sha256 = "0cg5vaihyrdsigpvj82a2xdmq6wj1vbqg10ldcp4c2pxwsgz97mh";
+ version = "0.2.0";
+ sha256 = "1d62kby9mzld7lnfvrvhkri8lf2wgijb972wzrarbcbnkahhjnps";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base bytestring Cabal directory exceptions filepath
- haskell-src-exts hindent hlint HUnit path path-io pipes
+ base bytestring Cabal conduit-combinators Diff directory exceptions
+ filepath haskell-src-exts hindent hlint HUnit path path-io pretty
stylish-haskell text transformers yaml
];
executableHaskellDepends = [
- ansi-wl-pprint base Diff optparse-applicative pipes pretty
+ ansi-wl-pprint base conduit-combinators directory
+ optparse-applicative
];
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
@@ -97369,22 +99820,21 @@ self: {
}) {geos_c = null;};
"hgettext" = callPackage
- ({ mkDerivation, base, Cabal, containers, directory, filepath
- , haskell-src-exts, process, setlocale, uniplate
+ ({ mkDerivation, base, Cabal, containers, deepseq, directory
+ , filepath, haskell-src-exts, process, setlocale, uniplate
}:
mkDerivation {
pname = "hgettext";
- version = "0.1.30";
- sha256 = "1pgzyd1nqzl7g88pcw7sncija5sd2k4zif9d8qfw96cw6m6kli96";
- revision = "3";
- editedCabalFile = "1cxc4jqkngabnramva9s718mavk1082pjkkq2z8x326k0v269w2g";
+ version = "0.1.31.0";
+ sha256 = "0s7kgpjlkkw32rbksic099m9g07czi0vrhcn7mbiyi0lyhcbc7ym";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base Cabal containers directory filepath process setlocale
];
- executableHaskellDepends = [ base haskell-src-exts uniplate ];
- homepage = "https://github.com/vasylp/hgettext";
+ executableHaskellDepends = [
+ base Cabal containers deepseq filepath haskell-src-exts uniplate
+ ];
description = "Bindings to libintl.h (gettext, bindtextdomain)";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -97452,6 +99902,7 @@ self: {
homepage = "http://code.haskell.org/~thielema/hgl-example/";
description = "Various animations generated using HGL";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {HTam = null;};
@@ -97698,12 +100149,14 @@ self: {
({ mkDerivation, base, hspec }:
mkDerivation {
pname = "hidden-char";
- version = "0.1.0.1";
- sha256 = "17g9wbk34x8gkgrlvj3barhirq0jkshysqrxhs8nxp60hb2zpxip";
+ version = "0.1.0.2";
+ sha256 = "167l83cn37mkq394pbanybz1kghnbim1m74fxskws1nclxr9747a";
+ revision = "2";
+ editedCabalFile = "1d0k297hxff31k0x5xbli6l7c151d2y9wq4w0x0prgagjc0l7z5n";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base hspec ];
homepage = "https://github.com/rcook/hidden-char#readme";
- description = "Provides getHiddenChar function";
+ description = "Provides cross-platform getHiddenChar function";
license = stdenv.lib.licenses.mit;
}) {};
@@ -98089,6 +100542,7 @@ self: {
homepage = "http://www.haskell.org/himerge";
description = "Haskell Graphical User Interface for Emerge";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {mozembed = null;};
@@ -98138,21 +100592,21 @@ self: {
}) {};
"hindent" = callPackage
- ({ mkDerivation, base, bytestring, containers, criterion, deepseq
- , descriptive, Diff, directory, exceptions, ghc-prim
- , haskell-src-exts, hspec, monad-loops, mtl, path, path-io, text
- , transformers, unix-compat, utf8-string, yaml
+ ({ mkDerivation, base, bytestring, Cabal, containers, criterion
+ , deepseq, descriptive, Diff, directory, exceptions, filepath
+ , ghc-prim, haskell-src-exts, hspec, monad-loops, mtl, path
+ , path-io, text, transformers, unix-compat, utf8-string, yaml
}:
mkDerivation {
pname = "hindent";
- version = "5.2.4.1";
- sha256 = "0m35gd2r49cnaxsn9k82g8arj5pz66glsijlji2g77psd9a3flff";
+ version = "5.2.5";
+ sha256 = "19lckzwsqy8d1wry7hlg5vcg10dc5isai1z0n8srap5hlqvifw1g";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base bytestring containers exceptions haskell-src-exts monad-loops
- mtl text transformers utf8-string yaml
+ base bytestring Cabal containers directory exceptions filepath
+ haskell-src-exts monad-loops mtl text transformers utf8-string yaml
];
executableHaskellDepends = [
base bytestring deepseq descriptive directory exceptions ghc-prim
@@ -98924,8 +101378,8 @@ self: {
}:
mkDerivation {
pname = "hjsonschema";
- version = "1.7.1";
- sha256 = "0x9w33scdnbfdmadxpx2c4fgkmpvny9ipsl2y7fq56zr6fa0ybfz";
+ version = "1.7.2";
+ sha256 = "1czxfwfhl7zxx8385x8qskiym8qb1fpjdxmbywl8p4p102cb9083";
libraryHaskellDepends = [
aeson base bytestring containers file-embed filepath hashable
hjsonpointer http-client http-types pcre-heavy profunctors
@@ -99064,7 +101518,7 @@ self: {
"hledger" = callPackage
({ mkDerivation, ansi-terminal, base, base-compat, bytestring
- , cmdargs, containers, criterion, csv, data-default, Diff
+ , cmdargs, containers, criterion, csv, data-default, Decimal, Diff
, directory, file-embed, filepath, hashable, haskeline, here
, hledger-lib, html, HUnit, megaparsec, mtl, mtl-compat, old-time
, parsec, pretty-show, process, regex-tdfa, safe, shakespeare
@@ -99074,24 +101528,22 @@ self: {
}:
mkDerivation {
pname = "hledger";
- version = "1.4";
- sha256 = "146llzlpijcai3cfqcd4l4dcyjq6j6wd6pinkllja73vpx7wyi75";
- revision = "2";
- editedCabalFile = "0yksk4ckbr84s3ksvhx9miy8r5w7v0b0kmxj688f5gd1857n6vrx";
+ version = "1.5";
+ sha256 = "0mmgjahdlyka2mi1271kawrvkvnw8bgd3a08r8bykskj9b9f5181";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
ansi-terminal base base-compat bytestring cmdargs containers csv
- data-default Diff directory file-embed filepath hashable haskeline
- here hledger-lib HUnit megaparsec mtl mtl-compat old-time
+ data-default Decimal Diff directory file-embed filepath hashable
+ haskeline here hledger-lib HUnit megaparsec mtl mtl-compat old-time
pretty-show process regex-tdfa safe shakespeare split tabular
temporary terminfo text time transformers unordered-containers
utf8-string utility-ht wizards
];
executableHaskellDepends = [
ansi-terminal base base-compat bytestring cmdargs containers csv
- data-default directory file-embed filepath haskeline here
+ data-default Decimal directory file-embed filepath haskeline here
hledger-lib HUnit mtl mtl-compat old-time parsec pretty-show
process regex-tdfa safe shakespeare split tabular temporary
terminfo text time unordered-containers utf8-string utility-ht
@@ -99099,7 +101551,7 @@ self: {
];
testHaskellDepends = [
ansi-terminal base base-compat bytestring cmdargs containers csv
- data-default directory file-embed filepath haskeline here
+ data-default Decimal directory file-embed filepath haskeline here
hledger-lib HUnit mtl mtl-compat old-time parsec pretty-show
process regex-tdfa safe shakespeare split tabular temporary
terminfo test-framework test-framework-hunit text time
@@ -99124,10 +101576,8 @@ self: {
}:
mkDerivation {
pname = "hledger-api";
- version = "1.4";
- sha256 = "00vpl1ch1v80f37y8yn2psdzm7ccxpfn3jp93xqxbasksxfawfa7";
- revision = "1";
- editedCabalFile = "1q3fvasxg32xza2pgf725x0j5dsz4rklng3blyw0kq70bccgdaka";
+ version = "1.5";
+ sha256 = "1wanah469danp0ljjxr258gdcd9lb175chz2jlq0y604wksaaj19";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -99165,8 +101615,8 @@ self: {
({ mkDerivation, base, hledger-lib, text, time }:
mkDerivation {
pname = "hledger-diff";
- version = "0.2.0.11";
- sha256 = "1y5f7xdw1rriz2d7qxnkywyjsa09bk6712rks3l1zkihi5i3fnr7";
+ version = "0.2.0.13";
+ sha256 = "0kngmnpn5qk76hbf1ynfz9zfzwvsslq7klih78k103zl76ggdvsv";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base hledger-lib text time ];
@@ -99185,10 +101635,10 @@ self: {
}:
mkDerivation {
pname = "hledger-iadd";
- version = "1.2.6";
- sha256 = "1l5vzhyya5h6sc3l74iy0mnys8bcjp6m5z0m3lqabk37ik31ld36";
- revision = "8";
- editedCabalFile = "0fjlyb3pbn5dfkns8hlb696aawmw6gkm1ad2la0aiy2kyzhvl838";
+ version = "1.3.1";
+ sha256 = "0z7f9bm7xkq8a9kbhf3bd6fxhfaab08ddgghpbg5z460l4lhcczv";
+ revision = "1";
+ editedCabalFile = "1kwncys0n2xbvbq6a5rgfxg955726xk8av6v9221qx8zpndf2di4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -99236,8 +101686,8 @@ self: {
}:
mkDerivation {
pname = "hledger-irr";
- version = "0.1.1.12";
- sha256 = "1mk8yq601l5hljdmzj68q10wcvkl0l4li1h4aqcj04ygp0sg7471";
+ version = "0.1.1.13";
+ sha256 = "16y195h5wjs8vrccs18dx65kz3xrcifcwy1ggrsblf0kgml0cj7l";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -99250,22 +101700,20 @@ self: {
"hledger-lib" = callPackage
({ mkDerivation, ansi-terminal, array, base, base-compat
, blaze-markup, bytestring, cmdargs, containers, csv, data-default
- , Decimal, deepseq, directory, doctest, filepath, Glob, hashtables
- , HUnit, megaparsec, mtl, mtl-compat, old-time, parsec, pretty-show
- , regex-tdfa, safe, semigroups, split, test-framework
+ , Decimal, deepseq, directory, doctest, extra, filepath, Glob
+ , hashtables, HUnit, megaparsec, mtl, mtl-compat, old-time, parsec
+ , pretty-show, regex-tdfa, safe, semigroups, split, test-framework
, test-framework-hunit, text, time, transformers, uglymemo
, utf8-string
}:
mkDerivation {
pname = "hledger-lib";
- version = "1.4";
- sha256 = "15hyrpn0ifwx4x22hggjdm1xz0jyk8p5wnrynzxy9ali0wci1qxq";
- revision = "2";
- editedCabalFile = "1ckwjx3k4xfwj1vdrp5hsf1m0bpyax3nr1xyiyn8745w89vqrf0q";
+ version = "1.5";
+ sha256 = "00k0wqib3hadi4rcnldr14q2va57b09whfbwzd14pz824x7pnfd7";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
ansi-terminal array base base-compat blaze-markup bytestring
- cmdargs containers csv data-default Decimal deepseq directory
+ cmdargs containers csv data-default Decimal deepseq directory extra
filepath hashtables HUnit megaparsec mtl mtl-compat old-time parsec
pretty-show regex-tdfa safe semigroups split text time transformers
uglymemo utf8-string
@@ -99273,10 +101721,10 @@ self: {
testHaskellDepends = [
ansi-terminal array base base-compat blaze-markup bytestring
cmdargs containers csv data-default Decimal deepseq directory
- doctest filepath Glob hashtables HUnit megaparsec mtl mtl-compat
- old-time parsec pretty-show regex-tdfa safe semigroups split
- test-framework test-framework-hunit text time transformers uglymemo
- utf8-string
+ doctest extra filepath Glob hashtables HUnit megaparsec mtl
+ mtl-compat old-time parsec pretty-show regex-tdfa safe semigroups
+ split test-framework test-framework-hunit text time transformers
+ uglymemo utf8-string
];
homepage = "http://hledger.org";
description = "Core data types, parsers and functionality for the hledger accounting tools";
@@ -99292,10 +101740,8 @@ self: {
}:
mkDerivation {
pname = "hledger-ui";
- version = "1.4";
- sha256 = "0rm6091nlpijhi6k74dg35g38a7ly22mqfnb0mvjp8pyxb4phq33";
- revision = "8";
- editedCabalFile = "0xk0iqjy5vr674xl565wip8h2hfkxpfymw3jlfgc984a5vjwan44";
+ version = "1.5";
+ sha256 = "104vjyqpddwv8g9mfbaw174nl4lb41zwl14i8225m6v1gxvs5w6x";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -99341,10 +101787,8 @@ self: {
}:
mkDerivation {
pname = "hledger-web";
- version = "1.4";
- sha256 = "1l5mxvhgvn3q1ds9qmqkdmrs82619nvs13gmjsynr0vbbx52zw7h";
- revision = "3";
- editedCabalFile = "1xvycx1s54pz6rmjip9lxsg7p6anksi1pjqfjjs94yw977dcwm46";
+ version = "1.5";
+ sha256 = "10ar6ic9snrbwi60sz1729dshff01s3knmb7d7kwfk9svmilxq6f";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -99461,8 +101905,8 @@ self: {
}:
mkDerivation {
pname = "hlint";
- version = "2.0.11";
- sha256 = "040p4rr7jjr40i6239vwkr2qqva7r9ccksg5n9k9r7ljbh8rf66b";
+ version = "2.0.15";
+ sha256 = "0k9y9dj9sq8rwkjnca4s6wv0ncba536lmcpq10vpyvy47x5dzs2d";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -99478,29 +101922,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hlint_2_0_12" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs
- , containers, cpphs, data-default, directory, extra, filepath
- , haskell-src-exts, haskell-src-exts-util, hscolour, process
- , refact, text, transformers, uniplate, unordered-containers
- , vector, yaml
- }:
+ "hlint-test" = callPackage
+ ({ mkDerivation, base, hlint }:
mkDerivation {
- pname = "hlint";
- version = "2.0.12";
- sha256 = "1cfq4g1h5c47nxqn7433jd40hajv5pq30p5rb132fc5sp68vx0by";
+ pname = "hlint-test";
+ version = "0.1.0.0";
+ sha256 = "1lvbhhcxs9axvpm5m3axni30aafa9d32jrx00072kywm536gnnny";
isLibrary = true;
isExecutable = true;
- enableSeparateDataOutput = true;
- libraryHaskellDepends = [
- aeson ansi-terminal base bytestring cmdargs containers cpphs
- data-default directory extra filepath haskell-src-exts
- haskell-src-exts-util hscolour process refact text transformers
- uniplate unordered-containers vector yaml
- ];
- executableHaskellDepends = [ base ];
- homepage = "https://github.com/ndmitchell/hlint#readme";
- description = "Source code suggestions";
+ libraryHaskellDepends = [ base hlint ];
+ executableHaskellDepends = [ base hlint ];
+ homepage = "https://github.com/Siprj/hlint-test#readme";
+ description = "Run hlint in test suite";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "hlist" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "hlist";
+ version = "0.0.0.0";
+ sha256 = "128y1l4bjyrsvx188mx58x8a98j7jk931h0nv5bprpxjkc71c32k";
+ libraryHaskellDepends = [ base ];
+ description = "Heterogeneous list";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -99620,19 +102064,19 @@ self: {
"hmatrix" = callPackage
({ mkDerivation, array, base, binary, bytestring, deepseq
- , openblasCompat, random, split, storable-complex, vector
+ , openblasCompat, random, semigroups, split, storable-complex
+ , vector
}:
mkDerivation {
pname = "hmatrix";
- version = "0.18.1.0";
- sha256 = "07zkwvg872hfk6jyn4s54ws8mvclynazaxf7fsbqi16dmf9dn61c";
- configureFlags = [ "-fopenblas" ];
+ version = "0.18.2.0";
+ sha256 = "0q452gpmyxb0qp7pnwyrvvw3nc650qm68z3g0cd88s1x2j0xq34n";
+ configureFlags = [ "-fdisable-default-paths" "-fopenblas" ];
libraryHaskellDepends = [
- array base binary bytestring deepseq random split storable-complex
- vector
+ array base binary bytestring deepseq random semigroups split
+ storable-complex vector
];
librarySystemDepends = [ openblasCompat ];
- preConfigure = "sed -i hmatrix.cabal -e '/\\/usr\\//D'";
homepage = "https://github.com/albertoruiz/hmatrix";
description = "Numeric Linear Algebra";
license = stdenv.lib.licenses.bsd3;
@@ -99764,8 +102208,8 @@ self: {
({ mkDerivation, base, doctest, hmatrix, nlopt-haskell, vector }:
mkDerivation {
pname = "hmatrix-nlopt";
- version = "0.1.0.0";
- sha256 = "12h2svm2x3bc9ivii90f8cr4npwpagchazlmgj36x381aqradsf2";
+ version = "0.1.1.0";
+ sha256 = "1fgicpzi811ifdyrc8gzd8dgb0f14lw92rdidmbps3yisczysz29";
libraryHaskellDepends = [ base hmatrix nlopt-haskell vector ];
testHaskellDepends = [ base doctest ];
homepage = "https://github.com/peddie/hmatrix-nlopt";
@@ -100018,17 +102462,17 @@ self: {
}) {};
"hmm-hmatrix" = callPackage
- ({ mkDerivation, array, base, containers, explicit-exception
- , hmatrix, lazy-csv, non-empty, random, semigroups, transformers
- , utility-ht
+ ({ mkDerivation, array, base, containers, deepseq
+ , explicit-exception, hmatrix, lazy-csv, non-empty, random
+ , semigroups, transformers, utility-ht
}:
mkDerivation {
pname = "hmm-hmatrix";
- version = "0.0.1";
- sha256 = "1kkikv3spnvqms59980p8aappw3wh26y9qs2c8ykia5fpz9zag4h";
+ version = "0.1";
+ sha256 = "1ww2hxy9s9d2mywf5v5ka5fac9105ir3frm9vafgw2ydq64rdivx";
libraryHaskellDepends = [
- array base containers explicit-exception hmatrix lazy-csv non-empty
- random semigroups transformers utility-ht
+ array base containers deepseq explicit-exception hmatrix lazy-csv
+ non-empty random semigroups transformers utility-ht
];
homepage = "http://hub.darcs.net/thielema/hmm-hmatrix";
description = "Hidden Markov Models using HMatrix primitives";
@@ -100062,8 +102506,8 @@ self: {
({ mkDerivation, base, integer-gmp, mpfr }:
mkDerivation {
pname = "hmpfr";
- version = "0.4.3";
- sha256 = "09q4gmj2gr3krh7vpkc8xwiy874d7mr6v57hv2i3n481yhky0yir";
+ version = "0.4.4";
+ sha256 = "1x8n5245rm0brjl7vhcabazh1k69dcjdas70pnrnlkx26bqfpb9b";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base integer-gmp ];
librarySystemDepends = [ mpfr ];
@@ -100193,6 +102637,36 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hnix_0_4_0" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, containers, criterion
+ , data-fix, deepseq, deriving-compat, parsers, regex-tdfa
+ , regex-tdfa-text, semigroups, tasty, tasty-hunit, tasty-th, text
+ , transformers, trifecta, unordered-containers
+ }:
+ mkDerivation {
+ pname = "hnix";
+ version = "0.4.0";
+ sha256 = "0rgx97ckv5zvly6x76h7nncswfw0ik4bhnlj8n5bpl4rqzd7d4fd";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-wl-pprint base containers data-fix deepseq deriving-compat
+ parsers regex-tdfa regex-tdfa-text semigroups text transformers
+ trifecta unordered-containers
+ ];
+ executableHaskellDepends = [
+ ansi-wl-pprint base containers data-fix deepseq
+ ];
+ testHaskellDepends = [
+ base containers data-fix tasty tasty-hunit tasty-th text
+ ];
+ benchmarkHaskellDepends = [ base containers criterion text ];
+ homepage = "http://github.com/jwiegley/hnix";
+ description = "Haskell implementation of the Nix language";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hnn" = callPackage
({ mkDerivation, base, binary, bytestring, hmatrix, mwc-random
, random, vector, vector-binary-instances, zlib
@@ -100220,6 +102694,7 @@ self: {
isExecutable = true;
executableHaskellDepends = [ base ];
license = stdenv.lib.licenses.unfree;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hnormalise" = callPackage
@@ -100326,6 +102801,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hoauth2_1_6_2" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, exceptions
+ , http-conduit, http-types, microlens, text, unordered-containers
+ , uri-bytestring, uri-bytestring-aeson, wai, warp
+ }:
+ mkDerivation {
+ pname = "hoauth2";
+ version = "1.6.2";
+ sha256 = "185yia9mdjhmhian83rrd0hm3wjpja7hawnyvzq25rnhh2g4l2ay";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring exceptions http-conduit http-types microlens
+ text unordered-containers uri-bytestring uri-bytestring-aeson
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring containers http-conduit http-types text
+ uri-bytestring wai warp
+ ];
+ homepage = "https://github.com/freizl/hoauth2";
+ description = "Haskell OAuth2 authentication client";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hob" = callPackage
({ mkDerivation, base, bytestring, containers, directory, filepath
, glib, gtk-largeTreeStore, gtk3, gtksourceview3, hspec, mtl, pango
@@ -100416,17 +102916,17 @@ self: {
, bytestring, concurrentoutput, containers, cryptonite, data-fix
, deepseq, directory, exceptions, filepath, foldl, hnix
, http-client, http-types, lens, lens-aeson, lifted-base, memory
- , mtl, neat-interpolation, network, network-uri, optional-args
- , optparse-applicative, optparse-generic, pooled-io, pureMD5
- , scientific, tar, tasty, tasty-golden, tasty-hunit
+ , mtl, neat-interpolation, network, network-uri, nix-paths
+ , optional-args, optparse-applicative, optparse-generic, pooled-io
+ , pureMD5, scientific, tar, tasty, tasty-golden, tasty-hunit
, tasty-quickcheck, tasty-smallcheck, temporary, text, time
, transformers, turtle, unordered-containers, uri-bytestring
, vector, wreq, zlib
}:
mkDerivation {
pname = "hocker";
- version = "1.0.2";
- sha256 = "1bdzbggvin83m778qq6367mpv2cwgwpbahhlzf290iwikmhmhgr2";
+ version = "1.0.4";
+ sha256 = "1lf8m6cd54vc436krl3j4kanmnd86r4ri45a1qp7y4qqlpplcnpf";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -100434,9 +102934,9 @@ self: {
concurrentoutput containers cryptonite data-fix deepseq directory
exceptions filepath foldl hnix http-client http-types lens
lens-aeson lifted-base memory mtl neat-interpolation network
- network-uri optparse-applicative optparse-generic pooled-io pureMD5
- scientific tar temporary text time transformers turtle
- unordered-containers uri-bytestring vector wreq zlib
+ network-uri nix-paths optparse-applicative optparse-generic
+ pooled-io pureMD5 scientific tar temporary text time transformers
+ turtle unordered-containers uri-bytestring vector wreq zlib
];
executableHaskellDepends = [
base bytestring cryptonite data-fix filepath hnix lens mtl network
@@ -100865,11 +103365,10 @@ self: {
({ mkDerivation, array, base, FPretty, ghc-prim }:
mkDerivation {
pname = "hood";
- version = "0.3";
- sha256 = "08k15fvrqjnh3fab90ck3b3mb5wr15js6bw76m9k86nh0pxjv5pi";
- revision = "1";
- editedCabalFile = "0r2awfxb2xfvfr725g7a6a0s5d850fqglxv4z6j1syvlgyfdzfgr";
+ version = "0.3.1";
+ sha256 = "0bi1knfp6h6x7rrw5gggiip0h7ynhw2ds7k2q2fynrhsg9jdp5qv";
libraryHaskellDepends = [ array base FPretty ghc-prim ];
+ testHaskellDepends = [ base ghc-prim ];
homepage = "http://ku-fpg.github.io/software/hood";
description = "Debugging by observing in place";
license = stdenv.lib.licenses.bsd3;
@@ -101099,6 +103598,41 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hoogle_5_0_14" = callPackage
+ ({ mkDerivation, aeson, base, binary, bytestring, cmdargs, conduit
+ , conduit-extra, connection, containers, deepseq, directory, extra
+ , filepath, haskell-src-exts, http-conduit, http-types, js-flot
+ , js-jquery, mmap, network, network-uri, old-locale, process
+ , process-extras, QuickCheck, resourcet, storable-tuple, tar
+ , template-haskell, text, time, transformers, uniplate, utf8-string
+ , vector, wai, wai-logger, warp, warp-tls, zlib
+ }:
+ mkDerivation {
+ pname = "hoogle";
+ version = "5.0.14";
+ sha256 = "1y5vjwp60s35h13bnhjh4ga731m3vz004dbg8w5s7mwnfk5akkz7";
+ revision = "3";
+ editedCabalFile = "14973295rif9gsyaxfrw7y5p59sxnz4znki3jm3bk73y0b3j1l5d";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson base binary bytestring cmdargs conduit conduit-extra
+ connection containers deepseq directory extra filepath
+ haskell-src-exts http-conduit http-types js-flot js-jquery mmap
+ network network-uri old-locale process process-extras QuickCheck
+ resourcet storable-tuple tar template-haskell text time
+ transformers uniplate utf8-string vector wai wai-logger warp
+ warp-tls zlib
+ ];
+ executableHaskellDepends = [ base ];
+ testTarget = "--test-option=--no-net";
+ homepage = "http://hoogle.haskell.org/";
+ description = "Haskell API Search";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hoogle" = callPackage
({ mkDerivation, aeson, base, binary, bytestring, cmdargs, conduit
, conduit-extra, connection, containers, deepseq, directory, extra
@@ -101110,8 +103644,8 @@ self: {
}:
mkDerivation {
pname = "hoogle";
- version = "5.0.15";
- sha256 = "0bfb3y4rasl8dzcivvhhpq6ijspn37i53rhzxc9gx4yvdnai57sb";
+ version = "5.0.17.1";
+ sha256 = "0678kdssjmb8k08jmazg1w9lglz27ni2p3b5031likk2dp9gvf2h";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -101170,8 +103704,8 @@ self: {
}:
mkDerivation {
pname = "hookup";
- version = "0.1.1.0";
- sha256 = "11gbk92wqcakmqqrvggjypxxpgdccacqbrrzicwy8113hd6kiw75";
+ version = "0.2";
+ sha256 = "17sj62b78a22alq9hpsrjcri5yxz7yzxdar521yd6x7jv3xxpix2";
libraryHaskellDepends = [
base bytestring HsOpenSSL HsOpenSSL-x509-system network socks
];
@@ -101298,6 +103832,38 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hopenpgp-tools_0_20" = callPackage
+ ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec
+ , base, base16-bytestring, binary, binary-conduit, bytestring
+ , conduit, conduit-extra, containers, crypto-pubkey, cryptohash
+ , directory, errors, fgl, graphviz, happy, hOpenPGP, http-client
+ , http-client-tls, http-types, ixset-typed, lens, monad-loops
+ , openpgp-asciiarmor, optparse-applicative, resourcet, text, time
+ , time-locale-compat, transformers, unordered-containers
+ , wl-pprint-extras, wl-pprint-terminfo, yaml
+ }:
+ mkDerivation {
+ pname = "hopenpgp-tools";
+ version = "0.20";
+ sha256 = "1qhx58l6qxs7b5zp76dsy3y0whqnkp919c98lz9n1clla0hfhdgb";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ aeson ansi-wl-pprint array attoparsec base base16-bytestring binary
+ binary-conduit bytestring conduit conduit-extra containers
+ crypto-pubkey cryptohash directory errors fgl graphviz hOpenPGP
+ http-client http-client-tls http-types ixset-typed lens monad-loops
+ openpgp-asciiarmor optparse-applicative resourcet text time
+ time-locale-compat transformers unordered-containers
+ wl-pprint-extras wl-pprint-terminfo yaml
+ ];
+ executableToolDepends = [ alex happy ];
+ homepage = "https://salsa.debian.org/clint/hOpenPGP";
+ description = "hOpenPGP-based command-line tools";
+ license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hopenssl" = callPackage
({ mkDerivation, base, bytestring, Cabal, cabal-doctest, doctest
, HUnit, openssl
@@ -101378,6 +103944,8 @@ self: {
pname = "hopfli";
version = "0.2.2.1";
sha256 = "061as7aa806xzcpch35isrkqbgqhwdy48fs049f491wwb47xqwad";
+ revision = "1";
+ editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka";
libraryHaskellDepends = [ base bytestring zlib ];
testHaskellDepends = [ base bytestring hspec QuickCheck zlib ];
homepage = "https://github.com/ananthakumaran/hopfli";
@@ -101390,8 +103958,8 @@ self: {
}:
mkDerivation {
pname = "hoppy-docs";
- version = "0.3.2";
- sha256 = "04ah438igxykyspzlhpa5y50z1accrb9sxhv2sn8riqfhdz2sych";
+ version = "0.4.0";
+ sha256 = "186pb32mqwvb5n1a9v2p0cs3g01lrdw5j3p3ddjqdkss7mq6sacz";
libraryHaskellDepends = [
base haskell-src hoppy-generator hoppy-runtime
];
@@ -101407,8 +103975,8 @@ self: {
}:
mkDerivation {
pname = "hoppy-generator";
- version = "0.3.3";
- sha256 = "18n48kkf6pcmcwb85a74kqh84aadpm1s9jv1r56b43rya8ra3mgw";
+ version = "0.4.0";
+ sha256 = "0dk5xhxiw697pb1df544yixsfhiivpp8irllvvjbij7hfbivi409";
libraryHaskellDepends = [
base containers directory filepath haskell-src mtl
];
@@ -101422,8 +103990,8 @@ self: {
({ mkDerivation, base, Cabal, containers, directory, filepath }:
mkDerivation {
pname = "hoppy-runtime";
- version = "0.3.1";
- sha256 = "0cbnhpwy3m0l7gcarg7xr1f5y6nwdnfa269vvza0fm4fhf3lz6g5";
+ version = "0.4.0";
+ sha256 = "0vi1i2wa64gdxsc3705vpmimkajf3dz6dakxils1alyxp5ih8f4z";
libraryHaskellDepends = [
base Cabal containers directory filepath
];
@@ -101437,8 +104005,8 @@ self: {
({ mkDerivation, base, filepath, haskell-src, hoppy-generator }:
mkDerivation {
pname = "hoppy-std";
- version = "0.3.0";
- sha256 = "0rgvqkslhj6d9craiwb5g75217jh7s34980rpcbjbjba8pscpxjb";
+ version = "0.4.0";
+ sha256 = "0kb9myfnradifyihigjw08navl5fwcfqznqrp9xjmkwkp8k2h0p5";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base filepath haskell-src hoppy-generator
@@ -101613,6 +104181,7 @@ self: {
homepage = "http://rd.slavepianos.org/?t=hosc-utils";
description = "Haskell Open Sound Control Utilities";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {www-minus = null;};
@@ -101867,39 +104436,6 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "hpack_0_20_0" = callPackage
- ({ mkDerivation, aeson, base, base-compat, bytestring, Cabal
- , containers, cryptonite, deepseq, directory, filepath, Glob, hspec
- , HUnit, interpolate, mockery, pretty, QuickCheck, temporary, text
- , unordered-containers, yaml
- }:
- mkDerivation {
- pname = "hpack";
- version = "0.20.0";
- sha256 = "0n8dhxk0h45lhc436xmdbmf0pva26dyg6p9vcksfl3dfp0nvf2mi";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson base base-compat bytestring Cabal containers cryptonite
- deepseq directory filepath Glob pretty text unordered-containers
- yaml
- ];
- executableHaskellDepends = [
- aeson base base-compat bytestring Cabal containers cryptonite
- deepseq directory filepath Glob pretty text unordered-containers
- yaml
- ];
- testHaskellDepends = [
- aeson base base-compat bytestring Cabal containers cryptonite
- deepseq directory filepath Glob hspec HUnit interpolate mockery
- pretty QuickCheck temporary text unordered-containers yaml
- ];
- homepage = "https://github.com/sol/hpack#readme";
- description = "An alternative format for Haskell packages";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"hpack" = callPackage
({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal
, containers, cryptonite, deepseq, directory, filepath, Glob, hspec
@@ -101933,6 +104469,43 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hpack_0_23_0" = callPackage
+ ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal
+ , containers, cryptonite, deepseq, directory, filepath, Glob, hspec
+ , http-client, http-client-tls, http-types, interpolate, mockery
+ , pretty, QuickCheck, scientific, temporary, text, transformers
+ , unordered-containers, yaml
+ }:
+ mkDerivation {
+ pname = "hpack";
+ version = "0.23.0";
+ sha256 = "1604lr20745kkzbhl2ski74p6swjgvarsbaxcpj5wldhk65add6y";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bifunctors bytestring Cabal containers cryptonite
+ deepseq directory filepath Glob http-client http-client-tls
+ http-types pretty scientific text transformers unordered-containers
+ yaml
+ ];
+ executableHaskellDepends = [
+ aeson base bifunctors bytestring Cabal containers cryptonite
+ deepseq directory filepath Glob http-client http-client-tls
+ http-types pretty scientific text transformers unordered-containers
+ yaml
+ ];
+ testHaskellDepends = [
+ aeson base bifunctors bytestring Cabal containers cryptonite
+ deepseq directory filepath Glob hspec http-client http-client-tls
+ http-types interpolate mockery pretty QuickCheck scientific
+ temporary text transformers unordered-containers yaml
+ ];
+ homepage = "https://github.com/sol/hpack#readme";
+ description = "An alternative format for Haskell packages";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hpack-convert" = callPackage
({ mkDerivation, aeson, aeson-qq, base, base-compat, bytestring
, Cabal, containers, deepseq, directory, filepath, Glob, hspec
@@ -102206,8 +104779,8 @@ self: {
({ mkDerivation, base, random }:
mkDerivation {
pname = "hpg";
- version = "0.7";
- sha256 = "0p2a8h9z5kbqpb99rclgkll1yv2in2fni5xvhrrzyphyhpqi1f6a";
+ version = "0.8";
+ sha256 = "1in245bwnymzxp1bzvzkmfwxs2pxnhw94c9j8z9v3vxvz7g0fygs";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base random ];
@@ -102225,8 +104798,8 @@ self: {
}:
mkDerivation {
pname = "hpio";
- version = "0.9.0.2";
- sha256 = "0jxmmch6y897rk02rql4rs82qmdj3r3xpbsrv75sgc2mb09cx2zy";
+ version = "0.9.0.3";
+ sha256 = "0cz7dxxxxfr142gr3hrq1k1x8axdgvyw7bsjsd1v9spka2i03rcd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -102245,6 +104818,38 @@ self: {
homepage = "https://github.com/quixoftic/hpio#readme";
description = "Monads for GPIO in Haskell";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hpio_0_9_0_4" = callPackage
+ ({ mkDerivation, async, base, bytestring, containers, directory
+ , doctest, exceptions, filepath, hspec, monad-control, monad-logger
+ , mtl, optparse-applicative, protolude, QuickCheck, text
+ , transformers, transformers-base, unix, unix-bytestring
+ }:
+ mkDerivation {
+ pname = "hpio";
+ version = "0.9.0.4";
+ sha256 = "18j60xiwh18s01bbapi95h8g6ixr9brqh375qlhg600cgf0yzirx";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers directory exceptions filepath
+ monad-control monad-logger mtl protolude QuickCheck text
+ transformers transformers-base unix unix-bytestring
+ ];
+ executableHaskellDepends = [
+ async base exceptions mtl optparse-applicative protolude text
+ transformers
+ ];
+ testHaskellDepends = [
+ base containers directory doctest exceptions filepath hspec
+ protolude QuickCheck
+ ];
+ homepage = "https://github.com/quixoftic/hpio#readme";
+ description = "Monads for GPIO in Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hplayground" = callPackage
@@ -102361,8 +104966,8 @@ self: {
}:
mkDerivation {
pname = "hpqtypes-extras";
- version = "1.5.0.0";
- sha256 = "1hp9nn49a8kg58y8cywsiwcy64zq65c1hnsn2xi5ajk71hag8b8c";
+ version = "1.5.0.1";
+ sha256 = "022732jsji79a1bb805gh6pcif9ismivs2dwgwks0fb5i9hviilm";
libraryHaskellDepends = [
base base16-bytestring bytestring containers cryptohash exceptions
fields-json hpqtypes lifted-base log-base monad-control mtl safe
@@ -102686,8 +105291,8 @@ self: {
}:
mkDerivation {
pname = "hruby";
- version = "0.3.5";
- sha256 = "0ngl6irnbkrjs7mq8gz3v6gh98l724595vyibw5chzikjl183fj8";
+ version = "0.3.5.1";
+ sha256 = "0gzg7yhkrzgqaip5fd1lbd15j1274w28kqv0k6ls6sfk52gq56wn";
libraryHaskellDepends = [
aeson attoparsec base bytestring scientific stm text
unordered-containers vector
@@ -102767,6 +105372,7 @@ self: {
homepage = "https://github.com/iand675/brotli#readme";
description = "Compression and decompression in the brotli format";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {brotli = null; brotlidec = null; brotlienc = null;
libbrotlidec = null; libbrotlienc = null;};
@@ -104211,49 +106817,49 @@ self: {
({ mkDerivation, base, hscurses, random, safe, unix }:
mkDerivation {
pname = "hscurses-fish-ex";
- version = "1.3.1";
- sha256 = "1s7b2v3cl0nl2b55agn5wkvxn30f2bgp6mznkn33148vlbya1mzs";
+ version = "1.3.2";
+ sha256 = "08qmnf8qrk3zlq3flkma8sll84czdaydv6nmyb79jaz5fknv12rn";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base hscurses random safe unix ];
- homepage = "http://ui3.info/darcs/hscurses-fish-ex/";
+ homepage = "http://hub.darcs.net/dino/hscurses-fish-ex";
description = "hscurses swimming fish example";
- license = stdenv.lib.licenses.bsd3;
+ license = stdenv.lib.licenses.isc;
}) {};
"hsdev" = callPackage
({ mkDerivation, aeson, aeson-lens, aeson-pretty, array, async
, attoparsec, base, bytestring, Cabal, containers, cpphs
- , data-default, deepseq, directory, exceptions, filepath, fsnotify
- , ghc, ghc-boot, ghc-paths, ghc-syb-utils, haddock-api
- , haskell-src-exts, hdocs, hformat, hlint, hspec, HTTP, lens
- , lifted-base, mmorph, monad-control, monad-loops, mtl, network
- , optparse-applicative, process, regex-pcre-builtin, scientific
- , simple-log, syb, template-haskell, text, text-region, time
- , transformers, transformers-base, uniplate, unix
- , unordered-containers, vector
+ , data-default, deepseq, direct-sqlite, directory, exceptions
+ , filepath, fsnotify, ghc, ghc-boot, ghc-paths, ghc-syb-utils
+ , haddock-api, haskell-names, haskell-src-exts, hdocs, hformat
+ , hlint, hspec, HTTP, lens, lifted-base, mmorph, monad-control
+ , monad-loops, mtl, network, optparse-applicative, process
+ , regex-pcre-builtin, scientific, simple-log, sqlite-simple, stm
+ , syb, template-haskell, text, text-region, time, transformers
+ , transformers-base, uniplate, unix, unordered-containers, vector
}:
mkDerivation {
pname = "hsdev";
- version = "0.2.5.1";
- sha256 = "15rr12mric0gm4xfskwsqh89kdiqxzvg47nkddbyr7hah1rjmcn4";
+ version = "0.3.1.0";
+ sha256 = "04k2yq4a5q87yj8z9h2qzmw32p0c8snc5ccaqyyk24kxa9p26av8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson aeson-pretty array async attoparsec base bytestring Cabal
- containers cpphs data-default deepseq directory exceptions filepath
- fsnotify ghc ghc-boot ghc-paths ghc-syb-utils haddock-api
- haskell-src-exts hdocs hformat hlint HTTP lens lifted-base mmorph
- monad-control monad-loops mtl network optparse-applicative process
- regex-pcre-builtin scientific simple-log syb template-haskell text
- text-region time transformers transformers-base uniplate unix
+ containers cpphs data-default deepseq direct-sqlite directory
+ exceptions filepath fsnotify ghc ghc-boot ghc-paths ghc-syb-utils
+ haddock-api haskell-names haskell-src-exts hdocs hformat hlint HTTP
+ lens lifted-base mmorph monad-control monad-loops mtl network
+ optparse-applicative process regex-pcre-builtin scientific
+ simple-log sqlite-simple stm syb template-haskell text text-region
+ time transformers transformers-base uniplate unix
unordered-containers vector
];
executableHaskellDepends = [
- aeson aeson-pretty base bytestring containers data-default deepseq
- directory exceptions filepath haskell-src-exts lens monad-loops mtl
- network optparse-applicative process text transformers
- unordered-containers vector
+ aeson aeson-pretty base bytestring containers deepseq directory
+ exceptions filepath monad-loops mtl network optparse-applicative
+ process text transformers unordered-containers
];
testHaskellDepends = [
aeson aeson-lens async base containers data-default deepseq
@@ -104312,6 +106918,23 @@ self: {
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {inherit (pkgs) adns;};
+ "hsdns_1_7_1" = callPackage
+ ({ mkDerivation, adns, base, containers, network }:
+ mkDerivation {
+ pname = "hsdns";
+ version = "1.7.1";
+ sha256 = "0i50p31zxsrkx9hv3mqcl2042lf922b1fsswmd99d66ybkl01kag";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base containers network ];
+ librarySystemDepends = [ adns ];
+ homepage = "http://github.com/peti/hsdns";
+ description = "Asynchronous DNS Resolver";
+ license = stdenv.lib.licenses.lgpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ maintainers = with stdenv.lib.maintainers; [ peti ];
+ }) {inherit (pkgs) adns;};
+
"hsdns-cache" = callPackage
({ mkDerivation, base, hsdns, network, SafeSemaphore, text, time
, unordered-containers
@@ -104462,6 +107085,7 @@ self: {
homepage = "http://lpuppet.banquise.net";
description = "A small and ugly library that emulates the output of the puppet facter program";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hsfcsh" = callPackage
@@ -104611,8 +107235,8 @@ self: {
}:
mkDerivation {
pname = "hsimport";
- version = "0.8.4";
- sha256 = "1xngy3qnk6nr0yvvkq7cqay0kkhnp0v4ah27w8r5v3q4malraa1l";
+ version = "0.8.5";
+ sha256 = "05gdzl4h67rjpw2nhk6dvd9l8lmx1kdg4cy9hmk5l36vrk8s9ic6";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -104815,8 +107439,8 @@ self: {
}:
mkDerivation {
pname = "hslua";
- version = "0.9.3";
- sha256 = "1ml64f8faz17qfp0wm9fqgribcf8fvyhazjk9a1385fsjy96ks8m";
+ version = "0.9.5";
+ sha256 = "1j2zk7f7nyywg2b0n6kb2yf6ljc7cn2sk9jz0h76g3ag2b70l12n";
configureFlags = [ "-fsystem-lua" ];
libraryHaskellDepends = [
base bytestring containers exceptions fail mtl text
@@ -105215,6 +107839,30 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hspec_2_4_7" = callPackage
+ ({ mkDerivation, base, call-stack, directory, hspec-core
+ , hspec-discover, hspec-expectations, hspec-meta, HUnit, QuickCheck
+ , stringbuilder, transformers
+ }:
+ mkDerivation {
+ pname = "hspec";
+ version = "2.4.7";
+ sha256 = "1jvf7x43gkch4b8nxqdascqlh4rh2d1qvl44skwqkz0gw154ldan";
+ libraryHaskellDepends = [
+ base call-stack hspec-core hspec-discover hspec-expectations HUnit
+ QuickCheck transformers
+ ];
+ testHaskellDepends = [
+ base call-stack directory hspec-core hspec-discover
+ hspec-expectations hspec-meta HUnit QuickCheck stringbuilder
+ transformers
+ ];
+ homepage = "http://hspec.github.io/";
+ description = "A Testing Framework for Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hspec-attoparsec" = callPackage
({ mkDerivation, attoparsec, base, bytestring, hspec
, hspec-expectations, text
@@ -105271,6 +107919,8 @@ self: {
pname = "hspec-core";
version = "2.4.4";
sha256 = "1pxzr3l8b9640mh904n51nwlr2338wak23781s48a9kzvwf347b0";
+ revision = "1";
+ editedCabalFile = "0m4bmclgs7as957wdnq1y4zh49hrwpslgz5m9430myl4dc14r81l";
libraryHaskellDepends = [
ansi-terminal array async base call-stack deepseq directory
filepath hspec-expectations HUnit QuickCheck quickcheck-io random
@@ -105288,6 +107938,53 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hspec-core_2_4_7" = callPackage
+ ({ mkDerivation, ansi-terminal, array, async, base, call-stack
+ , deepseq, directory, filepath, hspec-expectations, hspec-meta
+ , HUnit, process, QuickCheck, quickcheck-io, random, setenv
+ , silently, temporary, tf-random, time, transformers
+ }:
+ mkDerivation {
+ pname = "hspec-core";
+ version = "2.4.7";
+ sha256 = "0syjbx3s62shwddp75qj0nfwmfjn0yflja4bh23x161xpx1g0igx";
+ libraryHaskellDepends = [
+ ansi-terminal array async base call-stack deepseq directory
+ filepath hspec-expectations HUnit QuickCheck quickcheck-io random
+ setenv tf-random time transformers
+ ];
+ testHaskellDepends = [
+ ansi-terminal array async base call-stack deepseq directory
+ filepath hspec-expectations hspec-meta HUnit process QuickCheck
+ quickcheck-io random setenv silently temporary tf-random time
+ transformers
+ ];
+ testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'";
+ homepage = "http://hspec.github.io/";
+ description = "A Testing Framework for Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "hspec-dirstream" = callPackage
+ ({ mkDerivation, base, dirstream, filepath, hspec, hspec-core
+ , pipes, pipes-safe, system-filepath, text
+ }:
+ mkDerivation {
+ pname = "hspec-dirstream";
+ version = "0.3.0.0";
+ sha256 = "1gg17qx95v0widjng6sf0mf589vckixnwjl8n0kh08wpvbriqz60";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base dirstream filepath hspec hspec-core pipes pipes-safe
+ system-filepath text
+ ];
+ testHaskellDepends = [ base hspec ];
+ homepage = "https://hub.darcs.net/vmchale/hspec-dirstream";
+ description = "Helper functions to simplify adding integration tests";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hspec-discover" = callPackage
({ mkDerivation, base, directory, filepath, hspec-meta }:
mkDerivation {
@@ -105304,6 +108001,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hspec-discover_2_4_7" = callPackage
+ ({ mkDerivation, base, directory, filepath, hspec-meta, QuickCheck
+ }:
+ mkDerivation {
+ pname = "hspec-discover";
+ version = "2.4.7";
+ sha256 = "1cgj6c6f5vpn36jg2j7v80nr87x1dsf7qyvxvjw8qimjdxrcx0ba";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base directory filepath ];
+ executableHaskellDepends = [ base directory filepath ];
+ testHaskellDepends = [
+ base directory filepath hspec-meta QuickCheck
+ ];
+ homepage = "http://hspec.github.io/";
+ description = "Automatically discover and run Hspec tests";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hspec-expectations" = callPackage
({ mkDerivation, base, call-stack, HUnit, nanospec }:
mkDerivation {
@@ -105431,6 +108148,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hspec-golden-aeson_0_5_1_0" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory
+ , filepath, hspec, hspec-core, QuickCheck, quickcheck-arbitrary-adt
+ , random, silently, transformers
+ }:
+ mkDerivation {
+ pname = "hspec-golden-aeson";
+ version = "0.5.1.0";
+ sha256 = "0d3ww44c0al841j6z5w6br1qa91v5nr0lfbzaa4cdydynvi4s6lq";
+ libraryHaskellDepends = [
+ aeson aeson-pretty base bytestring directory filepath hspec
+ QuickCheck quickcheck-arbitrary-adt random transformers
+ ];
+ testHaskellDepends = [
+ aeson base directory hspec hspec-core QuickCheck
+ quickcheck-arbitrary-adt silently transformers
+ ];
+ homepage = "https://github.com/plow-technologies/hspec-golden-aeson#readme";
+ description = "Use tests to monitor changes in Aeson serialization";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hspec-hashable" = callPackage
({ mkDerivation, base, hashable, hspec, hspec-core, QuickCheck
, silently
@@ -105511,8 +108251,8 @@ self: {
}:
mkDerivation {
pname = "hspec-meta";
- version = "2.4.4";
- sha256 = "117n4j56wfh48xj02mv0wkp10bkr2xkyvwg7n7r2ynp03wrf9ykm";
+ version = "2.4.6";
+ sha256 = "0qmvk01n79j6skn79r6zalg2pd0x0nqqn9qn8mhg0pgyzcdnfc9b";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -105661,6 +108401,8 @@ self: {
pname = "hspec-smallcheck";
version = "0.4.2";
sha256 = "1lsy71ri0lfvs6w1drwa4p69bcy0nrpb62dah3bg4vqwxfrd82ds";
+ revision = "1";
+ editedCabalFile = "19fp4xandn3jn1hzs1bkjbncyv74908wzcqkvk7xf0dfmm0wpmqw";
libraryHaskellDepends = [ base hspec-core smallcheck ];
testHaskellDepends = [
base hspec hspec-core QuickCheck smallcheck
@@ -105670,6 +108412,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hspec-smallcheck_0_5_0" = callPackage
+ ({ mkDerivation, base, call-stack, hspec, hspec-core, HUnit
+ , QuickCheck, smallcheck
+ }:
+ mkDerivation {
+ pname = "hspec-smallcheck";
+ version = "0.5.0";
+ sha256 = "0lff095qm855y7dd055c4h5ip8lcx1i6pady2b81fby4wgf78g1m";
+ libraryHaskellDepends = [
+ base call-stack hspec-core HUnit smallcheck
+ ];
+ testHaskellDepends = [
+ base call-stack hspec hspec-core HUnit QuickCheck smallcheck
+ ];
+ homepage = "http://hspec.github.io/";
+ description = "SmallCheck support for the Hspec testing framework";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hspec-snap" = callPackage
({ mkDerivation, aeson, base, bytestring, containers
, digestive-functors, directory, HandsomeSoup, hspec, hspec-core
@@ -106622,6 +109384,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hsx2hs_0_14_1_2" = callPackage
+ ({ mkDerivation, base, bytestring, haskell-src-exts
+ , haskell-src-meta, mtl, template-haskell, utf8-string
+ }:
+ mkDerivation {
+ pname = "hsx2hs";
+ version = "0.14.1.2";
+ sha256 = "06j2nc2yg8a8pp3c2ayxrm76fj2w2w5d2ilq91hvwwb1ikrklg5b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring haskell-src-exts haskell-src-meta mtl
+ template-haskell utf8-string
+ ];
+ homepage = "https://github.com/seereason/hsx2hs";
+ description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hsyscall" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -106912,6 +109694,8 @@ self: {
pname = "html-entity-map";
version = "0.1.0.0";
sha256 = "0k1l1pbmrfmh44v9cc9ka01bx9xm1x4jabbl675fc5c57v1h0dlq";
+ revision = "1";
+ editedCabalFile = "1y2w3jmdxwa8lfj1gr4ln98v1474bw1cjsdfpmbaphcjj9bjg0sg";
libraryHaskellDepends = [ base text unordered-containers ];
benchmarkHaskellDepends = [
base criterion text unordered-containers
@@ -107115,8 +109899,8 @@ self: {
}:
mkDerivation {
pname = "htoml-megaparsec";
- version = "1.0.1.11";
- sha256 = "09810a4s0gfza0sh4ldh355sbp3810qy8gkcpvq2048h6ajh2kz5";
+ version = "1.1.0.1";
+ sha256 = "10bgm0dqi2hni9sxjri2i7imfwqfi750pwwrpbghdvyfxrivfcpy";
libraryHaskellDepends = [
base composition-prelude containers deepseq megaparsec mtl
old-locale text time unordered-containers vector
@@ -107125,11 +109909,8 @@ self: {
aeson base bytestring containers file-embed hspec megaparsec tasty
tasty-hspec tasty-hunit text time unordered-containers vector
];
- benchmarkHaskellDepends = [
- aeson base containers criterion text time unordered-containers
- vector
- ];
- homepage = "https://github.com/vmchale/htoml-megaparsec";
+ benchmarkHaskellDepends = [ base criterion text ];
+ homepage = "https://hub.darcs.net/vmchale/htoml-megaparsec";
description = "Parser for TOML files";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -107248,6 +110029,8 @@ self: {
pname = "http-api-data";
version = "0.3.7.1";
sha256 = "1zbmf0kkfsw7pfznisi205gh7jd284gfarxsyiavd2iw26akwqwc";
+ revision = "1";
+ editedCabalFile = "0g57k71bssf81yba6xf9fcxlys8m5ax5kvrs4gvckahf5ihdxds6";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
attoparsec attoparsec-iso8601 base bytestring containers hashable
@@ -107263,6 +110046,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "http-api-data_0_3_7_2" = callPackage
+ ({ mkDerivation, attoparsec, attoparsec-iso8601, base, bytestring
+ , Cabal, cabal-doctest, containers, directory, doctest, filepath
+ , hashable, hspec, hspec-discover, http-types, HUnit, QuickCheck
+ , quickcheck-instances, text, time, time-locale-compat
+ , unordered-containers, uri-bytestring, uuid, uuid-types
+ }:
+ mkDerivation {
+ pname = "http-api-data";
+ version = "0.3.7.2";
+ sha256 = "10kcpxl9m1q2dl4z2ig6ysrhrdmdg35skfh8kwx0h7f0n7d6wlb8";
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
+ libraryHaskellDepends = [
+ attoparsec attoparsec-iso8601 base bytestring containers hashable
+ http-types text time time-locale-compat unordered-containers
+ uri-bytestring uuid-types
+ ];
+ testHaskellDepends = [
+ base bytestring directory doctest filepath hspec HUnit QuickCheck
+ quickcheck-instances text time unordered-containers uuid
+ ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "http://github.com/fizruk/http-api-data";
+ description = "Converting to/from HTTP API data like URL pieces, headers and query parameters";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"http-attoparsec" = callPackage
({ mkDerivation, attoparsec, base, bytestring, http-types }:
mkDerivation {
@@ -107281,16 +110092,16 @@ self: {
, blaze-builder, bytestring, case-insensitive, containers, cookie
, deepseq, directory, exceptions, filepath, ghc-prim, hspec
, http-types, mime-types, monad-control, network, network-uri
- , random, streaming-commons, text, time, transformers, zlib
+ , random, stm, streaming-commons, text, time, transformers, zlib
}:
mkDerivation {
pname = "http-client";
- version = "0.5.7.1";
- sha256 = "19cvnnfcjj2m3pgs6ivyjs21rw9wx5ynarh6hvb27a76cscai2fy";
+ version = "0.5.9";
+ sha256 = "0bccpvinzc7z5v83grjzvd3g3kdz2q5h2206l7x9jh4bvz9prblf";
libraryHaskellDepends = [
array base base64-bytestring blaze-builder bytestring
case-insensitive containers cookie deepseq exceptions filepath
- ghc-prim http-types mime-types network network-uri random
+ ghc-prim http-types mime-types network network-uri random stm
streaming-commons text time transformers
];
testHaskellDepends = [
@@ -107526,6 +110337,36 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "http-conduit_2_3_0" = callPackage
+ ({ mkDerivation, aeson, base, blaze-builder, bytestring
+ , case-insensitive, conduit, conduit-extra, connection, cookie
+ , data-default-class, hspec, http-client, http-client-tls
+ , http-types, HUnit, mtl, network, resourcet, streaming-commons
+ , temporary, text, time, transformers, unliftio, unliftio-core
+ , utf8-string, wai, wai-conduit, warp, warp-tls
+ }:
+ mkDerivation {
+ pname = "http-conduit";
+ version = "2.3.0";
+ sha256 = "0z9158a27g6kg7vbhkiw6icb2wgzb3lhsifgg5yh6wph5cd40fx4";
+ libraryHaskellDepends = [
+ aeson base bytestring conduit conduit-extra http-client
+ http-client-tls http-types mtl resourcet transformers unliftio-core
+ ];
+ testHaskellDepends = [
+ aeson base blaze-builder bytestring case-insensitive conduit
+ conduit-extra connection cookie data-default-class hspec
+ http-client http-types HUnit network resourcet streaming-commons
+ temporary text time transformers unliftio utf8-string wai
+ wai-conduit warp warp-tls
+ ];
+ doCheck = false;
+ homepage = "http://www.yesodweb.com/book/http-conduit";
+ description = "HTTP client package with conduit interface and HTTPS support";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"http-conduit-browser" = callPackage
({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring
, case-insensitive, conduit, containers, cookie, data-default
@@ -107962,6 +110803,34 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "http-reverse-proxy_0_5_0" = callPackage
+ ({ mkDerivation, async, base, blaze-builder, bytestring
+ , case-insensitive, conduit, conduit-extra, containers
+ , data-default-class, hspec, http-client, http-conduit, http-types
+ , lifted-base, monad-control, network, resourcet, streaming-commons
+ , text, transformers, wai, wai-logger, warp, word8
+ }:
+ mkDerivation {
+ pname = "http-reverse-proxy";
+ version = "0.5.0";
+ sha256 = "10j58i0xkbf84ypk5q8pxz2a85kk24s4xqhkprr6j12d4hx1zl6i";
+ libraryHaskellDepends = [
+ async base blaze-builder bytestring case-insensitive conduit
+ conduit-extra containers data-default-class http-client http-types
+ lifted-base monad-control network resourcet streaming-commons text
+ transformers wai wai-logger word8
+ ];
+ testHaskellDepends = [
+ base blaze-builder bytestring conduit conduit-extra hspec
+ http-conduit http-types lifted-base network resourcet
+ streaming-commons transformers wai warp
+ ];
+ homepage = "https://github.com/fpco/http-reverse-proxy";
+ description = "Reverse proxy HTTP requests, either over raw sockets or with WAI";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"http-server" = callPackage
({ mkDerivation, base, HTTP, mime, network, network-uri, text, unix
, url, utf8-string
@@ -108088,14 +110957,14 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "http-types_0_11" = callPackage
+ "http-types_0_12" = callPackage
({ mkDerivation, array, base, bytestring, case-insensitive, doctest
, hspec, QuickCheck, quickcheck-instances, text
}:
mkDerivation {
pname = "http-types";
- version = "0.11";
- sha256 = "08w30rf1i7kbh2j1iajqmj6yhhmglnb8kjggc8kdni3xahhrgcss";
+ version = "0.12";
+ sha256 = "1fb7hn8d4zkf1q0kyj7p02js15n4mw48bbr43bym9v5v8xj3lyk3";
libraryHaskellDepends = [
array base bytestring case-insensitive text
];
@@ -108554,6 +111423,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "hunit-dejafu_1_0_0_0" = callPackage
+ ({ mkDerivation, base, dejafu, exceptions, HUnit }:
+ mkDerivation {
+ pname = "hunit-dejafu";
+ version = "1.0.0.0";
+ sha256 = "1xsfv8pdkmyplggzk0k17j1y10kbjrvb86izsnc9k2w0lmd1j6ji";
+ libraryHaskellDepends = [ base dejafu exceptions HUnit ];
+ homepage = "https://github.com/barrucadu/dejafu";
+ description = "Deja Fu support for the HUnit test framework";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hunit-gui" = callPackage
({ mkDerivation, base, cairo, gtk, haskell98, HUnit }:
mkDerivation {
@@ -108646,6 +111528,7 @@ self: {
homepage = "http://github.com/hunt-framework/";
description = "A search and indexing engine";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hunt-server" = callPackage
@@ -108670,6 +111553,7 @@ self: {
homepage = "http://github.com/hunt-framework";
description = "A search and indexing engine server";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hunt-server-cli" = callPackage
@@ -108694,6 +111578,7 @@ self: {
homepage = "http://github.com/hunt-framework";
description = "A Command line Interface for the Hunt server";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {hunt-client = null;};
@@ -109000,6 +111885,42 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "hw-fingertree" = callPackage
+ ({ mkDerivation, base, deepseq, HUnit, QuickCheck, test-framework
+ , test-framework-hunit, test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "hw-fingertree";
+ version = "0.1.0.0";
+ sha256 = "0hh1f9m92s53254a2bk3h4i77girf8nni8rmyrd0ljramn4hiz55";
+ libraryHaskellDepends = [ base deepseq ];
+ testHaskellDepends = [
+ base deepseq HUnit QuickCheck test-framework test-framework-hunit
+ test-framework-quickcheck2
+ ];
+ description = "Generic finger-tree structure, with example instances";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "hw-fingertree-strict" = callPackage
+ ({ mkDerivation, base, hedgehog, hspec, HUnit, hw-hspec-hedgehog
+ , QuickCheck, test-framework, test-framework-hunit
+ , test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "hw-fingertree-strict";
+ version = "0.1.0.0";
+ sha256 = "02bgqcjjhxpzd5nql50abbbjlg5pan2wy1dhdwc2br87n3jhx90x";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base hedgehog hspec HUnit hw-hspec-hedgehog QuickCheck
+ test-framework test-framework-hunit test-framework-quickcheck2
+ ];
+ homepage = "https://github.com/githubuser/hw-fingertree-strict#readme";
+ description = "Generic strict finger-tree structure";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"hw-hedgehog" = callPackage
({ mkDerivation, base, hedgehog, vector }:
mkDerivation {
@@ -109154,8 +112075,8 @@ self: {
}:
mkDerivation {
pname = "hw-kafka-client";
- version = "2.3.0";
- sha256 = "0nrymgfp2kgfhizi5niaa08n56b1zsypy1vk9in9i0k39kxfkd3n";
+ version = "2.3.1";
+ sha256 = "0sjr3xqpx47lwzm6kk1rjinc9k39i9zjm74160ly9i68gnjgx69i";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -109469,6 +112390,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "hwhile" = callPackage
+ ({ mkDerivation, alex, array, base, Cabal, containers, filepath
+ , happy, haskeline, mtl, repline
+ }:
+ mkDerivation {
+ pname = "hwhile";
+ version = "0.1.1.2";
+ sha256 = "1zilz8fdy90dpq6rzj98d70jw5j668fqpx28jhkpj50k72xlrpkb";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ array base containers filepath haskeline mtl repline
+ ];
+ executableHaskellDepends = [ array base containers filepath mtl ];
+ executableToolDepends = [ alex happy ];
+ testHaskellDepends = [ array base Cabal containers mtl ];
+ description = "An implementation of Neil D. Jones' While language";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"hworker" = callPackage
({ mkDerivation, aeson, attoparsec, base, bytestring, hedis, hspec
, hspec-contrib, HUnit, text, time, uuid
@@ -109547,6 +112489,7 @@ self: {
homepage = "https://github.com/srijs/hwsl2";
description = "Hashing with SL2";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hwsl2-bytevector" = callPackage
@@ -109559,6 +112502,7 @@ self: {
homepage = "https://github.com/srijs/hwsl2-haskell-bytevector";
description = "A hashed byte-vector based on algebraic hashes and finger trees";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hwsl2-reducers" = callPackage
@@ -109573,6 +112517,7 @@ self: {
homepage = "https://github.com/srijs/hwsl2-reducers";
description = "Semigroup and Reducer instances for Data.Hash.SL2";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"hx" = callPackage
@@ -109974,14 +112919,14 @@ self: {
}) {};
"hybrid-vectors" = callPackage
- ({ mkDerivation, base, deepseq, primitive, vector }:
+ ({ mkDerivation, base, deepseq, primitive, semigroups, vector }:
mkDerivation {
pname = "hybrid-vectors";
- version = "0.2.1";
- sha256 = "18nc6qw7f9rxi0h6qk28yq6i0x19gwjzq2v9mi2ajxnwzvydip1f";
- revision = "1";
- editedCabalFile = "1i73cfi226l8nivqw9dxnxajkdsgxkh89h00mgsrplf60kdh4wzh";
- libraryHaskellDepends = [ base deepseq primitive vector ];
+ version = "0.2.2";
+ sha256 = "1mw69xjdncj6kqa2mvag8xc79y4jijnh2qg6ahrhifb4vxqw7ij1";
+ libraryHaskellDepends = [
+ base deepseq primitive semigroups vector
+ ];
homepage = "http://github.com/ekmett/hybrid-vectors";
description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors";
license = stdenv.lib.licenses.bsd3;
@@ -110502,10 +113447,8 @@ self: {
}:
mkDerivation {
pname = "hyphenation";
- version = "0.7";
- sha256 = "0l1yvfdkkgba91pzncy399hv65pdipb9p78v2j9g0sdkmb1anq9s";
- revision = "2";
- editedCabalFile = "0bf147dfnp8lw4kmscgkmd4pnawzv0yc63hhjr7sjvk5xyyvb5mq";
+ version = "0.7.1";
+ sha256 = "1h5i07v2zlka29dj4zysc47p747j88x6z4zm3zwcr5i8yirm0p52";
enableSeparateDataOutput = true;
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
@@ -110516,7 +113459,7 @@ self: {
];
homepage = "http://github.com/ekmett/hyphenation";
description = "Configurable Knuth-Liang hyphenation";
- license = stdenv.lib.licenses.bsd3;
+ license = stdenv.lib.licenses.bsd2;
}) {};
"hypher" = callPackage
@@ -110974,8 +113917,8 @@ self: {
pname = "identicon";
version = "0.2.2";
sha256 = "0qzj2063sh7phbqyxqxf96avz1zcwd1ry06jdqxwkg55q3yb8y9n";
- revision = "1";
- editedCabalFile = "0jlm9cmw0ycbyifab7bzkmykj8w7vn2wyc6pfadfjrhb76zyvcxr";
+ revision = "2";
+ editedCabalFile = "0shj211pvba5cfgs1vy9f8jd84by8j4mprk4yvhv4ia1kl6dq4mr";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base bytestring JuicyPixels ];
testHaskellDepends = [
@@ -111090,17 +114033,16 @@ self: {
, ansi-wl-pprint, array, async, base, base64-bytestring, binary
, blaze-html, blaze-markup, bytestring, Cabal, cheapskate
, code-page, containers, deepseq, directory, filepath, fingertree
- , fsnotify, gmp, haskeline, ieee754, libffi, mtl, network
- , optparse-applicative, parsers, pretty, process, regex-tdfa, safe
+ , fsnotify, gmp, haskeline, ieee754, libffi, megaparsec, mtl
+ , network, optparse-applicative, pretty, process, regex-tdfa, safe
, split, tagged, tasty, tasty-golden, tasty-rerun, terminal-size
- , text, time, transformers, transformers-compat, trifecta, uniplate
- , unix, unordered-containers, utf8-string, vector
- , vector-binary-instances, zip-archive
+ , text, time, transformers, uniplate, unix, unordered-containers
+ , utf8-string, vector, vector-binary-instances, zip-archive
}:
mkDerivation {
pname = "idris";
- version = "1.1.1";
- sha256 = "0rq43i3mf7b4yiwzrzzpyh3ldka3j514ms9cf31vsfpy0jn3bvkp";
+ version = "1.2.0";
+ sha256 = "0bim5lmr1wh3sc5nj5axy8xa2qq8rajp13x363mb9kkrnfy5wbxk";
configureFlags = [ "-fcurses" "-fexeconly" "-fffi" "-fgmp" ];
isLibrary = true;
isExecutable = true;
@@ -111110,11 +114052,11 @@ self: {
aeson annotated-wl-pprint ansi-terminal ansi-wl-pprint array async
base base64-bytestring binary blaze-html blaze-markup bytestring
cheapskate code-page containers deepseq directory filepath
- fingertree fsnotify haskeline ieee754 libffi mtl network
- optparse-applicative parsers pretty process regex-tdfa safe split
- terminal-size text time transformers transformers-compat trifecta
- uniplate unix unordered-containers utf8-string vector
- vector-binary-instances zip-archive
+ fingertree fsnotify haskeline ieee754 libffi megaparsec mtl network
+ optparse-applicative pretty process regex-tdfa safe split
+ terminal-size text time transformers uniplate unix
+ unordered-containers utf8-string vector vector-binary-instances
+ zip-archive
];
librarySystemDepends = [ gmp ];
executableHaskellDepends = [
@@ -111375,8 +114317,8 @@ self: {
}:
mkDerivation {
pname = "ihaskell";
- version = "0.9.0.1";
- sha256 = "1xfp0pzxsfcz8h4f27fqvbc6pprwz45cgq5sa393z3wqy17ni4lq";
+ version = "0.9.0.2";
+ sha256 = "0pa366b4vn5hc9ymd4g1pr4dsffvk80x9c8yq4d1pf4jngjfayql";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -111407,8 +114349,8 @@ self: {
}:
mkDerivation {
pname = "ihaskell-aeson";
- version = "0.3.0.0";
- sha256 = "0h2bbkqwl8mdyn24n0lphcjfrvmfq8ckincv3rncspp9h0v705m7";
+ version = "0.3.0.1";
+ sha256 = "1ds13a2j2bdr86gcb6vr8dfsb9fjia670lzwwqk4hsvyjgsbd2d7";
libraryHaskellDepends = [
aeson aeson-pretty base bytestring here ihaskell text
];
@@ -111435,8 +114377,8 @@ self: {
({ mkDerivation, base, blaze-html, blaze-markup, ihaskell }:
mkDerivation {
pname = "ihaskell-blaze";
- version = "0.3.0.0";
- sha256 = "1il3iz1nksh5v753srvchrjdazf7dqsd3q59w7crzbyrlx81v97b";
+ version = "0.3.0.1";
+ sha256 = "1733lg13v3pn95249gxbxrvbwfg2a95badvf98vkx6hx2mbxv9q7";
libraryHaskellDepends = [ base blaze-html blaze-markup ihaskell ];
homepage = "http://www.github.com/gibiansky/ihaskell";
description = "IHaskell display instances for blaze-html types";
@@ -111450,8 +114392,8 @@ self: {
}:
mkDerivation {
pname = "ihaskell-charts";
- version = "0.3.0.0";
- sha256 = "0nlimyx953v1s4xgzdb9987i9bw1bdralkg2x6cp41kzqd49i4f3";
+ version = "0.3.0.1";
+ sha256 = "1m7jxl1pxl0hcfa24xgjcwj4k50an8phm2lkpr4493yr1x2isk35";
libraryHaskellDepends = [
base bytestring Chart Chart-cairo data-default-class directory
ihaskell
@@ -111468,8 +114410,8 @@ self: {
}:
mkDerivation {
pname = "ihaskell-diagrams";
- version = "0.3.1.0";
- sha256 = "18q7m6xrshn1ixn0j75bdvpgvjq63sic3dfjzcz9zk73zmvpj4qz";
+ version = "0.3.1.1";
+ sha256 = "1c6a469ymfcjmf4larh1sh6qzaxgq260r55vzx78irh036k5h0lc";
libraryHaskellDepends = [
active base bytestring diagrams diagrams-cairo diagrams-lib
directory ihaskell text
@@ -111493,12 +114435,25 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "ihaskell-gnuplot" = callPackage
+ ({ mkDerivation, base, bytestring, gnuplot, ihaskell }:
+ mkDerivation {
+ pname = "ihaskell-gnuplot";
+ version = "0.1.0.1";
+ sha256 = "1qdcx0y52w805z5dg2xwsy1ykbbk05i4k04y0w3r4r3wwjvq3kk6";
+ libraryHaskellDepends = [ base bytestring gnuplot ihaskell ];
+ homepage = "http://www.github.com/gibiansky/ihaskell";
+ description = "IHaskell display instance for Gnuplot (from gnuplot package)";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ihaskell-hatex" = callPackage
({ mkDerivation, base, HaTeX, ihaskell, text }:
mkDerivation {
pname = "ihaskell-hatex";
- version = "0.2.1.0";
- sha256 = "098mbabwsl5i5dnvdy732ivrpzyb5njpr4483zss22axdni9p68i";
+ version = "0.2.1.1";
+ sha256 = "0rsfavpxm14bbrjcsi9rps3p1bjhhgvam0znhn8vwfmic3fpsda8";
libraryHaskellDepends = [ base HaTeX ihaskell text ];
homepage = "http://www.github.com/gibiansky/IHaskell";
description = "IHaskell display instances for hatex";
@@ -111530,8 +114485,8 @@ self: {
}:
mkDerivation {
pname = "ihaskell-juicypixels";
- version = "0.3.0.0";
- sha256 = "0apsll540z4hzzs39bqk14iadnr4rjp873q712la7lp2xnyf4k0y";
+ version = "1.1.0.1";
+ sha256 = "1fjngq27572rlri9m6674ddbgqh5ygl5dagma3z50m1l8n0g7z6s";
libraryHaskellDepends = [
base bytestring directory ihaskell JuicyPixels
];
@@ -111547,8 +114502,8 @@ self: {
}:
mkDerivation {
pname = "ihaskell-magic";
- version = "0.3.0.0";
- sha256 = "05jvyca163daqrmpb7fhk1wng04vk4bayffp0lp68sy3zskrjndl";
+ version = "0.3.0.1";
+ sha256 = "02zqlvnl73qkbx1yx7fc9dwcg3k7fk9jr9iqn22l38wsk01nm7c2";
libraryHaskellDepends = [
base base64-bytestring bytestring ihaskell ipython-kernel magic
text utf8-string
@@ -111577,12 +114532,12 @@ self: {
}) {};
"ihaskell-plot" = callPackage
- ({ mkDerivation, base, bytestring, ihaskell, plot }:
+ ({ mkDerivation, base, bytestring, hmatrix, ihaskell, plot }:
mkDerivation {
pname = "ihaskell-plot";
- version = "0.3.0.0";
- sha256 = "17qp2ln9v4sv9i3biyxgyq0csqikxwm5gs612fn5zsl1ixznj1h1";
- libraryHaskellDepends = [ base bytestring ihaskell plot ];
+ version = "0.3.0.1";
+ sha256 = "12bi8im5489kmy0d26kn3hljkj4c1xynsa97h6nh5dp53awklm3y";
+ libraryHaskellDepends = [ base bytestring hmatrix ihaskell plot ];
homepage = "http://www.github.com/gibiansky/ihaskell";
description = "IHaskell display instance for Plot (from plot package)";
license = stdenv.lib.licenses.mit;
@@ -111614,8 +114569,8 @@ self: {
}:
mkDerivation {
pname = "ihaskell-widgets";
- version = "0.2.3.1";
- sha256 = "0ay3wpv8ayyxvky3cpyzmwpbgkxc76avr119nb632a7nig74rzvp";
+ version = "0.2.3.2";
+ sha256 = "18kp3s534k241ld1s0ds5hln47pc863dfs3i6r9w67adnf6qhff8";
libraryHaskellDepends = [
aeson base containers ihaskell ipython-kernel scientific singletons
text unix unordered-containers vector vinyl
@@ -111802,8 +114757,8 @@ self: {
}:
mkDerivation {
pname = "imap";
- version = "0.3.0.4";
- sha256 = "021ya9pkf8q1nk805ck5hhm06q9lnp22d78hr0nz112xbxm5rqkw";
+ version = "0.3.0.5";
+ sha256 = "1wkm6agp0gsqg8lqfqp7sm0aq64426lpfw56nmnzvfk1hkq2gwmp";
libraryHaskellDepends = [
attoparsec base bytestring connection containers derive either
exceptions hslogger list-t network pipes random rolling-queue stm
@@ -111881,6 +114836,93 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "imj-animation" = callPackage
+ ({ mkDerivation, base, imj-base, imj-prelude, mtl }:
+ mkDerivation {
+ pname = "imj-animation";
+ version = "0.1.0.2";
+ sha256 = "1v0rji1b45n309wn4ld5fs60rri8gn4xg0wz319f2mcqqrih6ir4";
+ libraryHaskellDepends = [ base imj-base imj-prelude mtl ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/OlivierSohn/hamazed/blob/master/imj-animation/README.md";
+ description = "Animation Framework";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "imj-base" = callPackage
+ ({ mkDerivation, ansi-terminal, base, imj-prelude, mtl, primitive
+ , random, terminal-size, text, time, vector, vector-algorithms
+ }:
+ mkDerivation {
+ pname = "imj-base";
+ version = "0.1.0.2";
+ sha256 = "1b42xqzbgr47r2rkhy9299p68z9imgx19xc1d5rvfc3qyg8ciph2";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-terminal base imj-prelude mtl primitive random terminal-size
+ text time vector vector-algorithms
+ ];
+ executableHaskellDepends = [
+ ansi-terminal base imj-prelude mtl text time
+ ];
+ testHaskellDepends = [
+ ansi-terminal base imj-prelude mtl text time
+ ];
+ homepage = "https://github.com/OlivierSohn/hamazed/blob/master/imj-base/README.md";
+ description = "Game engine with geometry, easing, animated text, delta rendering";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "imj-game-hamazed" = callPackage
+ ({ mkDerivation, base, containers, imj-animation, imj-base
+ , imj-prelude, matrix, mtl, terminal-size, text, vector
+ }:
+ mkDerivation {
+ pname = "imj-game-hamazed";
+ version = "0.1.0.2";
+ sha256 = "0s0a2c1pfp5mwfmh1fjbq83ws68d8k5r526b7qmq36p4n78hx22g";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers imj-animation imj-base imj-prelude matrix mtl
+ terminal-size text vector
+ ];
+ executableHaskellDepends = [ base imj-prelude ];
+ testHaskellDepends = [ base imj-base mtl text ];
+ homepage = "https://github.com/OlivierSohn/hamazed/blob/master/imj-game-hamazed//README.md";
+ description = "A game with flying numbers and 8-bit color animations";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "imj-measure-stdout" = callPackage
+ ({ mkDerivation, base, imj-prelude, optparse-applicative }:
+ mkDerivation {
+ pname = "imj-measure-stdout";
+ version = "0.1.0.2";
+ sha256 = "15s7dd241z9lzm0nb46yr0y7rjryy6jydwfgigcsalv5my4p2j6x";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ base imj-prelude optparse-applicative
+ ];
+ homepage = "https://github.com/OlivierSohn/hamazed/blob/master/imj-measure-stdout/README.md";
+ description = "An application to determine the maximum capacity of stdout buffer";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "imj-prelude" = callPackage
+ ({ mkDerivation, base, mtl, text }:
+ mkDerivation {
+ pname = "imj-prelude";
+ version = "0.1.0.2";
+ sha256 = "1nv3fxps3i4znibv98qygxdl22dzri5zkw6hjaqajb4nlnh4bd0v";
+ libraryHaskellDepends = [ base mtl text ];
+ homepage = "https://github.com/OlivierSohn/hamazed/blob/master/imj-prelude/README.md";
+ description = "Prelude library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"imm" = callPackage
({ mkDerivation, aeson, ansi-wl-pprint, atom-conduit, base
, blaze-html, blaze-markup, bytestring, case-insensitive
@@ -112076,8 +115118,8 @@ self: {
}:
mkDerivation {
pname = "importify";
- version = "1.0";
- sha256 = "1cwi1mgd4dn8iinhxk8wq00v93g20clpidw86yyzdmz64rk0k31b";
+ version = "1.0.1";
+ sha256 = "1snm75p3p3nvjclqis6qglb17gr0pm2dw0i980jpzrqm3n3kciy3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -112146,6 +115188,7 @@ self: {
homepage = "http://www.nomyx.net";
description = "Reactive programming language based on a DSL";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {Imprevu = null;};
@@ -112171,6 +115214,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "imprint" = callPackage
+ ({ mkDerivation, base, binary, bytestring, constraints, hspec }:
+ mkDerivation {
+ pname = "imprint";
+ version = "0.0.1.0";
+ sha256 = "0f56zy6ay6wvcvqfplvc3gckngxngxm9r62h1w36lxm74xy8544v";
+ revision = "1";
+ editedCabalFile = "13418pfcsanj7cl651v4qqbypgjkrpld2gs560kpw3k2lj6w4wa0";
+ libraryHaskellDepends = [ base binary bytestring constraints ];
+ testHaskellDepends = [ base binary constraints hspec ];
+ homepage = "https://github.com/mrkkrp/imprint";
+ description = "Serialization of arbitrary Haskell expressions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"improve" = callPackage
({ mkDerivation, base, mtl, yices }:
mkDerivation {
@@ -112192,8 +115250,8 @@ self: {
}:
mkDerivation {
pname = "impure-containers";
- version = "0.4.1";
- sha256 = "06z74yxa3pxwa0ad1464riqjzylnsldzkzfpw1di7n4a8a0g0n0x";
+ version = "0.4.3";
+ sha256 = "003r3ppwdwndg8q84bnh299f04b88bhnxxl65nbrz9xl77lfz2y0";
libraryHaskellDepends = [
base containers ghc-prim hashable primitive vector
];
@@ -112326,8 +115384,8 @@ self: {
}:
mkDerivation {
pname = "incremental-parser";
- version = "0.2.5.2";
- sha256 = "0qlawnlghp8cz96sc6kjzhp0dlinmnyh38gjcp6i1wfn2qy8qy7d";
+ version = "0.2.5.3";
+ sha256 = "0646hxjd25hpmffabbdp6bxa5720gd99hgg31ifcx8nprlm8sl7a";
libraryHaskellDepends = [ base monoid-subclasses ];
testHaskellDepends = [
base checkers monoid-subclasses QuickCheck tasty tasty-quickcheck
@@ -112451,8 +115509,8 @@ self: {
({ mkDerivation, base, mtl, parsec, tasty, tasty-hunit }:
mkDerivation {
pname = "indents";
- version = "0.4.0.0";
- sha256 = "15flb4wb5d2pwzqqnh5szzd82nr9gxrc89b2qpzi5m2dxbwd6y4l";
+ version = "0.4.0.1";
+ sha256 = "0zv8mzn6r14fjgm2llg3babzgdfdkb97r2avj34lfjzmql4yrkql";
libraryHaskellDepends = [ base mtl parsec ];
testHaskellDepends = [ base mtl parsec tasty tasty-hunit ];
homepage = "http://github.com/jaspervdj/indents";
@@ -112692,8 +115750,8 @@ self: {
}:
mkDerivation {
pname = "inflections";
- version = "0.4.0.0";
- sha256 = "1m42sigx621yzd6sznaas6917skyw8lf5ynfcjd87jybhv2r9g2k";
+ version = "0.4.0.1";
+ sha256 = "1vc04afp5lvh5drs4pf6djmkn80513h4phkw5gs4g4d37h3d3jg2";
libraryHaskellDepends = [
base exceptions megaparsec text unordered-containers
];
@@ -112750,6 +115808,38 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "influxdb_1_2_2_3" = callPackage
+ ({ mkDerivation, aeson, attoparsec, base, bytestring, clock
+ , containers, foldl, http-client, http-types, HUnit, lens, mtl
+ , mwc-random, network, optional-args, scientific, tasty
+ , tasty-hunit, tasty-quickcheck, tasty-th, text, time
+ , unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "influxdb";
+ version = "1.2.2.3";
+ sha256 = "14454644vlkyd27ywhsvkczxdxdwqkl917zcb51ay68gdnrrwm1i";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson attoparsec base bytestring clock containers foldl http-client
+ http-types lens network optional-args scientific text time
+ unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring containers foldl http-client lens mwc-random
+ network optional-args text time vector
+ ];
+ testHaskellDepends = [
+ base http-client HUnit mtl tasty tasty-hunit tasty-quickcheck
+ tasty-th text vector
+ ];
+ homepage = "https://github.com/maoe/influxdb-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
@@ -112859,6 +115949,35 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "inline-c_0_5_6_1" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, binary, bytestring
+ , containers, cryptohash, directory, filepath, gsl, gslcblas
+ , hashable, hspec, mtl, parsec, parsers, QuickCheck, raw-strings-qq
+ , regex-posix, template-haskell, transformers, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "inline-c";
+ version = "0.5.6.1";
+ sha256 = "0kpbwrri9idllwd7gfamghrdrz16zqjphmb3cp5nq160dxz73brd";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-wl-pprint base binary bytestring containers cryptohash
+ directory filepath hashable mtl parsec parsers QuickCheck
+ template-haskell transformers unordered-containers vector
+ ];
+ executableSystemDepends = [ gsl gslcblas ];
+ testHaskellDepends = [
+ ansi-wl-pprint base containers hashable hspec parsers QuickCheck
+ raw-strings-qq regex-posix template-haskell transformers
+ unordered-containers vector
+ ];
+ description = "Write Haskell source files including C code inline. No FFI required.";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) gsl; gslcblas = null;};
+
"inline-c" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, containers, gsl
, gslcblas, hashable, hspec, mtl, parsec, parsers, QuickCheck
@@ -112885,6 +116004,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {inherit (pkgs) gsl; gslcblas = null;};
+ "inline-c-cpp_0_1_0_0" = callPackage
+ ({ mkDerivation, base, inline-c, template-haskell }:
+ mkDerivation {
+ pname = "inline-c-cpp";
+ version = "0.1.0.0";
+ sha256 = "0iba77p2ncxbg5sb4ks8f3lgp6zdnjhzvrr2ap3yg49is5b9f5rf";
+ libraryHaskellDepends = [ base inline-c template-haskell ];
+ testHaskellDepends = [ base ];
+ description = "Lets you embed C++ code into Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"inline-c-cpp" = callPackage
({ mkDerivation, base, hspec, inline-c, safe-exceptions
, template-haskell
@@ -112924,8 +116056,8 @@ self: {
}:
mkDerivation {
pname = "inline-java";
- version = "0.7.1";
- sha256 = "000qzhjg2qah379dlhshgxqzm4mslcv6d5cwqycvx8q3hxginv08";
+ version = "0.7.2";
+ sha256 = "0hfjgkv8shi3zhjx7jkcwqyglrh5hrc11zf58ykhwxjhzhj4f05b";
libraryHaskellDepends = [
base bytestring Cabal directory filepath ghc jni jvm language-java
mtl process template-haskell temporary text
@@ -112937,9 +116069,9 @@ self: {
}) {};
"inline-r" = callPackage
- ({ mkDerivation, aeson, base, bytestring, c2hs, containers
- , criterion, data-default-class, deepseq, directory, exceptions
- , filepath, ieee754, mtl, pretty, primitive, process
+ ({ mkDerivation, aeson, base, bytestring, containers, criterion
+ , data-default-class, deepseq, directory, exceptions, filepath
+ , ieee754, inline-c, mtl, pretty, primitive, process
, quickcheck-assertions, R, reflection, setenv, silently
, singletons, strict, tasty, tasty-expected-failure, tasty-golden
, tasty-hunit, tasty-quickcheck, template-haskell, temporary, text
@@ -112947,16 +116079,15 @@ self: {
}:
mkDerivation {
pname = "inline-r";
- version = "0.9.0.2";
- sha256 = "1swxdilr1l7h3pk313fyjgpg58g20v6560j9g4cxz0gakqqhb3jc";
+ version = "0.9.1";
+ sha256 = "1wpvyagc56yjkxvaw7a64gl2i4qfn4cgb47nx53pc6wcph7cyras";
libraryHaskellDepends = [
aeson base bytestring containers data-default-class deepseq
- exceptions mtl pretty primitive process reflection setenv
+ exceptions inline-c mtl pretty primitive process reflection setenv
singletons template-haskell text th-lift th-orphans transformers
unix vector
];
libraryPkgconfigDepends = [ R ];
- libraryToolDepends = [ c2hs ];
testHaskellDepends = [
base bytestring directory filepath ieee754 mtl process
quickcheck-assertions silently singletons strict tasty
@@ -113004,6 +116135,7 @@ self: {
executableHaskellDepends = [ aether base text ];
description = "Console client for encyclopedias";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {aether = null;};
@@ -113016,8 +116148,8 @@ self: {
pname = "insert-ordered-containers";
version = "0.2.1.0";
sha256 = "1612f455dw37da9g7bsd1s5kyi84mnr1ifnjw69892amyimi47fp";
- revision = "3";
- editedCabalFile = "0ik4n32rvamxvlp80ixjrbhskivynli7b89s4hk6401bcy3ykp3g";
+ revision = "4";
+ editedCabalFile = "0ls5rm5hg2lqp2m6bfssa30y72x8xyyl7izvwr3w804dpa9fvwrm";
libraryHaskellDepends = [
aeson base base-compat hashable lens semigroupoids semigroups text
transformers unordered-containers
@@ -113028,7 +116160,7 @@ self: {
unordered-containers
];
homepage = "https://github.com/phadej/insert-ordered-containers#readme";
- description = "Associative containers retating insertion order for traversals";
+ description = "Associative containers retaining insertion order for traversals";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -113079,6 +116211,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "inspection-testing_0_2" = callPackage
+ ({ mkDerivation, base, containers, ghc, mtl, template-haskell
+ , transformers
+ }:
+ mkDerivation {
+ pname = "inspection-testing";
+ version = "0.2";
+ sha256 = "0dnnsmzi6k548fgyigzmif26g1yia8m5aqaf7fxj06171i6fihx2";
+ libraryHaskellDepends = [
+ base containers ghc mtl template-haskell transformers
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/nomeata/inspection-testing";
+ description = "GHC plugin to do inspection testing";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"inspector-wrecker" = callPackage
({ mkDerivation, aeson, base, bytestring, case-insensitive
, connection, data-default, http-client, http-client-tls
@@ -113292,6 +116442,8 @@ self: {
pname = "integer-logarithms";
version = "1.0.2";
sha256 = "0w5mhak181zi6qr5h2zbcs9ymaqacisp9jwk99naz6s8zz5rq1ii";
+ revision = "1";
+ editedCabalFile = "0sccd0d6qrcm3a7nni5lqv40g5m5knf965z4skkgbyyhb3z6qsq8";
libraryHaskellDepends = [ array base ghc-prim integer-gmp ];
testHaskellDepends = [
base QuickCheck smallcheck tasty tasty-hunit tasty-quickcheck
@@ -113680,8 +116832,8 @@ self: {
}:
mkDerivation {
pname = "intricacy";
- version = "0.7.1";
- sha256 = "1byc6k4d5wcwls96zg12xq6kz4fzp9zmr0wcsk92iv2qpg0ra6ji";
+ version = "0.7.1.1";
+ sha256 = "1s947b71r0m3f81w8sid2cwgh9j16bxsmlpi498rzxajq32cd5yk";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -113702,13 +116854,13 @@ self: {
}:
mkDerivation {
pname = "intrinsic-superclasses";
- version = "0.2.0.0";
- sha256 = "0bx8igqwpyhs1q8rhyxhc5389nx49ynfq08bis30x9gdq209dqih";
+ version = "0.3.0.0";
+ sha256 = "18xvpdip1zdgylqcngvk8hz6dsnl3bp681pc31nb562vg2crqzz6";
libraryHaskellDepends = [
base containers haskell-src-meta mtl template-haskell
];
homepage = "https://github.com/daig/intrinsic-superclasses#readme";
- description = "A quasiquoter implementation of the Intrinsic Superclasses Proposal";
+ description = "A quasiquoter for better instance deriving and default methods";
license = stdenv.lib.licenses.mit;
}) {};
@@ -113719,8 +116871,8 @@ self: {
}:
mkDerivation {
pname = "intro";
- version = "0.3.0.1";
- sha256 = "0yc163r255w7df0hjly30bh5dqgx38f1z5lk3x3i7jh93j97cpn0";
+ version = "0.3.1.0";
+ sha256 = "14kl6nx62qkm19fjn593m62iy4myjwg94yyr38kkbna438n5wpns";
libraryHaskellDepends = [
base binary bytestring containers deepseq dlist extra hashable mtl
safe text transformers unordered-containers writer-cps-mtl
@@ -113847,10 +116999,8 @@ self: {
}:
mkDerivation {
pname = "invertible";
- version = "0.2.0.2";
- sha256 = "1a45hgsz46rqx2bfi0cgnf443pr28ik2rqi2f745q2qr41pvdqgf";
- revision = "1";
- editedCabalFile = "1jbk0mcn66j2931yka1923j7k45jgv6174q8rr3plidyn8fgm2hg";
+ version = "0.2.0.3";
+ sha256 = "0pckhl1nv6w66k3ll9q1bwbmzl2rpbwk6c3xkm7dscxzjzw43qwf";
libraryHaskellDepends = [
base haskell-src-meta invariant lens partial-isomorphisms
semigroupoids template-haskell transformers TypeCompose
@@ -114077,6 +117227,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "io-string-like" = callPackage
+ ({ mkDerivation, base, binary, bytestring, text }:
+ mkDerivation {
+ pname = "io-string-like";
+ version = "0.1.0.1";
+ sha256 = "0p8p4xp9qj7h1xa9dyizqpr85j8qjiccj3y9kplbskaqazl9pyqp";
+ revision = "1";
+ editedCabalFile = "1q10d2pjhy3k549pw3lid2lda5z4790x0vmg1qajwyapm7q5cma6";
+ libraryHaskellDepends = [ base binary bytestring text ];
+ homepage = "https://github.com/clintonmead/io-string-like#readme";
+ description = "Classes to handle Prelude style IO functions for different datatypes";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"io-throttle" = callPackage
({ mkDerivation, base, SafeSemaphore, threads }:
mkDerivation {
@@ -114184,35 +117348,8 @@ self: {
}:
mkDerivation {
pname = "ip";
- version = "1.1.0";
- sha256 = "0a5dc019jmkx77kk3jmgvk79ffigam38fanjwajaqsxy5ysp5xyf";
- libraryHaskellDepends = [
- aeson attoparsec base bytestring hashable primitive text vector
- ];
- testHaskellDepends = [
- attoparsec base bytestring doctest HUnit QuickCheck
- quickcheck-classes test-framework test-framework-hunit
- test-framework-quickcheck2 text
- ];
- benchmarkHaskellDepends = [
- attoparsec base bytestring criterion text
- ];
- homepage = "https://github.com/andrewthad/haskell-ip#readme";
- description = "Library for IP and MAC addresses";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
- "ip_1_1_1" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion
- , doctest, hashable, HUnit, primitive, QuickCheck
- , quickcheck-classes, test-framework, test-framework-hunit
- , test-framework-quickcheck2, text, vector
- }:
- mkDerivation {
- pname = "ip";
- version = "1.1.1";
- sha256 = "150gbl7589w1a1imqn8qh5g9ar68bkkx0ifiab5zf0gvxgkiz4jd";
+ version = "1.1.2";
+ sha256 = "16vjbcrjpvs4wh89r4k3d5hpkklvcvrk50qjnx67bsi2jjhcn0aj";
libraryHaskellDepends = [
aeson attoparsec base bytestring hashable primitive text vector
];
@@ -114426,8 +117563,8 @@ self: {
}:
mkDerivation {
pname = "ipython-kernel";
- version = "0.9.0.0";
- sha256 = "04byvmf4n55sdanw2lg5hicp2h7ivn2620wybd8i43hgcckx1ach";
+ version = "0.9.0.1";
+ sha256 = "0nzl5zcl03cdp0l6idscp648n64qjnhvfyj2j47fiiy1fkz133s7";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -114481,8 +117618,8 @@ self: {
}:
mkDerivation {
pname = "irc-client";
- version = "1.0.0.1";
- sha256 = "0qg4bvl82wwm7jlrxsmc4aw51rfdygq8qzm6x7j4121av5wbk095";
+ version = "1.0.1.0";
+ sha256 = "0c0vzmzpryjfv22kxinnqjf7rkj51dz7shi1gn8ivgcmnhf9hl57";
libraryHaskellDepends = [
base bytestring conduit connection containers contravariant
exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale
@@ -114671,8 +117808,8 @@ self: {
}:
mkDerivation {
pname = "ircbot";
- version = "0.6.5.1";
- sha256 = "1cam9f7ppxj7yh1am0qjkh8b19haggrqdmkd26xik1ymn7nq9iyd";
+ version = "0.6.5.2";
+ sha256 = "06is6hbk1992brbjrrjsqbv221h9c3syq0v1bah953sczg3a99jk";
libraryHaskellDepends = [
base bytestring containers directory filepath irc mtl network
parsec random SafeSemaphore stm time unix
@@ -114705,6 +117842,33 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "iri" = callPackage
+ ({ mkDerivation, attoparsec, base, base-prelude, bug, bytestring
+ , contravariant, ip, profunctors, ptr, punycode, QuickCheck
+ , quickcheck-instances, rerebase, semigroups, tasty, tasty-hunit
+ , tasty-quickcheck, template-haskell, text, text-builder, th-lift
+ , th-lift-instances, unordered-containers, vector, vector-builder
+ }:
+ mkDerivation {
+ pname = "iri";
+ version = "0.2";
+ sha256 = "0rldjjfdrg5sv96aig5y4yb13633yy3dcxq659i2drmipyll8iw0";
+ libraryHaskellDepends = [
+ attoparsec base base-prelude bug bytestring contravariant ip
+ profunctors ptr punycode semigroups template-haskell text
+ text-builder th-lift th-lift-instances unordered-containers vector
+ vector-builder
+ ];
+ testHaskellDepends = [
+ QuickCheck quickcheck-instances rerebase tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ homepage = "https://github.com/nikita-volkov/iri";
+ description = "RFC-based International Resource Identifier library";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"iridium" = callPackage
({ mkDerivation, ansi-terminal, base, bytestring, Cabal, containers
, extra, foldl, http-conduit, lifted-base, monad-control
@@ -115467,6 +118631,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "iwlib" = callPackage
+ ({ mkDerivation, base, wirelesstools }:
+ mkDerivation {
+ pname = "iwlib";
+ version = "0.1.0";
+ sha256 = "0khmfwql4vwj55idsxmhjhrbqzfir3g9wm5lmpvnf77mm95cfpdz";
+ libraryHaskellDepends = [ base ];
+ librarySystemDepends = [ wirelesstools ];
+ homepage = "https://github.com/jaor/iwlib";
+ description = "Bindings for the iw C library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {inherit (pkgs) wirelesstools;};
+
"ix-shapable" = callPackage
({ mkDerivation, array, base }:
mkDerivation {
@@ -116225,14 +119402,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "jml-web-service" = callPackage
+ ({ mkDerivation, base, bytestring, clock, data-default, http-types
+ , monad-logger, optparse-applicative, prometheus-client
+ , prometheus-metrics-ghc, protolude, tasty, text, wai, wai-extra
+ , warp
+ }:
+ mkDerivation {
+ pname = "jml-web-service";
+ version = "0.1.0";
+ sha256 = "1gs3qmcx87wh7372a4sa3g5f4w1lbyvd8iwr1w5pay21f0kcgnxk";
+ libraryHaskellDepends = [
+ base bytestring clock data-default http-types monad-logger
+ optparse-applicative prometheus-client prometheus-metrics-ghc
+ protolude text wai wai-extra warp
+ ];
+ testHaskellDepends = [ base protolude tasty ];
+ homepage = "https://github.com/jml/jml-web-service#readme";
+ description = "Common utilities for running a web service";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"jni" = callPackage
({ mkDerivation, base, bytestring, choice, constraints, containers
, cpphs, deepseq, inline-c, jdk, singletons
}:
mkDerivation {
pname = "jni";
- version = "0.5.0";
- sha256 = "0sjyhf9pdzm1rvsw8lhxap293kgb72ihag1kcwdp5lq1qjkf9y1j";
+ version = "0.5.1";
+ sha256 = "0lrgj5dxhn7amzjw7gsqxg0gh91nxh1j4vmb4j2f5r8y3m8nwq4a";
libraryHaskellDepends = [
base bytestring choice constraints containers deepseq inline-c
singletons
@@ -116453,6 +119651,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "js-jquery_3_3_1" = callPackage
+ ({ mkDerivation, base, HTTP }:
+ mkDerivation {
+ pname = "js-jquery";
+ version = "3.3.1";
+ sha256 = "16q68jzbs7kp07dnq8cprdcc8fd41rim38039vg0w4x11lgniq70";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base HTTP ];
+ doCheck = false;
+ homepage = "https://github.com/ndmitchell/js-jquery#readme";
+ description = "Obtain minified jQuery code";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"jsaddle" = callPackage
({ mkDerivation, aeson, attoparsec, base, base64-bytestring
, bytestring, containers, deepseq, filepath, ghc-prim, http-types
@@ -116892,8 +120106,8 @@ self: {
}:
mkDerivation {
pname = "json-feed";
- version = "0.0.2";
- sha256 = "0ka8g2d3hn8z122k8r7gxs8m72s4ys46j6s2yc2ys045r1fhzlc1";
+ version = "1.0.0";
+ sha256 = "06h9qji4cnzqw4nmxs6dka7ywhz8jr56v5pcb3dlvganjg3s0gdx";
libraryHaskellDepends = [
aeson base bytestring mime-types network-uri tagsoup text time
];
@@ -117087,8 +120301,8 @@ self: {
pname = "json-rpc-client";
version = "0.2.5.0";
sha256 = "177lrw5m9dxdk6mcay0f92rwyih8q7znwb8m6da6r3zsn30gajak";
- revision = "2";
- editedCabalFile = "0d070nv5kyplqpch98cfbcd5nxa24q3hrfjzpwkkvngqn6j0g6pi";
+ revision = "3";
+ editedCabalFile = "0hi2im3k7hpz3rasap90fvik3x5ibb7dd38sr1zsy7wsjkhk7zs4";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -117112,8 +120326,8 @@ self: {
}:
mkDerivation {
pname = "json-rpc-generic";
- version = "0.2.1.2";
- sha256 = "1nhd3k7ji5fqdqbc23072ayzylwz987a458jc11skil9nwl5yswl";
+ version = "0.2.1.3";
+ sha256 = "105v0x610hb8vnbbmfm7myn15vblxkcvcryhgx363wgg0qqyakna";
libraryHaskellDepends = [
aeson aeson-generic-compat base bytestring containers dlist
scientific text transformers unordered-containers vector
@@ -117161,8 +120375,8 @@ self: {
pname = "json-schema";
version = "0.7.4.1";
sha256 = "15kwgpkryd865nls9zm6ya6jzmiygsb537ij7ps39dzasqbnl3an";
- revision = "11";
- editedCabalFile = "0jnlgkr1dikkcy4ln942c14lmpj49287b74dqcc5rd6sgxcm7xq2";
+ revision = "12";
+ editedCabalFile = "0x3cvndfshy4sd66m2xilyp876kvmgw5flagawamwis6hs8pfdi2";
libraryHaskellDepends = [
aeson base containers generic-aeson generic-deriving mtl scientific
text time unordered-containers vector
@@ -117585,8 +120799,8 @@ self: {
}:
mkDerivation {
pname = "judy";
- version = "0.3.0";
- sha256 = "17fblav2npg47kn2dq82lcpf299igd91pi0ynffklf5hr8dw70zl";
+ version = "0.4.0";
+ sha256 = "115991jvp9gg9iy3n8p8y0y39x236v17g5xqchmlfsja1nx9hbzc";
libraryHaskellDepends = [ base bytestring ghc-prim ];
librarySystemDepends = [ Judy ];
testHaskellDepends = [ base hspec QuickCheck ];
@@ -117602,8 +120816,8 @@ self: {
}:
mkDerivation {
pname = "juicy-gcode";
- version = "0.1.0.3";
- sha256 = "0czb1vb1nwn1wzx52vpvnpki2kfwwb775wg512rn46snm5wibvzv";
+ version = "0.1.0.4";
+ sha256 = "1nf30901jv226n7cpnbkqdh51gpmkzri79m271afzsgya3cs9gi5";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -117717,8 +120931,8 @@ self: {
}:
mkDerivation {
pname = "jvm";
- version = "0.4.0.1";
- sha256 = "0zazz893fxzh8hdc2k2irg0l5ic2v2h7z2cb60ngiarvrr07hpvl";
+ version = "0.4.1";
+ sha256 = "1mwhp5a4ykwcwr7h3j6803fy558q93cdkazqhck9dg67cgx7iyjr";
libraryHaskellDepends = [
base bytestring choice constraints distributed-closure exceptions
jni singletons text vector
@@ -118042,6 +121256,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "kan-extensions_5_1" = callPackage
+ ({ mkDerivation, adjunctions, array, base, comonad, containers
+ , contravariant, distributive, fail, free, mtl, profunctors
+ , semigroupoids, tagged, transformers, transformers-compat
+ }:
+ mkDerivation {
+ pname = "kan-extensions";
+ version = "5.1";
+ sha256 = "019jyrilk97i5bj8v044ig03m66h02q4b073m1fksrk7y9c8wgqr";
+ libraryHaskellDepends = [
+ adjunctions array base comonad containers contravariant
+ distributive fail free mtl profunctors semigroupoids tagged
+ transformers transformers-compat
+ ];
+ homepage = "http://github.com/ekmett/kan-extensions/";
+ description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"kangaroo" = callPackage
({ mkDerivation, array, base }:
mkDerivation {
@@ -118301,6 +121535,39 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "katip-elasticsearch_0_4_0_4" = callPackage
+ ({ mkDerivation, aeson, async, base, bloodhound, bytestring
+ , containers, criterion, deepseq, enclosed-exceptions, exceptions
+ , http-client, http-types, katip, lens, lens-aeson
+ , quickcheck-instances, random, retry, scientific, stm, stm-chans
+ , tagged, tasty, tasty-hunit, tasty-quickcheck, text, time
+ , transformers, unordered-containers, uuid, vector
+ }:
+ mkDerivation {
+ pname = "katip-elasticsearch";
+ version = "0.4.0.4";
+ sha256 = "0zg0f5czqff9zd0rnkj68bmxmizrl01q4wbvz43hj5j8mj0jzybj";
+ libraryHaskellDepends = [
+ aeson async base bloodhound bytestring enclosed-exceptions
+ exceptions http-client http-types katip retry scientific stm
+ stm-chans text time transformers unordered-containers uuid
+ ];
+ testHaskellDepends = [
+ aeson base bloodhound bytestring containers http-client http-types
+ katip lens lens-aeson quickcheck-instances scientific stm tagged
+ tasty tasty-hunit tasty-quickcheck text time transformers
+ unordered-containers vector
+ ];
+ benchmarkHaskellDepends = [
+ aeson base bloodhound criterion deepseq random text
+ unordered-containers uuid
+ ];
+ homepage = "https://github.com/Soostone/katip";
+ description = "ElasticSearch scribe for the Katip logging framework";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"katip-syslog" = callPackage
({ mkDerivation, aeson, base, bytestring, hsyslog, katip
, string-conv, text
@@ -118365,6 +121632,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "kawa" = callPackage
+ ({ mkDerivation, attoparsec, base, directory, hashable, hedgehog
+ , optparse-applicative, text, unordered-containers
+ }:
+ mkDerivation {
+ pname = "kawa";
+ version = "0.1.0.0";
+ sha256 = "1rd5k12my1693sjnkqr6jn7p7byrycpcszf98z5s9pxaxblz4gdk";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base hashable text unordered-containers
+ ];
+ executableHaskellDepends = [
+ base directory optparse-applicative text unordered-containers
+ ];
+ testHaskellDepends = [ base hedgehog text unordered-containers ];
+ homepage = "https://github.com/thoferon/kawa#readme";
+ description = "Key-value store in single files";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"kawaii" = callPackage
({ mkDerivation, base, bytestring, containers, data-default, hakyll
, hspec, lens, lifted-base, monad-control, monad-logger, mtl
@@ -118469,6 +121758,7 @@ self: {
homepage = "https://github.com/marcelbuesing/kcd";
description = "Kayak .kcd parsing library.";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {kcd-parser = null;};
@@ -119020,6 +122310,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "keys_3_12" = callPackage
+ ({ mkDerivation, array, base, comonad, containers, free, hashable
+ , semigroupoids, semigroups, tagged, transformers
+ , transformers-compat, unordered-containers
+ }:
+ mkDerivation {
+ pname = "keys";
+ version = "3.12";
+ sha256 = "0may9nrlfji2mmypl9q47lcpg4r793hmm4i22x7j4l6zz67sggyl";
+ revision = "1";
+ editedCabalFile = "1lbl62y3alhpgkf2knh4q5pcby54kblb68cbx2i77fbdwz8jbka7";
+ libraryHaskellDepends = [
+ array base comonad containers free hashable semigroupoids
+ semigroups tagged transformers transformers-compat
+ unordered-containers
+ ];
+ homepage = "http://github.com/ekmett/keys/";
+ description = "Keyed functors and containers";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"keysafe" = callPackage
({ mkDerivation, aeson, argon2, async, base, bloomfilter
, bytestring, containers, deepseq, directory, disk-free-space
@@ -119156,20 +122468,21 @@ self: {
}) {};
"kicad-data" = callPackage
- ({ mkDerivation, base, ieee754, lens-family, parsec, parsec-numbers
- , pretty-compact, QuickCheck, test-framework
- , test-framework-quickcheck2
+ ({ mkDerivation, base, charsetdetect, encoding, HUnit, ieee754
+ , lens-family, parsec, pretty-compact, QuickCheck, test-framework
+ , test-framework-hunit, test-framework-quickcheck2
}:
mkDerivation {
pname = "kicad-data";
- version = "0.4.0";
- sha256 = "098yfgrf9wiib8agx6frdgd766lyzkqyifx9lbj4ssyrgp03qnm5";
+ version = "0.5.0";
+ sha256 = "0nbzprp6j1d6l507h9s9c82y130w5b0jqlmc3dxd1ns2q5qf8cin";
libraryHaskellDepends = [
- base ieee754 lens-family parsec parsec-numbers pretty-compact
+ base ieee754 lens-family parsec pretty-compact
];
testHaskellDepends = [
- base ieee754 lens-family parsec parsec-numbers pretty-compact
- QuickCheck test-framework test-framework-quickcheck2
+ base charsetdetect encoding HUnit ieee754 lens-family parsec
+ pretty-compact QuickCheck test-framework test-framework-hunit
+ test-framework-quickcheck2
];
homepage = "http://github.com/kasbah/haskell-kicad-data";
description = "Parser and writer for KiCad files";
@@ -119448,6 +122761,7 @@ self: {
];
description = "Utilities for working with many HStringTemplate templates from files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {string-templates = null;};
@@ -119796,8 +123110,8 @@ self: {
({ mkDerivation, base, hspec, servant, servant-foreign, text }:
mkDerivation {
pname = "lackey";
- version = "0.4.6";
- sha256 = "162nlb96l7mzyr449lw15c3l8ljx9821bnijlzcq47vyrjlh2ym5";
+ version = "0.4.7";
+ sha256 = "026w7wmz71g9796mx6mdn3s1nxrds631kacn423zdvchridm0398";
libraryHaskellDepends = [ base servant servant-foreign text ];
testHaskellDepends = [ base hspec servant servant-foreign text ];
homepage = "https://github.com/tfausak/lackey#readme";
@@ -119805,6 +123119,20 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "lackey_1_0_0" = callPackage
+ ({ mkDerivation, base, hspec, servant, servant-foreign, text }:
+ mkDerivation {
+ pname = "lackey";
+ version = "1.0.0";
+ sha256 = "0spgcfg2py1ff1zak211xsgmccpg56c9bbv14xsgjdig9k6cfyz0";
+ libraryHaskellDepends = [ base servant servant-foreign text ];
+ testHaskellDepends = [ base hspec servant servant-foreign text ];
+ homepage = "https://github.com/tfausak/lackey#readme";
+ description = "Generate Ruby clients from Servant APIs";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"lagrangian" = callPackage
({ mkDerivation, ad, base, hmatrix, HUnit, nonlinear-optimization
, test-framework, test-framework-hunit, test-framework-quickcheck2
@@ -120073,7 +123401,7 @@ self: {
homepage = "https://wiki.haskell.org/Lambdabot";
description = "Lambdabot is a development tool and advanced IRC bot";
license = "GPL";
- maintainers = with stdenv.lib.maintainers; [ abbradar ];
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdabot-core" = callPackage
@@ -120100,6 +123428,7 @@ self: {
homepage = "https://wiki.haskell.org/Lambdabot";
description = "Lambdabot core functionality";
license = "GPL";
+ maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
"lambdabot-haskell-plugins" = callPackage
@@ -120113,8 +123442,8 @@ self: {
}:
mkDerivation {
pname = "lambdabot-haskell-plugins";
- version = "5.1.0.1";
- sha256 = "1nmkqs62f4xdzcqh24953svvd8j3n8gjc95ljmk1jx0hxhspdkzw";
+ version = "5.1.0.2";
+ sha256 = "1vr4f92zsjdr2j1zxb2v1hmyrb4lvq32c08jgind7apkmvqjgm19";
libraryHaskellDepends = [
array arrows base bytestring containers data-memocombinators
directory filepath haskell-src-exts-simple hoogle HTTP IOSpec
@@ -120126,6 +123455,7 @@ self: {
homepage = "https://wiki.haskell.org/Lambdabot";
description = "Lambdabot Haskell plugins";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"lambdabot-irc-plugins" = callPackage
@@ -120144,6 +123474,7 @@ self: {
homepage = "https://wiki.haskell.org/Lambdabot";
description = "IRC plugins for lambdabot";
license = "GPL";
+ maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
"lambdabot-misc-plugins" = callPackage
@@ -120654,6 +123985,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "language-ats" = callPackage
+ ({ mkDerivation, alex, ansi-terminal, ansi-wl-pprint, array, base
+ , composition-prelude, criterion, deepseq, happy, hspec
+ , hspec-dirstream, lens, recursion-schemes, system-filepath
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "language-ats";
+ version = "0.1.1.6";
+ sha256 = "1463z1xpjdm6cziib10w7x7n5ch77mjgy73h7rik3ybawj8njswd";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ ansi-terminal ansi-wl-pprint array base composition-prelude deepseq
+ lens recursion-schemes unordered-containers
+ ];
+ libraryToolDepends = [ alex happy ];
+ testHaskellDepends = [
+ base hspec hspec-dirstream system-filepath
+ ];
+ benchmarkHaskellDepends = [ base criterion ];
+ description = "Parser and pretty-printer for ATS";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"language-bash" = callPackage
({ mkDerivation, base, parsec, pretty, process, QuickCheck, tasty
, tasty-expected-failure, tasty-hunit, tasty-quickcheck
@@ -120889,6 +124244,33 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "language-docker_2_0_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, directory, filepath, free
+ , Glob, hspec, HUnit, mtl, parsec, pretty, process, QuickCheck
+ , semigroups, split, template-haskell, text, th-lift
+ , th-lift-instances, time, transformers, unordered-containers, yaml
+ }:
+ mkDerivation {
+ pname = "language-docker";
+ version = "2.0.1";
+ sha256 = "0xd7r6npr7kzdh3pxcidvqff3lrww6dqyyksg58chnb57d87b0sc";
+ libraryHaskellDepends = [
+ aeson base bytestring directory filepath free Glob mtl parsec
+ pretty semigroups split template-haskell text th-lift
+ th-lift-instances time transformers unordered-containers yaml
+ ];
+ testHaskellDepends = [
+ aeson base bytestring directory filepath free Glob hspec HUnit mtl
+ parsec pretty process QuickCheck semigroups split template-haskell
+ text th-lift th-lift-instances time transformers
+ unordered-containers yaml
+ ];
+ homepage = "https://github.com/hadolint/language-docker#readme";
+ description = "Dockerfile parser, pretty-printer and embedded DSL";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"language-dockerfile" = callPackage
({ mkDerivation, aeson, base, bytestring, directory, filepath, free
, Glob, hspec, HUnit, mtl, parsec, pretty, process, QuickCheck
@@ -121180,6 +124562,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "language-js" = callPackage
+ ({ mkDerivation, base, hspec, parsec }:
+ mkDerivation {
+ pname = "language-js";
+ version = "0.2.0";
+ sha256 = "0j87w6sqyl67ad9qar2q240kbzksds3a301cdykjfa3n6a0r81z1";
+ libraryHaskellDepends = [ base parsec ];
+ testHaskellDepends = [ base hspec parsec ];
+ homepage = "https://github.com/diasbruno/language-js#readme";
+ description = "javascript parser for es6 and es7";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"language-kort" = callPackage
({ mkDerivation, base, base64-bytestring, bytestring, QuickCheck
, random, razom-text-util, regex-applicative, smaoin, text
@@ -121457,7 +124852,7 @@ self: {
homepage = "http://lpuppet.banquise.net/";
description = "Tools to parse and evaluate the Puppet DSL";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
+ hydraPlatforms = [ "x86_64-linux" ];
}) {};
"language-python" = callPackage
@@ -121936,6 +125331,8 @@ self: {
pname = "lattices";
version = "1.7";
sha256 = "1p5bqr3a8haib4wsdzy08z61jv8cq91n7rzj7wanh1nwp3r2n1nc";
+ revision = "1";
+ editedCabalFile = "1nsc77nnh8cvfw8f58g0w5mjamy4iivkadyyaj3yzawfr8jbxi53";
libraryHaskellDepends = [
base base-compat containers deepseq hashable semigroupoids tagged
universe-base universe-reverse-instances unordered-containers
@@ -121950,6 +125347,32 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "lattices_1_7_1" = callPackage
+ ({ mkDerivation, base, base-compat, containers, deepseq, hashable
+ , QuickCheck, quickcheck-instances, semigroupoids, tagged, tasty
+ , tasty-quickcheck, transformers, universe-base
+ , universe-instances-base, universe-reverse-instances
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "lattices";
+ version = "1.7.1";
+ sha256 = "0bcv28dazaz0n166jbd579vim0hr4c20rmg0s34284fdr6p50m3x";
+ libraryHaskellDepends = [
+ base base-compat containers deepseq hashable semigroupoids tagged
+ universe-base universe-reverse-instances unordered-containers
+ ];
+ testHaskellDepends = [
+ base base-compat containers QuickCheck quickcheck-instances tasty
+ tasty-quickcheck transformers universe-instances-base
+ unordered-containers
+ ];
+ homepage = "http://github.com/phadej/lattices/";
+ description = "Fine-grained library for constructing and manipulating lattices";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"launchpad-control" = callPackage
({ mkDerivation, array, base, containers, hmidi, mtl, transformers
}:
@@ -122762,6 +126185,50 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "lens_4_16" = callPackage
+ ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring
+ , Cabal, cabal-doctest, call-stack, comonad, containers
+ , contravariant, criterion, deepseq, directory, distributive
+ , doctest, exceptions, filepath, free, generic-deriving, ghc-prim
+ , hashable, HUnit, kan-extensions, mtl, nats, parallel, profunctors
+ , QuickCheck, reflection, semigroupoids, semigroups, simple-reflect
+ , tagged, template-haskell, test-framework, test-framework-hunit
+ , test-framework-quickcheck2, test-framework-th, text
+ , th-abstraction, transformers, transformers-compat
+ , unordered-containers, vector, void
+ }:
+ mkDerivation {
+ pname = "lens";
+ version = "4.16";
+ sha256 = "16wz3s62zmnmis7xs9jahyc7b75090b96ayk98c3gvzmpg7bx54z";
+ revision = "1";
+ editedCabalFile = "0pgjpixph8idgf2wp8z25cbq6jf2bddigfs7r7nbln2a1v8yli1y";
+ setupHaskellDepends = [ base Cabal cabal-doctest filepath ];
+ libraryHaskellDepends = [
+ array base base-orphans bifunctors bytestring call-stack comonad
+ containers contravariant distributive exceptions filepath free
+ ghc-prim hashable kan-extensions mtl parallel profunctors
+ reflection semigroupoids semigroups tagged template-haskell text
+ th-abstraction transformers transformers-compat
+ unordered-containers vector void
+ ];
+ testHaskellDepends = [
+ base bytestring containers deepseq directory doctest filepath
+ generic-deriving HUnit mtl nats parallel QuickCheck semigroups
+ simple-reflect test-framework test-framework-hunit
+ test-framework-quickcheck2 test-framework-th text transformers
+ unordered-containers vector
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring comonad containers criterion deepseq
+ generic-deriving transformers unordered-containers vector
+ ];
+ homepage = "http://github.com/ekmett/lens/";
+ description = "Lenses, Folds and Traversals";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"lens-accelerate" = callPackage
({ mkDerivation, accelerate, base, lens }:
mkDerivation {
@@ -122783,8 +126250,8 @@ self: {
}:
mkDerivation {
pname = "lens-action";
- version = "0.2.2";
- sha256 = "1skhczbl774sb0202b8allm96b67wqsl5fd7jdr9i6a20hyx1gqr";
+ version = "0.2.3";
+ sha256 = "1q4q190lv6gh3bvdz9n177hwrckkkbfbwcw64b9ksz11gxn8m106";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
base comonad contravariant lens mtl profunctors semigroupoids
@@ -122864,6 +126331,8 @@ self: {
pname = "lens-family-th";
version = "0.5.0.1";
sha256 = "00rpx75hh8p2991m36jp1cb91m048xjn8f02kj2zqsfwfhimfdzs";
+ revision = "1";
+ editedCabalFile = "190jxqskd61irc97zb95h08zlkszlhpik4zmb7y4vk7x06zz00m6";
libraryHaskellDepends = [ base template-haskell ];
testHaskellDepends = [ base hspec lens-family template-haskell ];
homepage = "http://github.com/DanBurton/lens-family-th#readme";
@@ -122906,8 +126375,10 @@ self: {
({ mkDerivation, base, lens, QuickCheck, transformers }:
mkDerivation {
pname = "lens-properties";
- version = "4.11";
- sha256 = "0cg0n75ss5ayy31igwyz9yz2sh0smcaiidbbm1wkrk1krzbws31w";
+ version = "4.11.1";
+ sha256 = "1caciyn75na3f25q9qxjl7ibjam22xlhl5k2pqfiak10lxsmnz2g";
+ revision = "1";
+ editedCabalFile = "1b9db7dbfq46q63y6w1471nffj77rb363rk4b1l3l23g15cq6a5i";
libraryHaskellDepends = [ base lens QuickCheck transformers ];
homepage = "http://github.com/ekmett/lens/";
description = "QuickCheck properties for lens";
@@ -123102,6 +126573,34 @@ self: {
license = stdenv.lib.licenses.gpl3;
}) {};
+ "lentil_1_0_10_0" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip
+ , filepath, hspec, natural-sort, optparse-applicative, parsec
+ , pipes, regex-tdfa, semigroups, terminal-progress-bar, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "lentil";
+ version = "1.0.10.0";
+ sha256 = "0s7qxd65bjw0h709q9igb5q4jls80wc9jzh5s8ic7ww11f0m5hm7";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ ansi-wl-pprint base csv directory filemanip filepath natural-sort
+ optparse-applicative parsec pipes regex-tdfa semigroups
+ terminal-progress-bar text transformers
+ ];
+ testHaskellDepends = [
+ ansi-wl-pprint base csv directory filemanip filepath hspec
+ natural-sort optparse-applicative parsec pipes regex-tdfa
+ semigroups terminal-progress-bar text transformers
+ ];
+ homepage = "http://www.ariis.it/static/articles/lentil/page.html";
+ description = "frugal issue tracker";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"lenz" = callPackage
({ mkDerivation, base, base-unicode-symbols, hs-functors
, transformers
@@ -124116,6 +127615,9 @@ self: {
pname = "libxml";
version = "0.1.1";
sha256 = "01zvk86kg726lf2vnlr7dxiz7g3xwi5a4ak9gcfbwyhynkzjmsfi";
+ configureFlags = [
+ "--extra-include-dir=${libxml2.dev}/include/libxml2"
+ ];
libraryHaskellDepends = [ base bytestring mtl ];
librarySystemDepends = [ libxml2 ];
description = "Binding to libxml2";
@@ -124189,8 +127691,8 @@ self: {
}:
mkDerivation {
pname = "licensor";
- version = "0.2.1";
- sha256 = "1is281xsrfdh2vsank07j1gw634iadz0sp8ssabpfqgnb3a98rvz";
+ version = "0.2.2";
+ sha256 = "0kxcsw1ds9q8apsmhbnwcz76kxfhabv08b8myadbflwm4wj0szlz";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -124245,8 +127747,8 @@ self: {
}:
mkDerivation {
pname = "lifted-async";
- version = "0.9.3.2";
- sha256 = "0c8y6m1kpkviq2zi1d2889hbzh7k46rly4mvmfkrzam45fqggrcj";
+ version = "0.9.3.3";
+ sha256 = "1gqd4ih72mky1s97120yx9gmabaxb1l54b3jwijsl8fxng5djdxf";
libraryHaskellDepends = [
async base constraints lifted-base monad-control transformers-base
];
@@ -124269,6 +127771,8 @@ self: {
pname = "lifted-base";
version = "0.2.3.11";
sha256 = "1ass00wfa91z5xp2xmm97xrvwm7j5hdkxid5cqvr3xbwrsgpmi4f";
+ revision = "1";
+ editedCabalFile = "0vrik0j1xv2yp759ffa7jb7q838z4wglnbgsrja97mx0dwsbavnx";
libraryHaskellDepends = [ base monad-control transformers-base ];
testHaskellDepends = [
base HUnit monad-control test-framework test-framework-hunit
@@ -125331,8 +128835,8 @@ self: {
}:
mkDerivation {
pname = "liquid-fixpoint";
- version = "0.7.0.5";
- sha256 = "081z90vcqrmfjc3jna419a8ziif2rcrag4ba4h902lrjh5hpvpaj";
+ version = "0.7.0.6";
+ sha256 = "1sbvnj2as93dywh43zcsb23hr1mqlia5gr2sw08ynqh48dcx181p";
configureFlags = [ "-fbuild-external" ];
isLibrary = true;
isExecutable = true;
@@ -125361,17 +128865,16 @@ self: {
({ mkDerivation, aeson, array, base, bifunctors, binary, bytestring
, Cabal, cereal, cmdargs, containers, data-default, deepseq, Diff
, directory, exceptions, filepath, fingertree, ghc, ghc-boot
- , ghc-paths, ghc-prim, hashable, hint, hpc, hscolour
- , liquid-fixpoint, located-base, mtl, optparse-applicative, parsec
- , pretty, process, QuickCheck, stm, syb, tagged, tasty
- , tasty-ant-xml, tasty-hunit, tasty-rerun, template-haskell
- , temporary, text, text-format, th-lift, time, transformers
- , unordered-containers, vector, z3
+ , ghc-paths, ghc-prim, hashable, hpc, hscolour, liquid-fixpoint
+ , located-base, mtl, optparse-applicative, parsec, pretty, process
+ , QuickCheck, stm, syb, tagged, tasty, tasty-ant-xml, tasty-hunit
+ , tasty-rerun, template-haskell, temporary, text, text-format
+ , th-lift, time, transformers, unordered-containers, vector, z3
}:
mkDerivation {
pname = "liquidhaskell";
- version = "0.8.2.0";
- sha256 = "17fm1jn00wns6nkwvxm96j85jwiiaqmw3s7w4ilkslzgr9wslp8f";
+ version = "0.8.2.2";
+ sha256 = "0rq0fs5ydwiqi2f3pn9q4d1agbmz0z46ws2q5w8y7lrsb2mr4zf3";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -125384,8 +128887,8 @@ self: {
transformers unordered-containers vector
];
executableHaskellDepends = [
- base cmdargs deepseq ghc ghc-boot hint hpc liquid-fixpoint
- located-base pretty process time
+ base cmdargs deepseq ghc ghc-boot hpc liquid-fixpoint located-base
+ pretty process time
];
testHaskellDepends = [
array base bytestring containers directory filepath ghc ghc-boot
@@ -125794,26 +129297,25 @@ self: {
"live-sequencer" = callPackage
({ mkDerivation, alsa-core, alsa-seq, base, bytestring, cgi
, concurrent-split, containers, data-accessor
- , data-accessor-transformers, directory, event-list
- , explicit-exception, filepath, html, httpd-shed, midi, midi-alsa
- , network, network-uri, non-empty, non-negative, parsec, pretty
- , process, stm, stm-split, strict, transformers, unix, utility-ht
- , wx, wxcore
+ , data-accessor-transformers, event-list, explicit-exception, html
+ , httpd-shed, midi, midi-alsa, network, network-uri, non-empty
+ , non-negative, parsec, pathtype, pretty, process, stm, stm-split
+ , strict, transformers, unix, utility-ht, wx, wxcore
}:
mkDerivation {
pname = "live-sequencer";
- version = "0.0.6";
- sha256 = "0gsbixz0cmy9cajqj4s8iaf8mjk42162sd39bpcdp4xqyxfj5g63";
+ version = "0.0.6.1";
+ sha256 = "0g099sm4q7n0aiqc8qznqfcqvlnc25kzvz31qf49xblah89dzx0n";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base event-list non-negative ];
executableHaskellDepends = [
alsa-core alsa-seq base bytestring cgi concurrent-split containers
- data-accessor data-accessor-transformers directory
- explicit-exception filepath html httpd-shed midi midi-alsa network
- network-uri non-empty parsec pretty process stm stm-split strict
- transformers unix utility-ht wx wxcore
+ data-accessor data-accessor-transformers explicit-exception html
+ httpd-shed midi midi-alsa network network-uri non-empty parsec
+ pathtype pretty process stm stm-split strict transformers unix
+ utility-ht wx wxcore
];
homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer";
description = "Live coding of MIDI music";
@@ -125841,6 +129343,7 @@ self: {
executableHaskellDepends = [ base ];
description = "Liveplotting";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {andromeda = null;};
@@ -126140,34 +129643,8 @@ self: {
}:
mkDerivation {
pname = "llvm-hs";
- version = "5.1.0";
- sha256 = "1l6r409zviis70qd3w8ysycy479q0sqjd85kd6z8b0ngjvq1y5ik";
- setupHaskellDepends = [ base Cabal containers ];
- libraryHaskellDepends = [
- array attoparsec base bytestring containers exceptions llvm-hs-pure
- mtl template-haskell transformers utf8-string
- ];
- libraryToolDepends = [ llvm-config ];
- testHaskellDepends = [
- base bytestring containers llvm-hs-pure mtl pretty-show QuickCheck
- tasty tasty-hunit tasty-quickcheck temporary transformers
- ];
- homepage = "http://github.com/llvm-hs/llvm-hs/";
- description = "General purpose LLVM bindings";
- license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {llvm-config = null;};
-
- "llvm-hs_5_1_2" = callPackage
- ({ mkDerivation, array, attoparsec, base, bytestring, Cabal
- , containers, exceptions, llvm-config, llvm-hs-pure, mtl
- , pretty-show, QuickCheck, tasty, tasty-hunit, tasty-quickcheck
- , template-haskell, temporary, transformers, utf8-string
- }:
- mkDerivation {
- pname = "llvm-hs";
- version = "5.1.2";
- sha256 = "01ayla3a119cir40zjwhgyn0dwrq7cw2waydhadk7rayk6pfk3fc";
+ version = "5.1.3";
+ sha256 = "0swpc431w16g9yip5w67kd77ilc6yqqk526h7sl5n4sn7xlc9nnc";
setupHaskellDepends = [ base Cabal containers ];
libraryHaskellDepends = [
array attoparsec base bytestring containers exceptions llvm-hs-pure
@@ -126191,8 +129668,8 @@ self: {
}:
mkDerivation {
pname = "llvm-hs-pretty";
- version = "0.1.0.0";
- sha256 = "1p16vhxx7w1hdb130c9mls45rwyq8hix1grnwdj92rbrqbjwk7l3";
+ version = "0.2.0.0";
+ sha256 = "133kyksbp88q0wavp3wdjg69h9fpwi7nq626nvikdy46cf7lgklh";
libraryHaskellDepends = [
array base bytestring llvm-hs-pure text wl-pprint-text
];
@@ -126207,35 +129684,14 @@ self: {
}) {};
"llvm-hs-pure" = callPackage
- ({ mkDerivation, attoparsec, base, bytestring, containers, mtl
- , tasty, tasty-hunit, tasty-quickcheck, template-haskell
- , transformers
- }:
- mkDerivation {
- pname = "llvm-hs-pure";
- version = "5.1.0";
- sha256 = "0m4ahrh2d0h9vfky9852y99g1xwsi7s7qr3xxnbgnw8zci7966f5";
- libraryHaskellDepends = [
- attoparsec base bytestring containers mtl template-haskell
- transformers
- ];
- testHaskellDepends = [
- base containers mtl tasty tasty-hunit tasty-quickcheck transformers
- ];
- homepage = "http://github.com/llvm-hs/llvm-hs/";
- description = "Pure Haskell LLVM functionality (no FFI)";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "llvm-hs-pure_5_1_1" = callPackage
({ mkDerivation, attoparsec, base, bytestring, containers, fail
, hspec, mtl, tasty, tasty-hunit, tasty-quickcheck
, template-haskell, text, transformers, unordered-containers
}:
mkDerivation {
pname = "llvm-hs-pure";
- version = "5.1.1";
- sha256 = "1b3gfmyd40knq3kbx4s3sk9d6aw2f5n81liywjfsxirl6vm8xrz5";
+ version = "5.1.2";
+ sha256 = "0m6r8l37151y5a7ad5bbb1xw5f18y4hm91ildmz10wnsmhx9kl64";
libraryHaskellDepends = [
attoparsec base bytestring containers fail mtl template-haskell
transformers unordered-containers
@@ -126247,7 +129703,6 @@ self: {
homepage = "http://github.com/llvm-hs/llvm-hs/";
description = "Pure Haskell LLVM functionality (no FFI)";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"llvm-ht" = callPackage
@@ -126471,8 +129926,8 @@ self: {
({ mkDerivation, base, containers, hslogger, PSQueue, stm }:
mkDerivation {
pname = "load-balancing";
- version = "1.0.1.0";
- sha256 = "17xrgq7ww56dx1jy1ksqgx0c0zgzapc7ikdy2cwv65cigd1pqaik";
+ version = "1.0.1.1";
+ sha256 = "1vszir1b79fdn545k3k86mgqhivyg8s5vv5v24y4cp4cc47aiwmi";
libraryHaskellDepends = [ base containers hslogger PSQueue stm ];
homepage = "https://github.com/SumAll/haskell-load-balancing";
description = "Client-side load balancing utilities";
@@ -126896,8 +130351,8 @@ self: {
}:
mkDerivation {
pname = "log-warper";
- version = "1.8.2";
- sha256 = "0h2asypn5aw9w0npwygvsn5hl0sybdn6lg5kqs0dngk0wss87f3i";
+ version = "1.8.3";
+ sha256 = "1awblvxh6cncwlqacxb1wq4s77x79ncrz6dl81wgrbjjifwpf0xz";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -126907,7 +130362,7 @@ self: {
vector yaml
];
executableHaskellDepends = [
- base markdown-unlit text universum yaml
+ base markdown-unlit mtl text universum yaml
];
testHaskellDepends = [
async base data-default directory filepath hspec HUnit
@@ -126918,6 +130373,40 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "log-warper_1_8_6" = callPackage
+ ({ mkDerivation, aeson, ansi-terminal, async, base, containers
+ , data-default, deepseq, directory, filepath, fmt, hspec
+ , hspec-discover, HUnit, markdown-unlit, microlens, microlens-mtl
+ , microlens-platform, mmorph, monad-control, monad-loops, mtl
+ , QuickCheck, text, time, transformers, transformers-base
+ , universum, unix, unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "log-warper";
+ version = "1.8.6";
+ sha256 = "11lh26fkmyx5hzpjhjm1198g6gy1qpsix2srp1w7laim3kxbl4rb";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson ansi-terminal base containers deepseq directory filepath fmt
+ microlens-platform mmorph monad-control monad-loops mtl text time
+ transformers transformers-base universum unix unordered-containers
+ vector yaml
+ ];
+ executableHaskellDepends = [
+ base markdown-unlit microlens mtl text universum yaml
+ ];
+ testHaskellDepends = [
+ async base data-default directory filepath hspec HUnit
+ microlens-mtl QuickCheck universum unordered-containers
+ ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "https://github.com/serokell/log-warper";
+ description = "Flexible, configurable, monadic and pretty logging";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"log2json" = callPackage
({ mkDerivation, base, containers, json, parsec }:
mkDerivation {
@@ -127011,8 +130500,8 @@ self: {
}:
mkDerivation {
pname = "logging";
- version = "3.0.4";
- sha256 = "0qkv19bmkh7gak6rzzcy0mgdz835gpc59iq1l10wjj7gb8vv0kd0";
+ version = "3.0.5";
+ sha256 = "0cd00pjxjdq69n6hxa01x31s2vdfd39kkvj0d0ssqj3n6ahssbxi";
libraryHaskellDepends = [
base binary bytestring fast-logger lifted-base monad-control
old-locale regex-compat text time time-locale-compat transformers
@@ -127045,6 +130534,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "logging-effect_1_2_2" = callPackage
+ ({ mkDerivation, async, base, bytestring, criterion, exceptions
+ , fast-logger, free, lifted-async, monad-control, monad-logger, mtl
+ , semigroups, stm, stm-delay, text, time, transformers
+ , transformers-base, wl-pprint-text
+ }:
+ mkDerivation {
+ pname = "logging-effect";
+ version = "1.2.2";
+ sha256 = "1p0czcwph777dncidsrn0nbrmhhv7f8c5ic86mnrkxj7hzym0dfw";
+ libraryHaskellDepends = [
+ async base exceptions free monad-control mtl semigroups stm
+ stm-delay text time transformers transformers-base wl-pprint-text
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring criterion fast-logger lifted-async monad-logger
+ text time wl-pprint-text
+ ];
+ homepage = "https://github.com/ocharles/logging-effect";
+ description = "A mtl-style monad transformer for general purpose & compositional logging";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"logging-effect-extra" = callPackage
({ mkDerivation, base, logging-effect, logging-effect-extra-file
, logging-effect-extra-handler, wl-pprint-text
@@ -127217,8 +130730,8 @@ self: {
({ mkDerivation, base, logict, mtl, transformers }:
mkDerivation {
pname = "logict-state";
- version = "0.1.0.2";
- sha256 = "1b2iqz1andmgibb30s1x32ak0vac7zy4gw7jihm2hhlpyycah5bp";
+ version = "0.1.0.4";
+ sha256 = "0mkwggh97c3x96v7a4y7i4scdvr38d49an3617i9zgj328xkr6w9";
libraryHaskellDepends = [ base logict mtl transformers ];
homepage = "https://github.com/atzedijkstra/logict-state";
description = "Library for logic programming based on haskell package logict";
@@ -127528,6 +131041,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "longboi" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "longboi";
+ version = "1.0.0";
+ sha256 = "0jm231i9mnbkn8ffdv6w2mhd95i8lwlbxi5h9nywvqbclgf95977";
+ libraryHaskellDepends = [ base ];
+ homepage = "https://github.com/chessai/longboi";
+ description = "Dependently-typed linked list implementation";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"lookup-tables" = callPackage
({ mkDerivation, base, primitive, tasty, tasty-hunit
, template-haskell
@@ -127828,8 +131353,8 @@ self: {
}:
mkDerivation {
pname = "lrucaching";
- version = "0.3.2";
- sha256 = "1vg6ip77vlqixj2ghvwm036yb4qhkif175k8gfd27nmr4w5rv2ns";
+ version = "0.3.3";
+ sha256 = "192a2zap1bmxa2y48n48rmngf18fr8k0az4a230hziv3g795yzma";
libraryHaskellDepends = [
base base-compat deepseq hashable psqueues vector
];
@@ -127899,6 +131424,7 @@ self: {
homepage = "https://github.com/dbp/lss";
description = "Lexical Style Sheets - a language for writing styles that is focused around lexical (ie, static) scoping and re-use of large components";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {language-css-attoparsec = null;};
@@ -127987,6 +131513,7 @@ self: {
homepage = "http://www.leksah.org";
description = "Leksah tool kit";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {gtk3 = pkgs.gnome3.gtk;};
"ltl" = callPackage
@@ -128112,6 +131639,21 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "lucid-colonnade" = callPackage
+ ({ mkDerivation, base, colonnade, lucid, text }:
+ mkDerivation {
+ pname = "lucid-colonnade";
+ version = "1.0";
+ sha256 = "13jb1vh2pxz1w2ycswdmyhr05c00i0x30agcwf93i359rwzcmbmc";
+ revision = "1";
+ editedCabalFile = "08zcksc8pd7sh4z78i80rinlmr3mghhclhcqn8kdkgv4p7ynldlv";
+ libraryHaskellDepends = [ base colonnade lucid text ];
+ homepage = "https://github.com/andrewthad/colonnade#readme";
+ description = "Helper functions for using lucid with colonnade";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"lucid-extras" = callPackage
({ mkDerivation, base, blaze-builder, bytestring, directory, lucid
, text
@@ -128396,8 +131938,8 @@ self: {
}:
mkDerivation {
pname = "lxd-client";
- version = "0.1.0.4";
- sha256 = "188n9qc7c4755wmp6w50x7rzkdrf8f31d7alxcp0qg28qvhq94hx";
+ version = "0.1.0.5";
+ sha256 = "1981q1b71xgmxlis2hydhzhcwcspyrwnllg3fdrajv7m9z1zlryc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -128714,8 +132256,8 @@ self: {
pname = "machines";
version = "0.6.3";
sha256 = "1kxypm26xxd30979yrg94pnaaj3yfn180ri3y4z2xsm2m5iyiliz";
- revision = "1";
- editedCabalFile = "045qh0qwjiyrwcfsfw9galhqr6w7c96zpg7fnib3jaw8509d53x5";
+ revision = "2";
+ editedCabalFile = "1k62b3h2xklv170wdxf607s4h7vmjjj4dscgnv54gfbwi224cysq";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
adjunctions base comonad containers distributive mtl pointed
@@ -128923,22 +132465,22 @@ self: {
}) {};
"madlang" = callPackage
- ({ mkDerivation, ansi-wl-pprint, base, Cabal, composition-prelude
- , containers, criterion, directory, file-embed, hspec
- , hspec-megaparsec, http-client, http-client-tls, megaparsec
- , MonadRandom, mtl, optparse-applicative, process, random-shuffle
+ ({ mkDerivation, ansi-wl-pprint, base, binary, Cabal, cli-setup
+ , composition-prelude, containers, criterion, directory, file-embed
+ , hspec, hspec-megaparsec, http-client, http-client-tls, megaparsec
+ , MonadRandom, mtl, optparse-applicative, random-shuffle
, recursion-schemes, recursion-schemes-ext, tar, template-haskell
, text, th-lift-instances, titlecase, zip-archive, zlib
}:
mkDerivation {
pname = "madlang";
- version = "3.2.0.1";
- sha256 = "0ypca6yy8zvp0n0njqhm6az5xfaxjc91j4p39f3sn9dgd2ksbw27";
+ version = "4.0.0.4";
+ sha256 = "1rfax7s4sc63943izc1r0gk848ji0kxsjgsb81i2f6dc5860xkz9";
isLibrary = true;
isExecutable = true;
- setupHaskellDepends = [ base Cabal directory process ];
+ setupHaskellDepends = [ base Cabal cli-setup ];
libraryHaskellDepends = [
- ansi-wl-pprint base composition-prelude containers directory
+ ansi-wl-pprint base binary composition-prelude containers directory
file-embed http-client http-client-tls megaparsec MonadRandom mtl
optparse-applicative random-shuffle recursion-schemes
recursion-schemes-ext tar template-haskell text th-lift-instances
@@ -128982,6 +132524,38 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) file;};
+ "magic-wormhole" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, cryptonite
+ , hashable, hedgehog, memory, network, network-uri
+ , optparse-applicative, pqueue, process, protolude, saltine, spake2
+ , stm, tasty, tasty-hedgehog, tasty-hspec, text
+ , unordered-containers, websockets
+ }:
+ mkDerivation {
+ pname = "magic-wormhole";
+ version = "0.1.0";
+ sha256 = "0lkwnbr76chiakc7j51pm23q15q26l3xqglg1rj5blwybkymg29x";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ aeson base bytestring containers cryptonite hashable memory network
+ network-uri pqueue protolude saltine spake2 stm
+ unordered-containers websockets
+ ];
+ executableHaskellDepends = [
+ aeson base optparse-applicative protolude spake2 text
+ ];
+ testHaskellDepends = [
+ aeson base bytestring hedgehog memory process protolude saltine
+ spake2 stm tasty tasty-hedgehog tasty-hspec
+ ];
+ homepage = "https://github.com/LeastAuthority/haskell-magic-wormhole#readme";
+ description = "Interact with Magic Wormhole";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"magicbane" = callPackage
({ mkDerivation, aeson, aeson-qq, attoparsec, base, classy-prelude
, conduit, conduit-combinators, data-default, data-has, ekg-core
@@ -129013,6 +132587,37 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "magicbane_0_2_0" = callPackage
+ ({ mkDerivation, aeson, aeson-qq, async, attoparsec, base
+ , bytestring, conduit, conduit-combinators, data-default, data-has
+ , ekg-core, ekg-wai, envy, errors, fast-logger, http-api-data
+ , http-client, http-client-tls, http-conduit, http-link-header
+ , http-types, lifted-async, lifted-base, monad-control
+ , monad-logger, monad-metrics, mono-traversable, mtl, network-uri
+ , raw-strings-qq, refined, safe-exceptions, servant-server, split
+ , string-conversions, text, transformers, transformers-base
+ , unordered-containers, wai, wai-cli, wai-middleware-metrics
+ }:
+ mkDerivation {
+ pname = "magicbane";
+ version = "0.2.0";
+ sha256 = "0v67mycp7mgawcwnkw68pivyicp9p2nj0f9isrdb14x5smm1f1zd";
+ libraryHaskellDepends = [
+ aeson aeson-qq async attoparsec base bytestring conduit
+ conduit-combinators data-default data-has ekg-core ekg-wai envy
+ errors fast-logger http-api-data http-client http-client-tls
+ http-conduit http-link-header http-types lifted-async lifted-base
+ monad-control monad-logger monad-metrics mono-traversable mtl
+ network-uri raw-strings-qq refined safe-exceptions servant-server
+ split string-conversions text transformers transformers-base
+ unordered-containers wai wai-cli wai-middleware-metrics
+ ];
+ homepage = "https://github.com/myfreeweb/magicbane#readme";
+ description = "A web framework that integrates Servant, EKG, fast-logger, wai-cli…";
+ license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"magico" = callPackage
({ mkDerivation, base, hmatrix, transformers, utility-ht }:
mkDerivation {
@@ -129873,13 +133478,13 @@ self: {
({ mkDerivation, base, bytestring, cassava, containers }:
mkDerivation {
pname = "map-exts";
- version = "0.1.0.1";
- sha256 = "0zkcwxdvl4m4lw9yjjxk7mx22hr0kp9hn3vzry2s8n489i0r4sw3";
+ version = "0.2.0.0";
+ sha256 = "038k2d5vir65n2xi4gv5jvd3ya877iazjkinyg20wn4aj317b8bq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base containers ];
executableHaskellDepends = [ base bytestring cassava containers ];
- homepage = "http://github.com/elsen-trading/map-extensions#readme";
+ homepage = "http://github.com/charles-cooper/map-exts#readme";
description = "Extensions to Data.Map";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -130689,35 +134294,38 @@ self: {
}) {};
"matterhorn" = callPackage
- ({ mkDerivation, aspell-pipe, base, base-compat, brick, bytestring
- , cheapskate, checkers, config-ini, connection, containers
- , directory, filepath, gitrev, hashable, Hclip, mattermost-api
- , mattermost-api-qc, microlens-platform, mtl, process
- , quickcheck-text, skylighting, stm, stm-delay, strict
- , string-conversions, tasty, tasty-hunit, tasty-quickcheck
- , temporary, text, text-zipper, time, transformers, Unique, unix
- , unordered-containers, utf8-string, vector, vty, xdg-basedir
+ ({ mkDerivation, aeson, aspell-pipe, async, base, base-compat
+ , brick, bytestring, cheapskate, checkers, config-ini, connection
+ , containers, directory, filepath, gitrev, hashable, Hclip
+ , mattermost-api, mattermost-api-qc, microlens-platform, mtl
+ , process, quickcheck-text, semigroups, skylighting, stm, stm-delay
+ , strict, string-conversions, tasty, tasty-hunit, tasty-quickcheck
+ , temporary, text, text-zipper, time, timezone-olson
+ , timezone-series, transformers, Unique, unix, unordered-containers
+ , utf8-string, vector, vty, word-wrap, xdg-basedir
}:
mkDerivation {
pname = "matterhorn";
- version = "40400.0.0";
- sha256 = "1qp2d18lhf6j4gq67w1sd5alwhz5zlbmjp26apsvxbvcary0mb0a";
+ version = "40600.0.0";
+ sha256 = "0niha43l1p00af3qjkz5j43ksdl0a0sgagra584c8j34cl1f9akv";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- aspell-pipe base base-compat brick bytestring cheapskate config-ini
- connection containers directory filepath gitrev hashable Hclip
- mattermost-api microlens-platform mtl process skylighting stm
- stm-delay strict temporary text text-zipper time transformers unix
- unordered-containers utf8-string vector vty xdg-basedir
+ aeson aspell-pipe async base base-compat brick bytestring
+ cheapskate config-ini connection containers directory filepath
+ gitrev hashable Hclip mattermost-api microlens-platform mtl process
+ semigroups skylighting stm stm-delay strict temporary text
+ text-zipper time timezone-olson timezone-series transformers unix
+ unordered-containers utf8-string vector vty word-wrap xdg-basedir
];
testHaskellDepends = [
base base-compat brick bytestring cheapskate checkers config-ini
connection containers directory filepath hashable Hclip
mattermost-api mattermost-api-qc microlens-platform mtl process
quickcheck-text stm strict string-conversions tasty tasty-hunit
- tasty-quickcheck text text-zipper time transformers Unique
- unordered-containers vector vty xdg-basedir
+ tasty-quickcheck text text-zipper time timezone-olson
+ timezone-series transformers Unique unordered-containers vector vty
+ xdg-basedir
];
description = "Terminal client for the Mattermost chat system";
license = stdenv.lib.licenses.bsd3;
@@ -130733,8 +134341,8 @@ self: {
}:
mkDerivation {
pname = "mattermost-api";
- version = "40400.0.0";
- sha256 = "1n5mv56srq171ql9n7gvpfma8mx9jb61w88ab72v99xhiid3ahdi";
+ version = "40600.0.0";
+ sha256 = "0s27n9a7s6bgbara2rzh689234ykl3vfpm84yg1nvc61wsrxbkql";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -130760,8 +134368,8 @@ self: {
}:
mkDerivation {
pname = "mattermost-api-qc";
- version = "40400.0.0";
- sha256 = "0kp36m2vf3zzfgibzs6kgai1bfsghxpzx7hpw0bywg1jpwqr95ka";
+ version = "40600.0.0";
+ sha256 = "0pfmf4ja4a7vc9bnr4kc604j0b8dmcm1ggddg4m64jf355mw6nxm";
libraryHaskellDepends = [
base containers mattermost-api QuickCheck text time
];
@@ -130929,6 +134537,8 @@ self: {
pname = "mbox";
version = "0.3.4";
sha256 = "1pkiagxb013an71d3si3kldgn7rl9l5zi2s3s6hjhfg0pcwbbr6w";
+ revision = "1";
+ editedCabalFile = "11jikczq21fnhsvr6n33qbb5q6ixbhab4s0js8n39zwgmglighz5";
libraryHaskellDepends = [ base safe text time time-locale-compat ];
description = "Read and write standard mailbox files";
license = stdenv.lib.licenses.bsd3;
@@ -131492,8 +135102,8 @@ self: {
}:
mkDerivation {
pname = "mega-sdist";
- version = "0.3.0.5";
- sha256 = "1rdx74bxiwrcp0k8h8028b65nbcmgcbpg7jnzli91y8nzr2qql6c";
+ version = "0.3.0.6";
+ sha256 = "0cgak9hp1j9ybcpbqjs56pq7h9wn0my46mlx6nqv3fvidwdp5vl7";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -131516,6 +135126,8 @@ self: {
pname = "megaparsec";
version = "6.3.0";
sha256 = "15bhghiszm18acn1igmq6vgdlcvsvsx4dlkl2vg2ghy5qgyrqxsv";
+ revision = "2";
+ editedCabalFile = "1npxvydar8l68vfp3g0ir9cvq5vglf1z2a9q1h1mj438y0084f7v";
libraryHaskellDepends = [
base bytestring case-insensitive containers deepseq mtl
parser-combinators scientific text transformers
@@ -131530,6 +135142,33 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "megaparsec_6_4_0" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, containers
+ , criterion, deepseq, hspec, hspec-expectations, mtl
+ , parser-combinators, QuickCheck, scientific, text, transformers
+ , weigh
+ }:
+ mkDerivation {
+ pname = "megaparsec";
+ version = "6.4.0";
+ sha256 = "0h9azhs0dfrc359vrbd1jljrg3yfdbwd4p62cxqkn7mnh8913jpd";
+ revision = "1";
+ editedCabalFile = "1jzj3gb96skggngv69wibyx27bgng78dmlgv9i3lvz46z6bx8qzd";
+ libraryHaskellDepends = [
+ base bytestring case-insensitive containers deepseq mtl
+ parser-combinators scientific text transformers
+ ];
+ testHaskellDepends = [
+ base bytestring containers hspec hspec-expectations mtl QuickCheck
+ scientific text transformers
+ ];
+ benchmarkHaskellDepends = [ base criterion deepseq text weigh ];
+ homepage = "https://github.com/mrkkrp/megaparsec";
+ description = "Monadic parser combinators";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"meldable-heap" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -131549,14 +135188,14 @@ self: {
}:
mkDerivation {
pname = "mellon-core";
- version = "0.8.0.2";
- sha256 = "0fl9pwh67diibj2ki75xcwylbhvw0nqn0b0azla4ndr3fxdgnh30";
+ version = "0.8.0.4";
+ sha256 = "03gh3ks6k3y11sga15bnknqw7j29kfhgw8zvfz87vgw5xlsva3j2";
libraryHaskellDepends = [ async base mtl time transformers ];
testHaskellDepends = [
async base doctest hlint hspec mtl QuickCheck quickcheck-instances
time transformers
];
- homepage = "https://github.com/quixoftic/mellon/";
+ homepage = "https://github.com/quixoftic/mellon#readme";
description = "Control physical access devices";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -131566,11 +135205,11 @@ self: {
({ mkDerivation, base, hlint, hpio, mellon-core }:
mkDerivation {
pname = "mellon-gpio";
- version = "0.8.0.2";
- sha256 = "1dx31nyyi4gar2wlmmgfnqi48x4pzwh53q87xg8rrbghc9vfqygj";
+ version = "0.8.0.4";
+ sha256 = "0b12wvv11ny3rdrd8wg236zn8yy3szm85n7qjdyiiznx2jf33rm7";
libraryHaskellDepends = [ base hpio mellon-core ];
testHaskellDepends = [ base hlint ];
- homepage = "https://github.com/quixoftic/mellon/";
+ homepage = "https://github.com/quixoftic/mellon#readme";
description = "GPIO support for mellon";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -131588,8 +135227,8 @@ self: {
}:
mkDerivation {
pname = "mellon-web";
- version = "0.8.0.2";
- sha256 = "03awn8qcqn5iz5cd082cr6ap15zlbidp5l2aacz24m0fn5vdgjlf";
+ version = "0.8.0.4";
+ sha256 = "1fyd8vkdym9rm54dbcnn9821jdmbvdyl942339m6prnc2188hkcc";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -131610,7 +135249,7 @@ self: {
servant-lucid servant-server servant-swagger servant-swagger-ui
swagger2 text time transformers wai wai-extra warp
];
- homepage = "https://github.com/quixoftic/mellon/";
+ homepage = "https://github.com/quixoftic/mellon#readme";
description = "A REST web service for Mellon controllers";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -131890,8 +135529,8 @@ self: {
}:
mkDerivation {
pname = "memory";
- version = "0.14.10";
- sha256 = "01i1nx83n5lspwdhkhhjxxcp9agf9y70547dzs5m8zl043jmd0z4";
+ version = "0.14.11";
+ sha256 = "0k6x58r3if8zbsgip8nr7lb77xf468qxlwqnmah8p313rxfg0k37";
libraryHaskellDepends = [
base basement bytestring deepseq foundation ghc-prim
];
@@ -131903,6 +135542,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "memory_0_14_14" = callPackage
+ ({ mkDerivation, base, basement, bytestring, deepseq, foundation
+ , ghc-prim, tasty, tasty-hunit, tasty-quickcheck
+ }:
+ mkDerivation {
+ pname = "memory";
+ version = "0.14.14";
+ sha256 = "03lnb7nqshddiwqbz1vpba7mb6l80nav896rr77vlp8m41b9h6qx";
+ libraryHaskellDepends = [
+ base basement bytestring deepseq foundation ghc-prim
+ ];
+ testHaskellDepends = [
+ base basement bytestring foundation tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ homepage = "https://github.com/vincenthz/hs-memory";
+ description = "memory and related abstraction stuff";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"memorypool" = callPackage
({ mkDerivation, base, containers, transformers, unsafe, vector }:
mkDerivation {
@@ -131942,8 +135602,8 @@ self: {
pname = "mercury-api";
version = "0.1.0.1";
sha256 = "0h5v08k27nqksl3x8r5d4p26zgb4s7k2shgrjkg6bc2n0bn9iqzr";
- revision = "1";
- editedCabalFile = "0k8k9lcvpwkvz4w0ydrxzzmfgch8885h6vdybvqi7ra4kvhf4gzs";
+ revision = "2";
+ editedCabalFile = "093c8afmcrnbfliz1ykpyc4w40dli2wig0qi0xcwg8445idwp2kg";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -132445,8 +136105,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "microlens";
- version = "0.4.8.1";
- sha256 = "0iqagqc3c6b6ihydhc6s7dlibwwf7pr1k9gixls3jikj6hfxzf0p";
+ version = "0.4.8.3";
+ sha256 = "17qx2mbqdrlnkc3gxq8njbp7qw8nh51drmz6fc8khgj9bls5ni2k";
libraryHaskellDepends = [ base ];
homepage = "http://github.com/aelve/microlens";
description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this.";
@@ -132522,8 +136182,8 @@ self: {
}:
mkDerivation {
pname = "microlens-mtl";
- version = "0.1.11.0";
- sha256 = "1885kc8sgcrv05q2sya4q562gph7hgp1hd66mgy7r1vnnz43zfjf";
+ version = "0.1.11.1";
+ sha256 = "0l6z1gkzwcpv89bxf5vgfrjb6gq2pj7sjjc53nvi5b9alx34zryk";
libraryHaskellDepends = [
base microlens mtl transformers transformers-compat
];
@@ -132553,8 +136213,8 @@ self: {
({ mkDerivation, base, containers, microlens, template-haskell }:
mkDerivation {
pname = "microlens-th";
- version = "0.4.1.1";
- sha256 = "0yvaabxs80fbmbg0yc1q7c147ks15bpn6fdq1zc0ay2pp06l06jv";
+ version = "0.4.1.3";
+ sha256 = "15a12cqxlgbcn1n73zwrxnp2vfm8b0ma0a0sdd8zmjbs8zy3np4f";
libraryHaskellDepends = [
base containers microlens template-haskell
];
@@ -132583,23 +136243,6 @@ self: {
}) {};
"microsoft-translator" = callPackage
- ({ mkDerivation, base, bytestring, http-api-data, http-client
- , http-client-tls, http-media, mtl, safe, servant, servant-client
- , text, time, xml
- }:
- mkDerivation {
- pname = "microsoft-translator";
- version = "0.1.0.0";
- sha256 = "1zs8pf154nmr7n38kwbd6n3g17j5khd6wdghk05nyv71fj9v7545";
- libraryHaskellDepends = [
- base bytestring http-api-data http-client http-client-tls
- http-media mtl safe servant servant-client text time xml
- ];
- description = "Bindings to the Microsoft Translator API";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "microsoft-translator_0_1_1" = callPackage
({ mkDerivation, base, bytestring, http-api-data, http-client
, http-client-tls, http-media, mtl, safe, servant, servant-client
, text, time, xml
@@ -132615,7 +136258,6 @@ self: {
homepage = "https://github.com/BlackBrane/microsoft-translator";
description = "Bindings to the Microsoft Translator API";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"microspec" = callPackage
@@ -133015,6 +136657,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "milena_0_5_2_1" = callPackage
+ ({ mkDerivation, base, bytestring, cereal, containers, digest, lens
+ , lifted-base, monad-control, mtl, murmur-hash, network, QuickCheck
+ , random, resource-pool, semigroups, tasty, tasty-hspec
+ , tasty-quickcheck, transformers, zlib
+ }:
+ mkDerivation {
+ pname = "milena";
+ version = "0.5.2.1";
+ sha256 = "1mylkqp8vha9gq7li5cir5h3i27zb573alxgxnvr1y938z2nimf2";
+ libraryHaskellDepends = [
+ base bytestring cereal containers digest lens lifted-base
+ monad-control mtl murmur-hash network random resource-pool
+ semigroups transformers zlib
+ ];
+ testHaskellDepends = [
+ base bytestring lens mtl network QuickCheck semigroups tasty
+ tasty-hspec tasty-quickcheck
+ ];
+ homepage = "https://github.com/adamflott/milena.git#readme";
+ description = "A Kafka client for Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mime" = callPackage
({ mkDerivation, base, text }:
mkDerivation {
@@ -133555,6 +137222,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "miso_0_12_0_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, http-api-data
+ , http-types, lucid, network-uri, servant, servant-lucid, text
+ , transformers, vector
+ }:
+ mkDerivation {
+ pname = "miso";
+ version = "0.12.0.0";
+ sha256 = "08d50apwcyym4crdnly97j1vwl85p9a5fr606x1mj8729pd0pwjb";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring containers http-api-data http-types lucid
+ network-uri servant servant-lucid text transformers vector
+ ];
+ homepage = "http://github.com/dmjio/miso";
+ description = "A tasty Haskell front-end framework";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"missing-foreign" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -133730,22 +137418,24 @@ self: {
"mmark" = callPackage
({ mkDerivation, aeson, base, case-insensitive, containers
- , criterion, data-default-class, deepseq, email-validate, foldl
- , hashable, hspec, hspec-megaparsec, html-entity-map, lucid
+ , criterion, data-default-class, deepseq, dlist, email-validate
+ , foldl, hashable, hspec, hspec-megaparsec, html-entity-map, lucid
, megaparsec, microlens, microlens-th, modern-uri, mtl
, parser-combinators, QuickCheck, text, text-metrics
, unordered-containers, weigh, yaml
}:
mkDerivation {
pname = "mmark";
- version = "0.0.3.0";
- sha256 = "13lfrs9pr3hyxsw2gmpwg4ggk2nqqnrn4cmllib7z5izalzps7jz";
+ version = "0.0.4.0";
+ sha256 = "05dslarsdfcp2im9w80ks52wzqcqq8ma23b69wdl8nyfbkmaj5ch";
+ revision = "2";
+ editedCabalFile = "1l2xljnasvgj3icc8dynsakyskd65c114gm4f94la3pv8ghcc3rg";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base case-insensitive containers data-default-class deepseq
- email-validate foldl hashable html-entity-map lucid megaparsec
- microlens microlens-th modern-uri mtl parser-combinators text
- text-metrics unordered-containers yaml
+ dlist email-validate foldl hashable html-entity-map lucid
+ megaparsec microlens microlens-th modern-uri mtl parser-combinators
+ text text-metrics unordered-containers yaml
];
testHaskellDepends = [
aeson base foldl hspec hspec-megaparsec lucid megaparsec modern-uri
@@ -133757,47 +137447,68 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "mmark_0_0_3_1" = callPackage
+ "mmark_0_0_5_3" = callPackage
({ mkDerivation, aeson, base, case-insensitive, containers
- , criterion, data-default-class, deepseq, email-validate, foldl
- , hashable, hspec, hspec-megaparsec, html-entity-map, lucid
+ , criterion, data-default-class, deepseq, dlist, email-validate
+ , foldl, hashable, hspec, hspec-megaparsec, html-entity-map, lucid
, megaparsec, microlens, microlens-th, modern-uri, mtl
, parser-combinators, QuickCheck, text, text-metrics
, unordered-containers, weigh, yaml
}:
mkDerivation {
pname = "mmark";
- version = "0.0.3.1";
- sha256 = "0q6abmml27qww95hzpck4mjshaxhz3pmpzgxdbg8bnaaa6prv0jp";
+ version = "0.0.5.3";
+ sha256 = "0i5x3rpsq9diqb1nagnswzcgi0sj8jwp73xi46hfwjnc656r955k";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base case-insensitive containers data-default-class deepseq
- email-validate foldl hashable html-entity-map lucid megaparsec
- microlens microlens-th modern-uri mtl parser-combinators text
- text-metrics unordered-containers yaml
+ dlist email-validate foldl hashable html-entity-map lucid
+ megaparsec microlens microlens-th modern-uri mtl parser-combinators
+ text text-metrics unordered-containers yaml
];
testHaskellDepends = [
aeson base foldl hspec hspec-megaparsec lucid megaparsec modern-uri
QuickCheck text
];
benchmarkHaskellDepends = [ base criterion text weigh ];
- homepage = "https://github.com/mrkkrp/mmark";
+ homepage = "https://github.com/mmark-md/mmark";
description = "Strict markdown processor for writers";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "mmark-cli" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, directory, gitrev, lucid
+ , megaparsec, mmark, mmark-ext, optparse-applicative, stache, text
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "mmark-cli";
+ version = "0.0.3.0";
+ sha256 = "0nb17k23bs21qi7a888qp81w682ax2qvih9fbvdkdh6c2n6yklrp";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ aeson base bytestring directory gitrev lucid megaparsec mmark
+ mmark-ext optparse-applicative stache text unordered-containers
+ ];
+ homepage = "https://github.com/mmark-md/mmark-cli";
+ description = "Command line interface to MMark markdown processor";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mmark-ext" = callPackage
({ mkDerivation, base, data-default-class, foldl, hspec, lucid
- , mmark, modern-uri, text
+ , microlens, mmark, modern-uri, text
}:
mkDerivation {
pname = "mmark-ext";
- version = "0.0.1.1";
- sha256 = "0wsilw9mlh77qvxgpzay09b8xfsjz3dbrabd1wvw0whwf2cnzpp7";
+ version = "0.0.1.2";
+ sha256 = "0f698yvlcbvq627advl832nlzl975jx462zg7pd8h43chdbj5qar";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- base data-default-class foldl lucid mmark modern-uri text
+ base data-default-class foldl lucid microlens mmark modern-uri text
];
testHaskellDepends = [
base data-default-class hspec lucid mmark text
@@ -133807,6 +137518,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "mmark-ext_0_2_0_0" = callPackage
+ ({ mkDerivation, base, foldl, hspec, lucid, microlens, mmark
+ , modern-uri, skylighting, text
+ }:
+ mkDerivation {
+ pname = "mmark-ext";
+ version = "0.2.0.0";
+ sha256 = "1ccfdjsn8z80x2m5p9q17r2hf14zj63nkxkrg9s7knwr1j08gj1k";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base foldl lucid microlens mmark modern-uri skylighting text
+ ];
+ testHaskellDepends = [ base hspec lucid mmark text ];
+ homepage = "https://github.com/mmark-md/mmark-ext";
+ description = "Commonly useful extensions for MMark markdown processor";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mmorph" = callPackage
({ mkDerivation, base, mtl, transformers, transformers-compat }:
mkDerivation {
@@ -133976,8 +137706,10 @@ self: {
}:
mkDerivation {
pname = "modern-uri";
- version = "0.1.2.0";
- sha256 = "0n8ihy43mc3m0j70nbr86bd1kgzbkcb0dx9g3ql40v66i66kfb29";
+ version = "0.1.2.1";
+ sha256 = "10y3ppcd4d987khk9jxaa0clkjssmvip2kpq63z8xcigvdiil91h";
+ revision = "1";
+ editedCabalFile = "1kgwf0y5p5imrkjga53yna4sy6jqk5x3v0zks24c4vb52mi2a19n";
libraryHaskellDepends = [
base bytestring containers contravariant deepseq exceptions
megaparsec profunctors QuickCheck template-haskell text
@@ -133993,6 +137725,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "modern-uri_0_2_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, contravariant
+ , criterion, deepseq, exceptions, hspec, hspec-megaparsec
+ , megaparsec, mtl, profunctors, QuickCheck, reflection, tagged
+ , template-haskell, text, weigh
+ }:
+ mkDerivation {
+ pname = "modern-uri";
+ version = "0.2.0.0";
+ sha256 = "01wq2w2kfy9zlpsh8pwcs61xjy3xdwbz6nd0skb6g3bigrqs2w8z";
+ revision = "1";
+ editedCabalFile = "1svq0ndnv5jfz3nhxwdx4vxim5sahfcryj5ik4l4x704jsjbl4bm";
+ libraryHaskellDepends = [
+ base bytestring containers contravariant deepseq exceptions
+ megaparsec mtl profunctors QuickCheck reflection tagged
+ template-haskell text
+ ];
+ testHaskellDepends = [
+ base bytestring hspec hspec-megaparsec megaparsec QuickCheck text
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring criterion deepseq megaparsec text weigh
+ ];
+ homepage = "https://github.com/mrkkrp/modern-uri";
+ description = "Modern library for working with URIs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"modify-fasta" = callPackage
({ mkDerivation, base, containers, fasta, mtl, optparse-applicative
, pipes, pipes-text, regex-tdfa, regex-tdfa-text, semigroups, split
@@ -134692,8 +138453,8 @@ self: {
}:
mkDerivation {
pname = "monad-logger";
- version = "0.3.26";
- sha256 = "0p7mdiv0n4wizcam2lw143szs584yzs0bq9lfrn90pgvz0q7k1ia";
+ version = "0.3.28.1";
+ sha256 = "15gpr6wgyqfiz780p8l4lfxmxnanpviyvkba20hdsx92czq64cgr";
libraryHaskellDepends = [
base blaze-builder bytestring conduit conduit-extra exceptions
fast-logger lifted-base monad-control monad-loops mtl resourcet stm
@@ -135220,8 +138981,8 @@ self: {
({ mkDerivation, base, mtl, transformers }:
mkDerivation {
pname = "monad-task";
- version = "0.1.0";
- sha256 = "01w3wqmsfl9w96kfpdiwfyghm2zjn70x78l436bzxfrcm1d3ayi8";
+ version = "0.2.0";
+ sha256 = "02qp31w0zgms07b13km3aiina4iqbzxkiajab3b0czmc17xv4kx4";
libraryHaskellDepends = [ base mtl transformers ];
homepage = "http://github.com/ninegua/monad-task";
description = "A monad transformer that turns event processing into co-routine programming";
@@ -135704,8 +139465,8 @@ self: {
}:
mkDerivation {
pname = "mongoDB";
- version = "2.3.0";
- sha256 = "024w6183nnaq30r9jnfiy5pjv422mnnkawqdgzgzafngi7sad322";
+ version = "2.3.0.1";
+ sha256 = "1snr144yk05p5l9ck5gfs4zawg2l8fd8slmzxsrd29w2x6pk7iqv";
libraryHaskellDepends = [
array base base16-bytestring base64-bytestring binary bson
bytestring conduit conduit-extra containers cryptohash
@@ -135725,6 +139486,38 @@ self: {
license = stdenv.lib.licenses.asl20;
}) {};
+ "mongoDB_2_3_0_2" = callPackage
+ ({ mkDerivation, array, base, base16-bytestring, base64-bytestring
+ , binary, bson, bytestring, conduit, conduit-extra, containers
+ , criterion, cryptohash, data-default-class, hashtables, hspec
+ , lifted-base, monad-control, mtl, network, nonce, old-locale
+ , parsec, pureMD5, random, random-shuffle, resourcet, tagged, text
+ , time, tls, transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "mongoDB";
+ version = "2.3.0.2";
+ sha256 = "10gl9116hkjvm12ysgr1pi1vlk4d9jbkxgrcql6qhyvpsgv7s7bd";
+ libraryHaskellDepends = [
+ array base base16-bytestring base64-bytestring binary bson
+ bytestring conduit conduit-extra containers cryptohash
+ data-default-class hashtables lifted-base monad-control mtl network
+ nonce parsec pureMD5 random random-shuffle resourcet tagged text
+ time tls transformers transformers-base
+ ];
+ testHaskellDepends = [ base hspec mtl old-locale text time ];
+ benchmarkHaskellDepends = [
+ array base base16-bytestring base64-bytestring binary bson
+ bytestring containers criterion cryptohash hashtables lifted-base
+ monad-control mtl network nonce parsec random random-shuffle text
+ transformers-base
+ ];
+ homepage = "https://github.com/mongodb-haskell/mongodb";
+ description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS";
+ license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mongodb-queue" = callPackage
({ mkDerivation, base, data-default, hspec, lifted-base
, monad-control, mongoDB, network, text, transformers
@@ -135816,15 +139609,15 @@ self: {
}) {};
"mono-traversable" = callPackage
- ({ mkDerivation, base, bytestring, containers, criterion, foldl
+ ({ mkDerivation, base, bytestring, containers, foldl, gauge
, hashable, hspec, HUnit, mwc-random, QuickCheck, semigroups, split
, text, transformers, unordered-containers, vector
, vector-algorithms
}:
mkDerivation {
pname = "mono-traversable";
- version = "1.0.5.0";
- sha256 = "1zrn7wp938di4mdc8q0z4imgg2hky7ap98ralzf8rdgqfrrvfpa6";
+ version = "1.0.8.1";
+ sha256 = "0d9r6z3a8gkhl1j5yq8hjg5wcndi5yixxm9xwbrf4z6pgdwr04lr";
libraryHaskellDepends = [
base bytestring containers hashable split text transformers
unordered-containers vector vector-algorithms
@@ -135833,37 +139626,12 @@ self: {
base bytestring containers foldl hspec HUnit QuickCheck semigroups
text transformers unordered-containers vector
];
- benchmarkHaskellDepends = [ base criterion mwc-random vector ];
+ benchmarkHaskellDepends = [ base gauge mwc-random vector ];
homepage = "https://github.com/snoyberg/mono-traversable#readme";
description = "Type classes for mapping, folding, and traversing monomorphic containers";
license = stdenv.lib.licenses.mit;
}) {};
- "mono-traversable_1_0_6_0" = callPackage
- ({ mkDerivation, base, bytestring, containers, criterion, foldl
- , hashable, hspec, HUnit, mwc-random, QuickCheck, semigroups, split
- , text, transformers, unordered-containers, vector
- , vector-algorithms
- }:
- mkDerivation {
- pname = "mono-traversable";
- version = "1.0.6.0";
- sha256 = "1as3s9aj9pc4hmi588lard2r1p716hbr18arjzlh3442z8z0610m";
- libraryHaskellDepends = [
- base bytestring containers hashable split text transformers
- unordered-containers vector vector-algorithms
- ];
- testHaskellDepends = [
- base bytestring containers foldl hspec HUnit QuickCheck semigroups
- text transformers unordered-containers vector
- ];
- benchmarkHaskellDepends = [ base criterion mwc-random vector ];
- homepage = "https://github.com/snoyberg/mono-traversable#readme";
- description = "Type classes for mapping, folding, and traversing monomorphic containers";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"mono-traversable-instances" = callPackage
({ mkDerivation, base, comonad, containers, dlist, dlist-instances
, mono-traversable, semigroupoids, semigroups, transformers
@@ -136074,6 +139842,7 @@ self: {
homepage = "http://github.com/bumptech/montage";
description = "Riak Resolution Proxy";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {riak-bump = null; stats-web = null;};
@@ -136097,6 +139866,7 @@ self: {
homepage = "http://github.com/bumptech/montage-haskell-client";
description = "Riak Resolution Proxy Client";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {riak-bump = null; stats-web = null;};
@@ -136187,6 +139957,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "more-containers" = callPackage
+ ({ mkDerivation, base, containers, hspec }:
+ mkDerivation {
+ pname = "more-containers";
+ version = "0.1.0.5";
+ sha256 = "1q1fs56a61ryild0zp43ash5mm83162v5v61x29vmc3hv1h79bnm";
+ libraryHaskellDepends = [ base containers ];
+ testHaskellDepends = [ base containers hspec ];
+ homepage = "https://github.com/mtth/more-containers#readme";
+ description = "A few more collections";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"more-extensible-effects" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -136268,8 +140051,8 @@ self: {
}:
mkDerivation {
pname = "morte";
- version = "1.6.13";
- sha256 = "03vjkp3ngbdhv5ib7jwdwx23bklm32m3gmvq63r2cxagydl1267m";
+ version = "1.6.14";
+ sha256 = "1wrm982gxm8hg2x8srm5ibp2s8752apsz2ljlldway2n49cf2bsm";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -136401,21 +140184,21 @@ self: {
"movie-monad" = callPackage
({ mkDerivation, base, filepath, gi-gdk, gi-gdkpixbuf, gi-glib
- , gi-gobject, gi-gst, gi-gstvideo, gi-gtk, haskell-gi-base
- , MissingH, network-uri, process, system-fileio, system-filepath
- , text, time
+ , gi-gobject, gi-gst, gi-gstvideo, gi-gtk, haskell-gi
+ , haskell-gi-base, MissingH, network-uri, process, system-fileio
+ , system-filepath, text, time
}:
mkDerivation {
pname = "movie-monad";
- version = "0.0.2.0";
- sha256 = "0cf4hrakz6cw1c3izrrckhjjhn8hd8cn9gfh41v2xi8kcn6bbciw";
+ version = "0.0.4.0";
+ sha256 = "0wdnf8gm3h7ykdmnwc7jw1y0rs27izzh1kz2gkgi3g2dyllh7sq3";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
executableHaskellDepends = [
base filepath gi-gdk gi-gdkpixbuf gi-glib gi-gobject gi-gst
- gi-gstvideo gi-gtk haskell-gi-base MissingH network-uri process
- system-fileio system-filepath text time
+ gi-gstvideo gi-gtk haskell-gi haskell-gi-base MissingH network-uri
+ process system-fileio system-filepath text time
];
homepage = "https://github.com/lettier/movie-monad";
description = "Plays videos using GStreamer and GTK+";
@@ -136993,13 +140776,13 @@ self: {
}) {};
"mtl-tf" = callPackage
- ({ mkDerivation, base }:
+ ({ mkDerivation, base, transformers }:
mkDerivation {
pname = "mtl-tf";
- version = "0.1";
- sha256 = "0qfmswdkj95bh6wkic8hh002wsxqlrylw45k6w9iyzv4saqnl22f";
- libraryHaskellDepends = [ base ];
- description = "Monad transformer library using type families";
+ version = "0.2.1.0";
+ sha256 = "0z9vinxhbbg4lpf8mxi0h3jbz4kv6x3ih05q44kjh4z8mpm9szzy";
+ libraryHaskellDepends = [ base transformers ];
+ description = "Monad Transformer Library with Type Families";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -137169,15 +140952,33 @@ self: {
}) {};
"mulang" = callPackage
- ({ mkDerivation, aeson, base, bytestring, haskell-src, hspec }:
+ ({ 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
+ }:
mkDerivation {
pname = "mulang";
- version = "0.1.0.0";
- sha256 = "1pxdrbpy7n0aimrbm4x2vn98v9va76pyr5hw06361d6fhnfq5wjx";
- libraryHaskellDepends = [ aeson base bytestring haskell-src ];
- testHaskellDepends = [ aeson base bytestring haskell-src hspec ];
- description = "The Mu Language, a non-computable extended Lambda Calculus";
- license = stdenv.lib.licenses.mit;
+ version = "3.6.1";
+ sha256 = "0phpy2dickbam17n6ppq10qlfjxmhf1c7jb67qjk7672rxyrqfzb";
+ 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
+ ];
+ libraryToolDepends = [ alex happy ];
+ executableHaskellDepends = [
+ aeson base bytestring neat-interpolation process text
+ ];
+ executableToolDepends = [ alex happy ];
+ testHaskellDepends = [
+ aeson base bytestring hspec neat-interpolation text
+ ];
+ testToolDepends = [ alex happy ];
+ description = "An intermediate language designed to perform advanced code analysis";
+ license = "GPL";
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -138246,6 +142047,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "mwc-probability_2_0_2" = callPackage
+ ({ mkDerivation, base, mwc-random, primitive, transformers }:
+ mkDerivation {
+ pname = "mwc-probability";
+ version = "2.0.2";
+ sha256 = "1v2k0vpz33xmf58dhidwnjjvhkczfqizlcgwalf1vk19sw1ls3x5";
+ libraryHaskellDepends = [ base mwc-random primitive transformers ];
+ homepage = "http://github.com/jtobin/mwc-probability";
+ description = "Sampling function-based probability distributions";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"mwc-random" = callPackage
({ mkDerivation, base, HUnit, math-functions, primitive, QuickCheck
, statistics, test-framework, test-framework-hunit
@@ -138683,6 +142497,19 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "n-ary-functor" = callPackage
+ ({ mkDerivation, base, doctest, doctest-discover }:
+ mkDerivation {
+ pname = "n-ary-functor";
+ version = "0.1.0.0";
+ sha256 = "1v1ki6mfgj7jhj7w94w15sisd57akwlb0c2s3bczvj47f7f8p7vi";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base doctest doctest-discover ];
+ homepage = "https://github.com/gelisam/n-ary-functor";
+ description = "An n-ary version of Functor";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
"n-m" = callPackage
({ mkDerivation, base, HSH, mtl, process }:
mkDerivation {
@@ -138803,12 +142630,46 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "nakadi-client_0_4_1_0" = callPackage
+ ({ mkDerivation, aeson, aeson-casing, async, base, bytestring
+ , classy-prelude, conduit, conduit-combinators, conduit-extra
+ , containers, hashable, http-client, http-client-tls, http-conduit
+ , http-types, iso8601-time, lens, lens-aeson, monad-logger, mtl
+ , random, resourcet, retry, safe-exceptions, say, scientific, split
+ , stm, tasty, tasty-hunit, template-haskell, text, time
+ , transformers, unordered-containers, uuid, vector, wai, warp
+ }:
+ mkDerivation {
+ pname = "nakadi-client";
+ version = "0.4.1.0";
+ sha256 = "08f2gp9fvc6dlsqb6z50rpfb8rjnlwv2001q5aixlkslhhh0jhr7";
+ libraryHaskellDepends = [
+ aeson aeson-casing base bytestring conduit conduit-combinators
+ conduit-extra containers hashable http-client http-client-tls
+ http-conduit http-types iso8601-time lens monad-logger mtl
+ resourcet retry safe-exceptions scientific split template-haskell
+ text time transformers unordered-containers uuid vector
+ ];
+ testHaskellDepends = [
+ aeson aeson-casing async base bytestring classy-prelude conduit
+ conduit-combinators conduit-extra containers hashable http-client
+ http-client-tls http-conduit http-types iso8601-time lens
+ lens-aeson monad-logger mtl random resourcet retry safe-exceptions
+ say scientific split stm tasty tasty-hunit template-haskell text
+ time transformers unordered-containers uuid vector wai warp
+ ];
+ homepage = "https://github.com/mtesseract/nakadi-haskell#readme";
+ description = "Client library for the Nakadi Event Broker";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"namecoin-update" = callPackage
({ mkDerivation, aeson, attoparsec, base, lens, text, wreq }:
mkDerivation {
pname = "namecoin-update";
- version = "0.2.1.0";
- sha256 = "1vz4n57xk8zbyqiwsm69mls31f36ng0bh9av5axi3rq7car2jlxz";
+ version = "0.2.2.0";
+ sha256 = "09g3mjvmfgynlna17nvynh1gwzkski0kg07d82zvdmd7j8qvdrvg";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ aeson attoparsec base lens text wreq ];
@@ -139052,10 +142913,11 @@ self: {
({ mkDerivation, base, hspec, silently }:
mkDerivation {
pname = "nanospec";
- version = "0.2.1";
- sha256 = "0jq2l1lmy4hcl6r975xcg86xr1y7jfxr3qn27ibsmjbzlnxdkjyv";
+ version = "0.2.2";
+ sha256 = "1rcmhl9bhyfvanalnf1r86wkx6rq6wdvagnw1h011jcnnb1cq56g";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base hspec silently ];
+ homepage = "https://github.com/hspec/nanospec#readme";
description = "A lightweight implementation of a subset of Hspec's API";
license = stdenv.lib.licenses.mit;
}) {};
@@ -139302,8 +143164,8 @@ self: {
pname = "natural-transformation";
version = "0.4";
sha256 = "1by8xwjc23l6pa9l4iv7zp82dykpll3vc3hgxk0pgva724n8xhma";
- revision = "2";
- editedCabalFile = "1j90pd1zznr18966axskad5w0kx4dvqg62r65rmw1ihqwxm1ndix";
+ revision = "3";
+ editedCabalFile = "0z6vmdgz9r2fbgzh2xvrw6cy5h7m1jv911jah615s6xgr52smhrf";
libraryHaskellDepends = [ base ];
testHaskellDepends = [
base containers quickcheck-instances tasty tasty-quickcheck
@@ -139361,8 +143223,8 @@ self: {
}:
mkDerivation {
pname = "nbt";
- version = "0.6";
- sha256 = "0lcnxlj0cfrw840saay3lxyjmc00rxhksqa6ccyhg8119y20gcjd";
+ version = "0.7";
+ sha256 = "10iby4sg50la1k635ygdqf5h50rvidl0k871brdjs8b9hi1vlv5r";
enableSeparateDataOutput = true;
libraryHaskellDepends = [ array base bytestring cereal text ];
testHaskellDepends = [
@@ -139596,8 +143458,8 @@ self: {
}:
mkDerivation {
pname = "nemesis";
- version = "2016.3.19";
- sha256 = "0dc62gnpf0brcl8dxxnhmmagd95xf61mq5bij5vgr8jwiisq69d7";
+ version = "2018.1.27";
+ sha256 = "197ajy30wxhfccn0h0crwkgbl7zhlb3w37h4zxplyxz2az1s1bvr";
libraryHaskellDepends = [
base containers directory dlist Glob lens mtl process time
];
@@ -139700,6 +143562,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "nest" = callPackage
+ ({ mkDerivation, base, bytestring, containers, hedgehog, text
+ , transformers, unix
+ }:
+ mkDerivation {
+ pname = "nest";
+ version = "0.0.1";
+ sha256 = "1ndd93z9yqa1slhb8wq3j5fr3rc2fna0cb5xqh9s3dynb966zqqk";
+ libraryHaskellDepends = [
+ base bytestring containers text transformers unix
+ ];
+ testHaskellDepends = [ base bytestring containers hedgehog text ];
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"nested-routes" = callPackage
({ mkDerivation, attoparsec, base, bifunctors, bytestring
, composition-extra, errors, exceptions, extractable-singleton
@@ -139801,6 +143679,7 @@ self: {
homepage = "http://phaul.hobby-site.org/node/4123";
description = "Concurrent over the network execution library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {ghc-binary = null;};
@@ -140146,17 +144025,23 @@ self: {
}) {};
"netwire-input-glfw" = callPackage
- ({ mkDerivation, base, containers, GLFW-b, mtl, netwire-input, stm
+ ({ mkDerivation, array, base, bytestring, containers, directory
+ , filepath, GLFW-b, mtl, netwire, netwire-input, OpenGL, stm
+ , transformers
}:
mkDerivation {
pname = "netwire-input-glfw";
- version = "0.0.6";
- sha256 = "01nxv6bkwhafk5dg85lg5ggcvqlhv2kiwnm75zbscp002pwmq2fx";
+ version = "0.0.7";
+ sha256 = "1rsvhwxrr00qpff7adwiwci5fl6hbv8r8mvxhkq3az235w9pll8g";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
base containers GLFW-b mtl netwire-input stm
];
+ executableHaskellDepends = [
+ array base bytestring containers directory filepath GLFW-b mtl
+ netwire netwire-input OpenGL transformers
+ ];
homepage = "https://www.github.com/Mokosha/netwire-input-glfw";
description = "GLFW instance of netwire-input";
license = stdenv.lib.licenses.mit;
@@ -140226,10 +144111,10 @@ self: {
}:
mkDerivation {
pname = "network";
- version = "2.6.3.2";
- sha256 = "1dn092zfqmxfbzln6d0khka4gizzjivf2yja9w9hwb5g9q3pfi1m";
+ version = "2.6.3.3";
+ sha256 = "1xa0jif154i26a465bp2wpvsm891zhy98y5zp9zdbl39m6q6hrkp";
revision = "1";
- editedCabalFile = "17234sy0vqic8g9wg8gmfmc0by50scjwbdk8bkcl9kjf3fvs4nyx";
+ editedCabalFile = "0nh9sbbyj3jdm2ybffsxa3c4mdywy3wq48sg8d5ylkr2s6cmbbpz";
libraryHaskellDepends = [ base bytestring unix ];
testHaskellDepends = [
base bytestring doctest HUnit test-framework test-framework-hunit
@@ -140332,6 +144217,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "network-arbitrary" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, hspec
+ , hspec-discover, http-media, http-types, network-uri, QuickCheck
+ , test-invariant
+ }:
+ mkDerivation {
+ pname = "network-arbitrary";
+ version = "0.3.0.0";
+ sha256 = "13mr3gxgc4g1ij0fj8xwn1md0hi9l1gpka06y072ffh8ib7qg98c";
+ libraryHaskellDepends = [
+ base bytestring http-media http-types network-uri QuickCheck
+ ];
+ testHaskellDepends = [
+ base bytestring case-insensitive hspec http-media http-types
+ network-uri QuickCheck test-invariant
+ ];
+ testToolDepends = [ hspec-discover ];
+ homepage = "https://github.com/alunduil/network-arbitrary";
+ description = "Arbitrary Instances for Network Types";
+ license = stdenv.lib.licenses.mit;
+ maintainers = with stdenv.lib.maintainers; [ alunduil ];
+ }) {};
+
"network-attoparsec" = callPackage
({ mkDerivation, attoparsec, base, bytestring, enclosed-exceptions
, exceptions, hspec, lifted-base, monad-control, mtl, network
@@ -140681,17 +144589,20 @@ self: {
"network-msgpack-rpc" = callPackage
({ mkDerivation, async, base, binary, binary-conduit, bytestring
- , conduit, conduit-extra, data-default-class, data-msgpack
+ , conduit, conduit-extra, data-default-class
+ , data-default-instances-base, data-msgpack, data-msgpack-types
, exceptions, hspec, MissingH, monad-control, mtl, network, tagged
+ , text
}:
mkDerivation {
pname = "network-msgpack-rpc";
- version = "0.0.3";
- sha256 = "02r0qciia05sv3rkdfh4akl10m5w2ay2rc7hxfh2cvhj5789rgvl";
+ version = "0.0.4";
+ sha256 = "0b9llxfgl2lcjlcz9ai6k6yhrlip6shd0wd56mfgbvv3lbd5n62r";
libraryHaskellDepends = [
base binary binary-conduit bytestring conduit conduit-extra
- data-default-class data-msgpack exceptions MissingH monad-control
- mtl network tagged
+ data-default-class data-default-instances-base data-msgpack
+ data-msgpack-types exceptions MissingH monad-control mtl network
+ tagged text
];
testHaskellDepends = [ async base bytestring hspec mtl network ];
homepage = "http://msgpack.org/";
@@ -141097,21 +145008,23 @@ self: {
}) {};
"network-uri-json" = callPackage
- ({ mkDerivation, aeson, base, hspec, network-uri, QuickCheck
- , test-invariant, text
+ ({ mkDerivation, aeson, base, hspec, hspec-discover
+ , network-arbitrary, network-uri, QuickCheck, test-invariant, text
}:
mkDerivation {
pname = "network-uri-json";
- version = "0.1.0.0";
- sha256 = "0q4h37zf8n56s7jjd5nalk8q6q5hh5d612p7w9agjqwjhl26p782";
+ version = "0.1.2.1";
+ sha256 = "1xnlyghpyrbllzzr8bdmzgm12lsa1sg4miynh6d4awdppai9y433";
libraryHaskellDepends = [ aeson base network-uri text ];
testHaskellDepends = [
- aeson base hspec network-uri QuickCheck test-invariant text
+ aeson base hspec network-arbitrary network-uri QuickCheck
+ test-invariant text
];
+ testToolDepends = [ hspec-discover ];
homepage = "https://github.com/alunduil/network-uri-json";
description = "FromJSON and ToJSON Instances for Network.URI";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
+ maintainers = with stdenv.lib.maintainers; [ alunduil ];
}) {};
"network-uri-static" = callPackage
@@ -141181,8 +145094,8 @@ self: {
pname = "networked-game";
version = "0.1.0.1";
sha256 = "12sy97cgqrsmqywh0cznp8wbsw8z2yahlfalsjy32qarcz44banz";
- revision = "2";
- editedCabalFile = "0bnf9c2f176f0sgxa7h78ikd6hn3rxz0xz31sjm0yzx1r7gaxzrw";
+ revision = "4";
+ editedCabalFile = "1rcqsw6f6b1a7sfk38hvil0278cxsq071jwwvfcsi6qhy6kb4jh0";
libraryHaskellDepends = [
base binary bytestring containers network time transformers
];
@@ -141367,13 +145280,15 @@ self: {
}) {};
"newtype-generics" = callPackage
- ({ mkDerivation, base, hspec, HUnit, transformers }:
+ ({ mkDerivation, base, hspec, hspec-discover, HUnit, transformers
+ }:
mkDerivation {
pname = "newtype-generics";
version = "0.5.1";
sha256 = "1cm9v5agz6dmqd2ijwl1llgabihk49zjvx0wxrvhlmdfj6b44gr7";
libraryHaskellDepends = [ base transformers ];
testHaskellDepends = [ base hspec HUnit ];
+ testToolDepends = [ hspec-discover ];
description = "A typeclass and set of functions for working with newtypes, with generics support";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -141483,15 +145398,16 @@ self: {
}) {};
"ngx-export" = callPackage
- ({ mkDerivation, async, base, binary, bytestring, monad-loops
- , template-haskell, unix
+ ({ mkDerivation, async, base, binary, bytestring, deepseq
+ , monad-loops, template-haskell, unix
}:
mkDerivation {
pname = "ngx-export";
- version = "0.9.1.2";
- sha256 = "1428pkzj7kam7ya21fb3qchq95lvp6dp9dnh5qj41nkw9x5dz517";
+ version = "1.1.0";
+ sha256 = "1d3xz1jsvnr0rg5y0rpkrlwzng589abq8w5ylg7d5pmr75ih2a0n";
libraryHaskellDepends = [
- async base binary bytestring monad-loops template-haskell unix
+ async base binary bytestring deepseq monad-loops template-haskell
+ unix
];
homepage = "http://github.com/lyokha/nginx-haskell-module";
description = "Helper module for Nginx haskell module";
@@ -141539,21 +145455,22 @@ self: {
"nice-html" = callPackage
({ mkDerivation, base, bifunctors, blaze-html, blaze-markup
- , bytestring, criterion, data-default-class, deepseq, free, lucid
- , pretty-show, recursion-schemes, template-haskell, text
- , transformers, vector, weigh
+ , bytestring, containers, criterion, data-default-class, deepseq
+ , free, lens, lucid, pretty-show, recursion-schemes, shakespeare
+ , template-haskell, text, transformers, type-of-html, vector, weigh
}:
mkDerivation {
pname = "nice-html";
- version = "0.3.0";
- sha256 = "1ns6qrzm9lwbgjcr7mw58g0qivbqac4yxisvbfy9j2cq3dqzm6d3";
+ version = "0.4.1";
+ sha256 = "117wrpg4fgh69bqgdr9jmj68izd4jk28lx91pvsj2425ajhdfsma";
libraryHaskellDepends = [
- base bifunctors blaze-markup bytestring data-default-class deepseq
- free recursion-schemes template-haskell text transformers vector
+ base bifunctors blaze-markup bytestring containers
+ data-default-class deepseq free lens recursion-schemes
+ template-haskell text transformers vector
];
benchmarkHaskellDepends = [
base blaze-html blaze-markup bytestring criterion lucid pretty-show
- text weigh
+ shakespeare text transformers type-of-html weigh
];
homepage = "https://github.com/mikeplus64/nice-html#readme";
description = "A fast and nice HTML templating library with distinct compilation/rendering phases";
@@ -141696,8 +145613,8 @@ self: {
}:
mkDerivation {
pname = "nix-deploy";
- version = "1.0.0";
- sha256 = "0qvf83kai3fa2s5xf6az2j1gxhiannvw569fnd2lylhcmjffl3j5";
+ version = "1.0.2";
+ sha256 = "07cirn4gaaarw5va128f63jp2q7jlghmg4kclya4fvapx963qbya";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -141739,8 +145656,8 @@ self: {
}:
mkDerivation {
pname = "nix-diff";
- version = "1.0.0";
- sha256 = "1dds8r7ld64zl6hba8z3dij1kiacg6xqxlv85nhm2lf6lm9257i8";
+ version = "1.0.1";
+ sha256 = "0xk8ggng32czhy4wxgzw7g28xj18jcbncmfshviqlw17rccrm2fx";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -141771,17 +145688,17 @@ self: {
}) {};
"nix-paths" = callPackage
- ({ mkDerivation, base, nix, nix-hash, process }:
+ ({ mkDerivation, base, nix, process }:
mkDerivation {
pname = "nix-paths";
version = "1.0.1";
sha256 = "1y09wl1ihxmc9p926g595f70pdcsx78r3q5n5rna23lpq8xicdxb";
libraryHaskellDepends = [ base process ];
- libraryToolDepends = [ nix nix-hash ];
+ libraryToolDepends = [ nix ];
homepage = "https://github.com/peti/nix-paths";
description = "Knowledge of Nix's installation directories";
license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) nix; nix-hash = null;};
+ }) {inherit (pkgs) nix;};
"nixfromnpm" = callPackage
({ mkDerivation, aeson, ansi-terminal, base, bytestring
@@ -141846,8 +145763,8 @@ self: {
({ mkDerivation, base, nlopt, vector }:
mkDerivation {
pname = "nlopt-haskell";
- version = "0.1.0.0";
- sha256 = "0skh0bsms2nsw3dwi4ibjs579bbpc8ya158nrhyn3yxgdx79qgnj";
+ version = "0.1.1.0";
+ sha256 = "1jgszhkr6xc94rjasrhbfm618yz5l37zkibaxycn50fzvsilgfgg";
libraryHaskellDepends = [ base vector ];
librarySystemDepends = [ nlopt ];
testHaskellDepends = [ base vector ];
@@ -141928,6 +145845,7 @@ self: {
homepage = "https://github.com/v0d1ch/nmis-parser#readme";
description = "NMIS file parser";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {Nmis = null;};
@@ -142191,6 +146109,7 @@ self: {
homepage = "http://www.nomyx.net";
description = "Web gui for Nomyx";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {nomyx-auth = null;};
@@ -142369,6 +146288,8 @@ self: {
pname = "normalization-insensitive";
version = "2.0.1";
sha256 = "00nbha984yg4lxnpkyd3q0gbywf7xn5z5ixy3cr9ksn05w6blm1v";
+ revision = "1";
+ editedCabalFile = "1zaqbgrfy33y2d9ix178mhyysyffsia0hbmg77gcjmvv32b44m6j";
libraryHaskellDepends = [
base bytestring deepseq hashable text unicode-transforms
];
@@ -142583,6 +146504,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "nqe" = callPackage
+ ({ mkDerivation, async, base, bytestring, conduit, conduit-extra
+ , containers, exceptions, hspec, lifted-async, lifted-base
+ , monad-control, stm, stm-conduit, text, transformers-base
+ }:
+ mkDerivation {
+ pname = "nqe";
+ version = "0.1.0.0";
+ sha256 = "1cg9f0bjf8sar3scln73ij0av4jwwv8ki44fdh1dbhcy1c9fn5d4";
+ libraryHaskellDepends = [
+ async base bytestring conduit conduit-extra containers lifted-async
+ lifted-base monad-control stm transformers-base
+ ];
+ testHaskellDepends = [
+ async base bytestring conduit conduit-extra exceptions hspec stm
+ stm-conduit text
+ ];
+ homepage = "https://github.com/xenog/nqe#readme";
+ description = "Concurrency library in the style of Erlang/OTP";
+ license = stdenv.lib.licenses.publicDomain;
+ }) {};
+
"nsis" = callPackage
({ mkDerivation, base, directory, process, transformers, uniplate
}:
@@ -142637,6 +146580,7 @@ self: {
homepage = "https://github.com/zjhmale/ntha";
description = "A tiny statically typed functional programming language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"nthable" = callPackage
@@ -143023,8 +146967,8 @@ self: {
}:
mkDerivation {
pname = "numhask";
- version = "0.1.3";
- sha256 = "1jycpcdidhc8zh64j67pb87drggmwdmja5klwm1wbdcvnsw4nzm6";
+ version = "0.1.4.0";
+ sha256 = "1324d4fqsjidrq3i0n869a5xq1w1nl2q2lpcf7bpb5a7wgmsfmgj";
libraryHaskellDepends = [
base protolude QuickCheck tasty tasty-quickcheck
];
@@ -143038,20 +146982,47 @@ self: {
}) {};
"numhask-array" = callPackage
- ({ mkDerivation, adjunctions, base, deepseq, distributive, doctest
- , ghc-typelits-natnormalise, numhask, protolude, singletons
+ ({ mkDerivation, accelerate, accelerate-llvm
+ , accelerate-llvm-native, adjunctions, base, deepseq, dimensions
+ , distributive, doctest, ghc-typelits-natnormalise, numhask
+ , protolude, QuickCheck, singletons, tasty, tasty-quickcheck
, typelits-witnesses, vector
}:
mkDerivation {
pname = "numhask-array";
- version = "0.0.2";
- sha256 = "0gbmwkpxdp1flzyndsqc5zgm2nlrpc8q4s0d2z8pws8g2gyymyj9";
+ version = "0.1.0.0";
+ sha256 = "0m8xgdizpw80dxhbdx45bhn8m71a4lk2zy6ckczrly02g272mqxv";
libraryHaskellDepends = [
- adjunctions base deepseq distributive ghc-typelits-natnormalise
- numhask protolude singletons typelits-witnesses vector
+ accelerate accelerate-llvm accelerate-llvm-native adjunctions base
+ deepseq dimensions distributive ghc-typelits-natnormalise numhask
+ protolude QuickCheck singletons typelits-witnesses vector
];
- testHaskellDepends = [ base doctest numhask ];
- homepage = "https://github.com/tonyday567/numhask-array";
+ testHaskellDepends = [
+ base doctest numhask QuickCheck tasty tasty-quickcheck
+ ];
+ homepage = "https://github.com/tonyday567/numhask-array#readme";
+ description = "See readme.md";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "numhask-histogram" = callPackage
+ ({ mkDerivation, base, containers, doctest, foldl, HUnit, numhask
+ , numhask-range, protolude, QuickCheck, tasty, tasty-hunit
+ , tasty-quickcheck, tdigest
+ }:
+ mkDerivation {
+ pname = "numhask-histogram";
+ version = "0.0.0.1";
+ sha256 = "1a7kd8va59rzsfsxin5m785ihpka3al53kfv16cz9p7kw9bjpanf";
+ libraryHaskellDepends = [
+ base containers foldl numhask numhask-range protolude tdigest
+ ];
+ testHaskellDepends = [
+ base doctest HUnit protolude QuickCheck tasty tasty-hunit
+ tasty-quickcheck
+ ];
+ homepage = "https://github.com/tonyday567/numhask-histogram#readme";
description = "See readme.md";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -143059,19 +147030,17 @@ self: {
"numhask-range" = callPackage
({ mkDerivation, adjunctions, base, distributive, doctest, numhask
- , protolude, QuickCheck, semigroupoids, tasty, tasty-quickcheck
+ , protolude, QuickCheck, semigroupoids, tasty
}:
mkDerivation {
pname = "numhask-range";
- version = "0.1.2";
- sha256 = "0rz2h4glfrc0h26f5idfv7966b95fm96bai1iwzkz0f3xmfvy8a0";
+ version = "0.1.3.0";
+ sha256 = "1h42p48ridvvaxzjjh17pfjmfw9sjlzlmippi952m7jf1rfjxjpi";
libraryHaskellDepends = [
adjunctions base distributive numhask protolude QuickCheck
semigroupoids
];
- testHaskellDepends = [
- base doctest numhask tasty tasty-quickcheck
- ];
+ testHaskellDepends = [ base doctest numhask tasty ];
homepage = "https://github.com/tonyday567/numhask-range#readme";
description = "Numbers that are range representations";
license = stdenv.lib.licenses.bsd3;
@@ -143146,7 +147115,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "nvim-hs" = callPackage
+ "nvim-hs_0_2_4" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, cereal
, cereal-conduit, conduit, conduit-extra, containers, data-default
, deepseq, directory, dyre, exceptions, filepath, foreign-store
@@ -143183,6 +147152,46 @@ self: {
homepage = "https://github.com/neovimhaskell/nvim-hs";
description = "Haskell plugin backend for neovim";
license = stdenv.lib.licenses.asl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "nvim-hs" = callPackage
+ ({ mkDerivation, ansi-wl-pprint, base, bytestring, cereal
+ , cereal-conduit, conduit, conduit-extra, containers, data-default
+ , deepseq, directory, dyre, exceptions, filepath, foreign-store
+ , hslogger, hspec, hspec-discover, HUnit, lifted-base, megaparsec
+ , messagepack, monad-control, mtl, network, optparse-applicative
+ , process, QuickCheck, resourcet, setenv, stm, streaming-commons
+ , template-haskell, text, time, time-locale-compat, transformers
+ , transformers-base, utf8-string, void
+ }:
+ mkDerivation {
+ pname = "nvim-hs";
+ version = "0.2.5";
+ sha256 = "1qiypd9cn80zjk38p572rbyfsrlff6a2qwvfj7ck3jdj5vv1dq2b";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ ansi-wl-pprint base bytestring cereal cereal-conduit conduit
+ conduit-extra containers data-default deepseq directory dyre
+ exceptions filepath foreign-store hslogger lifted-base megaparsec
+ messagepack monad-control mtl network optparse-applicative process
+ resourcet setenv stm streaming-commons template-haskell text time
+ time-locale-compat transformers transformers-base utf8-string void
+ ];
+ executableHaskellDepends = [ base data-default ];
+ testHaskellDepends = [
+ ansi-wl-pprint base bytestring cereal cereal-conduit conduit
+ conduit-extra containers data-default directory dyre exceptions
+ filepath foreign-store hslogger hspec hspec-discover HUnit
+ lifted-base megaparsec messagepack mtl network optparse-applicative
+ process QuickCheck resourcet setenv stm streaming-commons
+ template-haskell text time time-locale-compat transformers
+ transformers-base utf8-string
+ ];
+ homepage = "https://github.com/neovimhaskell/nvim-hs";
+ description = "Haskell plugin backend for neovim";
+ license = stdenv.lib.licenses.asl20;
}) {};
"nvim-hs-contrib" = callPackage
@@ -143230,8 +147239,8 @@ self: {
}:
mkDerivation {
pname = "nvvm";
- version = "0.8.0.1";
- sha256 = "0nvxsmi5xr7n4ifizqd76bn7990yq5dysn0xk2pvyvd1ddazsrz1";
+ version = "0.8.0.2";
+ sha256 = "05px0bxqqxph5ancvklg1fmp6p7c15vghzrwq8alsfjg7lvrd933";
setupHaskellDepends = [
base Cabal cuda directory filepath template-haskell
];
@@ -143294,6 +147303,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "o-clock" = callPackage
+ ({ mkDerivation, base, deepseq, gauge, ghc-prim, hedgehog
+ , markdown-unlit, tasty, tasty-hedgehog, tasty-hspec, tiempo
+ , time-units, transformers, type-spec
+ }:
+ mkDerivation {
+ pname = "o-clock";
+ version = "0.0.0";
+ sha256 = "0nswlj9anwmhl6vgw5gpdd924niiw15plwb46wwmzrv7jsmbaiyj";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base ghc-prim transformers ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base hedgehog markdown-unlit tasty tasty-hedgehog tasty-hspec
+ type-spec
+ ];
+ benchmarkHaskellDepends = [ base deepseq gauge tiempo time-units ];
+ homepage = "https://github.com/serokell/o-clock";
+ description = "Type-safe time library";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"oanda-rest-api" = callPackage
({ mkDerivation, aeson, base, bytestring, conduit, containers
, Decimal, hlint, hspec, http-client, http-conduit, HUnit, lens
@@ -143474,28 +147507,6 @@ self: {
}) {};
"objective" = callPackage
- ({ mkDerivation, base, containers, either, exceptions, free
- , hashable, monad-skeleton, mtl, profunctors, template-haskell
- , transformers, transformers-compat, unordered-containers, void
- , witherable
- }:
- mkDerivation {
- pname = "objective";
- version = "1.1.1";
- sha256 = "0d36v2w8f9g68zh2cdf8hnkzdafv0z6np895ak610n8bkxvqxlbs";
- revision = "2";
- editedCabalFile = "12zyr9szwr8g8lqs20sgmi8dqvjfwnb5c4r14lamv6nn5mvs0xl2";
- libraryHaskellDepends = [
- base containers either exceptions free hashable monad-skeleton mtl
- profunctors template-haskell transformers transformers-compat
- unordered-containers void witherable
- ];
- homepage = "https://github.com/fumieval/objective";
- description = "Composable objects";
- license = stdenv.lib.licenses.bsd3;
- }) {};
-
- "objective_1_1_2" = callPackage
({ mkDerivation, base, containers, exceptions, free, hashable
, monad-skeleton, mtl, profunctors, template-haskell, transformers
, transformers-compat, unordered-containers, void, witherable
@@ -143504,6 +147515,8 @@ self: {
pname = "objective";
version = "1.1.2";
sha256 = "0i36r3ygwpzb57ga0jjkp9rzikpsp15l777dclp7yi1zvqz2ikrg";
+ revision = "1";
+ editedCabalFile = "039j3xac9ish0yk4w04bmip6g9p6ndfd9ngh46ya125ms4nhmyj4";
libraryHaskellDepends = [
base containers exceptions free hashable monad-skeleton mtl
profunctors template-haskell transformers transformers-compat
@@ -143512,7 +147525,6 @@ self: {
homepage = "https://github.com/fumieval/objective";
description = "Composable objects";
license = stdenv.lib.licenses.bsd3;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"observable-sharing" = callPackage
@@ -143537,8 +147549,8 @@ self: {
}:
mkDerivation {
pname = "ocaml-export";
- version = "0.1.1.0";
- sha256 = "1rj2pq87i9jlg74pxqc6npsskfv1p8my1572kmmb98nd7a2qxdp1";
+ version = "0.5.0.0";
+ sha256 = "0xp4aiqn5p1c3frl83axjchbs5dwh4ibqqyiixvi0i1wpbi9fqka";
libraryHaskellDepends = [
aeson base bytestring containers directory file-embed filepath
formatting hspec-golden-aeson mtl QuickCheck
@@ -143669,6 +147681,17 @@ self: {
}) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama;
inherit (pkgs) mesa; ovr = null; systemd = null;};
+ "odbc" = callPackage
+ ({ mkDerivation }:
+ mkDerivation {
+ pname = "odbc";
+ version = "0.0.0";
+ sha256 = "1yyp21j0kmq7mc80z3vpmra16kbqb35pzblir1gppiz0wh1wmgpb";
+ doHaddock = false;
+ description = "TBA";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"oden-go-packages" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, text
, unordered-containers
@@ -143686,6 +147709,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "odpic-raw" = callPackage
+ ({ mkDerivation, base, c2hs, hspec, odpic, QuickCheck, text }:
+ mkDerivation {
+ pname = "odpic-raw";
+ version = "0.1.7";
+ sha256 = "0hwb43si56adsgzjlqlncw3hiq901w2g5d41hjv5b8gyhbhzzkmz";
+ libraryHaskellDepends = [ base text ];
+ librarySystemDepends = [ odpic ];
+ libraryToolDepends = [ c2hs ];
+ testHaskellDepends = [ base hspec QuickCheck ];
+ homepage = "https://github.com/leptonyu/odpic-raw#readme";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {odpic = null;};
+
"oeis" = callPackage
({ mkDerivation, base, HTTP, HUnit, network, network-uri
, test-framework, test-framework-hunit
@@ -143738,13 +147776,13 @@ self: {
}:
mkDerivation {
pname = "ogmarkup";
- version = "3.1.0";
- sha256 = "0za23qz85r9xmw57gxi84x2zy8ddxwcdphawyfzkmxqny9kplx1r";
+ version = "4.0";
+ sha256 = "06bbh2ylxw33hik1k4ykvmb74qkcn1zda1n1m20lzcp2ji37fp8k";
libraryHaskellDepends = [ base megaparsec mtl ];
testHaskellDepends = [
base hspec hspec-megaparsec megaparsec shakespeare text
];
- homepage = "http://github.com/ogma-project/ogmarkup";
+ homepage = "https://nest.pijul.com/lthms/ogmarkup";
description = "A lightweight markup language for story writers";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -144075,8 +148113,8 @@ self: {
}:
mkDerivation {
pname = "one-liner";
- version = "0.9.1";
- sha256 = "18jys0qvywd7il4yzyf2yb22md7apzhxvnzr067d90srqdva7cpf";
+ version = "0.9.2";
+ sha256 = "1my7ykfbfgx8z4qcklqxacycs5hl736fqh5s22cdm19nhfqmcc5b";
libraryHaskellDepends = [
base bifunctors contravariant ghc-prim profunctors tagged
transformers
@@ -144148,6 +148186,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "online_0_2_1_0" = callPackage
+ ({ mkDerivation, base, doctest, foldl, formatting, numhask
+ , optparse-generic, perf, protolude, scientific, tasty, tdigest
+ , text, vector, vector-algorithms
+ }:
+ mkDerivation {
+ pname = "online";
+ version = "0.2.1.0";
+ sha256 = "16s1hcf2jk8lzs3z0v2xp4jn2q6idzhqaksy97r64hcgnys7sylx";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base foldl numhask protolude tdigest vector vector-algorithms
+ ];
+ executableHaskellDepends = [
+ base foldl formatting numhask optparse-generic perf protolude
+ scientific text
+ ];
+ testHaskellDepends = [ base doctest protolude tasty ];
+ homepage = "https://github.com/tonyday567/online#readme";
+ description = "online statistics";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"only" = callPackage
({ mkDerivation, base, parsec, regex-compat }:
mkDerivation {
@@ -144425,8 +148488,8 @@ self: {
({ mkDerivation, aeson, base, data-default, text, time }:
mkDerivation {
pname = "opench-meteo";
- version = "0.1.1.0";
- sha256 = "02v5nxdwkfmyda2x6dw64i7bwgaxq8d7ibbxx4rya3ddairs4y29";
+ version = "0.2.0.2";
+ sha256 = "0xj9v7xl11j6p4kk5dz64kqpmyc5d68sldakiaby0j8qvyw7sf9r";
libraryHaskellDepends = [ aeson base data-default text time ];
homepage = "https://github.com/hansroland/opench";
description = "A Haskell implementation of the Swiss Meteo Net data API";
@@ -144457,8 +148520,8 @@ self: {
}:
mkDerivation {
pname = "opencv";
- version = "0.0.2.0";
- sha256 = "1v3a97qrqxssl56bwip98ifkism9lzjhmizbgxbdhn8dbrmn8jgg";
+ version = "0.0.2.1";
+ sha256 = "1bwl3csl2bsgz32i7s59hb25hxj05vn9g3fa8xix9klz8kyrzam1";
configureFlags = [
"--with-gcc=${stdenv.cc}/bin/c++" "--with-ld=${stdenv.cc}/bin/c++"
];
@@ -144491,8 +148554,8 @@ self: {
}:
mkDerivation {
pname = "opencv-extra";
- version = "0.2.0.0";
- sha256 = "0qdcikwr3shxjx3sdsnawwbg0h6pc1pn29cxq15hpjbv37yg2fc1";
+ version = "0.2.0.1";
+ sha256 = "0l4bphpsc9nv6kjvbyjqx0345mq4ryigi93ak64vv0bwp84xk5xz";
setupHaskellDepends = [ base Cabal ];
libraryHaskellDepends = [
base bindings-DSL bytestring containers inline-c inline-c-cpp
@@ -145220,8 +149283,8 @@ self: {
}:
mkDerivation {
pname = "opn";
- version = "0.1.2";
- sha256 = "0x53kvcpbd9fh00zs8wdkb3xsl8hf1bsqgl83ci17di1jyg3m4ch";
+ version = "0.1.3";
+ sha256 = "17ysp1xzqbcr58ibzwf88bim58yyc309kf71jw66gn0brp0b0w1h";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -145266,8 +149329,8 @@ self: {
}:
mkDerivation {
pname = "optimization";
- version = "0.1.7";
- sha256 = "1y490h96qvn9w3z360adbxmbcvw3zpirgfs02hbjkarxi13z4shn";
+ version = "0.1.9";
+ sha256 = "0v1bi97jvdnn4jfknsnayaqdawckh7xxcnkr5nwvxqnpckg89yyf";
libraryHaskellDepends = [
ad base distributive linear semigroupoids vector
];
@@ -146155,6 +150218,20 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "packcheck" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "packcheck";
+ version = "0.1.1";
+ sha256 = "10c822mx6vjf42d0lzi950s61s8hcw6451ckxq5g7wg4pavyr7zp";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base ];
+ benchmarkHaskellDepends = [ base ];
+ homepage = "https://github.com/harendra-kumar/packcheck";
+ description = "Universal build and CI testing for Haskell packages";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"packdeps" = callPackage
({ mkDerivation, base, bytestring, Cabal, containers, directory
, filepath, optparse-applicative, process, semigroups, split, tar
@@ -146280,8 +150357,8 @@ self: {
}:
mkDerivation {
pname = "packman";
- version = "0.3.0";
- sha256 = "07raaqqf9vz2mc3nasqzf2bz8370diy0j0lj60pqz2cg89y0q4cq";
+ version = "0.5.0";
+ sha256 = "1xnh1jl33a84pi0cyz62wxwrgfx3amdwc3f906a1wa9bwy7xkcih";
libraryHaskellDepends = [
array base binary bytestring ghc-prim primitive
];
@@ -146535,8 +150612,8 @@ self: {
}:
mkDerivation {
pname = "pandoc";
- version = "2.0.5";
- sha256 = "0670fzvlgzcw9prswjyms49nlgbwbd2bj4xvhlr8had3yklml94i";
+ version = "2.0.6";
+ sha256 = "1vhj6splykksb1mkxv5cs0361nj12qn23a3y1i8j5dc637lkdwpj";
configureFlags = [ "-fhttps" "-f-trypandoc" ];
isLibrary = true;
isExecutable = true;
@@ -146554,9 +150631,10 @@ self: {
];
executableHaskellDepends = [ base ];
testHaskellDepends = [
- base bytestring containers Diff directory executable-path filepath
- hslua pandoc-types process QuickCheck tasty tasty-golden
- tasty-hunit tasty-quickcheck temporary text zip-archive
+ base base64-bytestring bytestring containers Diff directory
+ executable-path filepath hslua pandoc-types process QuickCheck
+ tasty tasty-golden tasty-hunit tasty-quickcheck temporary text time
+ zip-archive
];
benchmarkHaskellDepends = [
base bytestring containers criterion text time
@@ -146568,6 +150646,56 @@ self: {
maintainers = with stdenv.lib.maintainers; [ peti ];
}) {};
+ "pandoc_2_1_1" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring
+ , binary, blaze-html, blaze-markup, bytestring, Cabal
+ , case-insensitive, cmark-gfm, containers, criterion, data-default
+ , deepseq, Diff, directory, doctemplates, exceptions
+ , executable-path, filepath, Glob, haddock-library, hslua
+ , hslua-module-text, HTTP, http-client, http-client-tls, http-types
+ , JuicyPixels, mtl, network, network-uri, pandoc-types, parsec
+ , process, QuickCheck, random, safe, scientific, SHA, skylighting
+ , split, syb, tagsoup, tasty, tasty-golden, tasty-hunit
+ , tasty-quickcheck, temporary, texmath, text, time, unix
+ , unordered-containers, vector, xml, yaml, zip-archive, zlib
+ }:
+ mkDerivation {
+ pname = "pandoc";
+ version = "2.1.1";
+ sha256 = "1dg97d74bqmq11bkh1ni92g4imcq45nh8y9ixwpk8pcafv401z7a";
+ configureFlags = [ "-fhttps" "-f-trypandoc" ];
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal ];
+ libraryHaskellDepends = [
+ aeson aeson-pretty base base64-bytestring binary blaze-html
+ blaze-markup bytestring case-insensitive cmark-gfm containers
+ data-default deepseq directory doctemplates exceptions filepath
+ Glob haddock-library hslua hslua-module-text HTTP http-client
+ http-client-tls http-types JuicyPixels mtl network network-uri
+ pandoc-types parsec process random safe scientific SHA skylighting
+ split syb tagsoup temporary texmath text time unix
+ unordered-containers vector xml yaml zip-archive zlib
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base base64-bytestring bytestring containers Diff directory
+ executable-path filepath hslua pandoc-types process QuickCheck
+ tasty tasty-golden tasty-hunit tasty-quickcheck temporary text time
+ xml zip-archive
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring containers criterion text time
+ ];
+ doCheck = false;
+ homepage = "http://pandoc.org";
+ description = "Conversion between markup formats";
+ license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
+ maintainers = with stdenv.lib.maintainers; [ peti ];
+ }) {};
+
"pandoc-citeproc" = callPackage
({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
, Cabal, containers, data-default, directory, filepath, hs-bibutils
@@ -146577,8 +150705,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-citeproc";
- version = "0.12.1.1";
- sha256 = "1a6r7jiqzfgw3mbc6ii643x5nlfw4ds5zww559lbi97s7i4birh8";
+ version = "0.12.2.5";
+ sha256 = "1l58nbflcnlznc93qimkk7ghk2gv8kipf45zf88piqa2zys41yyx";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -146604,6 +150732,43 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "pandoc-citeproc_0_14" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
+ , Cabal, containers, data-default, directory, filepath, hs-bibutils
+ , mtl, old-locale, pandoc, pandoc-types, parsec, process, rfc5051
+ , setenv, split, syb, tagsoup, temporary, text, time
+ , unordered-containers, vector, xml-conduit, yaml
+ }:
+ mkDerivation {
+ pname = "pandoc-citeproc";
+ version = "0.14";
+ sha256 = "1pbbkfrvwr4qg1p6vdnpg1zlxj48r23bprz48k35jbriw1j6i452";
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [ base Cabal ];
+ libraryHaskellDepends = [
+ aeson base bytestring containers data-default directory filepath
+ hs-bibutils mtl old-locale pandoc pandoc-types parsec rfc5051
+ setenv split syb tagsoup text time unordered-containers vector
+ xml-conduit yaml
+ ];
+ executableHaskellDepends = [
+ aeson aeson-pretty attoparsec base bytestring containers directory
+ filepath mtl pandoc pandoc-types process syb temporary text vector
+ yaml
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers directory filepath mtl pandoc
+ pandoc-types process temporary text yaml
+ ];
+ doCheck = false;
+ homepage = "https://github.com/jgm/pandoc-citeproc";
+ description = "Supports using pandoc with citeproc";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pandoc-citeproc-preamble" = callPackage
({ mkDerivation, base, directory, filepath, pandoc-types, process
}:
@@ -146630,8 +150795,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-crossref";
- version = "0.3.0.0";
- sha256 = "0fgds8i9fwxmfprbp4giv7qi4gzx373p07smfm7arpbimv239d6n";
+ version = "0.3.0.1";
+ sha256 = "0lhjbkgmd9hshi3lxvciwviknbbj8lyrzinzfxbwssgqrdzcaayn";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -146676,6 +150841,32 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "pandoc-emphasize-code" = callPackage
+ ({ mkDerivation, base, filepath, hashable, lucid, mtl, pandoc-types
+ , process, tasty, tasty-discover, tasty-hspec, tasty-hunit, text
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "pandoc-emphasize-code";
+ version = "0.2.2";
+ sha256 = "05vf3fli3glq013c9w9bbjggndfwhjb1rqxqspxyfh8pi14sbj9v";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base filepath hashable lucid mtl pandoc-types process text
+ unordered-containers
+ ];
+ executableHaskellDepends = [ base pandoc-types ];
+ testHaskellDepends = [
+ base pandoc-types tasty tasty-discover tasty-hspec tasty-hunit
+ unordered-containers
+ ];
+ homepage = "https://github.com/owickstrom/pandoc-emphasize-code";
+ description = "A Pandoc filter for emphasizing code in fenced blocks";
+ license = stdenv.lib.licenses.mpl20;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pandoc-filter-graphviz" = callPackage
({ mkDerivation, base, base16-bytestring, byteable, bytestring
, containers, cryptonite, directory, filepath, pandoc, pandoc-types
@@ -146724,8 +150915,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-include-code";
- version = "1.2.0.1";
- sha256 = "1qcmhdx47grgjydq0dzcz6iss247p0y8432bpw908ygr222gkqhp";
+ version = "1.2.0.2";
+ sha256 = "0mnk6ld2d1bka2wmz9718k8rfdbzhp4ym3axn4js4m0ka51w50h9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -146857,8 +151048,8 @@ self: {
}:
mkDerivation {
pname = "pandoc-types";
- version = "1.17.3";
- sha256 = "0k6z5ixgpi7gm4wlpvy2j7zzv68xsqak7fhajrf0fb60dpn4ac0n";
+ version = "1.17.3.1";
+ sha256 = "0dhp5bcjl6605n2chiab5rp51zir3671gxkmwy34znh0s3vp85jb";
libraryHaskellDepends = [
aeson base bytestring containers deepseq ghc-prim QuickCheck syb
transformers
@@ -146966,6 +151157,7 @@ self: {
homepage = "http://chriswarbo.net/projects/activecode";
description = "Pandoc filter to unwrap nested blocks";
license = stdenv.lib.licenses.publicDomain;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {lazysmallcheck2012 = null;};
@@ -148065,8 +152257,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "parser-combinators";
- version = "0.2.1";
- sha256 = "1iai2i4kr7f8fbvvm4xw4hqcwnv26g0gaglpcim9r36jmzhf2yna";
+ version = "0.4.0";
+ sha256 = "1azkz0a6ikym02s8wydjcklp7rz8k512bs4s9lp9g1g03m0yj95i";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/mrkkrp/parser-combinators";
description = "Lightweight package providing commonly useful parser combinators";
@@ -148128,23 +152320,21 @@ self: {
}) {};
"parsers" = callPackage
- ({ mkDerivation, attoparsec, base, base-orphans, bytestring, Cabal
- , cabal-doctest, charset, containers, directory, doctest, filepath
- , mtl, parsec, QuickCheck, quickcheck-instances, scientific
- , semigroups, text, transformers, unordered-containers
+ ({ mkDerivation, attoparsec, base, base-orphans, bytestring
+ , charset, containers, mtl, parsec, QuickCheck
+ , quickcheck-instances, scientific, semigroups, text, transformers
+ , unordered-containers
}:
mkDerivation {
pname = "parsers";
- version = "0.12.7";
- sha256 = "032dgh0ydy4cbvnjhgp0krnqnvlibphvm30gvmqvpxk9l4pmn435";
- setupHaskellDepends = [ base Cabal cabal-doctest ];
+ version = "0.12.8";
+ sha256 = "1j3bh008klx5nqpp9566k783c2msjsv5ia2w2jdx6frzspyhmfjs";
libraryHaskellDepends = [
attoparsec base base-orphans charset containers mtl parsec
scientific semigroups text transformers unordered-containers
];
testHaskellDepends = [
- attoparsec base bytestring containers directory doctest filepath
- parsec QuickCheck quickcheck-instances
+ attoparsec base bytestring parsec QuickCheck quickcheck-instances
];
homepage = "http://github.com/ekmett/parsers/";
description = "Parsing combinators";
@@ -148393,9 +152583,9 @@ self: {
"passman-core" = callPackage
({ mkDerivation, aeson, async, base, bcrypt, bytestring, conduit
, conduit-extra, containers, cryptohash-md5, csv-conduit
- , data-ordlist, directory, filepath, int-cast, memory
- , passman-core-internal, QuickCheck, quickcheck-unicode, resourcet
- , template-haskell, temporary, text, unix-compat, yaml
+ , data-ordlist, directory, filepath, int-cast, memory, QuickCheck
+ , quickcheck-unicode, resourcet, template-haskell, temporary, text
+ , unix-compat, yaml
}:
mkDerivation {
pname = "passman-core";
@@ -148404,17 +152594,17 @@ self: {
libraryHaskellDepends = [
aeson base bcrypt bytestring conduit conduit-extra containers
cryptohash-md5 csv-conduit data-ordlist directory filepath int-cast
- memory passman-core-internal resourcet text unix-compat yaml
+ memory resourcet text unix-compat yaml
];
testHaskellDepends = [
- async base conduit filepath passman-core-internal QuickCheck
- quickcheck-unicode template-haskell temporary text yaml
+ async base conduit filepath QuickCheck quickcheck-unicode
+ template-haskell temporary text yaml
];
homepage = "https://github.com/PasswordManager/passman-core#readme";
description = "Deterministic password generator core";
license = stdenv.lib.licenses.gpl3;
- broken = true;
- }) {passman-core-internal = null;};
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
"passwords" = callPackage
({ mkDerivation, base, containers, MonadRandom, random }:
@@ -148480,8 +152670,8 @@ self: {
}:
mkDerivation {
pname = "patat";
- version = "0.6.0.0";
- sha256 = "0pf5baidncam2c2xjm5w4kd48210ng36xsj7wr81v2pwdxp18r7h";
+ version = "0.6.1.0";
+ sha256 = "1i6vql76j5439bwdd1z7haphgm4x82rh08s22fc70hmfzkrln733";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -149188,6 +153378,7 @@ self: {
homepage = "https://github.com/NCrashed/pdf-slave-server#readme";
description = "Web service for pdf-slave tool";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {pdf-slave-server-api = null;};
@@ -149744,6 +153935,31 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "perf_0_3_1_0" = callPackage
+ ({ mkDerivation, base, containers, doctest, foldl, formatting
+ , numhask, optparse-generic, protolude, rdtsc, scientific, tdigest
+ , text, time, vector
+ }:
+ mkDerivation {
+ pname = "perf";
+ version = "0.3.1.0";
+ sha256 = "1pr735gflp91ljfrlpba6il1l4zm260whdp4hc205jff0r0gv44c";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base containers foldl numhask protolude rdtsc tdigest time
+ ];
+ executableHaskellDepends = [
+ base formatting numhask optparse-generic protolude scientific text
+ vector
+ ];
+ testHaskellDepends = [ base doctest protolude ];
+ homepage = "https://github.com/tonyday567/perf#readme";
+ description = "low-level performance statistics";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"perfect-hash-generator" = callPackage
({ mkDerivation, base, containers, data-ordlist, directory
, filepath, hashable, HUnit, optparse-applicative, random
@@ -149963,7 +154179,7 @@ self: {
maintainers = with stdenv.lib.maintainers; [ psibi ];
}) {};
- "persistent_2_7_3" = callPackage
+ "persistent_2_7_3_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, base64-bytestring
, blaze-html, blaze-markup, bytestring, conduit, containers
, exceptions, fast-logger, haskell-src-meta, hspec, http-api-data
@@ -149974,8 +154190,8 @@ self: {
}:
mkDerivation {
pname = "persistent";
- version = "2.7.3";
- sha256 = "16by2ip2gljz1xsyp6j3k04jab0l0as9ynfwxdsbbcv4qd8l1sxk";
+ version = "2.7.3.1";
+ sha256 = "1jbvavdvr9qz5ld7vf6l1jgiadhmxx6zc4vqsdk9ivfq6d5wlg1p";
libraryHaskellDepends = [
aeson attoparsec base base64-bytestring blaze-html blaze-markup
bytestring conduit containers exceptions fast-logger
@@ -150182,8 +154398,8 @@ self: {
}:
mkDerivation {
pname = "persistent-mysql-haskell";
- version = "0.3.5";
- sha256 = "0sc6hw112d8jk1rflyrmcc8gkjddl41bbw6hksyv7a5w6sc7z33n";
+ version = "0.3.6";
+ sha256 = "1a829hrbsa54qikbnafv7vk7shzyg0697nvj43md19p172mkwj93";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -150242,8 +154458,8 @@ self: {
}:
mkDerivation {
pname = "persistent-postgresql";
- version = "2.6.2.1";
- sha256 = "0imb13aw2wsfv0zrknim376sfpa72k4zdrlkxki88pm0bd3mp9mf";
+ version = "2.6.3";
+ sha256 = "0yr384b77mp8z7k8mjmdbsqrrqplymcy9rfy6lm1v3ff81g52vli";
libraryHaskellDepends = [
aeson base blaze-builder bytestring conduit containers
monad-control monad-logger persistent postgresql-libpq
@@ -150293,8 +154509,8 @@ self: {
}:
mkDerivation {
pname = "persistent-redis";
- version = "2.5.2";
- sha256 = "04rbszmdykk3ks5qpfbvw6gpgqic6lqyyw49rjf3g4p1yhlmd9kv";
+ version = "2.5.2.2";
+ sha256 = "1mkdc3s39h0zqzf86zzwyfxfpc4fasrhpfdypkj8mkljbh7v1i1l";
libraryHaskellDepends = [
aeson attoparsec base binary bytestring hedis http-api-data
monad-control mtl path-pieces persistent scientific text time
@@ -150307,7 +154523,7 @@ self: {
];
description = "Backend for persistent library using Redis";
license = stdenv.lib.licenses.bsd3;
- maintainers = with stdenv.lib.maintainers; [ psibi ];
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"persistent-refs" = callPackage
@@ -150707,10 +154923,8 @@ self: {
}:
mkDerivation {
pname = "pgdl";
- version = "10.9";
- sha256 = "0hwky1331bv1zbjq9nbfnvx8gkbfhs5sjawxjccz9l484xsrbb5z";
- revision = "8";
- editedCabalFile = "1zasl5qvmaxf8pymfmapp30rbwl2a0zm4krd3xlk6ddx0dz1w0yq";
+ version = "10.10";
+ sha256 = "0wqj7i4shdcy80aiib0dkp3y6ccilqq4g3p8bvndh4vl3cyd2pwv";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -150907,8 +155121,8 @@ self: {
}:
mkDerivation {
pname = "phoityne-vscode";
- version = "0.0.19.0";
- sha256 = "1lm4fjgha582vi88bz483p6g282zh72j31qk743rv4nm2faksi00";
+ version = "0.0.20.0";
+ sha256 = "1k9vh2xyk2nwck1g86lxvbrab7ap5p8p9vhh7pj98a56wkvxmv7y";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -150917,7 +155131,7 @@ self: {
mtl parsec process resourcet safe split text transformers
];
homepage = "https://github.com/phoityne/phoityne-vscode";
- description = "ghci debug viewer on Visual Studio Code";
+ description = "Haskell Debug Adapter for Visual Studio Code";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -151005,8 +155219,8 @@ self: {
}:
mkDerivation {
pname = "photoname";
- version = "3.2";
- sha256 = "1ygwhs79jrv5h1l407w41vfs96nd3kn2bl248j8bc1fh67kf6kka";
+ version = "3.3";
+ sha256 = "1fcl0m5hm6xvnzvn8v0l69vr7yh2q58six62147mwf4nlzny61gd";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -151018,7 +155232,7 @@ self: {
];
homepage = "http://hub.darcs.net/dino/photoname";
description = "Rename photo image files based on EXIF shoot date";
- license = stdenv.lib.licenses.bsd3;
+ license = stdenv.lib.licenses.isc;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -151348,8 +155562,8 @@ self: {
}:
mkDerivation {
pname = "pinboard";
- version = "0.9.12.6";
- sha256 = "0z5sfgvbckd636hi1girlfpfz2v21xydzi3d1py3q6hyq34b67iq";
+ version = "0.9.12.8";
+ sha256 = "0k9lyk3h108y3zyvqz1krr08cqf4fahg4lh4f5fn1spgz46q3dwk";
libraryHaskellDepends = [
aeson base bytestring containers http-client http-client-tls
http-types monad-logger mtl network profunctors random
@@ -152010,6 +156224,23 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "pipes-group_1_0_9" = callPackage
+ ({ mkDerivation, base, doctest, free, lens-family-core, pipes
+ , pipes-parse, transformers
+ }:
+ mkDerivation {
+ pname = "pipes-group";
+ version = "1.0.9";
+ sha256 = "16yczij987r6j7gzp3nvgl1c5x2b7skvqsq38ns7p9z34kvy8sby";
+ libraryHaskellDepends = [
+ base free pipes pipes-parse transformers
+ ];
+ testHaskellDepends = [ base doctest lens-family-core ];
+ description = "Group streams into substreams";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"pipes-http" = callPackage
({ mkDerivation, base, bytestring, http-client, http-client-tls
, pipes
@@ -152095,8 +156326,8 @@ self: {
}:
mkDerivation {
pname = "pipes-key-value-csv";
- version = "0.4.0.2";
- sha256 = "0v7gqic7d4prdgwjkncnx1fzk38nxwfij9pnpnp7d8n0kwdcnbix";
+ version = "0.4.0.3";
+ sha256 = "02wdna1kjjz0pkap3pfvzl336aapjv6ylmg5qwa6hr07d7sfbh3l";
libraryHaskellDepends = [
base bifunctors containers data-default-class lens mtl pipes
pipes-bytestring pipes-group pipes-parse pipes-safe pipes-text
@@ -152352,6 +156583,8 @@ self: {
pname = "pipes-s3";
version = "0.3.0.3";
sha256 = "16gm7xjc8vbbajwmq91fj1l5cgd6difrz5g30b8czac4gdgqfppa";
+ revision = "1";
+ editedCabalFile = "1hm2wwz8qz67hpwp5gfpp1rnz864z8pnn4ii5n35phhy9vg67dlz";
libraryHaskellDepends = [
aws base bytestring http-client http-client-tls http-types pipes
pipes-bytestring pipes-safe resourcet text transformers
@@ -152443,8 +156676,8 @@ self: {
}:
mkDerivation {
pname = "pipes-transduce";
- version = "0.4";
- sha256 = "0krcjw7bry726bgkjfsv72wq6z930jz8n5yj5dzfh51n5ps8qkcq";
+ version = "0.4.1";
+ sha256 = "10lf6fnnq1zf9v04l00f1nd4s6qq6a0pcdl72vxczmj6rn3c0kgq";
libraryHaskellDepends = [
base bifunctors bytestring conceit foldl free microlens pipes
pipes-bytestring pipes-concurrency pipes-group pipes-parse
@@ -152455,6 +156688,7 @@ self: {
];
description = "Interfacing pipes with foldl folds";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pipes-vector" = callPackage
@@ -152538,6 +156772,8 @@ self: {
pname = "pipes-zlib";
version = "0.4.4.1";
sha256 = "1sdxhb3000k57ck1mbasdwaxmkmw2bbh2m1ry3fvpgsilq91xb4g";
+ revision = "1";
+ editedCabalFile = "1vjvbww9b0892p1r1vz3biim3r5zaxkg8ks8w9cj2nc6i0bs7qy1";
libraryHaskellDepends = [
base bytestring pipes streaming-commons transformers
];
@@ -153063,17 +157299,19 @@ self: {
"plot-light" = callPackage
({ mkDerivation, attoparsec, attoparsec-time, base, blaze-svg
- , colour, hspec, mtl, palette, QuickCheck, scientific, text, time
+ , colour, containers, data-default, hspec, mtl, palette, QuickCheck
+ , scientific, text, time
}:
mkDerivation {
pname = "plot-light";
- version = "0.2.7";
- sha256 = "0w1mbhws7fs0kld61fd9f9xyvfpzsjhh6ic6ny89gka4421p002s";
+ version = "0.2.9";
+ sha256 = "0sz69a8q6r67s9d75vgb3x7iyp8vgrd2q85w2pykzpnpbdi56q5m";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- attoparsec base blaze-svg colour mtl palette scientific text time
+ attoparsec base blaze-svg colour containers data-default hspec mtl
+ palette QuickCheck scientific text time
];
executableHaskellDepends = [
attoparsec attoparsec-time base blaze-svg colour palette scientific
@@ -153116,14 +157354,18 @@ self: {
}) {};
"ploton" = callPackage
- ({ mkDerivation, base, hspec, optparse-applicative, process }:
+ ({ mkDerivation, base, hspec, optparse-applicative, process, split
+ , transformers
+ }:
mkDerivation {
pname = "ploton";
- version = "1.0.0.0";
- sha256 = "1x2ypljgknyya3pwg2y323va1hl396qm30lfy982sa6p0d0m8hfg";
+ version = "1.1.1.0";
+ sha256 = "1gxzfhzylk7i5cjnzgn4jicvbrv67w2v6fwb2x067q9c2g0b0npy";
isLibrary = true;
isExecutable = true;
- libraryHaskellDepends = [ base optparse-applicative process ];
+ libraryHaskellDepends = [
+ base optparse-applicative process split transformers
+ ];
executableHaskellDepends = [ base ];
testHaskellDepends = [ base hspec ];
homepage = "https://github.com/ishiy1993/ploton#readme";
@@ -153175,15 +157417,13 @@ self: {
}:
mkDerivation {
pname = "plugins";
- version = "1.5.6.0";
- sha256 = "1l40i9n4iqsj2pw5kv7p8mkfg9vninplasz27zdgfs4hxd9pxl8q";
- revision = "1";
- editedCabalFile = "0l4sx1d9lgs6yr23dq4ccz1la9i94cz4nfvpdkpr5wni40mzl2m3";
+ version = "1.5.7";
+ sha256 = "1l9ymnsxvgjp7p2j5mvyygrsg7qf2yam1k4y3gz8s2l6kl78ri5f";
libraryHaskellDepends = [
array base Cabal containers directory filepath ghc ghc-paths
ghc-prim haskell-src process random
];
- homepage = "http://hub.darcs.net/stepcut/plugins";
+ homepage = "https://github.com/stepcut/plugins";
description = "Dynamic linking for Haskell and C objects";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -153229,8 +157469,8 @@ self: {
({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "plumbers";
- version = "0.0.3";
- sha256 = "1grw827jhxwka1zl0n5ycgrpc4ljw8bxg3psms8lsxfiiz6mwmq9";
+ version = "0.0.4";
+ sha256 = "1lih19zjz5yrrjvrgk8zv5xrvld57ykdxxhdrvhwh6bqyzzarqjj";
libraryHaskellDepends = [ base template-haskell ];
description = "Pointless plumbing combinators";
license = stdenv.lib.licenses.bsd3;
@@ -153393,10 +157633,8 @@ self: {
}:
mkDerivation {
pname = "pointed";
- version = "5";
- sha256 = "05sxac90xv4j8glmf2mxs0smmv6vhia0qaaag5v37ar5a6pvh1l9";
- revision = "1";
- editedCabalFile = "170gqax34qch77zzqwq95z2lzq9da8gmfxg1vcll4aphhafwgzzp";
+ version = "5.0.1";
+ sha256 = "1p91a762xglckscnhpflxzav8byf49a02mli3983i4kpr2jkaimr";
libraryHaskellDepends = [
base comonad containers data-default-class hashable kan-extensions
semigroupoids semigroups stm tagged transformers
@@ -153915,8 +158153,8 @@ self: {
}:
mkDerivation {
pname = "pomaps";
- version = "0.0.0.1";
- sha256 = "1k2p59qq9yqndk8p3igxrbiqq7i6f80krynnvja7nx4bjlpcm19w";
+ version = "0.0.0.3";
+ sha256 = "1gxfaqcg6d9wkm67d8rrjvigy9kvvh9403v3jk790x9pfydcjvym";
libraryHaskellDepends = [
base containers deepseq ghc-prim lattices
];
@@ -153924,7 +158162,9 @@ self: {
base ChasingBottoms containers doctest Glob lattices tasty
tasty-hspec tasty-quickcheck
];
- benchmarkHaskellDepends = [ base criterion deepseq random vector ];
+ benchmarkHaskellDepends = [
+ base criterion deepseq lattices random vector
+ ];
homepage = "https://github.com/sgraf812/pomaps#readme";
description = "Maps and sets of partial orders";
license = stdenv.lib.licenses.mit;
@@ -154704,14 +158944,14 @@ self: {
}) {};
"postgresql-libpq" = callPackage
- ({ mkDerivation, base, bytestring, postgresql }:
+ ({ mkDerivation, base, bytestring, postgresql, unix }:
mkDerivation {
pname = "postgresql-libpq";
- version = "0.9.3.1";
- sha256 = "0x0bjnwqhdlxba345yjkf978wfsy8g5xsjdbrckrnb2dvsfscqih";
- libraryHaskellDepends = [ base bytestring ];
+ version = "0.9.4.0";
+ sha256 = "15laa8m6i4girhr0i3xscgsl30iqj61mx5vbl67wasb8rwx0pi82";
+ libraryHaskellDepends = [ base bytestring unix ];
librarySystemDepends = [ postgresql ];
- homepage = "http://github.com/lpsmith/postgresql-libpq";
+ homepage = "https://github.com/lpsmith/postgresql-libpq";
description = "low-level binding to libpq";
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) postgresql;};
@@ -154919,8 +159159,8 @@ self: {
}:
mkDerivation {
pname = "postgresql-simple-queue";
- version = "1.0.0";
- sha256 = "1kfgj8i84nqbm1416q2yq6n9dma4aaxnf26xkalm73mlg595ah7f";
+ version = "1.0.1";
+ sha256 = "0gss9s2splrvwgxhkjpqvx0cg9kx9dqpw4aq2wbh8l879v2nj2rk";
libraryHaskellDepends = [
aeson base bytestring exceptions monad-control pg-transact
postgresql-simple random stm text time transformers
@@ -155065,9 +159305,9 @@ self: {
"postgrest" = callPackage
({ mkDerivation, aeson, aeson-qq, ansi-wl-pprint, async, base
, base64-bytestring, bytestring, case-insensitive, cassava
- , configurator-ng, containers, contravariant, cookie, either, hasql
- , hasql-pool, hasql-transaction, heredoc, hjsonpointer, hjsonschema
- , hspec, hspec-wai, hspec-wai-json, HTTP, http-types
+ , configurator-ng, containers, contravariant, cookie, either
+ , gitrev, hasql, hasql-pool, hasql-transaction, heredoc
+ , hjsonschema, hspec, hspec-wai, hspec-wai-json, HTTP, http-types
, insert-ordered-containers, interpolatedstring-perl6, jose, lens
, lens-aeson, monad-control, network-uri, optparse-applicative
, parsec, process, protolude, Ranged-sets, regex-tdfa, retry, safe
@@ -155077,17 +159317,17 @@ self: {
}:
mkDerivation {
pname = "postgrest";
- version = "0.4.3.0";
- sha256 = "1a0l5j755h6nlnv3xww0l88pz6ny5y40d1as9vfn1i1ybk4jx5gq";
+ version = "0.4.4.0";
+ sha256 = "1dj0gzwjq5psxqmjx0jhbvwa0jlf52dvsbdmbx6ry0yqhsa0yvjr";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
aeson ansi-wl-pprint base base64-bytestring bytestring
case-insensitive cassava configurator-ng containers contravariant
- cookie either hasql hasql-pool hasql-transaction heredoc HTTP
- http-types insert-ordered-containers interpolatedstring-perl6 jose
- lens lens-aeson network-uri optparse-applicative parsec protolude
- Ranged-sets regex-tdfa safe scientific swagger2 text
+ cookie either gitrev hasql hasql-pool hasql-transaction heredoc
+ HTTP http-types insert-ordered-containers interpolatedstring-perl6
+ jose lens lens-aeson network-uri optparse-applicative parsec
+ protolude Ranged-sets regex-tdfa safe scientific swagger2 text
unordered-containers vector wai wai-cors wai-extra
wai-middleware-static
];
@@ -155098,9 +159338,9 @@ self: {
testHaskellDepends = [
aeson aeson-qq async base base64-bytestring bytestring
case-insensitive cassava containers contravariant hasql hasql-pool
- heredoc hjsonpointer hjsonschema hspec hspec-wai hspec-wai-json
- http-types lens lens-aeson monad-control process protolude
- regex-tdfa transformers-base wai wai-extra
+ heredoc hjsonschema hspec hspec-wai hspec-wai-json http-types lens
+ lens-aeson monad-control process protolude regex-tdfa
+ transformers-base wai wai-extra
];
homepage = "https://github.com/begriffs/postgrest";
description = "REST API for any Postgres database";
@@ -155174,8 +159414,8 @@ self: {
}:
mkDerivation {
pname = "postmark";
- version = "0.2.2";
- sha256 = "043q69v629r6y8ljij8nmfjz4qs3181278wrnlfgagfahh98pg0b";
+ version = "0.2.3";
+ sha256 = "140z6r01byld665471dbk5zdqaf6lrcxwqp0wvbs5fbpjq37mfmp";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -155575,8 +159815,8 @@ self: {
}:
mkDerivation {
pname = "preamble";
- version = "0.0.57";
- sha256 = "04hc8cywmwwjxcgj0h26ahlnxj56awq9jnvpdgxgw5rvw4q4qqb3";
+ version = "0.0.58";
+ sha256 = "02nqrryi2mjp4zcail23rh0ysqnc8i97wzn77bq7ksimqwzynabq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -155741,6 +159981,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "prefix-expression" = callPackage
+ ({ mkDerivation, base, hspec, regex-pcre-builtin }:
+ mkDerivation {
+ pname = "prefix-expression";
+ version = "1.2.3";
+ sha256 = "0hcp7wfgqcbqlkg60zy5c1b9gyvzkr678m4qpjxsv07x33h0xgnr";
+ libraryHaskellDepends = [ base regex-pcre-builtin ];
+ testHaskellDepends = [ base hspec ];
+ homepage = "https://github.com/VonFry/prefix-expression";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"prefix-units" = callPackage
({ mkDerivation, base, Cabal, HUnit, QuickCheck, test-framework
, test-framework-hunit, test-framework-quickcheck2
@@ -156049,14 +160301,15 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "pretty_1_1_3_5" = callPackage
- ({ mkDerivation, base, deepseq, ghc-prim, QuickCheck }:
+ "pretty_1_1_3_6" = callPackage
+ ({ mkDerivation, base, criterion, deepseq, ghc-prim, QuickCheck }:
mkDerivation {
pname = "pretty";
- version = "1.1.3.5";
- sha256 = "0ibgg8hrizf8dqbpznk85w612nyn349l26c5pwg9b9qmg56rs05h";
+ version = "1.1.3.6";
+ sha256 = "1s363nax6zxqs4bnciddsfc2sanv1lp4x02y58z3yzdgrciwq4pb";
libraryHaskellDepends = [ base deepseq ghc-prim ];
testHaskellDepends = [ base deepseq ghc-prim QuickCheck ];
+ benchmarkHaskellDepends = [ base criterion ];
homepage = "http://github.com/haskell/pretty";
description = "Pretty-printing library";
license = stdenv.lib.licenses.bsd3;
@@ -156150,8 +160403,8 @@ self: {
}:
mkDerivation {
pname = "pretty-show";
- version = "1.6.15";
- sha256 = "16ik7dhagyr3is5dmkihw109l4d0500vi55z46p8lhigmfwqpn2n";
+ version = "1.6.16";
+ sha256 = "0l03mhbdnf0sj6kw2s3cf2xhfbl0809jr9fhj7cmpkhjpxv89vnv";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -156171,8 +160424,8 @@ self: {
}:
mkDerivation {
pname = "pretty-simple";
- version = "2.0.1.0";
- sha256 = "0a72kns4ydh22q1kwbljknrbgcpvh9l4jx16fm2s3hkkw9fivl27";
+ version = "2.0.2.0";
+ sha256 = "1rzc9sfrw0m4aqp19zpzllkrrr6966byc06m9qcy77fbv1icsr44";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -156480,10 +160733,8 @@ self: {
({ mkDerivation, base, ghc-prim, transformers }:
mkDerivation {
pname = "primitive";
- version = "0.6.2.0";
- sha256 = "1q9a537av81c0lvcdzc8i5hqjx3209f5448d1smkyaz22c1dgs5q";
- revision = "1";
- editedCabalFile = "0d61g8ppsdajdqykl2kc46kq00aamsf12v60ilgrf58dbji9sz56";
+ version = "0.6.3.0";
+ sha256 = "0mcmbnj08wd6zfwn7xk6zf5hy5zwbla5v78pw0dpymqg9s0gzpnd";
libraryHaskellDepends = [ base ghc-prim transformers ];
testHaskellDepends = [ base ghc-prim ];
homepage = "https://github.com/haskell/primitive";
@@ -156792,14 +161043,14 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "process_1_6_2_0" = callPackage
+ "process_1_6_3_0" = callPackage
({ mkDerivation, base, bytestring, deepseq, directory, filepath
, unix
}:
mkDerivation {
pname = "process";
- version = "1.6.2.0";
- sha256 = "0gsyzwvid2w1z5m0w492sqb8q8c86q9wa7iqjadcdhbv8ag9z6xm";
+ version = "1.6.3.0";
+ sha256 = "0lxkl0gmyy2sn3r9c7dyz8vz1cm6nvygmgrizilliir5bp42m8cc";
libraryHaskellDepends = [ base deepseq directory filepath unix ];
testHaskellDepends = [ base bytestring directory ];
description = "Process libraries";
@@ -156834,8 +161085,8 @@ self: {
}:
mkDerivation {
pname = "process-extras";
- version = "0.7.2";
- sha256 = "0n79m1kj59w4s2a86m1hm98019452mhh06szn0jwsvb9xhqi0v77";
+ version = "0.7.3";
+ sha256 = "0hyrqz2dinvql6r9ldd2q35zkavjwqadw13zqzcwrdhq8myhawzb";
libraryHaskellDepends = [
base bytestring data-default deepseq generic-deriving ListLike mtl
process text
@@ -156943,8 +161194,8 @@ self: {
}:
mkDerivation {
pname = "process-streaming";
- version = "0.9.1.2";
- sha256 = "0kjq8bylhab6zhszf9vfnvzjkzfkh3bcgkkys7f13f6mrdp02bjz";
+ version = "0.9.2.1";
+ sha256 = "1p1nfb09sg9krwm7k6j8y5ggbc28yddlkf2yifs06iqfkcmbsbm6";
libraryHaskellDepends = [
base bifunctors bytestring conceit free kan-extensions pipes
pipes-bytestring pipes-concurrency pipes-parse pipes-safe
@@ -156961,6 +161212,7 @@ self: {
];
description = "Streaming interface to system processes";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"processing" = callPackage
@@ -157195,8 +161447,8 @@ self: {
}:
mkDerivation {
pname = "profiteur";
- version = "0.4.3.0";
- sha256 = "1swsy006axh06f1nwvfbvs3rsd1y1733n6b3xyncnc6vifnf7gz2";
+ version = "0.4.4.0";
+ sha256 = "08pnybyr6l39h7lxvgxi014wb7cf6i8qfygx4xkfzkj9p23mp3h9";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -157224,15 +161476,15 @@ self: {
"profunctors" = callPackage
({ mkDerivation, base, base-orphans, bifunctors, comonad
- , contravariant, distributive, tagged, transformers
+ , contravariant, distributive, semigroups, tagged, transformers
}:
mkDerivation {
pname = "profunctors";
- version = "5.2.1";
- sha256 = "0pcwjp813d3mrzb7qf7dzkspf85xnfj1m2snhjgnvwx6vw07w877";
+ version = "5.2.2";
+ sha256 = "0s1pwjidbn761xk43pmzyvn99hm3psdifjd78ylki7f97aiyd0g9";
libraryHaskellDepends = [
base base-orphans bifunctors comonad contravariant distributive
- tagged transformers
+ semigroups tagged transformers
];
homepage = "http://github.com/ekmett/profunctors/";
description = "Profunctors";
@@ -157252,12 +161504,12 @@ self: {
}) {};
"progress-meter" = callPackage
- ({ mkDerivation, async, base, containers, stm }:
+ ({ mkDerivation, ansi-terminal, async, base, stm }:
mkDerivation {
pname = "progress-meter";
- version = "0.1.0";
- sha256 = "0xbrs2ydi64vllwz55b100ggwdcixi2p8zxlbxg7hg7s6ki244xf";
- libraryHaskellDepends = [ async base containers stm ];
+ version = "1.0.0.1";
+ sha256 = "1mdzwbzkf9ja7i21hds26gqn2ll4hnidbcq145yigkfzv93r6hq6";
+ libraryHaskellDepends = [ ansi-terminal async base stm ];
homepage = "https://github.com/esoeylemez/progress-meter";
description = "Live diagnostics for concurrent activity";
license = stdenv.lib.licenses.bsd3;
@@ -157417,8 +161669,8 @@ self: {
}:
mkDerivation {
pname = "project-template";
- version = "0.2.0";
- sha256 = "0433a2cmximz2jbg0m97h80pvmb7vafjvw3qzjpsncavg38xgaxf";
+ version = "0.2.0.1";
+ sha256 = "1p69ww4rhah2qxragl615wl4a6mk4x9w09am8knmz3s4lxpljlpb";
libraryHaskellDepends = [
base base64-bytestring bytestring conduit conduit-extra containers
directory filepath mtl resourcet text transformers
@@ -157701,8 +161953,8 @@ self: {
}:
mkDerivation {
pname = "propellor";
- version = "5.1.0";
- sha256 = "0bl1kb24s2bs7li096s4iwvd2wj188lb2y3cfymhgsyqj8c2fbzp";
+ version = "5.2.0";
+ sha256 = "06h1q1kx2ifbfpicb0ivp4x8pv1fn15x0v5wn1dygnbf862h9brh";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -158123,15 +162375,15 @@ self: {
"protolude" = callPackage
({ mkDerivation, array, async, base, bytestring, containers
, deepseq, ghc-prim, hashable, mtl, mtl-compat, safe, stm, text
- , transformers
+ , transformers, transformers-compat
}:
mkDerivation {
pname = "protolude";
- version = "0.2";
- sha256 = "1ky72pv1icrcj9s3al23nwylyv7l60s2h0m2hs85wdb3kn1c042n";
+ version = "0.2.1";
+ sha256 = "1r2baxx6q4z75sswirlqsnyynk4i7amfmpzajggh31fbz13hxgxx";
libraryHaskellDepends = [
array async base bytestring containers deepseq ghc-prim hashable
- mtl mtl-compat safe stm text transformers
+ mtl mtl-compat safe stm text transformers transformers-compat
];
homepage = "https://github.com/sdiehl/protolude";
description = "A small prelude";
@@ -158355,8 +162607,8 @@ self: {
}:
mkDerivation {
pname = "psqueues";
- version = "0.2.4.0";
- sha256 = "1lbjm6mnw91qg1ik73mwh48cq79k4kkaj4l380ilqp0p05a386j9";
+ version = "0.2.5.0";
+ sha256 = "1fy2rflmk2g5qkrbdz53wcxbr2nzxlnvkwwf4xf56yhm1ciffgqn";
libraryHaskellDepends = [ base deepseq ghc-prim hashable ];
testHaskellDepends = [
array base deepseq ghc-prim hashable HUnit QuickCheck tagged
@@ -158456,6 +162708,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "publicsuffix_0_20171229" = callPackage
+ ({ mkDerivation, base, criterion, filepath, hspec, random
+ , template-haskell
+ }:
+ mkDerivation {
+ pname = "publicsuffix";
+ version = "0.20171229";
+ sha256 = "03qvd0a13r4b45rz2wbf7kad17v0x3f6mrcv2slhyh0x4a1ca2s0";
+ libraryHaskellDepends = [ base filepath template-haskell ];
+ testHaskellDepends = [ base hspec ];
+ benchmarkHaskellDepends = [ base criterion random ];
+ homepage = "https://github.com/wereHamster/publicsuffix-haskell/";
+ description = "The publicsuffix list exposed as proper Haskell types";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"publicsuffixlist" = callPackage
({ mkDerivation, base, bytestring, cereal, containers, data-default
, HUnit, idna, text, utf8-string
@@ -158762,6 +163031,7 @@ self: {
homepage = "http://lpuppet.banquise.net";
description = "A program that displays the puppet resources associated to a node given .pp files.";
license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"pure-cdb" = callPackage
@@ -159149,23 +163419,49 @@ self: {
"pusher-http-haskell" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, bytestring
- , containers, cryptonite, hashable, hspec, HTTP, http-client
- , http-types, memory, network-uri, QuickCheck, scientific, text
- , time, transformers, unordered-containers, vector
+ , cryptonite, hashable, hspec, http-client, http-types, memory
+ , QuickCheck, scientific, text, time, transformers
+ , unordered-containers, vector
}:
mkDerivation {
pname = "pusher-http-haskell";
- version = "1.5.0.1";
- sha256 = "08fgyvm1lp1yr9p9a6fr111x78rlzhr02gbsd6q6hjxnlffya4vf";
+ version = "1.5.1.0";
+ sha256 = "1mnigsf10jxqsvjr1vbizxjrf97w3cx54xy850mj3b8i34929bmh";
libraryHaskellDepends = [
- aeson base base16-bytestring bytestring containers cryptonite
- hashable HTTP http-client http-types memory text time transformers
+ 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
- http-client http-types memory network-uri QuickCheck scientific
- text time transformers unordered-containers vector
+ aeson base base16-bytestring bytestring cryptonite hspec
+ http-client http-types QuickCheck scientific text time transformers
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/pusher-community/pusher-http-haskell";
+ description = "Haskell client library for the Pusher HTTP API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "pusher-http-haskell_1_5_1_1" = 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.1";
+ sha256 = "0j8gsarczvdidri63s162flzdkb6w0sysawairlxmmgcdbybfci5";
+ 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
];
homepage = "https://github.com/pusher-community/pusher-http-haskell";
description = "Haskell client library for the Pusher HTTP API";
@@ -159203,8 +163499,8 @@ self: {
}:
mkDerivation {
pname = "pushme";
- version = "2.0.2";
- sha256 = "12gd31fbsm3adxmcwkikx4zwq5a7snv8mc0jd73crqfy46spm6zw";
+ version = "2.1.1";
+ sha256 = "1adgdbnifilzpxgkzdv0wxd475s7kl0ib8qqpd8ifx1cnm1zggjw";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -159214,7 +163510,7 @@ self: {
system-fileio system-filepath temporary text text-format time
transformers unix unordered-containers yaml
];
- homepage = "https://github.com/jwiegley/pushme";
+ homepage = "https://github.com/jwiegley/pushme#readme";
description = "Tool to synchronize directories with rsync, zfs or git-annex";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -159484,23 +163780,23 @@ self: {
}) {};
"q4c12-twofinger" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, doctest, lens
- , QuickCheck, semigroupoids, streams, template-haskell
+ ({ mkDerivation, base, Cabal, cabal-doctest, containers, deepseq
+ , doctest, lens, lens-properties, semigroupoids, tasty
+ , tasty-quickcheck
}:
mkDerivation {
pname = "q4c12-twofinger";
- version = "0.0.0.2";
- sha256 = "036c02x5vph24a43vr58acrwny9vidmmv7536sw5b9fiynfkd343";
+ version = "0.2";
+ sha256 = "0c4fm6pdl1mlh4xnp8syjifknyvbdqwdyiika9pkww4xmf12lv7z";
setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [
- base deepseq QuickCheck semigroupoids streams
- ];
+ libraryHaskellDepends = [ base containers deepseq semigroupoids ];
testHaskellDepends = [
- base doctest lens QuickCheck streams template-haskell
+ base doctest lens lens-properties tasty tasty-quickcheck
];
homepage = "https://github.com/quasicomputational/mega/tree/master/packages/twofinger";
description = "Efficient alternating finger trees";
license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"qc-oi-testgenerator" = callPackage
@@ -159628,6 +163924,19 @@ self: {
license = stdenv.lib.licenses.publicDomain;
}) {};
+ "qq-literals" = callPackage
+ ({ mkDerivation, base, network-uri, template-haskell }:
+ mkDerivation {
+ pname = "qq-literals";
+ version = "0.1.0.0";
+ sha256 = "1fsl1639jzik9zrkks1badx6pd303rjdm3dmnb6cfjjb1jg50cqr";
+ libraryHaskellDepends = [ base template-haskell ];
+ testHaskellDepends = [ base network-uri template-haskell ];
+ homepage = "https://github.com/hdgarrood/qq-literals";
+ description = "Compile-time checked literal values via QuasiQuoters";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"qr-imager" = callPackage
({ mkDerivation, aeson, base, bytestring, cryptonite, directory
, either, haskell-qrencode, hspec, jose-jwt, JuicyPixels
@@ -159704,11 +164013,14 @@ self: {
qtc_opengl = null; qtc_script = null; qtc_tools = null;};
"qtah-cpp-qt5" = callPackage
- ({ mkDerivation, base, process, qtah-generator, qtbase }:
+ ({ mkDerivation, base, Cabal, directory, filepath, process
+ , qtah-generator, qtbase
+ }:
mkDerivation {
pname = "qtah-cpp-qt5";
- version = "0.3.1";
- sha256 = "0yy6q10lsjhjnvirs2d8pdivs9d0kdilwsm4j7s59jz5xhwzbqzl";
+ version = "0.4.0";
+ sha256 = "03m45jc5jpkjfcx0dr1lb2nsajbhkfb5phsx7v909hj8d7j7swvz";
+ setupHaskellDepends = [ base Cabal directory filepath process ];
libraryHaskellDepends = [ base process qtah-generator ];
librarySystemDepends = [ qtbase ];
homepage = "http://khumba.net/projects/qtah";
@@ -159723,8 +164035,8 @@ self: {
}:
mkDerivation {
pname = "qtah-examples";
- version = "0.3.0";
- sha256 = "0scb00dilgbiqzp1jq0jknx76qb0fc9l9wsv214k9x741q7cv71b";
+ version = "0.4.0";
+ sha256 = "0q8k2diyrxpvsnhlw484lxy3j6qbk07hkqj0hg2cxv8whhi02bp9";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -159737,15 +164049,17 @@ self: {
}) {};
"qtah-generator" = callPackage
- ({ mkDerivation, base, containers, directory, filepath, haskell-src
- , hoppy-generator, hoppy-std, mtl, process, transformers
+ ({ mkDerivation, base, Cabal, containers, directory, filepath
+ , haskell-src, hoppy-generator, hoppy-std, mtl, process
+ , transformers
}:
mkDerivation {
pname = "qtah-generator";
- version = "0.3.0";
- sha256 = "0zyhpb70lcp9r8skq6lzw4xqpa3fndbq4vxk098diqivknl064ff";
+ version = "0.4.0";
+ sha256 = "1fxv8g3rrhf9q7g90phqji4q5yb2l0sfi0qm81zp9ya91wmcfsg5";
isLibrary = true;
isExecutable = true;
+ setupHaskellDepends = [ base Cabal directory filepath ];
libraryHaskellDepends = [ base ];
executableHaskellDepends = [
base containers directory filepath haskell-src hoppy-generator
@@ -159759,13 +164073,15 @@ self: {
}) {};
"qtah-qt5" = callPackage
- ({ mkDerivation, base, binary, bytestring, hoppy-runtime, HUnit
- , qtah, qtah-cpp-qt5, qtah-generator, qtbase
+ ({ mkDerivation, base, binary, bytestring, Cabal, directory
+ , filepath, hoppy-runtime, HUnit, qtah, qtah-cpp-qt5
+ , qtah-generator, qtbase
}:
mkDerivation {
pname = "qtah-qt5";
- version = "0.3.0";
- sha256 = "0rrg0ymkhvgdhwcabr4n4alrqkzyyzyggdclygmjp7l2lq4md1ad";
+ version = "0.4.0";
+ sha256 = "1b20wrbyldxx6vsxax3kdfxikv0v79m3qcbwhjwgyp586gk9pl63";
+ setupHaskellDepends = [ base Cabal directory filepath ];
libraryHaskellDepends = [
base binary bytestring hoppy-runtime qtah-cpp-qt5 qtah-generator
];
@@ -159988,6 +164304,7 @@ self: {
benchmarkHaskellDepends = [ base criterion text ];
description = "Analysis and parsing library for SQL queries";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {predicate-class = null;};
@@ -160008,6 +164325,7 @@ self: {
];
description = "Parsing for Hive SQL queries";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {predicate-class = null;};
@@ -160028,6 +164346,7 @@ self: {
];
description = "Parsing for Presto SQL queries";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {predicate-class = null;};
@@ -160048,6 +164367,7 @@ self: {
];
description = "Parsing for Vertica SQL queries";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {predicate-class = null;};
@@ -160202,6 +164522,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "quickcheck-arbitrary-adt_0_3_1_0" = callPackage
+ ({ mkDerivation, base, hspec, lens, QuickCheck, template-haskell
+ , transformers
+ }:
+ mkDerivation {
+ pname = "quickcheck-arbitrary-adt";
+ version = "0.3.1.0";
+ sha256 = "1fa5gb111m740q399l7wbr9n03ws9rasq48jhnx7dvvd6qh2wjjw";
+ libraryHaskellDepends = [ base QuickCheck ];
+ testHaskellDepends = [
+ base hspec lens QuickCheck template-haskell transformers
+ ];
+ homepage = "https://github.com/plow-technologies/quickcheck-arbitrary-adt#readme";
+ description = "Generic typeclasses for generating arbitrary ADTs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"quickcheck-assertions" = callPackage
({ mkDerivation, base, hspec, ieee754, pretty-show, QuickCheck }:
mkDerivation {
@@ -160251,10 +164589,8 @@ self: {
}:
mkDerivation {
pname = "quickcheck-instances";
- version = "0.3.16";
- sha256 = "07xqbjb3rb5hzhjak3qpvj4hl91gc0z2272n60hv67zmv3w8kcf1";
- revision = "1";
- editedCabalFile = "1sfqjhk7z185l0gxrvn5pi3s8mvnqv1d1yzrx0k0mi48y5421jcm";
+ version = "0.3.16.1";
+ sha256 = "01v5bs7r9yvhkvb4yc9bqnacy8r6cy2gr9lnmwx40n5apgi0gcbz";
libraryHaskellDepends = [
array base base-compat bytestring case-insensitive containers
hashable old-time QuickCheck scientific tagged text time
@@ -160435,6 +164771,8 @@ self: {
pname = "quickcheck-special";
version = "0.1.0.6";
sha256 = "1dhwgy1jwglp4y3nbysr1i182415aibqlcsrvwxn2c5x162qjwwm";
+ revision = "1";
+ editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3";
libraryHaskellDepends = [ base QuickCheck special-values ];
homepage = "https://github.com/minad/quickcheck-special#readme";
description = "Edge cases and special values for QuickCheck Arbitrary instances";
@@ -160449,8 +164787,8 @@ self: {
}:
mkDerivation {
pname = "quickcheck-state-machine";
- version = "0.3.0";
- sha256 = "0rcfc6yk5x99jk2zppfnzkkhc3k2wkvz6jh1h80l0zdpdhbd191a";
+ version = "0.3.1";
+ sha256 = "141rs0m67p830n2v30jkpvbqpygqc7i8cka9c9bbycxnwdax5jj4";
libraryHaskellDepends = [
ansi-wl-pprint async base containers lifted-async lifted-base
monad-control mtl QuickCheck quickcheck-with-counterexamples random
@@ -160468,8 +164806,8 @@ self: {
}:
mkDerivation {
pname = "quickcheck-string-random";
- version = "0.1.0.0";
- sha256 = "04pbv5s3j0v9kv9sjhfkh892n9w210fb20k5j9innkxwvaj1bh6y";
+ version = "0.1.0.1";
+ sha256 = "1yx1kyd6p58b7s10v0lkq1v162vnz90p6m9jlwbr4s6qxa0sm31r";
libraryHaskellDepends = [ base QuickCheck string-random text ];
testHaskellDepends = [
base QuickCheck tasty tasty-quickcheck text
@@ -161046,8 +165384,8 @@ self: {
}:
mkDerivation {
pname = "radius";
- version = "0.5.0.0";
- sha256 = "0jj4g6m70i6dw1r0a821vn4fpx35n0mgsg820wpwmrk7xd2v6xhz";
+ version = "0.5.0.1";
+ sha256 = "0mrgcrhi99imclc400lp666gimxv4gkg4svjr49p9aip5dx03bjh";
libraryHaskellDepends = [
base binary bytestring cryptonite iproute memory
];
@@ -161071,6 +165409,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "radixtree" = callPackage
+ ({ mkDerivation, attoparsec, base, containers, criterion, deepseq
+ , microlens, mtl, parsers, QuasiText, smallcheck, store, tasty
+ , tasty-smallcheck, text, vector
+ }:
+ mkDerivation {
+ pname = "radixtree";
+ version = "0.4.0.0";
+ sha256 = "074s2gbprpq9qvipj8hayh906pdy1jfayph82hzamnwvz4199gmj";
+ libraryHaskellDepends = [
+ base containers deepseq microlens mtl parsers store text vector
+ ];
+ testHaskellDepends = [
+ attoparsec base smallcheck tasty tasty-smallcheck text
+ ];
+ benchmarkHaskellDepends = [
+ attoparsec base criterion deepseq QuasiText text vector
+ ];
+ homepage = "https://gitlab.com/transportengineering/radixtree";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"rados-haskell" = callPackage
({ mkDerivation, async, base, bytestring, containers, criterion
, hspec, HUnit, mtl, rados, transformers, uuid
@@ -161292,8 +165652,8 @@ self: {
}:
mkDerivation {
pname = "rakuten";
- version = "0.1.0.4";
- sha256 = "0nxnw5b0qhjzb0zwak74x84f081p1giyzbvpinhx527ph4j96aqf";
+ version = "0.1.0.5";
+ sha256 = "1197vkml0pvrdqvh55bvsb52rzqfj6p6vrpihr5ci7flp4h9wkp1";
libraryHaskellDepends = [
aeson base bytestring connection constraints data-default-class
extensible http-api-data http-client http-client-tls http-types
@@ -161843,8 +166203,8 @@ self: {
}:
mkDerivation {
pname = "rapid-term";
- version = "0.1.2";
- sha256 = "0q65c8rjqvikpfghpmmsb69d9qmx5bha36qs4iwbsh6iq08xiw18";
+ version = "0.1.2.1";
+ sha256 = "0pyqsj07g2am9n84232cpy20r6w54mah01x9kl7rczab0yvfplbc";
libraryHaskellDepends = [
base clock kan-extensions process transformers unix
];
@@ -162132,31 +166492,51 @@ self: {
"ratel" = callPackage
({ mkDerivation, aeson, base, bytestring, case-insensitive
- , containers, filepath, http-client, http-client-tls, http-types
- , tasty, tasty-hspec, text, uuid
+ , containers, filepath, hspec, http-client, http-client-tls
+ , http-types, text, uuid
}:
mkDerivation {
pname = "ratel";
- version = "0.3.7";
- sha256 = "0jwmlnxnaaldi1gr988gdy82y3ylvmi9ylnrsas8rg6pwyj76v9c";
+ version = "0.3.10";
+ sha256 = "10cqg2rrr8fx57r0vhw37wrv92243lzi2mp7ghsl3kkl1n73qz8n";
libraryHaskellDepends = [
aeson base bytestring case-insensitive containers http-client
http-client-tls http-types text uuid
];
- testHaskellDepends = [ base filepath tasty tasty-hspec ];
+ testHaskellDepends = [ base filepath hspec ];
homepage = "https://github.com/tfausak/ratel#readme";
description = "Notify Honeybadger about exceptions";
license = stdenv.lib.licenses.mit;
}) {};
+ "ratel_1_0_1" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, case-insensitive
+ , containers, filepath, hspec, http-client, http-client-tls
+ , http-types, text, uuid
+ }:
+ mkDerivation {
+ pname = "ratel";
+ version = "1.0.1";
+ sha256 = "1cspvwnq7v0ngxlc0w0f2fv14m3ndi8nkvcglygbac454nlka12s";
+ libraryHaskellDepends = [
+ aeson base bytestring case-insensitive containers http-client
+ http-client-tls http-types text uuid
+ ];
+ testHaskellDepends = [ base filepath hspec ];
+ homepage = "https://github.com/tfausak/ratel#readme";
+ description = "Notify Honeybadger about exceptions";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"ratel-wai" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, containers
, http-client, ratel, wai
}:
mkDerivation {
pname = "ratel-wai";
- version = "0.3.1";
- sha256 = "13p5ny1x752l9xqiyxdxvjfjqggsb0g9hpqqcmdr828lvr9qxi6s";
+ version = "0.3.2";
+ sha256 = "1f38xivw19ic002idr936859rwmz2g9nmhbwxvsf4fw3lm31qwpa";
libraryHaskellDepends = [
base bytestring case-insensitive containers http-client ratel wai
];
@@ -162165,6 +166545,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "ratel-wai_1_0_1" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, containers
+ , http-client, ratel, wai
+ }:
+ mkDerivation {
+ pname = "ratel-wai";
+ version = "1.0.1";
+ sha256 = "190kgqhvda3r5gqk0j8pzr6d123fl77dv3i1csglq22yzrwynkv3";
+ libraryHaskellDepends = [
+ base bytestring case-insensitive containers http-client ratel wai
+ ];
+ homepage = "https://github.com/tfausak/ratel-wai#readme";
+ description = "Notify Honeybadger about exceptions via a WAI middleware";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"rating-systems" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -162221,6 +166618,38 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "rattletrap_4_0_5" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, binary, binary-bits
+ , bytestring, containers, filepath, http-client, http-client-tls
+ , HUnit, template-haskell, temporary, text, transformers
+ }:
+ mkDerivation {
+ pname = "rattletrap";
+ version = "4.0.5";
+ sha256 = "0yxmym79xrs35lz8qyrkyqa9vihng4p3448085ybwbfqmaqk6pl5";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-pretty base binary binary-bits bytestring containers
+ filepath http-client http-client-tls template-haskell text
+ transformers
+ ];
+ executableHaskellDepends = [
+ aeson aeson-pretty base binary binary-bits bytestring containers
+ filepath http-client http-client-tls template-haskell text
+ transformers
+ ];
+ testHaskellDepends = [
+ aeson aeson-pretty base binary binary-bits bytestring containers
+ filepath http-client http-client-tls HUnit template-haskell
+ temporary text transformers
+ ];
+ homepage = "https://github.com/tfausak/rattletrap#readme";
+ description = "Parse and generate Rocket League replays";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"raven-haskell" = callPackage
({ mkDerivation, aeson, base, bytestring, hspec, http-conduit, mtl
, network, random, resourcet, text, time, unordered-containers
@@ -162400,6 +166829,7 @@ self: {
homepage = "http://paychandoc.runeks.me/";
description = "RESTful Bitcoin Payment Channel Protocol Servant API description";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {bitcoin-payment-protocol = null;};
@@ -162563,17 +166993,18 @@ self: {
}) {};
"re2" = callPackage
- ({ mkDerivation, base, bytestring, chell, vector }:
+ ({ mkDerivation, base, bytestring, HUnit, re2, vector }:
mkDerivation {
pname = "re2";
- version = "0.1";
- sha256 = "08mmbxj9dpnb56b6vh0lz7nimp3w3v9g2c6ypxgz8ahvlia0a4f5";
+ version = "0.2";
+ sha256 = "0qfmiwy4kc87a736fpzh4cscvldiywq641gb9kvn4hc3sq7dh1k9";
libraryHaskellDepends = [ base bytestring vector ];
- testHaskellDepends = [ base bytestring chell vector ];
- homepage = "https://john-millikin.com/software/haskell-re2/";
+ librarySystemDepends = [ re2 ];
+ testHaskellDepends = [ base bytestring HUnit vector ];
+ homepage = "https://github.com/rblaze/haskell-re2#readme";
description = "Bindings to the re2 regular expression library";
license = stdenv.lib.licenses.mit;
- }) {};
+ }) {inherit (pkgs) re2;};
"react-flux" = callPackage
({ mkDerivation, aeson, base, bytestring, deepseq, mtl
@@ -163226,7 +167657,7 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "rebase_1_2_2" = callPackage
+ "rebase_1_2_3" = callPackage
({ mkDerivation, base, base-prelude, bifunctors, bytestring
, containers, contravariant, contravariant-extras, deepseq, dlist
, either, fail, hashable, mtl, profunctors, scientific
@@ -163235,8 +167666,8 @@ self: {
}:
mkDerivation {
pname = "rebase";
- version = "1.2.2";
- sha256 = "11p4wg2xissj4xzw80dww2srj2ylgw3wlnapykizy2fwjl1az9k4";
+ version = "1.2.3";
+ sha256 = "1glnxvgf79qm2iz4xxdn6zygjff42cyakk1nah2wrzkkrr11axqk";
libraryHaskellDepends = [
base base-prelude bifunctors bytestring containers contravariant
contravariant-extras deepseq dlist either fail hashable mtl
@@ -163436,6 +167867,8 @@ self: {
pname = "recursion-schemes";
version = "5.0.2";
sha256 = "1lmayskniljw3lxk64apvshn9h90gwfpflgxilfivsqhrjxnaj9s";
+ revision = "1";
+ editedCabalFile = "1mmq9dx0dgws4dbmij76snj91dv6czigs1kchi0vy01hplsb0wks";
libraryHaskellDepends = [
base base-orphans bifunctors comonad free semigroups
template-haskell transformers transformers-compat
@@ -163452,8 +167885,8 @@ self: {
}:
mkDerivation {
pname = "recursion-schemes-ext";
- version = "1.0.0.0";
- sha256 = "154ypcjn15z3g9rbl257csz8zfalkw7xf6pawfyi9w69jw2sz381";
+ version = "1.0.0.1";
+ sha256 = "1jd3dsns2ahsbkrzcp955bbq4xyhr0rmip3y6dvsgs4qjs0jlvbi";
libraryHaskellDepends = [
base composition-prelude lens recursion-schemes
];
@@ -163538,16 +167971,16 @@ self: {
}:
mkDerivation {
pname = "reddit";
- version = "0.2.1.0";
- sha256 = "0874swpm11l33p27dpsik8qj0by40cxjp864v6zbf2jfl0aavra9";
+ version = "0.2.2.2";
+ sha256 = "0k94rsnrnanjc7bwqfjzlk8l005gc3141mm8iqq680d8pdcgf8m8";
libraryHaskellDepends = [
aeson api-builder base bytestring data-default-class free
http-client http-client-tls http-types network text time
transformers unordered-containers vector
];
testHaskellDepends = [
- aeson api-builder base bytestring Cabal hspec http-client
- http-client-tls text time transformers
+ aeson api-builder base bytestring Cabal data-default-class hspec
+ http-client http-client-tls text time transformers
];
homepage = "https://github.com/intolerable/reddit";
description = "Library for interfacing with Reddit's API";
@@ -163921,8 +168354,8 @@ self: {
({ mkDerivation, base, template-haskell }:
mkDerivation {
pname = "reflection";
- version = "2.1.2";
- sha256 = "0f9w0akbm6p8h7kzgcd2f6nnpw1wy84pqn45vfz1ch5j0hn8h2d9";
+ version = "2.1.3";
+ sha256 = "01g4ilgj073vvn6dx4y1fkiq81xk01ccswbhvr8iw8fpmciiky48";
libraryHaskellDepends = [ base template-haskell ];
homepage = "http://github.com/ekmett/reflection";
description = "Reifies arbitrary terms into types that can be reflected back into terms";
@@ -163967,10 +168400,8 @@ self: {
}:
mkDerivation {
pname = "reflex";
- version = "0.4.0";
- sha256 = "173b8ysrghrw2fvdsqf6ybik9f24kw4ji1h8w4wj5kspbi12s36n";
- revision = "2";
- editedCabalFile = "14nrr41ndyfbdgpsi69xl9hmz5m6lank4cjbzxblvh3k0chg13z8";
+ version = "0.4.0.1";
+ sha256 = "1v4wwy2qc1gb914w5nqjvf7gibdw9yakmhdg260yjxbv1fkg8gyc";
libraryHaskellDepends = [
base containers dependent-map dependent-sum exception-transformers
haskell-src-exts haskell-src-meta mtl primitive ref-tf semigroups
@@ -164274,6 +168705,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "reformat" = callPackage
+ ({ mkDerivation, base, parsec }:
+ mkDerivation {
+ pname = "reformat";
+ version = "0.1.0.1";
+ sha256 = "1cvffbx2vhv18k4p95p0ddcxzyn8f10hg2bxa2da60fy9zkjg3am";
+ libraryHaskellDepends = [ base parsec ];
+ homepage = "https://github.com/Qinka/reformat";
+ description = "The parser and render to parsec and render the string";
+ license = stdenv.lib.licenses.gpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"refresht" = callPackage
({ mkDerivation, base, data-default, exceptions, lens, mtl }:
mkDerivation {
@@ -164837,8 +169281,8 @@ self: {
}:
mkDerivation {
pname = "regexchar";
- version = "0.9.0.15";
- sha256 = "05p3m9phi84lj94vw2l1jdzcxpq96rch64q85jc0wvcb22y6rfm7";
+ version = "0.9.0.16";
+ sha256 = "01bn4vazmnqvng8a989l50v7vy9bd7g57x9v44d6cn78q773vfzh";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -164857,15 +169301,15 @@ self: {
}) {};
"regexdot" = callPackage
- ({ mkDerivation, base, data-default, deepseq, parallel, parsec
- , toolshed
+ ({ mkDerivation, base, data-default, deepseq, extra, parallel
+ , parsec, toolshed
}:
mkDerivation {
pname = "regexdot";
- version = "0.12.0.1";
- sha256 = "0r30lrgbklymc9vkl6bcrmjrxbpqi5g4ngm4c2sjhw7bc4466vdr";
+ version = "0.12.1.0";
+ sha256 = "11hv0mc48y42dz0bjfcvjxjxcbag33kvdc2gxbx0lsgyb4lm0q8j";
libraryHaskellDepends = [
- base data-default deepseq parallel parsec toolshed
+ base data-default deepseq extra parallel parsec toolshed
];
homepage = "http://functionalley.eu/RegExDot/regExDot.html";
description = "A polymorphic, POSIX, extended regex-engine";
@@ -166250,8 +170694,8 @@ self: {
}:
mkDerivation {
pname = "reqcatcher";
- version = "0.1.0.0";
- sha256 = "0lcismi3aj6h2s2snv80w2pdk389zffd0cjrbd2y9285vw401mvm";
+ version = "0.1.0.1";
+ sha256 = "1ywh83ydy48mlix7mglnkhsjj3b13jqs2gs52by6q1g438nb31in";
libraryHaskellDepends = [ base http-types network text wai warp ];
testHaskellDepends = [
base http-client http-types HUnit lens tasty tasty-hunit wai wreq
@@ -166534,8 +170978,8 @@ self: {
}:
mkDerivation {
pname = "resourcet";
- version = "1.1.10";
- sha256 = "1hhw9w85nj8i2azzj5sxixffdvciq96b0jhl0zz24038bij66cyl";
+ version = "1.1.11";
+ sha256 = "1n94m2c7rxk2bgm8wywrkp9pmqlnv2dl35yaylninzm8xk1xavil";
libraryHaskellDepends = [
base containers exceptions lifted-base mmorph monad-control mtl
transformers transformers-base transformers-compat unliftio-core
@@ -166587,8 +171031,8 @@ self: {
pname = "rest-client";
version = "0.5.1.1";
sha256 = "0qzn56bj821l9gcxyq6lcgwfa2444igiqczajybrnyy8yb4j792x";
- revision = "1";
- editedCabalFile = "1q7ad9lhlszbmdv5r9zzqj9c3rh9x5hlrl4dyb4wb0xf0v3bj3kx";
+ revision = "2";
+ editedCabalFile = "0issr73rbnyaqfgx4c0wsy9sq948sqrkima2cr2sb1lkf8n4ihr8";
libraryHaskellDepends = [
aeson-utils base bytestring case-insensitive data-default
exceptions http-client http-conduit http-types hxt hxt-pickle-utils
@@ -166599,6 +171043,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "rest-client_0_5_2_1" = callPackage
+ ({ mkDerivation, aeson-utils, base, bytestring, case-insensitive
+ , data-default, exceptions, http-client, http-conduit, http-types
+ , hxt, hxt-pickle-utils, monad-control, mtl, resourcet, rest-types
+ , tostring, transformers, transformers-base, transformers-compat
+ , uri-encode, utf8-string
+ }:
+ mkDerivation {
+ pname = "rest-client";
+ version = "0.5.2.1";
+ sha256 = "0axilkrqjbq1l30cnm05fl0mm3ngnijnxgl6idi6mcydyrdgl14n";
+ libraryHaskellDepends = [
+ aeson-utils base bytestring case-insensitive data-default
+ exceptions http-client http-conduit http-types hxt hxt-pickle-utils
+ monad-control mtl resourcet rest-types tostring transformers
+ transformers-base transformers-compat uri-encode utf8-string
+ ];
+ description = "Utility library for use in generated API client libraries";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"rest-core" = callPackage
({ mkDerivation, aeson, aeson-utils, base, base-compat, bytestring
, case-insensitive, errors, fclabels, HUnit, hxt, hxt-pickle-utils
@@ -166759,8 +171225,8 @@ self: {
pname = "rest-wai";
version = "0.2.0.1";
sha256 = "00hd7i28p5diy00m18yi6f2jp5cxbvb9s2fv24phakjsp2vmw81q";
- revision = "1";
- editedCabalFile = "1j2n7bypgjajwsaahvp50cdwrl7y0nbv67bd3kfdq03yvz5s1py3";
+ revision = "2";
+ editedCabalFile = "1n3sd3vszi0ifw098jf2yan8xcnrxckr22jssl61k0vn74573hw3";
libraryHaskellDepends = [
base base-compat bytestring case-insensitive containers http-types
mime-types mtl rest-core text unordered-containers wai
@@ -167144,31 +171610,34 @@ self: {
}) {};
"rfc" = callPackage
- ({ mkDerivation, aeson, aeson-diff, async, base, blaze-html
+ ({ mkDerivation, aeson, aeson-diff, async, base, binary, blaze-html
, classy-prelude, containers, data-default, exceptions, hedis
, http-api-data, http-client-tls, http-types, lens, lifted-async
, markdown, monad-control, postgresql-simple, resource-pool
- , servant, servant-blaze, servant-docs, servant-server
- , servant-swagger, simple-logger, string-conversions, swagger2
- , temporary, text, time-units, unordered-containers, url
- , uuid-types, vector, wai, wai-cors, wai-extra, wreq
+ , servant, servant-blaze, servant-client, servant-docs
+ , servant-server, servant-swagger, simple-logger
+ , string-conversions, swagger2, temporary, text, time-units
+ , unordered-containers, url, uuid-types, vector, wai, wai-cors
+ , wai-extra, wreq
}:
mkDerivation {
pname = "rfc";
- version = "0.0.0.4";
- sha256 = "1zsbgq8f2a0sr575lkz6r5n0vq8jyn32q1sjxkw7d1zqkmzx1f0b";
+ version = "0.0.0.13";
+ sha256 = "06bjxgfhqjbgnkvk6vb42v3c8mi934y2dfb4hafzdgknwnlcsy19";
libraryHaskellDepends = [
- aeson aeson-diff async base blaze-html classy-prelude containers
- data-default exceptions hedis http-api-data http-client-tls
- http-types lens lifted-async markdown monad-control
- postgresql-simple resource-pool servant servant-blaze servant-docs
- servant-server servant-swagger simple-logger string-conversions
- swagger2 temporary text time-units unordered-containers url
- uuid-types vector wai wai-cors wai-extra wreq
+ aeson aeson-diff async base binary blaze-html classy-prelude
+ containers data-default exceptions hedis http-api-data
+ http-client-tls http-types lens lifted-async markdown monad-control
+ postgresql-simple resource-pool servant servant-blaze
+ servant-client servant-docs servant-server servant-swagger
+ simple-logger string-conversions swagger2 temporary text time-units
+ unordered-containers url uuid-types vector wai wai-cors wai-extra
+ wreq
];
homepage = "https://github.com/RobertFischer/rfc#README.md";
- description = "Robert Fischer's Common library, for all Robert Fischer's common needs";
+ description = "Robert Fischer's Common library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"rfc1413-server" = callPackage
@@ -167483,6 +171952,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "rio" = callPackage
+ ({ mkDerivation, base, bytestring, containers, deepseq, directory
+ , exceptions, filepath, hashable, microlens, mtl, text, time
+ , typed-process, unix, unliftio, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "rio";
+ version = "0.0.1.0";
+ sha256 = "006avzlv6ghwang3dhllxj7absa32sxw2qss2wdf3hxqbij6fy0b";
+ libraryHaskellDepends = [
+ base bytestring containers deepseq directory exceptions filepath
+ hashable microlens mtl text time typed-process unix unliftio
+ unordered-containers vector
+ ];
+ homepage = "https://github.com/commercialhaskell/rio#readme";
+ description = "A standard library for Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"riot" = callPackage
({ mkDerivation, base, containers, directory, haskell98, mtl
, ncurses, old-locale, packedstring, process, unix
@@ -168378,8 +172867,8 @@ self: {
}:
mkDerivation {
pname = "rotating-log";
- version = "0.4.2";
- sha256 = "1v2lyyapsbyrnswggy8lfn5qq2xrzdrw3vc881xkhc4yrdzaxw3f";
+ version = "0.4.3";
+ sha256 = "1xpfm07kd6mz13zwzmrwcp2cmc0dr0j94nhy1gzw1064jmd7b482";
libraryHaskellDepends = [
base bytestring directory filepath old-locale time
time-locale-compat
@@ -168723,8 +173212,8 @@ self: {
}:
mkDerivation {
pname = "rss-conduit";
- version = "0.4.2.0";
- sha256 = "1fgaf15i2fbr1v2kd0s80zkbafsl50sv4b48my0nvs8vqhha5n7y";
+ version = "0.4.2.1";
+ sha256 = "04jpc3zrm9sh1ncqz2n0qr7wgabgpi56vsj24rppqiwrx31jrxdq";
libraryHaskellDepends = [
atom-conduit base conduit conduit-combinators containers
dublincore-xml-conduit lens-simple safe safe-exceptions singletons
@@ -168776,8 +173265,8 @@ self: {
}:
mkDerivation {
pname = "rtcm";
- version = "0.2.11";
- sha256 = "01vlj8ilxzyv6rqffpj3il7dcmcyy4vg6ab3mprdgcy6f0rpsv8b";
+ version = "0.2.14";
+ sha256 = "1ypwxlfmlhx3zjmgi24y5mriprk9wjnc14l0lry38j4ml11glcsd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -168998,17 +173487,18 @@ self: {
}) {};
"ruler" = callPackage
- ({ mkDerivation, base, containers, mtl, shuffle, uhc-util, uuagc
- , uuagc-cabal, uulib
+ ({ mkDerivation, base, Cabal, containers, mtl, shuffle, uhc-util
+ , uuagc, uuagc-cabal, uulib
}:
mkDerivation {
pname = "ruler";
- version = "0.4.0.2";
- sha256 = "1kcca2h3gvp63s9frnq4dmhaiw5pxhk5ji86bar0cwyrc9all8v5";
+ version = "0.4.1.0";
+ sha256 = "1qa0d2jaws5wn2npjcsc66m59d64dxbm074h7lkysawdgq9hzdy1";
isLibrary = false;
isExecutable = true;
+ setupHaskellDepends = [ base Cabal shuffle uuagc uuagc-cabal ];
executableHaskellDepends = [
- base containers mtl shuffle uhc-util uuagc uuagc-cabal uulib
+ base Cabal containers mtl shuffle uhc-util uuagc uuagc-cabal uulib
];
homepage = "https://github.com/UU-ComputerScience/ruler";
description = "Ruler tool for UHC";
@@ -169221,6 +173711,20 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "safe_0_3_16" = callPackage
+ ({ mkDerivation, base, deepseq, QuickCheck }:
+ mkDerivation {
+ pname = "safe";
+ version = "0.3.16";
+ sha256 = "0xar4gh32izxl2a102xpgjrhppin7hqa837pv3fswmlj51cfb2k8";
+ libraryHaskellDepends = [ base ];
+ testHaskellDepends = [ base deepseq QuickCheck ];
+ homepage = "https://github.com/ndmitchell/safe#readme";
+ description = "Library of safe (exception free) functions";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"safe-access" = callPackage
({ mkDerivation, base, mtl, transformers }:
mkDerivation {
@@ -169248,6 +173752,22 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "safe-exceptions_0_1_7_0" = callPackage
+ ({ mkDerivation, base, deepseq, exceptions, hspec, transformers
+ , void
+ }:
+ mkDerivation {
+ pname = "safe-exceptions";
+ version = "0.1.7.0";
+ sha256 = "0sd0zfsm9pcll5bzzj523rbn45adjrnavdkz52hgmdjjgdcdrk8q";
+ libraryHaskellDepends = [ base deepseq exceptions transformers ];
+ testHaskellDepends = [ base hspec void ];
+ homepage = "https://github.com/fpco/safe-exceptions#readme";
+ description = "Safe, consistent, and easy exception handling";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"safe-exceptions-checked" = callPackage
({ mkDerivation, base, deepseq, hspec, safe-exceptions
, transformers
@@ -169256,8 +173776,8 @@ self: {
pname = "safe-exceptions-checked";
version = "0.1.0";
sha256 = "0gyaq2pf87dqn0l6n3mi0qamf99y3zj5xxh513c0iqwdh8mma1yq";
- revision = "2";
- editedCabalFile = "18fwk5yr8zm4y215vbsl149jkn9pxyv3m8mgq3979pvs1c4kqivz";
+ revision = "3";
+ editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f";
libraryHaskellDepends = [
base deepseq safe-exceptions transformers
];
@@ -169459,8 +173979,8 @@ self: {
}:
mkDerivation {
pname = "safecopy-store";
- version = "0.9.5";
- sha256 = "177v32sn3bxk3a4f4lg9vh4yc1lgylzrwzs0n6k4jrs8jxlz74iw";
+ version = "0.9.6";
+ sha256 = "1x82j4zw26pp38bcx4rnmz7ikpz8nf9mc4pkpcg9c9x76p8kxsfa";
libraryHaskellDepends = [
array base bytestring containers old-time store store-core
template-haskell text time vector
@@ -169496,22 +174016,23 @@ self: {
"safeio" = callPackage
({ mkDerivation, base, bytestring, conduit, conduit-combinators
- , directory, filepath, HUnit, resourcet, test-framework
+ , directory, exceptions, filepath, HUnit, resourcet, test-framework
, test-framework-hunit, test-framework-th, unix
}:
mkDerivation {
pname = "safeio";
- version = "0.0.4.0";
- sha256 = "1abbg6nxpz4va54r2005swlyw8k4y61xjhcz4s3rshc09cmrrn6l";
+ version = "0.0.5.0";
+ sha256 = "04g3070cbjdqj0h9l9ii6470xcbn40xfv4fr89a8yvnkdim9nyfm";
libraryHaskellDepends = [
- base bytestring conduit conduit-combinators directory filepath
- resourcet unix
+ base bytestring conduit conduit-combinators directory exceptions
+ filepath resourcet unix
];
testHaskellDepends = [
- base bytestring conduit conduit-combinators directory filepath
- HUnit resourcet test-framework test-framework-hunit
+ base bytestring conduit conduit-combinators directory exceptions
+ filepath HUnit resourcet test-framework test-framework-hunit
test-framework-th unix
];
+ homepage = "https://github.com/luispedro/safeio#readme";
description = "Write output to disk atomically";
license = stdenv.lib.licenses.mit;
}) {};
@@ -169679,8 +174200,8 @@ self: {
({ mkDerivation, base, doctest }:
mkDerivation {
pname = "salve";
- version = "0.0.9";
- sha256 = "0x16rdrm8i2jwbi1zd7zj43r3h7jb9fzb33b5nbwkwfh397sm11h";
+ version = "1.0.0";
+ sha256 = "0s7np2xdzc7sbhyh0hwfx6bznjxji5cg4ymvqncjdcdkb8w31gdk";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base doctest ];
homepage = "https://github.com/tfausak/salve#readme";
@@ -170185,8 +174706,8 @@ self: {
}:
mkDerivation {
pname = "savage";
- version = "1.0.2";
- sha256 = "0fs4nbcmxcq62jmfa5ds52c3qra9dypac7grppsgxcbva7jfpw7l";
+ version = "1.0.3";
+ sha256 = "1pxh2qa3ryfx8xrp3mk69d1x97yyngma32p18wxccvl5zvwbkz9c";
libraryHaskellDepends = [
base bytestring containers exceptions mmorph monad-control mtl
primitive random resourcet text time transformers transformers-base
@@ -170223,8 +174744,8 @@ self: {
}:
mkDerivation {
pname = "sbp";
- version = "2.3.2";
- sha256 = "19r6a5sh2shaxzkvcysjk2ibfx85w0s1yvg2zjznka4wpzihfs91";
+ version = "2.3.6";
+ sha256 = "05n81l73r1w39cwrjyapwddhq9fcgj22cpn2y5ccjk7mj72jknhk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -170290,6 +174811,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {inherit (pkgs) z3;};
+ "sbv_7_5" = callPackage
+ ({ mkDerivation, array, async, base, bytestring, containers
+ , crackNum, data-binary-ieee754, deepseq, directory, doctest
+ , filepath, generic-deriving, ghc, Glob, hlint, mtl, pretty
+ , process, QuickCheck, random, syb, tasty, tasty-golden
+ , tasty-hunit, template-haskell, time, z3
+ }:
+ mkDerivation {
+ pname = "sbv";
+ version = "7.5";
+ sha256 = "1c5drbqz0qld54v0k29zkra1zj09izkzf0rrmgcmgvzz7dfac4ik";
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ array async base containers crackNum data-binary-ieee754 deepseq
+ directory filepath generic-deriving ghc mtl pretty process
+ QuickCheck random syb template-haskell time
+ ];
+ testHaskellDepends = [
+ base bytestring containers data-binary-ieee754 directory doctest
+ filepath Glob hlint mtl random syb tasty tasty-golden tasty-hunit
+ template-haskell
+ ];
+ testSystemDepends = [ z3 ];
+ homepage = "http://leventerkok.github.com/sbv/";
+ description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) z3;};
+
"sbvPlugin" = callPackage
({ mkDerivation, base, containers, directory, filepath, ghc
, ghc-prim, mtl, process, sbv, tasty, tasty-golden
@@ -170880,8 +175430,8 @@ self: {
pname = "scientific";
version = "0.3.5.2";
sha256 = "0msnjz7ml0zycw9bssslxbg0nigziw7vs5km4q3vjbs8jpzpkr2w";
- revision = "2";
- editedCabalFile = "0wsrd213480p3pqrd6i650fr092yv7dhla7a85p8154pn5gvbr0a";
+ revision = "4";
+ editedCabalFile = "108m6b9w8l2q4r68mla9m5z47k6ahb0p68hypsmn140hgfr6a8la";
libraryHaskellDepends = [
base binary bytestring containers deepseq hashable integer-gmp
integer-logarithms primitive text
@@ -171045,8 +175595,8 @@ self: {
pname = "scotty";
version = "0.11.0";
sha256 = "1vc6lc8q1cqqq67y78c70sw2jim8ps7bgp85a2gjgwfc6z4h68l9";
- revision = "7";
- editedCabalFile = "0mn4v7sgnihxvd9wmdqlfhz8818n4r4kgqvrz7sn4raqq5jxkdyr";
+ revision = "8";
+ editedCabalFile = "1jjpaiksvdhsmvv6p267w5grkiv4xmd59xsgwhhyhp5v2503p8sn";
libraryHaskellDepends = [
aeson base blaze-builder bytestring case-insensitive
data-default-class fail http-types monad-control mtl nats network
@@ -171660,6 +176210,27 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) SDL2_mixer;};
+ "sdl2-mixer_1_1_0" = callPackage
+ ({ mkDerivation, base, bytestring, data-default-class, lifted-base
+ , monad-control, sdl2, SDL2_mixer, template-haskell, vector
+ }:
+ mkDerivation {
+ pname = "sdl2-mixer";
+ version = "1.1.0";
+ sha256 = "1k8avyccq5l9z7bwxigim312yaancxl1sr3q6a96bcm7pnhiak0g";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring data-default-class lifted-base monad-control sdl2
+ template-haskell vector
+ ];
+ librarySystemDepends = [ SDL2_mixer ];
+ libraryPkgconfigDepends = [ SDL2_mixer ];
+ description = "Bindings to SDL2_mixer";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {inherit (pkgs) SDL2_mixer;};
+
"sdl2-ttf" = callPackage
({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_ttf
, template-haskell, text, transformers
@@ -171701,8 +176272,8 @@ self: {
}:
mkDerivation {
pname = "sdr";
- version = "0.1.0.9";
- sha256 = "0mabbapd1hvf26j1z3mfgpf8qyq7ccvsda57wkscsc6rkw2jaxqd";
+ version = "0.1.0.10";
+ sha256 = "1cjp05sk558vcwasbi15j6qzpa9icfqcyjsvz3a4b2fb59z6gv6z";
libraryHaskellDepends = [
array base bytestring cairo cereal Chart Chart-cairo colour
containers Decimal dynamic-graph either fftwRaw GLFW-b mwc-random
@@ -172065,14 +176636,14 @@ self: {
}:
mkDerivation {
pname = "selda";
- version = "0.1.11.2";
- sha256 = "0ahh54sz40d4gcfgx6fb0cy1447b3qlk9kir89wk3brzfaglyyn9";
+ version = "0.1.12";
+ sha256 = "1pbf141p3j2gj91lz4ilfc75kf2b0mzfnzxpjn220knkzianm2d9";
libraryHaskellDepends = [
base bytestring exceptions hashable mtl psqueues text time
unordered-containers
];
homepage = "https://selda.link";
- description = "Type-safe, high-level EDSL for interacting with relational databases";
+ description = "Multi-backend, high-level EDSL for interacting with SQL databases";
license = stdenv.lib.licenses.mit;
}) {};
@@ -172082,10 +176653,8 @@ self: {
}:
mkDerivation {
pname = "selda-postgresql";
- version = "0.1.7.0";
- sha256 = "0smx2hvpdxjcw58zchwmzcqz4xr5m1idv5y5rrj20df190r4l3l2";
- revision = "1";
- editedCabalFile = "0icxqqb4n1qbfpjlngs3lypnvjanwqrw3l8298my7b1wzj3iyw2m";
+ version = "0.1.7.1";
+ sha256 = "1izc27wdi9ldhjmmhwjw99g8pgbcayldwn65p5lsad173nc2rd22";
libraryHaskellDepends = [
base bytestring exceptions postgresql-libpq selda text
];
@@ -172309,6 +176878,29 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "semigroupoids_5_2_2" = 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.2.2";
+ sha256 = "17i96y4iqj8clcs090lf6k0ij3j16nj14vsfwz0mm9nd6i4gbpp4";
+ 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 ];
+ homepage = "http://github.com/ekmett/semigroupoids";
+ description = "Semigroupoids: Category sans id";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"semigroupoids-syntax" = callPackage
({ mkDerivation, base, comonad, containers, contravariant
, directory, distributive, doctest, filepath, QuickCheck
@@ -172343,6 +176935,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "semigroups_0_18_4" = callPackage
+ ({ mkDerivation, base }:
+ mkDerivation {
+ pname = "semigroups";
+ version = "0.18.4";
+ sha256 = "09sxd17h1kcjsjaf1am2nwpb4vaq8d0q718fbkxwysws691317jq";
+ libraryHaskellDepends = [ base ];
+ homepage = "http://github.com/ekmett/semigroups/";
+ description = "Anything that associates";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"semigroups-actions" = callPackage
({ mkDerivation, base, containers, semigroups }:
mkDerivation {
@@ -172550,6 +177155,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "sensu-run_0_4_0_4" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, filepath, http-client
+ , http-types, lens, network, optparse-applicative, process
+ , temporary, text, time, unix, unix-compat, vector, wreq
+ }:
+ mkDerivation {
+ pname = "sensu-run";
+ version = "0.4.0.4";
+ sha256 = "1pgzfa6ns67fq5cx7qizwjfb2gw6awx012iwhskx8s4wg9snbq5y";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ aeson base bytestring filepath http-client http-types lens network
+ optparse-applicative process temporary text time unix unix-compat
+ vector wreq
+ ];
+ homepage = "https://github.com/maoe/sensu-run#readme";
+ description = "A tool to send command execution results to Sensu";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"sentence-jp" = callPackage
({ mkDerivation, base, mecab, random-shuffle, text, transformers }:
mkDerivation {
@@ -172943,10 +177570,10 @@ self: {
}) {};
"serokell-util" = callPackage
- ({ mkDerivation, acid-state, aeson, ansi-terminal, base
- , base16-bytestring, base64-bytestring, bytestring, clock
- , containers, deepseq, directory, exceptions, extra, filepath
- , formatting, hashable, hspec, lens, log-warper, monad-control, mtl
+ ({ mkDerivation, aeson, ansi-terminal, base, base16-bytestring
+ , base64-bytestring, bytestring, clock, containers, deepseq
+ , directory, exceptions, extra, filepath, formatting, hashable
+ , hspec, hspec-discover, lens, log-warper, monad-control, mtl
, optparse-applicative, parsec, QuickCheck, quickcheck-instances
, safecopy, scientific, semigroups, stm, template-haskell, text
, text-format, time-units, transformers, universum
@@ -172954,21 +177581,21 @@ self: {
}:
mkDerivation {
pname = "serokell-util";
- version = "0.5.3";
- sha256 = "02rr1wc1ss2rjx31w485k2hdnzhbs59pqzr9yvmk39082q9ppmk3";
+ version = "0.6.0";
+ sha256 = "1821f6hak3wwjradyzy2zb3pfy153l7yc39i5z2mdxn8b4vh4k88";
libraryHaskellDepends = [
- acid-state aeson ansi-terminal base base16-bytestring
- base64-bytestring bytestring clock containers deepseq directory
- exceptions extra filepath formatting hashable lens log-warper
- monad-control mtl optparse-applicative parsec QuickCheck
- quickcheck-instances safecopy scientific semigroups stm
- template-haskell text text-format time-units transformers universum
- unordered-containers vector yaml
+ aeson ansi-terminal base base16-bytestring base64-bytestring
+ bytestring clock containers deepseq directory exceptions extra
+ filepath formatting hashable lens log-warper monad-control mtl
+ optparse-applicative parsec QuickCheck quickcheck-instances
+ scientific semigroups stm template-haskell text text-format
+ time-units transformers universum unordered-containers vector yaml
];
testHaskellDepends = [
aeson base bytestring hspec QuickCheck quickcheck-instances
safecopy scientific text text-format unordered-containers vector
];
+ testToolDepends = [ hspec-discover ];
homepage = "https://github.com/serokell/serokell-util";
description = "General-purpose functions by Serokell";
license = stdenv.lib.licenses.mit;
@@ -173070,10 +177697,11 @@ self: {
"servant_0_12_1" = callPackage
({ mkDerivation, aeson, aeson-compat, attoparsec, base, base-compat
, bytestring, Cabal, cabal-doctest, case-insensitive, directory
- , doctest, filemanip, filepath, hspec, http-api-data, http-media
- , http-types, mmorph, mtl, natural-transformation, network-uri
- , QuickCheck, quickcheck-instances, string-conversions, tagged
- , text, url, vault
+ , doctest, filemanip, filepath, hspec, hspec-discover
+ , http-api-data, http-media, http-types, mmorph, mtl
+ , natural-transformation, network-uri, QuickCheck
+ , quickcheck-instances, string-conversions, tagged, text, url
+ , vault
}:
mkDerivation {
pname = "servant";
@@ -173091,6 +177719,7 @@ self: {
doctest filemanip filepath hspec QuickCheck quickcheck-instances
string-conversions text url
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "A family of combinators for defining webservices APIs";
license = stdenv.lib.licenses.bsd3;
@@ -173126,8 +177755,8 @@ self: {
}:
mkDerivation {
pname = "servant-aeson-specs";
- version = "0.5.3.0";
- sha256 = "13xakmbr0qykff695cj631g97nlcjmmzki68c2gg5sn9jl63yq1q";
+ version = "0.6.1.0";
+ sha256 = "0246bdrcy0rq0jyba2c945hlz8csaff9zakv0g5qpzylsc5dnwmd";
libraryHaskellDepends = [
aeson aeson-pretty base bytestring directory filepath hspec
hspec-golden-aeson QuickCheck quickcheck-arbitrary-adt random
@@ -173159,9 +177788,10 @@ self: {
"servant-auth-client" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, hspec
- , http-client, http-types, jose, QuickCheck, servant, servant-auth
- , servant-auth-server, servant-client, servant-client-core
- , servant-server, text, time, transformers, wai, warp
+ , hspec-discover, http-client, http-types, jose, QuickCheck
+ , servant, servant-auth, servant-auth-server, servant-client
+ , servant-client-core, servant-server, text, time, transformers
+ , wai, warp
}:
mkDerivation {
pname = "servant-auth-client";
@@ -173176,6 +177806,7 @@ self: {
servant servant-auth servant-auth-server servant-client
servant-server time transformers wai warp
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://github.com/plow-technologies/servant-auth#readme";
description = "servant-client/servant-auth compatibility";
license = stdenv.lib.licenses.bsd3;
@@ -173211,7 +177842,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "servant-auth-cookie_0_6_0" = callPackage
+ "servant-auth-cookie_0_6_0_3" = callPackage
({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring
, cereal, cereal-time, cookie, criterion, cryptonite, data-default
, deepseq, exceptions, hspec, http-api-data, http-types, memory
@@ -173220,8 +177851,8 @@ self: {
}:
mkDerivation {
pname = "servant-auth-cookie";
- version = "0.6.0";
- sha256 = "04pyy8534hnwwa5z423d6p5j2d5mzwbgls2q11hcma35nkz8y0xw";
+ version = "0.6.0.3";
+ sha256 = "12cwqvva4f2kricvwq645f5c759pjz4w2b9yhx9iz7agc95ghkv0";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -173243,9 +177874,9 @@ self: {
}) {};
"servant-auth-docs" = callPackage
- ({ mkDerivation, base, Cabal, cabal-doctest, doctest, hspec, lens
- , QuickCheck, servant, servant-auth, servant-docs, template-haskell
- , text
+ ({ mkDerivation, base, Cabal, cabal-doctest, doctest, hspec
+ , hspec-discover, lens, QuickCheck, servant, servant-auth
+ , servant-docs, template-haskell, text
}:
mkDerivation {
pname = "servant-auth-docs";
@@ -173259,6 +177890,7 @@ self: {
base doctest hspec lens QuickCheck servant servant-auth
servant-docs template-haskell text
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://github.com/plow-technologies/servant-auth#readme";
description = "servant-docs/servant-auth compatibility";
license = stdenv.lib.licenses.bsd3;
@@ -173303,10 +177935,11 @@ self: {
"servant-auth-server" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, blaze-builder
, bytestring, bytestring-conversion, case-insensitive, cookie
- , crypto-api, data-default-class, entropy, hspec, http-api-data
- , http-client, http-types, jose, lens, lens-aeson, markdown-unlit
- , monad-time, mtl, QuickCheck, servant-auth, servant-server, tagged
- , text, time, transformers, unordered-containers, wai, warp, wreq
+ , crypto-api, data-default-class, entropy, hspec, hspec-discover
+ , http-api-data, http-client, http-types, jose, lens, lens-aeson
+ , markdown-unlit, monad-time, mtl, QuickCheck, servant-auth
+ , servant-server, tagged, text, time, transformers
+ , unordered-containers, wai, warp, wreq
}:
mkDerivation {
pname = "servant-auth-server";
@@ -173330,14 +177963,15 @@ self: {
jose lens lens-aeson mtl QuickCheck servant-server time wai warp
wreq
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://github.com/plow-technologies/servant-auth#readme";
description = "servant-server/servant-auth compatibility";
license = stdenv.lib.licenses.bsd3;
}) {};
"servant-auth-swagger" = callPackage
- ({ mkDerivation, base, hspec, lens, QuickCheck, servant
- , servant-auth, servant-swagger, swagger2, text
+ ({ mkDerivation, base, hspec, hspec-discover, lens, QuickCheck
+ , servant, servant-auth, servant-swagger, swagger2, text
}:
mkDerivation {
pname = "servant-auth-swagger";
@@ -173350,6 +177984,7 @@ self: {
base hspec lens QuickCheck servant servant-auth servant-swagger
swagger2 text
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://github.com/plow-technologies/servant-auth#readme";
description = "servant-swagger/servant-auth compatibility";
license = stdenv.lib.licenses.bsd3;
@@ -173362,8 +177997,8 @@ self: {
}:
mkDerivation {
pname = "servant-auth-token";
- version = "0.5.0.0";
- sha256 = "1ivlc7ivn4rn2appxyv2cgn4s812s82d3a8q9ykfy1yhpjygk9hp";
+ version = "0.5.1.0";
+ sha256 = "113pjs52nvi94bfx1ys4lanyvzkrlmb1p2y8sxhhb4bal917xki1";
libraryHaskellDepends = [
aeson-injector base bytestring containers http-api-data mtl
pwstore-fast servant servant-auth-token-api servant-server text
@@ -173384,8 +178019,8 @@ self: {
}:
mkDerivation {
pname = "servant-auth-token-acid";
- version = "0.5.0.0";
- sha256 = "1hvslg23l43k6wz6z84xcm3sv0lxgnvcsrx7z8493zyav9lnlx6h";
+ version = "0.5.1.0";
+ sha256 = "1kxmgdj7bz2bbs6n9kfp28y9a9cvc2xk8345jnd4ks0iw43xjwr3";
libraryHaskellDepends = [
acid-state aeson-injector base bytestring containers ghc-prim
monad-control mtl safe safecopy servant-auth-token
@@ -173404,8 +178039,8 @@ self: {
}:
mkDerivation {
pname = "servant-auth-token-api";
- version = "0.4.2.2";
- sha256 = "0dnaqhri1hg1c3gmlpnpyk21q4cq9j513fnd3g1m9k7mkc6h6bgv";
+ version = "0.5.1.0";
+ sha256 = "0kn25ldc774zx8r5hnrd7ibdm4g3769f99g8vl99x0miplpz0v0a";
libraryHaskellDepends = [
aeson aeson-injector base lens raw-strings-qq servant servant-docs
servant-swagger swagger2 text
@@ -173425,8 +178060,8 @@ self: {
}:
mkDerivation {
pname = "servant-auth-token-leveldb";
- version = "0.5.0.0";
- sha256 = "1v1h9jpc9ypdd6sfcb9w4lhv2ldsnlcpmmsghbdky50vqmq1y8qj";
+ version = "0.5.1.0";
+ sha256 = "0bkprvi9zwc599ynkabjsk1m9wpbvfpmhzjx6rqj92m1nki62264";
libraryHaskellDepends = [
aeson-injector base bytestring concurrent-extra containers
exceptions lens leveldb-haskell monad-control mtl resourcet safe
@@ -173448,8 +178083,8 @@ self: {
}:
mkDerivation {
pname = "servant-auth-token-persistent";
- version = "0.6.0.0";
- sha256 = "18y9g9pfzbhv35pfcr4973h320p8ify8nf4vllcdv83whfm48bc1";
+ version = "0.6.1.0";
+ sha256 = "1ni74vk121ncfkdjksf15g6686c2acbg22dn1srzwyngx5iwjcnc";
libraryHaskellDepends = [
aeson-injector base bytestring containers monad-control mtl
persistent persistent-template servant-auth-token
@@ -173471,8 +178106,8 @@ self: {
}:
mkDerivation {
pname = "servant-auth-token-rocksdb";
- version = "0.5.0.0";
- sha256 = "0cr8qgkv89sps6ykv0v1bng2xk4g7r00fjnmgjp58kpc18pvg4vl";
+ version = "0.5.1.0";
+ sha256 = "1xbnqv3b64r1xnzra2pdysjg5r9kxwxaya5rfrcgl8fz1b4n4hbb";
libraryHaskellDepends = [
aeson-injector base bytestring concurrent-extra containers
exceptions lens monad-control mtl resourcet rocksdb-haskell safe
@@ -173589,10 +178224,11 @@ self: {
"servant-client_0_12_0_1" = callPackage
({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
, containers, deepseq, exceptions, generics-sop, hspec
- , http-api-data, http-client, http-client-tls, http-media
- , http-types, HUnit, monad-control, mtl, network, QuickCheck
- , semigroupoids, servant, servant-client-core, servant-server, text
- , transformers, transformers-base, transformers-compat, wai, warp
+ , hspec-discover, http-api-data, http-client, http-client-tls
+ , http-media, http-types, HUnit, monad-control, mtl, network
+ , QuickCheck, semigroupoids, servant, servant-client-core
+ , servant-server, text, transformers, transformers-base
+ , transformers-compat, wai, warp
}:
mkDerivation {
pname = "servant-client";
@@ -173612,6 +178248,7 @@ self: {
network QuickCheck servant servant-client-core servant-server text
transformers transformers-compat wai warp
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "automatical derivation of querying functions for servant webservices";
license = stdenv.lib.licenses.bsd3;
@@ -173621,8 +178258,8 @@ self: {
"servant-client-core" = callPackage
({ mkDerivation, base, base-compat, base64-bytestring, bytestring
, containers, deepseq, exceptions, generics-sop, hspec
- , http-api-data, http-media, http-types, mtl, network-uri
- , QuickCheck, safe, servant, text
+ , hspec-discover, http-api-data, http-media, http-types, mtl
+ , network-uri, QuickCheck, safe, servant, text
}:
mkDerivation {
pname = "servant-client-core";
@@ -173636,6 +178273,7 @@ self: {
safe servant text
];
testHaskellDepends = [ base base-compat deepseq hspec QuickCheck ];
+ testToolDepends = [ hspec-discover ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "Core functionality and class for client function generation for servant APIs";
license = stdenv.lib.licenses.bsd3;
@@ -173737,8 +178375,8 @@ self: {
"servant-docs_0_11_1" = callPackage
({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring
, case-insensitive, control-monad-omega, hashable, hspec
- , http-media, http-types, lens, servant, string-conversions, text
- , unordered-containers
+ , hspec-discover, http-media, http-types, lens, servant
+ , string-conversions, text, unordered-containers
}:
mkDerivation {
pname = "servant-docs";
@@ -173757,6 +178395,7 @@ self: {
testHaskellDepends = [
aeson base hspec lens servant string-conversions
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "generate API docs for your servant webservice";
license = stdenv.lib.licenses.bsd3;
@@ -173867,8 +178506,8 @@ self: {
}:
mkDerivation {
pname = "servant-exceptions";
- version = "0.1.0";
- sha256 = "0dkwggl7d8drnd2msk3cniyi7ia58d7cwi1hb0zcqgc0p9br7lbn";
+ version = "0.1.1";
+ sha256 = "1qdb6ins7l0ryyrmg9j5pw428rlhkmzpbq5jqawfn01j8vf9yav5";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -173879,7 +178518,6 @@ self: {
aeson base exceptions http-types servant-server text warp
];
homepage = "https://github.com/ch1bo/servant-exceptions#readme";
- description = "Extensible exceptions for servant APIs";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -173896,13 +178534,16 @@ self: {
}) {};
"servant-foreign_0_10_2" = callPackage
- ({ mkDerivation, base, hspec, http-types, lens, servant, text }:
+ ({ mkDerivation, base, hspec, hspec-discover, http-types, lens
+ , servant, text
+ }:
mkDerivation {
pname = "servant-foreign";
version = "0.10.2";
sha256 = "16r42df628jsw9khv5kjwb702ajwmxg4kya19acm10660c0gxygs";
libraryHaskellDepends = [ base http-types lens servant text ];
testHaskellDepends = [ base hspec servant ];
+ testToolDepends = [ hspec-discover ];
description = "Helpers for generating clients for servant APIs in any programming language";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -173951,19 +178592,19 @@ self: {
"servant-github-webhook" = callPackage
({ mkDerivation, aeson, base, base16-bytestring, bytestring
, cryptonite, github, http-types, memory, servant, servant-server
- , string-conversions, text, transformers, wai, warp
+ , string-conversions, text, wai, warp
}:
mkDerivation {
pname = "servant-github-webhook";
- version = "0.3.1.0";
- sha256 = "0px2pxw6piqjh2vawf0mkhcf96pqk2rm0izvbsy5xcd011qlvfhq";
+ version = "0.3.2.1";
+ sha256 = "1yy5hnnj64wgafn60cj4ywwkwpzl506g0fsm9fcsyz4dr7irhpyf";
libraryHaskellDepends = [
aeson base base16-bytestring bytestring cryptonite github
http-types memory servant servant-server string-conversions text
- transformers wai
+ wai
];
testHaskellDepends = [
- aeson base bytestring servant-server transformers wai warp
+ aeson base bytestring servant-server wai warp
];
homepage = "https://github.com/tsani/servant-github-webhook";
description = "Servant combinators to facilitate writing GitHub webhooks";
@@ -174043,9 +178684,9 @@ self: {
"servant-js" = callPackage
({ mkDerivation, aeson, base, base-compat, charset, filepath, hspec
- , hspec-expectations, language-ecmascript, lens, QuickCheck
- , servant, servant-foreign, servant-server, stm, text, transformers
- , warp
+ , hspec-discover, hspec-expectations, language-ecmascript, lens
+ , QuickCheck, servant, servant-foreign, servant-server, stm, text
+ , transformers, warp
}:
mkDerivation {
pname = "servant-js";
@@ -174064,6 +178705,7 @@ self: {
base base-compat hspec hspec-expectations language-ecmascript lens
QuickCheck servant text
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "Automatically derive javascript functions to query servant webservices";
license = stdenv.lib.licenses.bsd3;
@@ -174076,8 +178718,8 @@ self: {
}:
mkDerivation {
pname = "servant-kotlin";
- version = "0.1.0.2";
- sha256 = "0dwm9aia14hr2gblcak7vyh7jgs1mnfwqq131rxyygf9d11wpx41";
+ version = "0.1.0.3";
+ sha256 = "1idki7vf2yph8sndpl8r9a5cngix3163yxb73l5l5fm9a78pk5gd";
libraryHaskellDepends = [
base containers directory formatting lens servant servant-foreign
text time wl-pprint-text
@@ -174150,13 +178792,15 @@ self: {
"servant-mock" = callPackage
({ mkDerivation, aeson, base, bytestring, bytestring-conversion
- , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server
- , transformers, wai, warp
+ , hspec, hspec-discover, hspec-wai, http-types, QuickCheck, servant
+ , servant-server, transformers, wai, warp
}:
mkDerivation {
pname = "servant-mock";
version = "0.8.3";
sha256 = "0fwkygv4rx98qys8apj7aby4xhssgzqdgsxmb6vh4ky71vjq0q5m";
+ revision = "2";
+ editedCabalFile = "00dq310ik9nm20mxxr9d46jilp9h6k54f5mdl1ii2ggwy2mck1dm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -174170,6 +178814,7 @@ self: {
aeson base bytestring-conversion hspec hspec-wai QuickCheck servant
servant-server wai
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "Derive a mock server for free from your servant API types";
license = stdenv.lib.licenses.bsd3;
@@ -174252,6 +178897,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "servant-pandoc_0_5_0_0" = callPackage
+ ({ mkDerivation, base, bytestring, case-insensitive, http-media
+ , lens, pandoc-types, servant-docs, string-conversions, text
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "servant-pandoc";
+ version = "0.5.0.0";
+ sha256 = "0qq4ahwl8vc8xgmvbh8qac7751hizgdcbp43gc0kxfs7xpy0kmqj";
+ libraryHaskellDepends = [
+ base bytestring case-insensitive http-media lens pandoc-types
+ servant-docs string-conversions text unordered-containers
+ ];
+ description = "Use Pandoc to render servant API documentation";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-pool" = callPackage
({ mkDerivation, base, resource-pool, servant, time }:
mkDerivation {
@@ -174285,6 +178948,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "servant-proto-lens" = callPackage
+ ({ mkDerivation, async, base, bytestring, data-default-class
+ , http-client, http-media, HUnit, lens, proto-lens
+ , proto-lens-protobuf-types, servant, servant-client
+ , servant-server, test-framework, test-framework-hunit, warp
+ }:
+ mkDerivation {
+ pname = "servant-proto-lens";
+ version = "0.1.0.1";
+ sha256 = "1sa3vkr4vd6lvclscb4ki7ph17pdvq8ka22gmymz0yr760nx398a";
+ libraryHaskellDepends = [
+ base bytestring http-media proto-lens servant
+ ];
+ testHaskellDepends = [
+ async base data-default-class http-client HUnit lens proto-lens
+ proto-lens-protobuf-types servant-client servant-server
+ test-framework test-framework-hunit warp
+ ];
+ homepage = "https://github.com/plredmond/servant-proto-lens";
+ description = "Servant Content-Type for proto-lens protobuf modules";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-purescript" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, directory
, filepath, http-types, lens, mainland-pretty, purescript-bridge
@@ -174361,10 +179048,10 @@ self: {
"servant-quickcheck" = callPackage
({ mkDerivation, aeson, base, base-compat, blaze-html, bytestring
, case-insensitive, clock, data-default-class, hspec, hspec-core
- , http-client, http-media, http-types, mtl, pretty, process
- , QuickCheck, quickcheck-io, servant, servant-blaze, servant-client
- , servant-server, split, string-conversions, temporary, text, time
- , transformers, warp
+ , hspec-discover, http-client, http-media, http-types, mtl, pretty
+ , process, QuickCheck, quickcheck-io, servant, servant-blaze
+ , servant-client, servant-server, split, string-conversions
+ , temporary, text, time, transformers, warp
}:
mkDerivation {
pname = "servant-quickcheck";
@@ -174381,6 +179068,7 @@ self: {
http-client QuickCheck quickcheck-io servant servant-blaze
servant-client servant-server transformers warp
];
+ testToolDepends = [ hspec-discover ];
description = "QuickCheck entire APIs";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -174459,8 +179147,8 @@ self: {
}:
mkDerivation {
pname = "servant-ruby";
- version = "0.5.0.0";
- sha256 = "07rjrx5g41yz4wiax4z535zrdcyfvwpbjm81sdyskmkv44mv5g8z";
+ version = "0.5.1.0";
+ sha256 = "0j1q8yl1cz8lwij17zl13rk35r0qnk8ibh963qlcd35w83wms56j";
libraryHaskellDepends = [ base casing lens servant-foreign text ];
testHaskellDepends = [ base doctest QuickCheck ];
homepage = "https://github.com/joneshf/servant-ruby#readme";
@@ -174492,11 +179180,12 @@ self: {
({ mkDerivation, aeson, attoparsec, base, base-compat
, base64-bytestring, bytestring, Cabal, cabal-doctest, containers
, directory, doctest, exceptions, filemanip, filepath, hspec
- , hspec-wai, http-api-data, http-types, monad-control, mtl, network
- , network-uri, parsec, QuickCheck, resourcet, safe, servant
- , should-not-typecheck, split, string-conversions, system-filepath
- , tagged, temporary, text, transformers, transformers-base
- , transformers-compat, wai, wai-app-static, wai-extra, warp, word8
+ , hspec-discover, hspec-wai, http-api-data, http-types
+ , monad-control, mtl, network, network-uri, parsec, QuickCheck
+ , resourcet, safe, servant, should-not-typecheck, split
+ , string-conversions, system-filepath, tagged, temporary, text
+ , transformers, transformers-base, transformers-compat, wai
+ , wai-app-static, wai-extra, warp, word8
}:
mkDerivation {
pname = "servant-server";
@@ -174520,6 +179209,7 @@ self: {
should-not-typecheck string-conversions temporary text transformers
transformers-compat wai wai-extra warp
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
@@ -174529,11 +179219,12 @@ self: {
({ mkDerivation, aeson, attoparsec, base, base-compat
, base64-bytestring, bytestring, Cabal, cabal-doctest, containers
, directory, doctest, exceptions, filemanip, filepath, hspec
- , hspec-wai, http-api-data, http-types, monad-control, mtl, network
- , network-uri, parsec, QuickCheck, resourcet, safe, servant
- , should-not-typecheck, split, string-conversions, system-filepath
- , tagged, temporary, text, transformers, transformers-base
- , transformers-compat, wai, wai-app-static, wai-extra, warp, word8
+ , hspec-discover, hspec-wai, http-api-data, http-types
+ , monad-control, mtl, network, network-uri, parsec, QuickCheck
+ , resourcet, safe, servant, should-not-typecheck, split
+ , string-conversions, system-filepath, tagged, temporary, text
+ , transformers, transformers-base, transformers-compat, wai
+ , wai-app-static, wai-extra, warp, word8
}:
mkDerivation {
pname = "servant-server";
@@ -174559,6 +179250,7 @@ self: {
should-not-typecheck string-conversions temporary text transformers
transformers-compat wai wai-extra warp
];
+ testToolDepends = [ hspec-discover ];
homepage = "http://haskell-servant.readthedocs.org/";
description = "A family of combinators for defining webservices APIs and serving them";
license = stdenv.lib.licenses.bsd3;
@@ -174601,8 +179293,8 @@ self: {
}:
mkDerivation {
pname = "servant-snap";
- version = "0.8.0.1";
- sha256 = "06n9zvz18hwizi5iqldlhgwr1m83fg5l3dzlaarl2rgvr1dnkh2i";
+ version = "0.8.1";
+ sha256 = "0l85gs987g6z3r6pqrf79279l1jmxq3pl8xjz62ps0p3ww1rp296";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -174613,7 +179305,7 @@ self: {
];
executableHaskellDepends = [
aeson base bytestring either errors heist lens map-syntax servant
- snap snap-core snap-server text transformers
+ snap snap-core snap-cors snap-server text transformers
];
testHaskellDepends = [
aeson base base64-bytestring bytestring case-insensitive containers
@@ -174758,6 +179450,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "servant-websockets_1_1_0" = callPackage
+ ({ mkDerivation, aeson, async, base, bytestring, conduit
+ , exceptions, resourcet, servant-server, text, wai, wai-websockets
+ , warp, websockets
+ }:
+ mkDerivation {
+ pname = "servant-websockets";
+ version = "1.1.0";
+ sha256 = "0l8a5zc6wiwdfxv2kirb7kxky4zwj71rcrrg1zh07gc3vf4lqf33";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base bytestring conduit exceptions resourcet
+ servant-server text wai wai-websockets warp websockets
+ ];
+ executableHaskellDepends = [
+ aeson base conduit servant-server text wai warp websockets
+ ];
+ homepage = "https://github.com/moesenle/servant-websockets#readme";
+ description = "Small library providing WebSocket endpoints for servant";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"servant-yaml" = callPackage
({ mkDerivation, aeson, base, base-compat, bytestring, http-media
, servant, servant-server, wai, warp, yaml
@@ -174883,6 +179599,30 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "serverless-haskell" = callPackage
+ ({ mkDerivation, aeson, aeson-casing, amazonka-core
+ , amazonka-kinesis, amazonka-s3, base, bytestring, hspec
+ , hspec-discover, lens, raw-strings-qq, text, time, unix
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "serverless-haskell";
+ version = "0.4.0";
+ sha256 = "12nwj81hwlqmmr4d0vgi4a5gd2zcnndn5rhkx33b0cflfrqcwyp3";
+ libraryHaskellDepends = [
+ aeson aeson-casing amazonka-core amazonka-kinesis amazonka-s3 base
+ bytestring lens text time unix unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson aeson-casing amazonka-core amazonka-kinesis amazonka-s3 base
+ bytestring hspec hspec-discover lens raw-strings-qq text time unix
+ unordered-containers
+ ];
+ homepage = "https://github.com/seek-oss/serverless-haskell#readme";
+ description = "Deploying Haskell code onto AWS Lambda using Serverless";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"serversession" = callPackage
({ mkDerivation, aeson, base, base64-bytestring, bytestring
, containers, data-default, hashable, hspec, nonce, path-pieces
@@ -174961,8 +179701,8 @@ self: {
}:
mkDerivation {
pname = "serversession-backend-redis";
- version = "1.0.2";
- sha256 = "05zrkdxsb86qb0zgjfk8swihfg0cs8kds51xvsqnny9yz216cx6p";
+ version = "1.0.3";
+ sha256 = "059nak15x4cbwmfbvfih6ndwa6i5jhcba22h9gz44f6s84vhljyf";
libraryHaskellDepends = [
base bytestring hedis path-pieces serversession tagged text time
transformers unordered-containers
@@ -175141,8 +179881,8 @@ self: {
}:
mkDerivation {
pname = "sessiontypes";
- version = "0.1.1";
- sha256 = "0l9chnnyq8mblxqyg89nlfa55cadwy62mj29arakrc988l6ja3gq";
+ version = "0.1.2";
+ sha256 = "1xjf3yjapz9ipjkqhm8fljgbj6fww3iyl1mx1kjwh18s6b9ymq5s";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -175162,8 +179902,8 @@ self: {
}:
mkDerivation {
pname = "sessiontypes-distributed";
- version = "0.1.0";
- sha256 = "1q0y37iwjafcb70fv42hny44ay0bpzbvss48h10dahvsmzpqkk8a";
+ version = "0.1.1";
+ sha256 = "0fi263sdpshzjwc51h9rqgg0zj7f5a6igrfj9487lbdgaz1cb1ya";
libraryHaskellDepends = [
base binary bytestring distributed-process distributed-static
exceptions rank1dynamic sessiontypes
@@ -175314,6 +180054,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "setop" = callPackage
+ ({ mkDerivation, base, containers, doctest, hlint, hspec
+ , optparse-applicative, protolude, text
+ }:
+ mkDerivation {
+ pname = "setop";
+ version = "0.1.0.1";
+ sha256 = "0rgx5dn9xj9mpbb0rickncb9xd93sgqsz0s058zqyg08pjafrp31";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base containers protolude ];
+ executableHaskellDepends = [
+ base optparse-applicative protolude text
+ ];
+ testHaskellDepends = [
+ base containers doctest hlint hspec protolude
+ ];
+ homepage = "https://github.com/fmind/setop";
+ description = "Perform set operations on files";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"setops" = callPackage
({ mkDerivation, base, containers }:
mkDerivation {
@@ -175740,6 +180502,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "shake-ats" = callPackage
+ ({ mkDerivation, base, directory, language-ats, shake, shake-ext
+ , text
+ }:
+ mkDerivation {
+ pname = "shake-ats";
+ version = "0.2.0.4";
+ sha256 = "0n4sxla0ribkr2m5bbbh6h0lhp3ddiaan8w1k34ca1qbjwj1xz77";
+ libraryHaskellDepends = [
+ base directory language-ats shake shake-ext text
+ ];
+ homepage = "https://github.com/vmchale/shake-ats#readme";
+ description = "Utilities for building ATS projects with shake";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"shake-cabal-build" = callPackage
({ mkDerivation, base, Cabal, directory, filepath, process }:
mkDerivation {
@@ -175757,6 +180535,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "shake-ext" = callPackage
+ ({ mkDerivation, base, composition-prelude, directory, language-ats
+ , mtl, shake, text
+ }:
+ mkDerivation {
+ pname = "shake-ext";
+ version = "1.4.0.7";
+ sha256 = "00c4yv2gdrzi4cm9n3k8s33xmv6p78ips1l809qbjpkdpn2dc5jy";
+ libraryHaskellDepends = [
+ base composition-prelude directory language-ats mtl shake text
+ ];
+ homepage = "https://hub.darcs.net/vmchale/shake-ext";
+ description = "Helper functions for linting with shake";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"shake-extras" = callPackage
({ mkDerivation, base, bytestring, cmdargs, directory, filepath
, shake
@@ -175825,8 +180619,8 @@ self: {
({ mkDerivation, base, path, path-io, shake }:
mkDerivation {
pname = "shake-path";
- version = "0.0.0.0";
- sha256 = "0cqsfvm9hsyyglifc1s7c76yi15wj13hh735lfjkg9ljiqv90qpb";
+ version = "0.0.0.1";
+ sha256 = "0sjw0hcs6i9c8vfirrk90y5xd3cf0f9c0wa2p5pqimc5wfid9plk";
libraryHaskellDepends = [ base path path-io shake ];
homepage = "http://cs-syd.eu";
description = "path alternatives to shake functions";
@@ -175889,8 +180683,8 @@ self: {
}:
mkDerivation {
pname = "shakers";
- version = "0.0.38";
- sha256 = "08wnf9cv4qsrnx2m3l1nfh74q6i14ng2js4h7gj3z5dv1ki3xwm9";
+ version = "0.0.40";
+ sha256 = "0jlihrgg0c2ksbj2dkzsp6c83m66dxdsy3993xpa018idjsm3cf9";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -176312,10 +181106,8 @@ self: {
}:
mkDerivation {
pname = "shelltestrunner";
- version = "1.3.5";
- sha256 = "0ad8sc4md8mp0l0s40yx7qbgaabqzd4nz8lx15ajcdbwr2ffnra2";
- revision = "2";
- editedCabalFile = "1d72n8k72w2mdi3y9s74ydlwxj407mc237albx6zx42lsjx1fw34";
+ version = "1.9";
+ sha256 = "1a5kzqbwg6990249ypw0cx6cqj6663as1kbj8nzblcky8j6kbi6b";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -176323,23 +181115,23 @@ self: {
pretty-show process regex-tdfa safe test-framework
test-framework-hunit utf8-string
];
- homepage = "http://joyful.com/shelltestrunner";
- description = "A tool for testing command-line programs";
+ homepage = "https://github.com/simonmichael/shelltestrunner";
+ description = "Easy, repeatable testing of CLI programs/commands";
license = "GPL";
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"shelly" = callPackage
({ mkDerivation, async, base, bytestring, containers, directory
- , enclosed-exceptions, exceptions, hspec, HUnit, lifted-async
- , lifted-base, monad-control, mtl, process, system-fileio
- , system-filepath, text, time, transformers, transformers-base
- , unix-compat
+ , enclosed-exceptions, exceptions, filepath, hspec, HUnit
+ , lifted-async, lifted-base, monad-control, mtl, process
+ , system-fileio, system-filepath, text, time, transformers
+ , transformers-base, unix-compat
}:
mkDerivation {
pname = "shelly";
- version = "1.7.0";
- sha256 = "0jscygg381hzb4mjknrwsfw0q3j4sf1w4qrz1mf4k38794axx21q";
+ version = "1.7.0.1";
+ sha256 = "0a4ngy8jqcscqhimgiyz7f9kqm23is7x7gyjxr0j6iq1dy57ahq3";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -176350,9 +181142,9 @@ self: {
];
testHaskellDepends = [
async base bytestring containers directory enclosed-exceptions
- exceptions hspec HUnit lifted-async lifted-base monad-control mtl
- process system-fileio system-filepath text time transformers
- transformers-base unix-compat
+ exceptions filepath hspec HUnit lifted-async lifted-base
+ monad-control mtl process system-fileio system-filepath text time
+ transformers transformers-base unix-compat
];
homepage = "https://github.com/yesodweb/Shelly.hs";
description = "shell-like (systems) programming in Haskell";
@@ -176423,8 +181215,8 @@ self: {
}:
mkDerivation {
pname = "shikensu";
- version = "0.3.7";
- sha256 = "1gi1l8rs093s2jxyqwpg7yjbyjc9km87hdxai2j832viwrd828b5";
+ version = "0.3.8";
+ sha256 = "0sji1lw1ma8js9kylixn694108nv74g8qpbfd198fwqvcqx5jhwh";
libraryHaskellDepends = [
aeson base bytestring directory filepath flow Glob text
unordered-containers
@@ -176454,6 +181246,7 @@ self: {
homepage = "https://github.com/fgaz/shine";
description = "Declarative graphics for the browser using GHCJS";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {ghcjs-prim = null;};
@@ -176711,10 +181504,11 @@ self: {
}:
mkDerivation {
pname = "shuffle";
- version = "0.1.3.3";
- sha256 = "0ngva3p3838xay3zz442n99ilhk5d9majg342x6y7hs796lqbrrd";
+ version = "0.1.4.0";
+ sha256 = "1xqppg8yi6rqfnd7j7qrw1j7qqnp3hhzrcdv6d2hzmrhfzgrnmic";
isLibrary = true;
isExecutable = true;
+ setupHaskellDepends = [ base Cabal uuagc uuagc-cabal ];
libraryHaskellDepends = [
array base Cabal containers directory filepath network network-uri
process uhc-util uuagc uuagc-cabal uulib
@@ -176867,6 +181661,7 @@ self: {
homepage = "http://code.haskell.org/~bkomuves/";
description = "Thom polynomials of second order Thom-Boardman singularities";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"sign" = callPackage
@@ -176948,18 +181743,20 @@ self: {
}) {};
"silvi" = callPackage
- ({ mkDerivation, base, bytestring, chronos, http-types, ip
- , quantification, savage, text
+ ({ mkDerivation, attoparsec, base, bytestring, chronos, http-types
+ , ip, quantification, savage, text
}:
mkDerivation {
pname = "silvi";
- version = "0.0.3";
- sha256 = "1brvx8acfvpcw402b3676ydi6r95js6bhaasll59bm1khhl8d90b";
+ version = "0.1.0";
+ sha256 = "1sgx40fmlf3188j4bl647f8psvpf7xfbzzzilgicg3w49dwxxq2q";
libraryHaskellDepends = [
- base bytestring chronos http-types ip quantification savage text
+ attoparsec base bytestring chronos http-types ip quantification
+ savage text
];
+ testHaskellDepends = [ base quantification savage text ];
homepage = "https://github.com/chessai/silvi#readme";
- description = "A generator for different kinds of logs";
+ description = "A generator for different kinds of data";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -177753,6 +182550,21 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "simpleconfig" = callPackage
+ ({ mkDerivation, base, containers, generic-deriving, lens, text }:
+ mkDerivation {
+ pname = "simpleconfig";
+ version = "0.0.8";
+ sha256 = "0xxnirw7px97gssi2i823hsri168jy2rjwkhnkh6c80p997icdjf";
+ libraryHaskellDepends = [ base containers lens ];
+ testHaskellDepends = [
+ base containers generic-deriving lens text
+ ];
+ homepage = "https://github.com/koterpillar/simpleconfig#readme";
+ description = "Short description of your package";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"simpleirc" = callPackage
({ mkDerivation, base, bytestring, connection, containers, hspec
, HUnit, knob, network, old-locale, time
@@ -178013,8 +182825,8 @@ self: {
({ mkDerivation, base, singletons }:
mkDerivation {
pname = "singleton-nats";
- version = "0.4.0.3";
- sha256 = "150pfyfgyvksx600c9c7pyw154dvjgfiykas3wxfzkm3l9mhg32v";
+ version = "0.4.0.4";
+ sha256 = "1cizvqiv1hw7an2c2k1mbj9089n6rrggyf5pv2pcl7knpy07hph4";
libraryHaskellDepends = [ base singletons ];
homepage = "https://github.com/AndrasKovacs/singleton-nats";
description = "Unary natural numbers relying on the singletons infrastructure";
@@ -178053,6 +182865,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "singletons_2_4_1" = callPackage
+ ({ mkDerivation, base, containers, directory, filepath, ghc-boot-th
+ , mtl, process, syb, tasty, tasty-golden, template-haskell, text
+ , th-desugar, transformers
+ }:
+ mkDerivation {
+ pname = "singletons";
+ version = "2.4.1";
+ sha256 = "1kzrl9njvkbvxylk9jg61vy3ksmxmzymci5hdp0ilpsah4620yjx";
+ libraryHaskellDepends = [
+ base containers ghc-boot-th mtl syb template-haskell text
+ th-desugar transformers
+ ];
+ testHaskellDepends = [
+ base directory filepath process tasty tasty-golden
+ ];
+ homepage = "http://www.github.com/goldfirere/singletons";
+ description = "A framework for generating singleton types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"singnal" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -178126,23 +182960,25 @@ self: {
"siren-json" = callPackage
({ mkDerivation, aeson, base, bytestring, case-insensitive
- , containers, hspec, http-media, http-types, network-uri
- , network-uri-json, QuickCheck, quickcheck-instances
- , test-invariant, text, unordered-containers
+ , containers, hspec, hspec-discover, http-media, http-types
+ , network-arbitrary, network-uri, network-uri-json, QuickCheck
+ , quickcheck-instances, test-invariant, text, unordered-containers
}:
mkDerivation {
pname = "siren-json";
- version = "0.1.0.2";
- sha256 = "0jkrqqfl713vpmypm7bkzvv5sia23zjhk0l90slyk4cmcmxn1s1a";
+ version = "0.1.3.1";
+ sha256 = "1chwf9kldwf039qad55la4yh13wjax64g0pi99hw2b46x7dx4qm1";
libraryHaskellDepends = [
aeson base bytestring containers http-media http-types network-uri
network-uri-json text unordered-containers
];
testHaskellDepends = [
aeson base bytestring case-insensitive containers hspec http-media
- http-types network-uri network-uri-json QuickCheck
- quickcheck-instances test-invariant text unordered-containers
+ http-types network-arbitrary network-uri network-uri-json
+ QuickCheck quickcheck-instances test-invariant text
+ unordered-containers
];
+ testToolDepends = [ hspec-discover ];
homepage = "https://github.com/alunduil/siren-json.hs";
description = "Siren Tools for Haskell";
license = stdenv.lib.licenses.mit;
@@ -178486,14 +183322,14 @@ self: {
"skylighting" = callPackage
({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary
, blaze-html, bytestring, case-insensitive, containers, criterion
- , Diff, directory, filepath, HUnit, hxt, mtl, pretty-show, random
- , regex-pcre-builtin, safe, tasty, tasty-golden, tasty-hunit, text
- , utf8-string
+ , Diff, directory, filepath, HUnit, hxt, mtl, pretty-show
+ , QuickCheck, random, regex-pcre-builtin, safe, tasty, tasty-golden
+ , tasty-hunit, tasty-quickcheck, text, utf8-string
}:
mkDerivation {
pname = "skylighting";
- version = "0.5";
- sha256 = "1as4rdzn69jyn3lmzk257j6q208a8z695jsc82jwmlsdyva1m3ic";
+ version = "0.5.1";
+ sha256 = "0l5lhhqqlfaq1fs7pn3n3b25kmazk8p4ahwvhagbrhcbm5hsigdg";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -178508,7 +183344,8 @@ self: {
];
testHaskellDepends = [
aeson base bytestring containers Diff directory filepath HUnit
- pretty-show random tasty tasty-golden tasty-hunit text
+ pretty-show QuickCheck random tasty tasty-golden tasty-hunit
+ tasty-quickcheck text
];
benchmarkHaskellDepends = [
base containers criterion directory filepath text
@@ -178518,32 +183355,34 @@ self: {
license = stdenv.lib.licenses.gpl2;
}) {};
- "skylighting_0_5_0_1" = callPackage
- ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary
- , blaze-html, bytestring, case-insensitive, containers, criterion
- , Diff, directory, filepath, HUnit, hxt, mtl, pretty-show, random
- , regex-pcre-builtin, safe, tasty, tasty-golden, tasty-hunit, text
- , utf8-string
+ "skylighting_0_6" = callPackage
+ ({ mkDerivation, aeson, ansi-terminal, attoparsec, base
+ , base64-bytestring, binary, blaze-html, bytestring
+ , case-insensitive, colour, containers, criterion, Diff, directory
+ , filepath, HUnit, hxt, mtl, pretty-show, QuickCheck, random
+ , regex-pcre-builtin, safe, tasty, tasty-golden, tasty-hunit
+ , tasty-quickcheck, text, utf8-string
}:
mkDerivation {
pname = "skylighting";
- version = "0.5.0.1";
- sha256 = "1jq61wdb83by5qkyfjp9bda2651ddnbskldc4cisr2xm4qjds1ap";
+ version = "0.6";
+ sha256 = "1027rcj6zqmnwm6is5k5v28r8af8bsf6i36dwi128h5g92pg206f";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- aeson attoparsec base base64-bytestring binary blaze-html
- bytestring case-insensitive containers directory filepath hxt mtl
- regex-pcre-builtin safe text utf8-string
+ aeson ansi-terminal attoparsec base base64-bytestring binary
+ blaze-html bytestring case-insensitive colour containers directory
+ filepath hxt mtl regex-pcre-builtin safe text utf8-string
];
executableHaskellDepends = [
- aeson base base64-bytestring binary blaze-html bytestring
- case-insensitive containers directory filepath hxt pretty-show
- regex-pcre-builtin safe text utf8-string
+ aeson ansi-terminal base base64-bytestring binary blaze-html
+ bytestring case-insensitive colour containers directory filepath
+ hxt pretty-show regex-pcre-builtin safe text utf8-string
];
testHaskellDepends = [
aeson base bytestring containers Diff directory filepath HUnit
- pretty-show random tasty tasty-golden tasty-hunit text
+ pretty-show QuickCheck random tasty tasty-golden tasty-hunit
+ tasty-quickcheck text
];
benchmarkHaskellDepends = [
base containers criterion directory filepath text
@@ -178591,6 +183430,7 @@ self: {
homepage = "https://github.com/jdevelop/skypelogexport/wiki";
description = "Export Skype chat logs to text files";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {ghc-binary = null;};
@@ -178703,6 +183543,28 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "slate" = callPackage
+ ({ mkDerivation, base, directory, filepath, optparse-applicative }:
+ mkDerivation {
+ pname = "slate";
+ version = "0.4.0.0";
+ sha256 = "0j2n2wix01ildnpy6k289j5dlf9i7zbi1yd4k5hdvamwlvibqzjl";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base directory filepath optparse-applicative
+ ];
+ executableHaskellDepends = [
+ base directory filepath optparse-applicative
+ ];
+ testHaskellDepends = [
+ base directory filepath optparse-applicative
+ ];
+ homepage = "https://github.com/evuez/slate#readme";
+ description = "A note taking CLI tool";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"slave-thread" = callPackage
({ mkDerivation, base, base-prelude, HTF, list-t, mmorph
, partial-handler, QuickCheck, quickcheck-instances, SafeSemaphore
@@ -178902,8 +183764,8 @@ self: {
}:
mkDerivation {
pname = "smallcaps";
- version = "0.6.0.4";
- sha256 = "1lw5zzfpizwrbpm981xr7sx1ac7iwkhwp541g276sszq927ls8n5";
+ version = "0.6.0.5";
+ sha256 = "06cqknha64gmf3rjjmcr3358fd5rii6xlgph5fvan0h25cnlk7nw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -178923,8 +183785,8 @@ self: {
({ mkDerivation, base, ghc-prim, logict, mtl, pretty }:
mkDerivation {
pname = "smallcheck";
- version = "1.1.3";
- sha256 = "15f00jzfv9a35507hax3y7vwwzj1fkbf38hs16797hlrsaxmnlmm";
+ version = "1.1.3.1";
+ sha256 = "1lmx0sxkhryra7laln8m7z0518jshahsvz121xybajjcz9pz3xcz";
libraryHaskellDepends = [ base ghc-prim logict mtl pretty ];
homepage = "https://github.com/feuerbach/smallcheck";
description = "A property-based testing library";
@@ -179381,19 +184243,17 @@ self: {
"snap" = callPackage
({ mkDerivation, aeson, async, attoparsec, base, bytestring, cereal
, clientsession, configurator, containers, deepseq, directory
- , directory-tree, dlist, filepath, Glob, hashable, heist
- , http-streams, HUnit, lens, lifted-base, map-syntax, monad-control
- , mtl, mwc-random, pwstore-fast, QuickCheck, smallcheck, snap-core
+ , directory-tree, dlist, filepath, hashable, heist, http-streams
+ , HUnit, lens, lifted-base, map-syntax, monad-control, mtl
+ , mwc-random, pwstore-fast, QuickCheck, smallcheck, snap-core
, snap-server, stm, syb, test-framework, test-framework-hunit
, test-framework-quickcheck2, test-framework-smallcheck, text, time
, transformers, transformers-base, unordered-containers, xmlhtml
}:
mkDerivation {
pname = "snap";
- version = "1.0.0.2";
- sha256 = "0jx2prq0lxq9jqxqk8f059lwjm2yqxzwb9lx6iviq57flx4zxyqq";
- revision = "1";
- editedCabalFile = "1df44l26sxfk2qprs2vcfigzyzkxxwxi8siaaikbvmjzyjm0mby1";
+ version = "1.1.0.0";
+ sha256 = "166ilpc4dd4020mmqn2lrfs3j5dl4a2mvqag1sz4mx7jcndrjbc8";
libraryHaskellDepends = [
aeson attoparsec base bytestring cereal clientsession configurator
containers directory directory-tree dlist filepath hashable heist
@@ -179404,7 +184264,7 @@ self: {
testHaskellDepends = [
aeson async attoparsec base bytestring cereal clientsession
configurator containers deepseq directory directory-tree dlist
- filepath Glob hashable heist http-streams HUnit lens lifted-base
+ filepath hashable heist http-streams HUnit lens lifted-base
map-syntax monad-control mtl mwc-random pwstore-fast QuickCheck
smallcheck snap-core snap-server stm syb test-framework
test-framework-hunit test-framework-quickcheck2
@@ -179604,8 +184464,8 @@ self: {
}:
mkDerivation {
pname = "snap-extras";
- version = "0.12.1.0";
- sha256 = "1lkdva37dcg6zvy02v65qi8pwzia7wai0ny744jdr659lmninn4g";
+ version = "0.12.1.1";
+ sha256 = "0x5j5d4g605i2pnkaryy1d7pxikdwz2pmns7lp9sliii7h6yq2n6";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -179733,8 +184593,8 @@ self: {
pname = "snap-server";
version = "1.0.3.3";
sha256 = "1vjfpgcl09l974mdsvgxdlqcl68xmn33z1scx3sfyvcnz32xnnkl";
- revision = "1";
- editedCabalFile = "1laqh4q98ia8l7znhsv4vpx04rb9sdb9dgycx4aychfrb0fbb3pc";
+ revision = "2";
+ editedCabalFile = "1nb3jxr7sgw2r305k6bbbyyx8myxm3r01a8zhvxdkz4xvv9907d0";
configureFlags = [ "-fopenssl" ];
isLibrary = true;
isExecutable = true;
@@ -179776,10 +184636,8 @@ self: {
}:
mkDerivation {
pname = "snap-templates";
- version = "1.0.0.0";
- sha256 = "06sns89y2b2y8ln9ci99vph9v67yphcvw7fwdqgp41wx2x496a7n";
- revision = "1";
- editedCabalFile = "0y86zbaw4ain6ia15b7fpr48sxxz37x230qvrf28dicxcxm8jmva";
+ version = "1.0.0.1";
+ sha256 = "1l6gc2ppsvbaf783namglpyzghhynlg97q3ajc2ralibs21vsn7c";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -180269,21 +185127,21 @@ self: {
"snaplet-persistent" = callPackage
({ mkDerivation, base, bytestring, clientsession, configurator
- , errors, heist, lens, monad-logger, MonadCatchIO-transformers, mtl
- , persistent, persistent-postgresql, persistent-template, readable
+ , errors, heist, lens, map-syntax, monad-logger, mtl, persistent
+ , persistent-postgresql, persistent-template, readable
, resource-pool, resourcet, safe, snap, text, time, transformers
, unordered-containers
}:
mkDerivation {
pname = "snaplet-persistent";
- version = "0.5";
- sha256 = "1zbxknmsg9q6jwbxr4nh8nkfgkjmxb7pr2wwqa7rgr0wvh8ipx5k";
+ version = "0.5.1";
+ sha256 = "00p5f1xysv618yd4s9zw66zfjpa1gx7nld5k9ysm8vrd0haa4v5r";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base bytestring clientsession configurator errors heist lens
- monad-logger MonadCatchIO-transformers mtl persistent
- persistent-postgresql persistent-template readable resource-pool
- resourcet safe snap text time transformers unordered-containers
+ map-syntax monad-logger mtl persistent persistent-postgresql
+ persistent-template readable resource-pool resourcet safe snap text
+ time transformers unordered-containers
];
homepage = "https://github.com/soostone/snaplet-persistent";
description = "persistent snaplet for the Snap Framework";
@@ -181238,13 +186096,11 @@ self: {
({ mkDerivation, base, bytestring, cereal, network }:
mkDerivation {
pname = "socks";
- version = "0.5.5";
- sha256 = "0s689w1hh9g8ifl75xhzbv96ir07hwn04b4lgvbxzl8swa9ylir6";
- revision = "1";
- editedCabalFile = "0nz8q0xvd8y6f42bd1w3q8d8bg1qzl8ggx0a23kb3jb60g36dmvw";
+ version = "0.5.6";
+ sha256 = "0f44qy74i0n6ll3jym0a2ipafkpw1h67amcpqmj8iq95h21wsqzs";
libraryHaskellDepends = [ base bytestring cereal network ];
homepage = "http://github.com/vincenthz/hs-socks";
- description = "Socks proxy (version 5) implementation";
+ description = "Socks proxy (ver 5)";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -181711,8 +186567,8 @@ self: {
}:
mkDerivation {
pname = "spake2";
- version = "0.4.0";
- sha256 = "109hvcphd2rvqls84ahs6yy9k58yhh4f0zgqc4c78a6nz4709hdp";
+ version = "0.4.2";
+ sha256 = "02zvlh7pva2d2k56n3070wdp4chv6avhwzn7mg2zax1mzswd21r4";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -181759,8 +186615,8 @@ self: {
}:
mkDerivation {
pname = "sparkle";
- version = "0.7.1";
- sha256 = "1494c6zwn8q3aj9x07r2iikkbnxf8r3aw823dip47sygc95wy39w";
+ version = "0.7.2.1";
+ sha256 = "1bfgj1a43aj4nwzq1471l2sb9il7sh0czc22fhmd8mhpbz6wlnsp";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -181778,6 +186634,24 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "sparql-protocol" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, exceptions
+ , http-client, lens, text, wreq
+ }:
+ mkDerivation {
+ pname = "sparql-protocol";
+ version = "1.1.0.0";
+ sha256 = "0nzgficvcbidxgsga106kgzwavf92qb75b6cd49fbp0fmw02krj7";
+ libraryHaskellDepends = [
+ aeson base bytestring containers exceptions http-client lens text
+ wreq
+ ];
+ testHaskellDepends = [ base ];
+ homepage = "https://github.com/ardamose123/sparql-protocol";
+ description = "An SPARQL 1.1 Protocol client library.";
+ license = stdenv.lib.licenses.gpl3;
+ }) {};
+
"sparse" = callPackage
({ mkDerivation, array, base, bytestring, containers, contravariant
, criterion, deepseq, directory, doctest, filepath, hlint
@@ -182387,8 +187261,8 @@ self: {
({ mkDerivation, base, QuickCheck }:
mkDerivation {
pname = "split";
- version = "0.2.3.2";
- sha256 = "0fmnkvq1ky4dgyh1z2mvdal5pw103irvkf4p9d5x8wyl1nnylhs9";
+ version = "0.2.3.3";
+ sha256 = "04qlmkcyklznl03gsjg95b4nzb6i96gdapqg60rny9szgi7ngk8x";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base QuickCheck ];
description = "Combinator library for splitting lists";
@@ -182612,6 +187486,7 @@ self: {
homepage = "https://bitbucket.org/tdammers/sprinkles";
description = "JSON API to HTML website wrapper";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {pandoc-creole = null;};
@@ -183024,13 +187899,13 @@ self: {
}) {};
"squeeze" = callPackage
- ({ mkDerivation, base, Cabal, data-default, directory, factory
- , filepath, mtl, QuickCheck, random, toolshed
+ ({ mkDerivation, base, Cabal, data-default, directory, extra
+ , factory, filepath, mtl, QuickCheck, random, toolshed
}:
mkDerivation {
pname = "squeeze";
- version = "1.0.4.13";
- sha256 = "0s6qkfkm8vxqc3vwgzdhayalyrdgbybxw5p1imvsgn409i7vhiyd";
+ version = "1.0.4.16";
+ sha256 = "0ywlxh7988i87qxpmja79a98ri9myzk4648d2j3aihsfdm34w2cr";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -183039,7 +187914,9 @@ self: {
executableHaskellDepends = [
base Cabal data-default factory filepath mtl random toolshed
];
- testHaskellDepends = [ base factory QuickCheck toolshed ];
+ testHaskellDepends = [
+ base Cabal extra factory QuickCheck toolshed
+ ];
homepage = "http://functionalley.eu/Squeeze/squeeze.html";
description = "A file-packing application";
license = "GPL";
@@ -183430,6 +188307,8 @@ self: {
pname = "stache";
version = "1.2.1";
sha256 = "0fqipjyin2hpklm0gaab4qhcfj9gzkpb2g948sqzf1n6alkxvyvb";
+ revision = "1";
+ editedCabalFile = "18h31a8bd7v96lc9q0ai7sblnxg3y55s1053jqdixi3y7lz3jh79";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base bytestring containers deepseq directory filepath
@@ -183469,10 +188348,10 @@ self: {
}:
mkDerivation {
pname = "stack";
- version = "1.6.1";
- sha256 = "0mf95h83qrgidkfvwm47w262fprsh8g5rf9mzkc1v2ifbn9b93v9";
- revision = "1";
- editedCabalFile = "103w999pac6337idj241iil52rssjp4vn5r5bvgl72sn64wxkm4x";
+ version = "1.6.3";
+ sha256 = "0ylika6qf7agj07wh47xjirhg74l63lx80q0xm41yd9g5ssk9cbj";
+ revision = "3";
+ editedCabalFile = "0sqhg84iyh8rmsls5lgk0and68rxkp6m4668z42y5zzy810xgd4i";
isLibrary = true;
isExecutable = true;
setupHaskellDepends = [ base Cabal filepath ];
@@ -183596,6 +188475,22 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "stack-lib" = callPackage
+ ({ mkDerivation, base, monad-logger, path, stack, time
+ , transformers
+ }:
+ mkDerivation {
+ pname = "stack-lib";
+ version = "0.1.0.0";
+ sha256 = "0fb7svqqp2p3q3a2w5nkxxlqk3v3lmkhrdhfk8cfkkwjz2gpb4bf";
+ libraryHaskellDepends = [
+ base monad-logger path stack time transformers
+ ];
+ homepage = "https://github.com/clintonmead/stack-lib#readme";
+ description = "Wrapper to use stack as a library";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"stack-prism" = callPackage
({ mkDerivation, base, profunctors, tagged, template-haskell
, transformers
@@ -184034,8 +188929,8 @@ self: {
}:
mkDerivation {
pname = "stackage2nix";
- version = "0.3.0";
- sha256 = "1cgcdgsw8qbc7dcfvj2jhwaja5x03fqa8f67c8f86fzrn0wcvw47";
+ version = "0.4.0";
+ sha256 = "0qj8v7kdyqsgm518gfrpdsvv7njwzrg2lm3k6cwd3lh50l9vsgcd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -184049,7 +188944,7 @@ self: {
testHaskellDepends = [
base bytestring Cabal hspec pretty shakespeare text yaml
];
- homepage = "https://github.com/4e6/stackage2nix#readme";
+ homepage = "https://github.com/typeable/stackage2nix#readme";
description = "Convert Stack files into Nix build instructions";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -184074,8 +188969,8 @@ self: {
}:
mkDerivation {
pname = "stagen";
- version = "0.0.0";
- sha256 = "17hvijrkc0lczppp8c73n8drjghn7mmwhdai0m4rilga3vminw7r";
+ version = "0.1.0";
+ sha256 = "0cd0639ms4vcdvjvhn8l0893d5nv51kzg3ky0xd9bnmjr8f0wpzm";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -184123,8 +189018,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "star";
- version = "0.0.0.2";
- sha256 = "1xg1gfdkskhkvd1a2nlaxc9942xi1j406p58i4ycb15lqcz8nz27";
+ version = "0.0.1.0";
+ sha256 = "03lk46s8v3pgxgk4ddyf382rspqvkf61v9bffhym0pd4didnz9d5";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/chessai/star#readme";
description = "*-semirings";
@@ -184281,8 +189176,10 @@ self: {
}:
mkDerivation {
pname = "stateWriter";
- version = "0.2.9";
- sha256 = "0kvkf3lh60sz0nfscjd6skr52b11mh7wk4ls64z5hmdjr4cnjgmm";
+ version = "0.2.10";
+ sha256 = "0g1r7zn1ahky9wmqbimjryca3hkylx15xpqwhc42gkyf7h7kq2b8";
+ revision = "1";
+ editedCabalFile = "19zp7wy2k6f5dqw0wfj9wzarjgfr20nvw5rmqiv79h66qssjl9i6";
libraryHaskellDepends = [ base mtl transformers ];
testHaskellDepends = [ base free hspec mtl QuickCheck ];
benchmarkHaskellDepends = [
@@ -184355,6 +189252,7 @@ self: {
libraryHaskellDepends = [ applicative base transformers ];
description = "The ST monad and STRefs";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {applicative = null;};
@@ -184388,6 +189286,23 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "static-closure" = callPackage
+ ({ mkDerivation, base, binary, bytestring, constraints, containers
+ , ghc-instances, template-haskell
+ }:
+ mkDerivation {
+ pname = "static-closure";
+ version = "0.1.0.0";
+ sha256 = "16cjjyn51wsv3ngc8fbivlshnjp085xxxnv0snyywyxpna1nn79d";
+ libraryHaskellDepends = [
+ base binary bytestring constraints containers ghc-instances
+ template-haskell
+ ];
+ homepage = "https://github.com/clintonmead/static-closure#readme";
+ description = "Serialisable static pointers to functions";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"static-hash" = callPackage
({ mkDerivation, array, base, containers, hashable, primes }:
mkDerivation {
@@ -184668,13 +189583,11 @@ self: {
({ mkDerivation, base, hspec, vector }:
mkDerivation {
pname = "stb-image-redux";
- version = "0.2.1.0";
- sha256 = "07gbj7qqgm3dwx6bign8qma3a0187p5nil7z612976bdpz9abr60";
- revision = "2";
- editedCabalFile = "1ils1w36y3c4ik0mxnadrhxw1fy426av438ckg2fgnzys0i5zqp2";
+ version = "0.2.1.2";
+ sha256 = "1s23f38za0zv9vzj4qn5qq2ajhgr6g9gsd2nck2hmkqfjpw1mx1v";
libraryHaskellDepends = [ base vector ];
testHaskellDepends = [ base hspec vector ];
- homepage = "https://github.com/sasinestro/stb-image-redux#readme";
+ homepage = "https://github.com/typedrat/stb-image-redux#readme";
description = "Image loading and writing microlibrary";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -185546,6 +190459,35 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "stratosphere_0_15_1" = callPackage
+ ({ mkDerivation, aeson, aeson-pretty, base, bytestring, hashable
+ , hspec, hspec-discover, lens, template-haskell, text
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "stratosphere";
+ version = "0.15.1";
+ sha256 = "13221ynzcaj6hilvbcllnjf1ixv6zmsp7jnhp1ishmj42z5qarbl";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson aeson-pretty base bytestring hashable lens template-haskell
+ text unordered-containers
+ ];
+ executableHaskellDepends = [
+ aeson aeson-pretty base bytestring hashable lens template-haskell
+ text unordered-containers
+ ];
+ testHaskellDepends = [
+ aeson aeson-pretty base bytestring hashable hspec hspec-discover
+ lens template-haskell text unordered-containers
+ ];
+ homepage = "https://github.com/frontrowed/stratosphere#readme";
+ 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
@@ -185787,8 +190729,8 @@ self: {
}:
mkDerivation {
pname = "streaming-cassava";
- version = "0.1.0.0";
- sha256 = "17swzhq069rr041l33bwa5ybx1j6w9lvh3l3xs40m842njli2bac";
+ version = "0.1.0.1";
+ sha256 = "0dr58azgyw7ihxrabva7fh0yafq2kx12yvap4jl6ljnlwvcapa5i";
libraryHaskellDepends = [
base bytestring cassava mtl streaming streaming-bytestring
transformers
@@ -185956,10 +190898,8 @@ self: {
}:
mkDerivation {
pname = "streaming-postgresql-simple";
- version = "0.2.0.1";
- sha256 = "1ffsxwgsaxqnf49n4lnyrh2zy6q9zc1i3ssd03m08ip813pk5j8k";
- revision = "1";
- editedCabalFile = "1y5j3p3gphr3mnzl1dvfmbm8iipsdy0vq2fk0klxgid1dsqfl2vn";
+ version = "0.2.0.3";
+ sha256 = "1gy6yy14q18zfbbj6rvsnhvhkra78m2jwbyd3hnpbx25jgvz230n";
libraryHaskellDepends = [
base bytestring exceptions postgresql-libpq postgresql-simple
resourcet safe-exceptions streaming transformers
@@ -186176,6 +191116,24 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "strict-base-types_0_6_0" = callPackage
+ ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim
+ , hashable, lens, QuickCheck, strict
+ }:
+ mkDerivation {
+ pname = "strict-base-types";
+ version = "0.6.0";
+ sha256 = "01i8v4l47xp5f4i9czlwg1kk4lvnfmxhgqlcnacirrp0pfjmrq7p";
+ libraryHaskellDepends = [
+ aeson base bifunctors binary deepseq ghc-prim hashable lens
+ QuickCheck strict
+ ];
+ homepage = "https://github.com/meiersi/strict-base-types";
+ description = "Strict variants of the types provided in base";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"strict-concurrency" = callPackage
({ mkDerivation, base, deepseq }:
mkDerivation {
@@ -186632,6 +191590,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "stripe-core_2_3_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, mtl, text, time
+ , transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "stripe-core";
+ version = "2.3.0";
+ sha256 = "08656c3s9326kgppwiys7whil47yw6qibjzmivjzykh6858j0kfm";
+ libraryHaskellDepends = [
+ aeson base bytestring mtl text time transformers
+ unordered-containers
+ ];
+ homepage = "https://github.com/dmjio/stripe-haskell";
+ description = "Stripe API for Haskell - Pure Core";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"stripe-haskell" = callPackage
({ mkDerivation, base, stripe-core, stripe-http-streams }:
mkDerivation {
@@ -186644,6 +191620,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "stripe-haskell_2_3_0" = callPackage
+ ({ mkDerivation, base, stripe-core, stripe-http-streams }:
+ mkDerivation {
+ pname = "stripe-haskell";
+ version = "2.3.0";
+ sha256 = "18358axxx2rkv06bh1n48hsx3bh3bj4h3xx1ma3hvv68l9cprwsm";
+ libraryHaskellDepends = [ base stripe-core stripe-http-streams ];
+ homepage = "https://github.com/dmjio/stripe";
+ description = "Stripe API for Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"stripe-http-streams" = callPackage
({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec
, http-streams, io-streams, stripe-core, stripe-tests, text
@@ -186664,6 +191653,27 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "stripe-http-streams_2_3_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec
+ , http-streams, io-streams, stripe-core, stripe-tests, text
+ }:
+ mkDerivation {
+ pname = "stripe-http-streams";
+ version = "2.3.0";
+ sha256 = "0nn244ghmyibdrvzfz9k8skhsfh47sh8g34v1c63rkswqb4wpnsp";
+ libraryHaskellDepends = [
+ aeson base bytestring HsOpenSSL http-streams io-streams stripe-core
+ text
+ ];
+ testHaskellDepends = [
+ base free HsOpenSSL hspec http-streams stripe-core stripe-tests
+ ];
+ doCheck = false;
+ description = "Stripe API for Haskell - http-streams backend";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"stripe-tests" = callPackage
({ mkDerivation, aeson, base, bytestring, free, hspec, hspec-core
, mtl, random, stripe-core, text, time, transformers
@@ -186682,6 +191692,25 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "stripe-tests_2_3_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, free, hspec, hspec-core
+ , mtl, random, stripe-core, text, time, transformers
+ , unordered-containers
+ }:
+ mkDerivation {
+ pname = "stripe-tests";
+ version = "2.3.0";
+ sha256 = "14j0zvnrl0s2br0vwpm105wscdyddan62iqwrf0fg8c4mj6kpfrw";
+ libraryHaskellDepends = [
+ aeson base bytestring free hspec hspec-core mtl random stripe-core
+ text time transformers unordered-containers
+ ];
+ homepage = "https://github.com/dmjio/stripe-haskell";
+ description = "Tests for Stripe API bindings for Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"strips" = callPackage
({ mkDerivation, base, containers, hspec, mtl }:
mkDerivation {
@@ -186704,8 +191733,8 @@ self: {
}:
mkDerivation {
pname = "strive";
- version = "4.0.1";
- sha256 = "1bws8z9ky5zryzy7njllm2f7lddbncb1rxz2ngq6kqcdnc14ph2v";
+ version = "4.0.3";
+ sha256 = "1b1shq0jznyx9cbir33diflw1602py651rqj2hfjrgdywjrac8fq";
libraryHaskellDepends = [
aeson base bytestring data-default gpolyline http-client
http-client-tls http-types template-haskell text time transformers
@@ -186716,6 +191745,26 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "strive_5_0_2" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline
+ , http-client, http-client-tls, http-types, markdown-unlit
+ , template-haskell, text, time, transformers
+ }:
+ mkDerivation {
+ pname = "strive";
+ version = "5.0.2";
+ sha256 = "1dx93rda40nv87amgk885bg4dn96qhmnq4mmfiqwb09mp6g1a0m5";
+ libraryHaskellDepends = [
+ aeson base bytestring data-default gpolyline http-client
+ http-client-tls http-types template-haskell text time transformers
+ ];
+ testHaskellDepends = [ base bytestring markdown-unlit time ];
+ homepage = "https://github.com/tfausak/strive#readme";
+ description = "A client for the Strava V3 API";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"strptime" = callPackage
({ mkDerivation, base, bytestring, text, time }:
mkDerivation {
@@ -186995,6 +192044,37 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "stylish-haskell_0_9_0_2" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, containers, directory
+ , file-embed, filepath, haskell-src-exts, HUnit, mtl
+ , optparse-applicative, strict, syb, test-framework
+ , test-framework-hunit, yaml
+ }:
+ mkDerivation {
+ pname = "stylish-haskell";
+ version = "0.9.0.2";
+ sha256 = "0w0hh08b1zlp3disxp20yrg20vblqgk5y3arf8xbfiznzf05x5zr";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring containers directory file-embed filepath
+ haskell-src-exts mtl syb yaml
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring containers directory file-embed filepath
+ haskell-src-exts mtl optparse-applicative strict syb yaml
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers directory file-embed filepath
+ haskell-src-exts HUnit mtl syb test-framework test-framework-hunit
+ yaml
+ ];
+ homepage = "https://github.com/jaspervdj/stylish-haskell";
+ description = "Haskell code prettifier";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"stylized" = callPackage
({ mkDerivation, ansi-terminal, base }:
mkDerivation {
@@ -187069,6 +192149,7 @@ self: {
homepage = "http://github.com/mikeizbicki/subhask";
description = "Type safe interface for programming in subcategories of Hask";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"subleq-toolchain" = callPackage
@@ -187129,15 +192210,16 @@ self: {
}) {};
"substring-parser" = callPackage
- ({ mkDerivation, attoparsec, base, containers, hspec, NoTrace, text
+ ({ mkDerivation, attoparsec, base, dlist, hspec, NoTrace
+ , QuickCheck, text
}:
mkDerivation {
pname = "substring-parser";
- version = "0.3.0.0";
- sha256 = "0yfdrmadsra7692zsqm2cnmx0hr2lrkx0swvhk3gw3666453x84j";
- libraryHaskellDepends = [ attoparsec base NoTrace text ];
+ version = "0.4.0.0";
+ sha256 = "0xi3yjgp87515g99qxnhjkcr2ddqc0b6rz0whg2zsi00z1sb6wc3";
+ libraryHaskellDepends = [ attoparsec base dlist NoTrace text ];
testHaskellDepends = [
- attoparsec base containers hspec NoTrace text
+ attoparsec base hspec NoTrace QuickCheck text
];
homepage = "https://gitlab.com/igrep/substring-parser";
description = "Match / replace substrings with a parser combinators";
@@ -187215,8 +192297,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "successors";
- version = "0.1";
- sha256 = "0mkb9wsmd1q6d9qll15xf0fxp2hlyp5hsj7j7wv60a32si3cjvk3";
+ version = "0.1.0.1";
+ sha256 = "1m5flnn2rswc3380dccnfnhmyjp1dqr23dljd0515jxawbgjkzmg";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/nomeata/haskell-successors";
description = "An applicative functor to manage successors";
@@ -187868,8 +192950,8 @@ self: {
}:
mkDerivation {
pname = "swagger-petstore";
- version = "0.0.1.6";
- sha256 = "0whvh1b2s6jzr885avakswrcriv8hs4x36gdx22hg0fj77dh3b5q";
+ version = "0.0.1.7";
+ sha256 = "07p2hd35wg5g1r3lmhffvjch5vy6idmhdv21k1g8v3131apgjpxy";
libraryHaskellDepends = [
aeson base base64-bytestring bytestring case-insensitive containers
deepseq exceptions http-api-data http-client http-client-tls
@@ -187886,6 +192968,35 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "swagger-petstore_0_0_1_8" = callPackage
+ ({ mkDerivation, aeson, base, base64-bytestring, bytestring
+ , case-insensitive, containers, deepseq, exceptions, hspec
+ , http-api-data, http-client, http-client-tls, http-media
+ , http-types, iso8601-time, katip, microlens, mtl, network
+ , QuickCheck, random, safe-exceptions, semigroups, text, time
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "swagger-petstore";
+ version = "0.0.1.8";
+ sha256 = "1rslv21lg7jfc6vb8yyb6kkg3cma2300h4hld3m8zwfxgzcq79h7";
+ libraryHaskellDepends = [
+ aeson base base64-bytestring bytestring case-insensitive containers
+ deepseq exceptions http-api-data http-client http-client-tls
+ http-media http-types iso8601-time katip microlens mtl network
+ random safe-exceptions text time transformers unordered-containers
+ vector
+ ];
+ testHaskellDepends = [
+ aeson base bytestring containers hspec iso8601-time mtl QuickCheck
+ semigroups text time transformers unordered-containers vector
+ ];
+ homepage = "https://github.com/swagger-api/swagger-codegen#readme";
+ description = "Auto-generated swagger-petstore API Client";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"swagger-test" = callPackage
({ mkDerivation, aeson, async, attoparsec, base, binary, blaze-html
, bytestring, case-insensitive, containers, directory, filepath
@@ -187919,10 +193030,10 @@ self: {
"swagger2" = callPackage
({ mkDerivation, aeson, aeson-qq, base, base-compat, bytestring
, Cabal, cabal-doctest, containers, doctest, generics-sop, Glob
- , hashable, hspec, http-media, HUnit, insert-ordered-containers
- , lens, mtl, network, QuickCheck, scientific, template-haskell
- , text, time, transformers, transformers-compat
- , unordered-containers, uuid-types, vector
+ , hashable, hspec, hspec-discover, http-media, HUnit
+ , insert-ordered-containers, lens, mtl, network, QuickCheck
+ , scientific, template-haskell, text, time, transformers
+ , transformers-compat, unordered-containers, uuid-types, vector
}:
mkDerivation {
pname = "swagger2";
@@ -187940,6 +193051,7 @@ self: {
hashable hspec HUnit insert-ordered-containers lens mtl QuickCheck
text time unordered-containers vector
];
+ testToolDepends = [ hspec-discover ];
homepage = "https://github.com/GetShopTV/swagger2";
description = "Swagger 2.0 data model";
license = stdenv.lib.licenses.bsd3;
@@ -188465,6 +193577,7 @@ self: {
homepage = "http://github.com/brentlintner/synt";
description = "Similar code analysis";
license = "unknown";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {Synt = null;};
@@ -188797,6 +193910,7 @@ self: {
homepage = "http://www.haskell.org/haskellwiki/Synthesizer";
description = "Audio signal processing with dynamic physical dimensions";
license = "GPL";
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {UniqueLogicNP = null;};
@@ -188995,8 +194109,8 @@ self: {
}:
mkDerivation {
pname = "system-filepath";
- version = "0.4.13.4";
- sha256 = "1yy5zsmmimhg6iaw9fmpwrxvxrgi5s6bfyqfihdsnx4bjvn7sp9l";
+ version = "0.4.14";
+ sha256 = "14yras4pz2dh55xpwmazcgxijvi8913pjgzb9iw50mjq1lycwmhn";
libraryHaskellDepends = [ base bytestring deepseq text ];
testHaskellDepends = [
base bytestring chell chell-quickcheck QuickCheck text
@@ -189022,8 +194136,8 @@ self: {
({ mkDerivation, attoparsec, base, process, text }:
mkDerivation {
pname = "system-info";
- version = "0.1.0.10";
- sha256 = "164f8x4npp5pywplpz7x7q2qrmc7fc2hlqxm8zw083402sw668m7";
+ version = "0.1.0.13";
+ sha256 = "0ym1j9bjjv7aa3v1zqklljfyq19agv3imghglfii0qk7mrlyya9d";
libraryHaskellDepends = [ attoparsec base process text ];
testHaskellDepends = [ base ];
homepage = "https://github.com/ChaosGroup/system-info";
@@ -189189,6 +194303,7 @@ self: {
homepage = "https://github.com/jcristovao/system-util";
description = "Various system utils lifted to EitherT";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {easy-data = null;};
@@ -189628,8 +194743,8 @@ self: {
pname = "tagged";
version = "0.8.5";
sha256 = "16cdzh0bw16nvjnyyy5j9s60malhz4nnazw96vxb0xzdap4m2z74";
- revision = "1";
- editedCabalFile = "15mqdimbgrq5brqljjl7dbxkyrxppap06q53cp7ml7w3l08v5mx8";
+ revision = "2";
+ editedCabalFile = "0r2knfcq0b4s652vlvlnfwxlc2mkc2ra9kl8bp4zdn1awmfy0ia5";
libraryHaskellDepends = [
base deepseq template-haskell transformers transformers-compat
];
@@ -189765,10 +194880,8 @@ self: {
}:
mkDerivation {
pname = "taggy";
- version = "0.2.0";
- sha256 = "01q2ccf3a8akaifh79ajnfr5yrjsq4xihq0pl7lsz173n7mhnsy3";
- revision = "1";
- editedCabalFile = "02xmvs9m977szhf5cgy31rbadi662g194giq3djzvsd41c1sshq3";
+ version = "0.2.1";
+ sha256 = "1xmxwg024k5q4ah0pfn6nhyrznskgwg6anw558qzb4k5rjk3b7nq";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -189872,12 +194985,11 @@ self: {
}:
mkDerivation {
pname = "tagsoup";
- version = "0.14.2";
- sha256 = "1j7gliwn4x6i25zlhc8f704pbc96ddn9gb9czq3a4m0k1sfpm3w8";
+ version = "0.14.3";
+ sha256 = "00j2rm2sx0syn16kg2402fz4k8yqfl9knmi367jsiycds1q9zzf9";
libraryHaskellDepends = [ base bytestring containers text ];
testHaskellDepends = [
- base bytestring containers deepseq directory process QuickCheck
- text time
+ base bytestring deepseq directory process QuickCheck time
];
homepage = "https://github.com/ndmitchell/tagsoup#readme";
description = "Parsing and extracting information from (possibly malformed) HTML/XML documents";
@@ -190277,6 +195389,32 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "tar-conduit_0_2_0" = callPackage
+ ({ mkDerivation, base, bytestring, conduit, conduit-combinators
+ , containers, criterion, deepseq, directory, filepath, hspec, unix
+ , weigh
+ }:
+ mkDerivation {
+ pname = "tar-conduit";
+ version = "0.2.0";
+ sha256 = "01fqvm5wji1rgivqri0prp3k3drhr3gmmlcwy0v4qcwdhwgi0r2r";
+ libraryHaskellDepends = [
+ base bytestring conduit-combinators directory filepath unix
+ ];
+ testHaskellDepends = [
+ base bytestring conduit conduit-combinators containers deepseq
+ directory filepath hspec weigh
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring conduit conduit-combinators containers criterion
+ deepseq directory filepath hspec
+ ];
+ homepage = "https://github.com/snoyberg/tar-conduit#readme";
+ description = "Extract and create tar files using conduit for streaming";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"tardis" = callPackage
({ mkDerivation, base, mmorph, mtl }:
mkDerivation {
@@ -190327,6 +195465,7 @@ self: {
];
description = "Generate test-suites from refinement types";
license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) z3;};
"tart" = callPackage
@@ -190447,18 +195586,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "tasty_0_12" = callPackage
+ "tasty_1_0_0_1" = callPackage
({ mkDerivation, ansi-terminal, async, base, clock, containers
- , deepseq, mtl, optparse-applicative, regex-tdfa, stm, tagged
- , unbounded-delays, unix
+ , deepseq, mtl, optparse-applicative, stm, tagged, unbounded-delays
+ , unix
}:
mkDerivation {
pname = "tasty";
- version = "0.12";
- sha256 = "0840ziawhj0lrzn927nx9lww6wxc5krvf0c3xygl577vvxh4adg1";
+ version = "1.0.0.1";
+ sha256 = "0ggqffw9kbb6nlq1pplk131qzxndqqzqyf4s2p7576nljx11a7qf";
libraryHaskellDepends = [
ansi-terminal async base clock containers deepseq mtl
- optparse-applicative regex-tdfa stm tagged unbounded-delays unix
+ optparse-applicative stm tagged unbounded-delays unix
];
homepage = "https://github.com/feuerbach/tasty";
description = "Modern and extensible testing framework";
@@ -190473,8 +195612,8 @@ self: {
}:
mkDerivation {
pname = "tasty-ant-xml";
- version = "1.1.1";
- sha256 = "0asvz2jjk1zf3ylps1277kf4yy6bifascblsd3vjfk9k9rh52w3j";
+ version = "1.1.2";
+ sha256 = "10k8092iz8klx7wa3ajfny8zvrxv3clz330v3qz3k7dmbj596nhq";
libraryHaskellDepends = [
base containers directory filepath generic-deriving ghc-prim mtl
stm tagged tasty transformers xml
@@ -190518,6 +195657,19 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "tasty-dejafu_1_0_0_1" = callPackage
+ ({ mkDerivation, base, dejafu, random, tagged, tasty }:
+ mkDerivation {
+ pname = "tasty-dejafu";
+ version = "1.0.0.1";
+ sha256 = "1b06x1z6bc010w4nfz7hf5qb35z6cwa8bz35qd4526qnxqf88qf5";
+ libraryHaskellDepends = [ base dejafu random tagged tasty ];
+ homepage = "https://github.com/barrucadu/dejafu";
+ description = "Deja Fu support for the Tasty test framework";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"tasty-discover" = callPackage
({ mkDerivation, base, containers, directory, filepath, Glob
, hedgehog, tasty, tasty-hedgehog, tasty-hspec, tasty-hunit
@@ -190525,8 +195677,8 @@ self: {
}:
mkDerivation {
pname = "tasty-discover";
- version = "4.1.1";
- sha256 = "0lsz73rnvwb6z522bxfhlslvvymnjw7kw4fs8llwr3w6cvzl5vfj";
+ version = "4.1.3";
+ sha256 = "13w177l9ghfb9dwjwp4y1j45y2acv2ga7nw38jcqgj6a81ai9m5c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -190636,18 +195788,16 @@ self: {
}) {};
"tasty-hspec" = callPackage
- ({ mkDerivation, base, hspec, hspec-core, QuickCheck, random
- , tagged, tasty, tasty-quickcheck, tasty-smallcheck
+ ({ mkDerivation, base, hspec, hspec-core, QuickCheck, tasty
+ , tasty-quickcheck, tasty-smallcheck
}:
mkDerivation {
pname = "tasty-hspec";
- version = "1.1.3.2";
- sha256 = "0n4pn89jz9i8d7mxsdp6ynwkg5gjyaipdy261parx64m3nxi4vcv";
- revision = "1";
- editedCabalFile = "05fl6jirj479lax2wqg6h5m82mkc475lhas7wmpx91kv1kfklx54";
+ version = "1.1.3.3";
+ sha256 = "00ym5jlh11smmg3aryfylnwjbmi62gsy5jl1pv85bc8gl0kqa85d";
libraryHaskellDepends = [
- base hspec hspec-core QuickCheck random tagged tasty
- tasty-quickcheck tasty-smallcheck
+ base hspec hspec-core QuickCheck tasty tasty-quickcheck
+ tasty-smallcheck
];
homepage = "https://github.com/mitchellwrosen/tasty-hspec";
description = "Hspec support for the Tasty test framework";
@@ -190845,14 +195995,30 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "tasty-quickcheck_0_9_2" = callPackage
+ ({ mkDerivation, base, pcre-light, QuickCheck, random, tagged
+ , tasty, tasty-hunit
+ }:
+ mkDerivation {
+ pname = "tasty-quickcheck";
+ version = "0.9.2";
+ sha256 = "0wsqm4fjxnh64sjlccjapvgvw4dhl603qpxl79g3sa3fmgg0m4n5";
+ libraryHaskellDepends = [ base QuickCheck random tagged tasty ];
+ testHaskellDepends = [ base pcre-light tasty tasty-hunit ];
+ homepage = "https://github.com/feuerbach/tasty";
+ description = "QuickCheck support for the Tasty test framework";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"tasty-rerun" = callPackage
({ mkDerivation, base, containers, mtl, optparse-applicative
, reducers, split, stm, tagged, tasty, transformers
}:
mkDerivation {
pname = "tasty-rerun";
- version = "1.1.8";
- sha256 = "0yg8cicfn3qaazvp4rbanzy3dyk95k3y1kkd4bykvkl9v4076788";
+ version = "1.1.9";
+ sha256 = "0piwv5nrqvwnzp76xpsjlncrl2cd9jsxxb1ghkaijn2fi2c63akd";
libraryHaskellDepends = [
base containers mtl optparse-applicative reducers split stm tagged
tasty transformers
@@ -190865,17 +196031,17 @@ self: {
"tasty-silver" = callPackage
({ mkDerivation, ansi-terminal, async, base, bytestring, containers
, deepseq, directory, filepath, mtl, optparse-applicative, process
- , process-extras, regex-tdfa, stm, tagged, tasty, tasty-hunit
- , temporary, text, transformers
+ , process-extras, regex-tdfa, semigroups, stm, tagged, tasty
+ , tasty-hunit, temporary, text, transformers
}:
mkDerivation {
pname = "tasty-silver";
- version = "3.1.10";
- sha256 = "1yvfkl1dkp2bmcaa0bjamw13ky007rhn4wci3cia97glpy9nv24f";
+ version = "3.1.11";
+ sha256 = "1rvky2661s77wnm8c0jh0hkp3jjp5c1vndv9ilg4s47kw77708az";
libraryHaskellDepends = [
ansi-terminal async base bytestring containers deepseq directory
filepath mtl optparse-applicative process process-extras regex-tdfa
- stm tagged tasty temporary text
+ semigroups stm tagged tasty temporary text
];
testHaskellDepends = [
base directory filepath process tasty tasty-hunit temporary
@@ -190906,8 +196072,8 @@ self: {
pname = "tasty-stats";
version = "0.2.0.3";
sha256 = "1jyywffrs270rvf8k9zc82b7fqqv6x1czk6qlbi6sq9z1wgs5w1b";
- revision = "1";
- editedCabalFile = "1kvvz549gs7vm9w6gypr8pa1klsab335rzmdq7v638rvijgqfbn8";
+ revision = "2";
+ editedCabalFile = "1gkan66glb235kakvwkidmxd0cn7s9405w3njiwa5k6cvkpkny4x";
libraryHaskellDepends = [
base containers directory process stm tagged tasty time
];
@@ -191313,26 +196479,27 @@ self: {
}) {};
"telegram-api" = callPackage
- ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, filepath
- , hjpath, hspec, http-api-data, http-client, http-client-tls
- , http-media, http-types, mime-types, mtl, optparse-applicative
- , random, servant, servant-client, string-conversions, text
- , transformers, utf8-string
+ ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring
+ , containers, filepath, hjpath, hspec, http-api-data, http-client
+ , http-client-tls, http-media, http-types, mime-types, mtl
+ , optparse-applicative, random, servant, servant-client
+ , servant-client-core, string-conversions, text, transformers
+ , utf8-string
}:
mkDerivation {
pname = "telegram-api";
- version = "0.7.1.0";
- sha256 = "0shb5al3ih6qrs2aw1h03mfqk954gml1lnyh6svzcsz9z6f7hvbb";
+ version = "0.7.2.0";
+ sha256 = "1aixgyxz3izv9z3zwwsbvdnlg4lrhy7aa33zw98v70072a0rqaj2";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- aeson base bytestring http-api-data http-client http-media
- http-types mime-types mtl servant servant-client string-conversions
- text transformers
+ aeson base bytestring containers http-api-data http-client
+ http-media http-types mime-types mtl servant servant-client
+ servant-client-core string-conversions text transformers
];
testHaskellDepends = [
aeson ansi-wl-pprint base filepath hjpath hspec http-client
http-client-tls http-types optparse-applicative random servant
- servant-client text transformers utf8-string
+ servant-client servant-client-core text transformers utf8-string
];
homepage = "http://github.com/klappvisor/haskell-telegram-api#readme";
description = "Telegram Bot API bindings";
@@ -192103,6 +197270,26 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "terminal-progress-bar_0_2" = callPackage
+ ({ mkDerivation, async, base, HUnit, stm, stm-chans, terminal-size
+ , test-framework, test-framework-hunit
+ }:
+ mkDerivation {
+ pname = "terminal-progress-bar";
+ version = "0.2";
+ sha256 = "052az3lxmhfssvm1i5md5d9la7vhfy560ls101kvw73vdzxk9cfn";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ async base stm stm-chans terminal-size ];
+ testHaskellDepends = [
+ base HUnit test-framework test-framework-hunit
+ ];
+ homepage = "https://github.com/roelvandijk/terminal-progress-bar";
+ description = "A simple progress bar in the terminal";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"terminal-size" = callPackage
({ mkDerivation, base }:
mkDerivation {
@@ -192127,12 +197314,12 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "terminfo_0_4_1_0" = callPackage
+ "terminfo_0_4_1_1" = callPackage
({ mkDerivation, base, ncurses }:
mkDerivation {
pname = "terminfo";
- version = "0.4.1.0";
- sha256 = "0pgzx7byi4p2fwk6hcqnbs59bv4igzmhfkr5wrkkfsh4msqxflrz";
+ version = "0.4.1.1";
+ sha256 = "1pfd2vdk298v23af2zqcl66xxivrzwjjpdf3dr0fa0isl70fi3hp";
libraryHaskellDepends = [ base ];
librarySystemDepends = [ ncurses ];
homepage = "https://github.com/judah/terminfo";
@@ -192256,8 +197443,8 @@ self: {
pname = "test-framework";
version = "0.8.1.1";
sha256 = "0wxjgdvb1c4ykazw774zlx86550848wbsvgjgcrdzcgbb9m650vq";
- revision = "2";
- editedCabalFile = "1mp1h0fzwxa3xxnbw33lp8hj0rb8vwkd712r5ak8ny5nmawh2c9y";
+ revision = "3";
+ editedCabalFile = "1b6pi4j1dpcbiyx1bpfks29x293j02z7ashs2sdc8fhzbwsr9lxj";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -192269,6 +197456,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "test-framework_0_8_2_0" = callPackage
+ ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, bytestring
+ , containers, hostname, HUnit, libxml, old-locale, QuickCheck
+ , random, regex-posix, semigroups, time, xml
+ }:
+ mkDerivation {
+ pname = "test-framework";
+ version = "0.8.2.0";
+ sha256 = "1hhacrzam6b8f10hyldmjw8pb7frdxh04rfg3farxcxwbnhwgbpm";
+ libraryHaskellDepends = [
+ ansi-terminal ansi-wl-pprint base containers hostname old-locale
+ random regex-posix time xml
+ ];
+ testHaskellDepends = [
+ ansi-terminal ansi-wl-pprint base bytestring containers hostname
+ HUnit libxml old-locale QuickCheck random regex-posix semigroups
+ time xml
+ ];
+ homepage = "http://haskell.github.io/test-framework/";
+ description = "Framework for running and organising tests, with HUnit and QuickCheck support";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"test-framework-doctest" = callPackage
({ mkDerivation, base, doctest, test-framework
, test-framework-hunit
@@ -192803,8 +198014,8 @@ self: {
}:
mkDerivation {
pname = "texbuilder";
- version = "0.1.2.0";
- sha256 = "076im75jx1g37cvhvfc6a7my6m81rcgdww6y97p0ldwjbv88gsk3";
+ version = "0.1.4.0";
+ sha256 = "0i301a78790cqhgb28bhc2qksymbx2jdr31m2x59nsj7hmw268b2";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -192824,8 +198035,8 @@ self: {
}:
mkDerivation {
pname = "texmath";
- version = "0.10";
- sha256 = "0i9haxii7kklz6qrfidb54iv5cl73p201zy24mwkf4bf56lff1pa";
+ version = "0.10.1.1";
+ sha256 = "0q2fld5mdcd6j1n3rrg3bjpndbgbn17cwg0xbnvscrpa0s767jaj";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -192886,6 +198097,31 @@ self: {
license = stdenv.lib.licenses.bsd2;
}) {};
+ "text_1_2_3_0" = callPackage
+ ({ mkDerivation, array, base, binary, bytestring, deepseq
+ , directory, ghc-prim, HUnit, integer-gmp, QuickCheck
+ , quickcheck-unicode, random, test-framework, test-framework-hunit
+ , test-framework-quickcheck2
+ }:
+ mkDerivation {
+ pname = "text";
+ version = "1.2.3.0";
+ sha256 = "06iir7q99rnffzxi8gagn8w1k9m49368sbidgz634fv1gxib3q10";
+ libraryHaskellDepends = [
+ array base binary bytestring deepseq ghc-prim integer-gmp
+ ];
+ testHaskellDepends = [
+ array base binary bytestring deepseq directory ghc-prim HUnit
+ integer-gmp QuickCheck quickcheck-unicode random test-framework
+ test-framework-hunit test-framework-quickcheck2
+ ];
+ doCheck = false;
+ homepage = "https://github.com/haskell/text";
+ description = "An efficient packed Unicode text type";
+ license = stdenv.lib.licenses.bsd2;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"text-all" = callPackage
({ mkDerivation, base, bytestring, text, text-format, utf8-string
}:
@@ -193177,21 +198413,21 @@ self: {
"text-ldap" = callPackage
({ mkDerivation, attoparsec, base, base64-bytestring, bytestring
, containers, dlist, QuickCheck, quickcheck-simple, random
- , semigroups, transformers
+ , transformers
}:
mkDerivation {
pname = "text-ldap";
- version = "0.1.1.8";
- sha256 = "0ff057nr4v6hvwsa7avkz14nw63542l0zfsjb91q9nr60kvnsipj";
+ version = "0.1.1.10";
+ sha256 = "13wjarsshp64cc632bqmckx664a57w7cnlm8gs7rfp1bcm7vdnjk";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
attoparsec base base64-bytestring bytestring containers dlist
- semigroups transformers
+ transformers
];
executableHaskellDepends = [ base bytestring ];
testHaskellDepends = [
- base bytestring QuickCheck quickcheck-simple random semigroups
+ base bytestring QuickCheck quickcheck-simple random
];
description = "Parser and Printer for LDAP text data stream";
license = stdenv.lib.licenses.bsd3;
@@ -193292,6 +198528,8 @@ self: {
pname = "text-metrics";
version = "0.3.0";
sha256 = "18mzxwkdvjp31r720ai9bnxr638qq8x3a2v408bz0d8f0rsayx1q";
+ revision = "1";
+ editedCabalFile = "0jl0vlx9y0n7x4j5zspx6zmbbnmlf5p2bg6v9k2afdfc02fmhasm";
libraryHaskellDepends = [ base containers text vector ];
testHaskellDepends = [ base hspec QuickCheck text ];
benchmarkHaskellDepends = [ base criterion deepseq text weigh ];
@@ -193446,6 +198684,24 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "text-replace" = callPackage
+ ({ mkDerivation, base, containers, hedgehog, neat-interpolation
+ , optparse-applicative, parsec, text
+ }:
+ mkDerivation {
+ pname = "text-replace";
+ version = "0.0.0.1";
+ sha256 = "15qf0pwjhaa2zwdzixil5q1iqs5cwlazggzsgwwq553jlggbf063";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [ base containers ];
+ executableHaskellDepends = [ base optparse-applicative parsec ];
+ testHaskellDepends = [ base hedgehog neat-interpolation text ];
+ homepage = "https://github.com/chris-martin/text-replace";
+ description = "Simple text replacements from a list of search/replace pairs";
+ license = stdenv.lib.licenses.asl20;
+ }) {};
+
"text-short" = callPackage
({ mkDerivation, base, binary, bytestring, deepseq, hashable
, quickcheck-instances, tasty, tasty-hunit, tasty-quickcheck, text
@@ -193469,14 +198725,17 @@ self: {
({ mkDerivation, array, base, base-compat, base-orphans, bifunctors
, bytestring, bytestring-builder, containers, contravariant
, criterion, deepseq, deriving-compat, generic-deriving
- , ghc-boot-th, ghc-prim, hspec, integer-gmp, nats, QuickCheck
- , quickcheck-instances, semigroups, tagged, template-haskell, text
- , th-abstraction, th-lift, transformers, transformers-compat, void
+ , ghc-boot-th, ghc-prim, hspec, hspec-discover, integer-gmp, nats
+ , QuickCheck, quickcheck-instances, semigroups, tagged
+ , template-haskell, text, th-abstraction, th-lift, transformers
+ , transformers-compat, void
}:
mkDerivation {
pname = "text-show";
- version = "3.7";
- sha256 = "11wnvnc87rrzg949b00vbx3pbcxskrapdy9dklh6szq6pcc38irr";
+ version = "3.7.1";
+ sha256 = "0gbf3cpxz92v4jphmwvz93il7m38qkwirfnk5453517k2s84s899";
+ revision = "1";
+ editedCabalFile = "1f30i7b45hq3m1hb7b6m8kc1fwz4i697m17wwiabjsyzbx4qiv98";
libraryHaskellDepends = [
array base base-compat bifunctors bytestring bytestring-builder
containers contravariant generic-deriving ghc-boot-th ghc-prim
@@ -193490,6 +198749,7 @@ self: {
QuickCheck quickcheck-instances semigroups tagged template-haskell
text th-lift transformers transformers-compat void
];
+ testToolDepends = [ hspec-discover ];
benchmarkHaskellDepends = [
array base base-compat bifunctors bytestring bytestring-builder
containers contravariant criterion deepseq generic-deriving
@@ -193514,6 +198774,8 @@ self: {
pname = "text-show-instances";
version = "3.6.2";
sha256 = "0c64ibvzpz2h4f54bhrla4yf4mhsl3x2ag2nx2kj81g47pw917r5";
+ revision = "1";
+ editedCabalFile = "04rkwk7c6zzl2ql22x66gn3amgq7cfqdndxyhh6ywlbksa9ljjsw";
libraryHaskellDepends = [
base base-compat bifunctors binary bytestring containers directory
ghc-boot-th haskeline hoopl hpc old-locale old-time pretty process
@@ -193971,12 +199233,47 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "th-desugar_1_8" = callPackage
+ ({ mkDerivation, base, containers, hspec, HUnit, mtl, syb
+ , template-haskell, th-expand-syns, th-lift, th-orphans
+ }:
+ mkDerivation {
+ pname = "th-desugar";
+ version = "1.8";
+ sha256 = "0nbsgf3lxmjj43f1xdjb1z486h8av47mym6v1y5pzdv39wgiykdv";
+ libraryHaskellDepends = [
+ base containers mtl syb template-haskell th-expand-syns th-lift
+ th-orphans
+ ];
+ testHaskellDepends = [
+ base containers hspec HUnit mtl syb template-haskell th-expand-syns
+ th-lift th-orphans
+ ];
+ homepage = "https://github.com/goldfirere/th-desugar";
+ description = "Functions to desugar Template Haskell";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "th-dict-discovery" = callPackage
+ ({ mkDerivation, base, constraints, template-haskell }:
+ mkDerivation {
+ pname = "th-dict-discovery";
+ version = "0.1.0.0";
+ sha256 = "1dmkj8is73mwngy1dw3ba34744whqj0jc243bjnkyrrwkbwn55ih";
+ libraryHaskellDepends = [ base constraints template-haskell ];
+ homepage = "http://github.com/isovector/th-dict-discovery/";
+ description = "Automatically discover available dictionaries at compile time";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"th-expand-syns" = callPackage
({ mkDerivation, base, containers, syb, template-haskell }:
mkDerivation {
pname = "th-expand-syns";
- version = "0.4.3.0";
- sha256 = "17b73q0d5r8xixhvdp0hv4ap96l7s3f2y0j5cknp81b1hyinivlz";
+ version = "0.4.4.0";
+ sha256 = "01prlvh3py5hq5ccjidfyp9ixq2zd88dkbsidyjrpkja6v8m43yc";
libraryHaskellDepends = [ base containers syb template-haskell ];
testHaskellDepends = [ base template-haskell ];
homepage = "https://github.com/DanielSchuessler/th-expand-syns";
@@ -194132,17 +199429,18 @@ self: {
}) {};
"th-orphans" = callPackage
- ({ mkDerivation, base, hspec, mtl, template-haskell, th-lift
- , th-lift-instances, th-reify-many
+ ({ mkDerivation, base, hspec, hspec-discover, mtl, template-haskell
+ , th-lift, th-lift-instances, th-reify-many
}:
mkDerivation {
pname = "th-orphans";
- version = "0.13.4";
- sha256 = "0cab6hmyii42p157jhm0sd5jzdlxms4ip2ncrmcmc47dl3pxk5gk";
+ version = "0.13.5";
+ sha256 = "1b9599vyn0wjwbq7b7n0w25s3wbihdxr958hscfpwc8lg55lsr4m";
libraryHaskellDepends = [
base mtl template-haskell th-lift th-lift-instances th-reify-many
];
testHaskellDepends = [ base hspec template-haskell ];
+ testToolDepends = [ hspec-discover ];
description = "Orphan instances for TH datatypes";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -194305,8 +199603,8 @@ self: {
}:
mkDerivation {
pname = "thank-you-stars";
- version = "0.2.0";
- sha256 = "0a1mv7k7m4yaadfrmb45s09aa5zy0wd2jccjsyqhp63v89m58z8j";
+ version = "0.3.0";
+ sha256 = "0cks475c8ivhikci7h8zkvxhxmp7n9w85b16wvx998q3bjrbkj04";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -194453,8 +199751,8 @@ self: {
pname = "these";
version = "0.7.4";
sha256 = "0jl8ippnsy5zmy52cvpn252hm2g7xqp1zb1xcrbgr00pmdxpvwyw";
- revision = "2";
- editedCabalFile = "0mxl547dy7pp95kh3bvmdhsfcrmxcx8rzc94nnmcs3ahrbyw1nl1";
+ revision = "5";
+ editedCabalFile = "1jx0p6z91nz5dagw4bcvb7lr9a15ahjnx0nhyv8cmd8p056m5515";
libraryHaskellDepends = [
aeson base bifunctors binary containers data-default-class deepseq
hashable keys mtl profunctors QuickCheck semigroupoids transformers
@@ -195054,24 +200352,22 @@ self: {
}) {};
"tickle" = callPackage
- ({ mkDerivation, base, bifunctors, bytestring, directory, doctest
- , filepath, lens, mtl, QuickCheck, semigroupoids, semigroups
- , template-haskell, transformers, validation
+ ({ mkDerivation, base, bifunctors, bytestring, checkers, filepath
+ , lens, mtl, papa, QuickCheck, semigroupoids, semigroups, tasty
+ , tasty-hunit, tasty-quickcheck, transformers, validation
}:
mkDerivation {
pname = "tickle";
- version = "0.0.6";
- sha256 = "19xv9s3qz2q2jvgzig8rfc47c25m8xl3d10xdx1d4dsmhbj1nw55";
- revision = "1";
- editedCabalFile = "1j0npns8ilxq84087gfdg1isncjssp9q0ijgrpg849cip8h0y5y1";
+ version = "0.0.9";
+ sha256 = "10fq51mvks300yhhzzsjfmjd0g888z35x7qc4b7a2i7307zjrjml";
libraryHaskellDepends = [
- base bifunctors bytestring filepath lens mtl semigroupoids
+ base bifunctors bytestring filepath mtl papa semigroupoids
semigroups transformers validation
];
testHaskellDepends = [
- base directory doctest filepath QuickCheck template-haskell
+ base checkers lens QuickCheck tasty tasty-hunit tasty-quickcheck
];
- homepage = "https://github.com/NICTA/tickle";
+ homepage = "https://github.com/qfpl/tickle";
description = "A port of @Data.Binary@";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -195288,14 +200584,14 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
- "time_1_8_0_3" = callPackage
+ "time_1_9" = callPackage
({ mkDerivation, base, deepseq, QuickCheck, random, tasty
, tasty-hunit, tasty-quickcheck, unix
}:
mkDerivation {
pname = "time";
- version = "1.8.0.3";
- sha256 = "0mbz76v74q938ramsgipgsvk8hvnplcnffplaq439z202zkyar1h";
+ version = "1.9";
+ sha256 = "13nfiwsh1bq4w9rwmqm1iy9kxwrqbi82qpqlpcd02ywklh21silx";
libraryHaskellDepends = [ base deepseq ];
testHaskellDepends = [
base deepseq QuickCheck random tasty tasty-hunit tasty-quickcheck
@@ -195423,9 +200719,10 @@ self: {
({ mkDerivation, base, data-lens-light, time }:
mkDerivation {
pname = "time-lens";
- version = "0.4.0.1";
- sha256 = "0916qfan93aq91icf87ifvskrq6s6s75rhkajvl8pxp74j28hlwz";
+ version = "0.4.0.2";
+ sha256 = "07nh97x1mx5hc48xqv3gk3cgls6xpb829h3bzsjx8rwqnzybijyq";
libraryHaskellDepends = [ base data-lens-light time ];
+ homepage = "https://github.com/feuerbach/time-lens";
description = "Lens-based interface to Data.Time data structures";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -196354,8 +201651,8 @@ self: {
}:
mkDerivation {
pname = "tldr";
- version = "0.2.3";
- sha256 = "11xg9b2abfvwh484wkrj8j1c65qdy95c3xdc6gsmzqcyzi8d6k7j";
+ version = "0.2.5";
+ sha256 = "0b87zkwj27z7h5rxf25qh4sq20smwbd3fg6j30hgmn0p9rsg4gzw";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -196856,17 +202153,19 @@ self: {
"toolshed" = callPackage
({ mkDerivation, array, base, containers, data-default, deepseq
- , directory, filepath, HUnit, QuickCheck, random
+ , directory, extra, filepath, HUnit, QuickCheck, random
}:
mkDerivation {
pname = "toolshed";
- version = "0.17.0.2";
- sha256 = "10cyg48dlv34xndx7aqhldxlglnkijmc88abxkg3jwk7q06ckm93";
+ version = "0.18.0.0";
+ sha256 = "0x8sn6gvmns81xjkzs1r5jfaar3qjhcyl6q9dbniyglk5y7w35gm";
libraryHaskellDepends = [
array base containers data-default deepseq directory filepath
QuickCheck random
];
- testHaskellDepends = [ base containers HUnit QuickCheck random ];
+ testHaskellDepends = [
+ base containers extra HUnit QuickCheck random
+ ];
homepage = "http://functionalley.eu";
description = "Ill-defined library";
license = "GPL";
@@ -197564,16 +202863,17 @@ self: {
homepage = "https://github.com/ocharles/transformers-eff";
description = "An approach to managing composable effects, ala mtl/transformers/extensible-effects/Eff";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {effect-interpreters = null;};
"transformers-either" = callPackage
- ({ mkDerivation, base, transformers }:
+ ({ mkDerivation, base, text, transformers }:
mkDerivation {
pname = "transformers-either";
- version = "0.0.1";
- sha256 = "1hr10mfmx2ac7si8a43cyhgxzg75amqin3wyvw06bgymnvd00dqj";
- libraryHaskellDepends = [ base transformers ];
+ version = "0.0.2";
+ sha256 = "1122rgspazl3n9vghlzzg14hv6p0a66lf6r7hkim14p0rcagvx5a";
+ libraryHaskellDepends = [ base text transformers ];
description = "An Either monad transformer";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -197952,8 +203252,10 @@ self: {
}:
mkDerivation {
pname = "tree-diff";
- version = "0.0.0.1";
- sha256 = "0km6himykj2q9ymaivv67dvlk7ia9dli2zhyx6g8yh8963mcn91v";
+ version = "0.0.1";
+ sha256 = "049v44c520jy3icxlnrvbdblh3mjmvd7m6qmkzxbzkf02x63xqmz";
+ revision = "1";
+ editedCabalFile = "0d3kbs32q816vlrbj17lwl1bmmv7lvwi2c2i3k3agm2a8h0psx6s";
libraryHaskellDepends = [
aeson ansi-terminal ansi-wl-pprint base base-compat bytestring
containers generics-sop hashable MemoTrie parsec parsers pretty
@@ -198192,8 +203494,8 @@ self: {
pname = "trifecta";
version = "1.7.1.1";
sha256 = "13n6a3fdxngnzsjnhfrzigv1c2g0xm6lqkjcnirpc37sd0rpby31";
- revision = "1";
- editedCabalFile = "17i9137mqcm74s8zwdnkcg5kj583zzwqjyyz1z0af4anxfs1hvng";
+ revision = "2";
+ editedCabalFile = "1pbywxk2aw0bkhkhhcdqhxnkvyxxnrj13qahlzf2ivd5awmynmqp";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
ansi-terminal ansi-wl-pprint array base blaze-builder blaze-html
@@ -198808,6 +204110,18 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "tuple-ops" = callPackage
+ ({ mkDerivation, base, type-combinators }:
+ mkDerivation {
+ pname = "tuple-ops";
+ version = "0.0.0.2";
+ sha256 = "05hmw9s4bync4j9sr8cs9nknkgpzwqd55aiw5s3iax4qnbxsccyp";
+ libraryHaskellDepends = [ base type-combinators ];
+ homepage = "https://github.com/pierric/tuple-ops";
+ description = "various operations on n-ary tuples via GHC.Generics";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"tuple-th" = callPackage
({ mkDerivation, base, containers, template-haskell }:
mkDerivation {
@@ -198949,7 +204263,7 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
- "turtle_1_5_0" = callPackage
+ "turtle_1_5_1" = callPackage
({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock
, containers, criterion, directory, doctest, exceptions, foldl
, hostname, managed, optional-args, optparse-applicative, process
@@ -198958,8 +204272,8 @@ self: {
}:
mkDerivation {
pname = "turtle";
- version = "1.5.0";
- sha256 = "1ivskskvqbwm4bp8m2pfhb3ma9y747jfg5gfcsadwmqyqzzf90l5";
+ version = "1.5.1";
+ sha256 = "06yya57w3i598b6h3gkhv8zs0a3f1az12x8viy16sgdbgwph8scm";
libraryHaskellDepends = [
ansi-wl-pprint async base bytestring clock containers directory
exceptions foldl hostname managed optional-args
@@ -199302,23 +204616,25 @@ self: {
}) {};
"twilio" = callPackage
- ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal
- , containers, errors, exceptions, free, http-client
+ ({ mkDerivation, aeson, base, binary, bytestring, Cabal, containers
+ , deepseq, errors, exceptions, free, hashable, hspec, http-client
, http-client-tls, http-types, mtl, network-uri, old-locale
- , scientific, text, time, transformers, unordered-containers
+ , QuickCheck, quickcheck-instances, scientific, template-haskell
+ , text, time, transformers, unordered-containers
}:
mkDerivation {
pname = "twilio";
- version = "0.1.3.2";
- sha256 = "1vbb846cdav6csm2y9asrdzvmh9s3pf4apyharrr1hwd2xz3jcga";
+ version = "0.2.0.0";
+ sha256 = "0shjhdb3iabbs7hy89hv3fawzxilc7djgpacgydnzl2290dm17yl";
libraryHaskellDepends = [
- aeson base bifunctors bytestring containers errors exceptions free
- http-client http-client-tls http-types mtl network-uri old-locale
- scientific text time transformers unordered-containers
+ aeson base binary bytestring containers deepseq errors exceptions
+ free hashable http-client http-client-tls http-types mtl
+ network-uri old-locale scientific template-haskell text time
+ transformers unordered-containers
];
testHaskellDepends = [
- aeson base bytestring Cabal http-client http-client-tls network-uri
- text transformers
+ aeson base bytestring Cabal hspec http-client http-client-tls
+ network-uri QuickCheck quickcheck-instances text transformers
];
doCheck = false;
homepage = "https://github.com/markandrus/twilio-haskell";
@@ -199445,15 +204761,15 @@ self: {
({ mkDerivation, aeson, attoparsec, authenticate-oauth, base
, bytestring, Cabal, cabal-doctest, case-insensitive, conduit
, conduit-extra, containers, data-default, doctest, exceptions
- , hlint, hspec, http-client, http-conduit, http-types, lens
- , lens-aeson, network-uri, resourcet, template-haskell, text, time
- , transformers, transformers-base, twitter-types
- , twitter-types-lens
+ , hlint, hspec, hspec-discover, http-client, http-conduit
+ , http-types, lens, lens-aeson, network-uri, resourcet
+ , template-haskell, text, time, transformers, transformers-base
+ , twitter-types, twitter-types-lens
}:
mkDerivation {
pname = "twitter-conduit";
- version = "0.2.2.2";
- sha256 = "00bxqd77ccxa0cbbrgwhnivyi8jvmm5w0xx7fnx592yn7y9kgfip";
+ version = "0.2.3";
+ sha256 = "1xspyig287y2x9y0f6390jd8zmzc2nf2zcsnjd9y69a1qjchviv9";
setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
aeson attoparsec authenticate-oauth base bytestring conduit
@@ -199469,6 +204785,7 @@ self: {
lens-aeson network-uri resourcet template-haskell text time
twitter-types twitter-types-lens
];
+ testToolDepends = [ hspec-discover ];
homepage = "https://github.com/himura/twitter-conduit";
description = "Twitter API package with conduit interface and Streaming API support";
license = stdenv.lib.licenses.bsd3;
@@ -199776,6 +205093,19 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "type-combinators-singletons_0_2_1_0" = callPackage
+ ({ mkDerivation, base, singletons, type-combinators }:
+ mkDerivation {
+ pname = "type-combinators-singletons";
+ version = "0.2.1.0";
+ sha256 = "00cwlfcka2d1wcp7159r3sk3gz852dmc71jvjfr8bn1rrr781n0q";
+ libraryHaskellDepends = [ base singletons type-combinators ];
+ homepage = "https://github.com/mstksg/type-combinators-singletons";
+ description = "Interop between /type-combinators/ and /singletons/";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"type-digits" = callPackage
({ mkDerivation, base, template-haskell, type-spine }:
mkDerivation {
@@ -200020,8 +205350,8 @@ self: {
({ mkDerivation, base, ghc-prim }:
mkDerivation {
pname = "type-level-sets";
- version = "0.8.5.0";
- sha256 = "1ahfrwrlbdh61w6vh2v5j2ammkvcjxvw53d28pgqy296mpxikwvz";
+ version = "0.8.7.0";
+ sha256 = "1i5yzjdfw6q868ihhqmpk4psbnqwmz8liwha7dzn1rbw4h357ky7";
libraryHaskellDepends = [ base ghc-prim ];
description = "Type-level sets and finite maps (with value-level counterparts)";
license = stdenv.lib.licenses.bsd3;
@@ -200057,10 +205387,8 @@ self: {
}:
mkDerivation {
pname = "type-map";
- version = "0.1.0.0";
- sha256 = "1hssaqpic5l53l9pxvj75j87ywdnx985j6jgrqr8m9vx5hr1xrl4";
- revision = "1";
- editedCabalFile = "0821rnwnk0h9n62pnnfy68iyf1jjnb3dr72gs0667yj09r1x7cw2";
+ version = "0.1.2.0";
+ sha256 = "0cm2b4xkassjh71ndc5nddpmqyr5bcf3fqxs74wzd11dycmfqfaa";
libraryHaskellDepends = [ base containers ghc-prim vector ];
testHaskellDepends = [
base HUnit test-framework test-framework-hunit
@@ -200097,8 +205425,8 @@ self: {
}:
mkDerivation {
pname = "type-of-html";
- version = "1.3.0.1";
- sha256 = "1f6np6m3bqiigwq2859j7d4fiyzkmlyxv5gg11f53lx92f1qfaz2";
+ version = "1.3.2.1";
+ sha256 = "1c7yj9fh9dxkif2f116cjjgz2prdz1a3xaqni5m9gmvy2y5gvbdn";
libraryHaskellDepends = [
base bytestring double-conversion ghc-prim text
];
@@ -200316,8 +205644,8 @@ self: {
}:
mkDerivation {
pname = "typed-process";
- version = "0.2.0.0";
- sha256 = "1vc6ig5r5ajdr9d28fk1q0cb4p7nahbknn9fkzli4n9l9bk4xhdf";
+ version = "0.2.1.0";
+ sha256 = "1l6wpkwnz4lriq1n0hxv3mdvzmrf44ddkb1ys8cyj3ywfn2xh56j";
libraryHaskellDepends = [
async base bytestring process stm transformers
];
@@ -200506,6 +205834,23 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "typelits-witnesses_0_3_0_1" = callPackage
+ ({ mkDerivation, base, base-compat, constraints, reflection
+ , transformers
+ }:
+ mkDerivation {
+ pname = "typelits-witnesses";
+ version = "0.3.0.1";
+ sha256 = "0d2537dwz5kiq81amrj2v00bvlwjfkidlz45g1h96zv78mlw1l7c";
+ libraryHaskellDepends = [
+ base base-compat constraints reflection transformers
+ ];
+ homepage = "https://github.com/mstksg/typelits-witnesses";
+ description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"typeof" = callPackage
({ mkDerivation, base, process }:
mkDerivation {
@@ -200571,8 +205916,8 @@ self: {
}:
mkDerivation {
pname = "typesafe-precure";
- version = "0.5.0.1";
- sha256 = "1c1f6wmn8yf3crzmna4ww977cwga6wl814f0ka99s1sr65j2c5bx";
+ version = "0.5.1.1";
+ sha256 = "0yg75dj3bfxpqzdqw8lk7ligs39dnlya93qcg9grlbav9jpzv38n";
libraryHaskellDepends = [
aeson aeson-pretty autoexporter base bytestring dlist
monad-skeleton template-haskell text th-data-compat
@@ -200925,27 +206270,27 @@ self: {
}) {};
"uhc-light" = callPackage
- ({ mkDerivation, array, base, binary, bytestring, containers
- , directory, fgl, filepath, hashable, mtl, network, old-locale
- , primitive, process, syb, transformers, uhc-util, utf8-string
- , uulib, vector
+ ({ mkDerivation, array, base, binary, bytestring, chr-data
+ , containers, directory, fgl, filepath, hashable, mtl, network
+ , old-locale, primitive, process, syb, transformers, uhc-util
+ , utf8-string, uulib, vector
}:
mkDerivation {
pname = "uhc-light";
- version = "1.1.9.5";
- sha256 = "07b8hvam9n801ldwrm6jjds691gxjw4yp33zsg4bbbv2mk6z7fpa";
+ version = "1.1.10.0";
+ sha256 = "0l8p6jn5f2lakdq5lvish0w62cpc0dsx7xm0jcwy6bml3ivlpzw9";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
- array base binary bytestring containers directory fgl filepath
- hashable mtl network old-locale primitive process syb transformers
- uhc-util utf8-string uulib vector
+ array base binary bytestring chr-data containers directory fgl
+ filepath hashable mtl network old-locale primitive process syb
+ transformers uhc-util utf8-string uulib vector
];
executableHaskellDepends = [
- array base binary bytestring containers directory fgl filepath
- hashable mtl network old-locale primitive process syb transformers
- uhc-util utf8-string uulib vector
+ array base binary bytestring chr-data containers directory fgl
+ filepath hashable mtl network old-locale primitive process syb
+ transformers uhc-util utf8-string uulib vector
];
homepage = "https://github.com/UU-ComputerScience/uhc";
description = "Part of UHC packaged as cabal/hackage installable library";
@@ -200954,18 +206299,19 @@ self: {
}) {};
"uhc-util" = callPackage
- ({ mkDerivation, array, base, binary, bytestring, containers
- , directory, fclabels, fgl, hashable, logict-state, mtl, pqueue
- , process, time, time-compat, transformers, uulib
+ ({ mkDerivation, array, base, binary, bytestring, chr-core
+ , chr-data, chr-parse, chr-pretty, containers, directory, fclabels
+ , fgl, hashable, logict-state, mtl, pqueue, process, time
+ , time-compat, transformers, uulib, vector
}:
mkDerivation {
pname = "uhc-util";
- version = "0.1.6.7";
- sha256 = "0xaa9xp7yaj6mjq392x2jyi6rdplfabmhbwwq4ammr4wbqbjfjyl";
+ version = "0.1.7.0";
+ sha256 = "1xz7r5sk18aqqzxmblihk6y271qr7dsv89xxxrz5n8ds9fmj4y3k";
libraryHaskellDepends = [
- array base binary bytestring containers directory fclabels fgl
- hashable logict-state mtl pqueue process time time-compat
- transformers uulib
+ array base binary bytestring chr-core chr-data chr-parse chr-pretty
+ containers directory fclabels fgl hashable logict-state mtl pqueue
+ process time time-compat transformers uulib vector
];
homepage = "https://github.com/UU-ComputerScience/uhc-util";
description = "UHC utilities";
@@ -201111,8 +206457,8 @@ self: {
}:
mkDerivation {
pname = "unagi-chan";
- version = "0.4.0.0";
- sha256 = "04m1ns6jc1yb1i9pmqmi8k21mwgkrq4q9fbcj4af1a9khxrjxcny";
+ version = "0.4.1.0";
+ sha256 = "0nya6srsnj7f10jim3iqlmdi71n6fl8ly9sqpccgnivnd8i5iavb";
libraryHaskellDepends = [ atomic-primops base ghc-prim primitive ];
testHaskellDepends = [
atomic-primops base containers ghc-prim primitive
@@ -201299,12 +206645,11 @@ self: {
}) {};
"unconstrained" = callPackage
- ({ mkDerivation, base }:
+ ({ mkDerivation }:
mkDerivation {
pname = "unconstrained";
- version = "0.1.0.1";
- sha256 = "0wzkf8fqlqd11rcb7cvb7zsyg1ws5wyplgmsll6xbfbh68adh32p";
- libraryHaskellDepends = [ base ];
+ version = "0.1.0.2";
+ sha256 = "03811shhcfkcrsai3a1vw99g0pmg8m3cfi8gfiaf8b13l1k7lwfj";
description = "Null constraint";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -201327,8 +206672,8 @@ self: {
}:
mkDerivation {
pname = "unfoldable";
- version = "0.9.4";
- sha256 = "0qqjr060d79g5lnsdzx9ff6ava78441h8wvkn38hs7y3rvzw9vzd";
+ version = "0.9.5";
+ sha256 = "0ll29dvizh8hqhqncrmzwzgbb1q9br2f7326r38dr7xmdpmpjsbn";
libraryHaskellDepends = [
base containers ghc-prim one-liner QuickCheck random transformers
];
@@ -201831,16 +207176,33 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "uniquely-represented-sets" = callPackage
+ ({ mkDerivation, base, checkers, containers, criterion, deepseq
+ , doctest, QuickCheck, random
+ }:
+ mkDerivation {
+ pname = "uniquely-represented-sets";
+ version = "0.1.0.0";
+ sha256 = "0qzg8fp1bqg4nl5n901wndfp36nwg7dmv88s51v1sg0hqq1mr4yz";
+ libraryHaskellDepends = [ base containers deepseq ];
+ testHaskellDepends = [
+ base checkers containers doctest QuickCheck
+ ];
+ benchmarkHaskellDepends = [ base criterion random ];
+ homepage = "https://github.com/oisdk/uniquely-represented-sets#readme";
+ license = stdenv.lib.licenses.mit;
+ }) {};
+
"unit" = callPackage
({ mkDerivation, base, hspec }:
mkDerivation {
pname = "unit";
- version = "0.1.0.0";
- sha256 = "0x6wivpbrf17czbpvg727bv82zbm0abhg75p8d1vcswf786cqiq7";
+ version = "0.1.0.1";
+ sha256 = "1v7fv4xpb2jvcicbl6mhjkgqmap4m842dwc41fpidd9l9pb8mpaz";
libraryHaskellDepends = [ base ];
testHaskellDepends = [ base hspec ];
- homepage = "http://github.com/cxfreeio/unit#readme";
- description = "Aliases for ()";
+ homepage = "https://github.com/amohrland/haskell-unit";
+ description = "Aliases for `()`";
license = stdenv.lib.licenses.bsd3;
}) {};
@@ -201862,8 +207224,8 @@ self: {
}:
mkDerivation {
pname = "units";
- version = "2.4";
- sha256 = "0hd6d8nxyr5x3mlywjv3hyqx1r4dq5bpn18bnq5n4aw3b8lyyq2h";
+ version = "2.4.1";
+ sha256 = "1xvr2sivvmwpvqrpckqlkl8qr8h45aqimkwiq9m2ab45slnwwqwb";
libraryHaskellDepends = [
base containers deepseq lens linear mtl multimap singletons syb
template-haskell th-desugar units-parser vector-space
@@ -201915,8 +207277,8 @@ self: {
}:
mkDerivation {
pname = "units-parser";
- version = "0.1.1";
- sha256 = "0d39r1vcwqs61529gjz3329a41fp4pwx0x4j4kw4xl2lza3wr164";
+ version = "0.1.1.2";
+ sha256 = "06kmrqswlivsas183jswsnqi21rmdh6cqw392b3ycj2x5avghqqa";
libraryHaskellDepends = [ base containers mtl multimap parsec ];
testHaskellDepends = [
base containers mtl multimap parsec syb tasty tasty-hunit
@@ -202028,6 +207390,8 @@ self: {
pname = "universe-instances-base";
version = "1.0";
sha256 = "04njgl32lk5a0masjdjkm4l2wsyrr29g0fsp599864mp7gp504d2";
+ revision = "1";
+ editedCabalFile = "13s8gxsvkw6phwvd79h9f3xaqbyzsx1svpysbmq72z1hv3mqyz8a";
libraryHaskellDepends = [ base containers universe-base ];
homepage = "https://github.com/dmwit/universe";
description = "Universe instances for types from the base package";
@@ -202042,8 +207406,8 @@ self: {
pname = "universe-instances-extended";
version = "1.0.0.1";
sha256 = "15y9f0hbxqsksclxrssj4h08y0yb3nm9clqasjw6nsmi04kjfnv6";
- revision = "1";
- editedCabalFile = "1nsi34kjpyski2vip436m19m41as7zf1h8npd50sh8xa6cjhl98r";
+ revision = "2";
+ editedCabalFile = "1di3jk3ciikjrxzr76i0mqqza26mclnbxxak7ybkk4l06yqanj38";
libraryHaskellDepends = [
adjunctions base comonad universe-instances-base void
];
@@ -202076,6 +207440,8 @@ self: {
pname = "universe-reverse-instances";
version = "1.0";
sha256 = "0jcd7qyvzq8xxv9d3hfi0f1h48xdsy9r9xnxgxc7ggga4szirm79";
+ revision = "1";
+ editedCabalFile = "0rq6h7yghnzrnv56pxnlfr6cfih8dbnhc6hh5416pgy5bxsa0ydj";
libraryHaskellDepends = [
base containers universe-instances-base
];
@@ -202132,6 +207498,32 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "universum_1_0_4" = callPackage
+ ({ mkDerivation, base, bytestring, containers, criterion, deepseq
+ , doctest, ghc-prim, Glob, hashable, microlens, microlens-mtl, mtl
+ , safe-exceptions, semigroups, stm, text, text-format, transformers
+ , type-operators, unordered-containers, utf8-string, vector
+ }:
+ mkDerivation {
+ pname = "universum";
+ version = "1.0.4";
+ sha256 = "1r5hwmwj5s2xpnjy9r0a6wpz9hv63bwqs7m96zj0rkip9f6nvpyv";
+ libraryHaskellDepends = [
+ base bytestring containers deepseq ghc-prim hashable microlens
+ microlens-mtl mtl safe-exceptions stm text text-format transformers
+ type-operators unordered-containers utf8-string vector
+ ];
+ testHaskellDepends = [ base doctest Glob ];
+ benchmarkHaskellDepends = [
+ base containers criterion deepseq hashable mtl semigroups text
+ unordered-containers
+ ];
+ homepage = "https://github.com/serokell/universum";
+ description = "Custom prelude used in Serokell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"unix_2_7_2_2" = callPackage
({ mkDerivation, base, bytestring, time }:
mkDerivation {
@@ -202315,48 +207707,34 @@ self: {
}) {};
"unliftio" = callPackage
- ({ mkDerivation, async, base, deepseq, directory, filepath
- , transformers, unix, unliftio-core
+ ({ mkDerivation, async, base, deepseq, directory, filepath, hspec
+ , stm, transformers, unix, unliftio-core
}:
mkDerivation {
pname = "unliftio";
- version = "0.2.0.0";
- sha256 = "03bbhm91n0xlc207n8zzlnxp2cifr1zrcnqdys6884l062bh1xig";
- libraryHaskellDepends = [
- async base deepseq directory filepath transformers unix
- unliftio-core
- ];
- homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme";
- description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)";
- license = stdenv.lib.licenses.mit;
- }) {};
-
- "unliftio_0_2_1_0" = callPackage
- ({ mkDerivation, async, base, deepseq, directory, filepath, stm
- , transformers, unix, unliftio-core
- }:
- mkDerivation {
- pname = "unliftio";
- version = "0.2.1.0";
- sha256 = "09i17ajszvr1cm4x31k157mlfinxsmrmkxmjsmlvsxvch58m2lgi";
+ version = "0.2.4.0";
+ sha256 = "0vpncmwaq5zb6bziqfns4qdgxmq8ky0rlxna2yngxp170s5zxx9z";
libraryHaskellDepends = [
async base deepseq directory filepath stm transformers unix
unliftio-core
];
+ testHaskellDepends = [
+ async base deepseq directory filepath hspec stm transformers unix
+ unliftio-core
+ ];
homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme";
description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)";
license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"unliftio-core" = callPackage
({ mkDerivation, base, transformers }:
mkDerivation {
pname = "unliftio-core";
- version = "0.1.0.0";
- sha256 = "0wxv6s91wpfv2f5x17lwm04fvghcfnmzqw7p65117pr1r6yz5fcj";
+ version = "0.1.1.0";
+ sha256 = "1193fplsjm1lcr05xwvkj1rsyzx74i755f6kw3ikmxbsv0bv0l3m";
libraryHaskellDepends = [ base transformers ];
- homepage = "https://github.com/fpco/monad-unlift/tree/master/unliftio-core#readme";
+ homepage = "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme";
description = "The MonadUnliftIO typeclass for unlifting monads to IO";
license = stdenv.lib.licenses.mit;
}) {};
@@ -202841,8 +208219,8 @@ self: {
}:
mkDerivation {
pname = "uri-bytestring";
- version = "0.3.0.1";
- sha256 = "10bg6ia6l2blfb5068ppbnkk46linnda0c79yq99ls4j1x91wwgw";
+ version = "0.3.1.0";
+ sha256 = "04qjv1sgyrdg538290p9hqnvyxnahvr5cjwl8vm1rn9j0fv3ymq9";
libraryHaskellDepends = [
attoparsec base blaze-builder bytestring containers fail
template-haskell th-lift-instances
@@ -203457,8 +208835,8 @@ self: {
pname = "utf8-string";
version = "1.0.1.1";
sha256 = "0h7imvxkahiy8pzr8cpsimifdfvv18lizrb33k6mnq70rcx9w2zv";
- revision = "2";
- editedCabalFile = "1b97s9picjl689hcz8scinv7c8k5iaal1livqr0l1l8yc4h0imhr";
+ revision = "3";
+ editedCabalFile = "02vhj5gykkqa2dyn7s6gn8is1b5fdn9xcqqvlls268g7cpv6rk38";
libraryHaskellDepends = [ base bytestring ];
homepage = "http://github.com/glguy/utf8-string/";
description = "Support for reading and writing UTF8 Strings";
@@ -203469,8 +208847,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "util";
- version = "0.1.4.0";
- sha256 = "1b4s199qwsb1yz8wjpqybi8na20b44kkjqq09kzqky6198nmqqd8";
+ version = "0.1.5.0";
+ sha256 = "0rll7fv31bamnqcy3hcm8vdgzz5wjzlqhvz5lnbp1gfymx43jrga";
libraryHaskellDepends = [ base ];
description = "Utilities";
license = stdenv.lib.licenses.bsd3;
@@ -203661,13 +209039,13 @@ self: {
}:
mkDerivation {
pname = "uuagc-cabal";
- version = "1.0.6.0";
- sha256 = "02xqj4vz7hir0llxl8n517qv22jlmilknhqzx4l55gccffg7zj6w";
+ version = "1.1.0.0";
+ sha256 = "0bdvrxdbs9672gfmf3r2j2nasc7map2jr191crf1d0jhmg6dmlzj";
libraryHaskellDepends = [
base Cabal containers directory filepath mtl process uulib
];
- homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome";
- description = "Cabal plugin for the Universiteit Utrecht Attribute Grammar System";
+ homepage = "https://github.com/UU-ComputerScience/uuagc";
+ description = "Cabal plugin for UUAGC";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
@@ -203744,14 +209122,15 @@ self: {
"uuid-crypto" = callPackage
({ mkDerivation, base, binary, bytestring, cryptoids
- , cryptoids-types, exceptions, uuid
+ , cryptoids-class, cryptoids-types, exceptions, uuid
}:
mkDerivation {
pname = "uuid-crypto";
- version = "1.3.1.0";
- sha256 = "10r6phn23f3piqs4jhx764pcl6f3dbxq75pvwsnmwcszdi970a3l";
+ version = "1.4.0.0";
+ sha256 = "191da0bdgzbpibh7v2n2cg13gkq2vchsybad0qy9qixk0rzi1cvn";
libraryHaskellDepends = [
- base binary bytestring cryptoids cryptoids-types exceptions uuid
+ base binary bytestring cryptoids cryptoids-class cryptoids-types
+ exceptions uuid
];
description = "Reversable and secure encoding of object ids as uuids";
license = stdenv.lib.licenses.bsd3;
@@ -203824,8 +209203,8 @@ self: {
({ mkDerivation, base, ghc-prim }:
mkDerivation {
pname = "uulib";
- version = "0.9.22";
- sha256 = "1b9in4xbyi518iix5ln765z99q8prdw6p6lx5dz3ckl36dfs3l6d";
+ version = "0.9.23";
+ sha256 = "1v9gwy1zdkyc8f36n52p127gz1r95ykaqklshg0abiai4xnr1yy6";
libraryHaskellDepends = [ base ghc-prim ];
homepage = "https://github.com/UU-ComputerScience/uulib";
description = "Haskell Utrecht Tools Library";
@@ -204147,8 +209526,8 @@ self: {
({ mkDerivation, base }:
mkDerivation {
pname = "validity";
- version = "0.4.0.2";
- sha256 = "1ppisj45dccymlid7xwp1r2rgzql435smhl6s0n2b6alsx2h9qnz";
+ version = "0.4.0.3";
+ sha256 = "15vp8qd3fvarwd58i69if87kyc7fmf26qgrvacwnis3xwav9nyvs";
libraryHaskellDepends = [ base ];
homepage = "https://github.com/NorfairKing/validity#readme";
description = "Validity typeclass";
@@ -204769,8 +210148,8 @@ self: {
pname = "vector";
version = "0.12.0.1";
sha256 = "0yrx2ypiaxahvaz84af5bi855hd3107kxkbqc8km29nsp5wyw05i";
- revision = "1";
- editedCabalFile = "1xjv8876kx9vh86w718vdaaai40pwnsiw8368c5h88ch8iqq10qb";
+ revision = "2";
+ editedCabalFile = "0vzr8kra73anchp86knkmkq2afkd1hw6hirldn9vn69frynb1n6y";
libraryHaskellDepends = [ base deepseq ghc-prim primitive ];
testHaskellDepends = [
base HUnit QuickCheck random template-haskell test-framework
@@ -204835,6 +210214,25 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "vector-binary-instances_0_2_4" = callPackage
+ ({ mkDerivation, base, binary, bytestring, criterion, deepseq
+ , tasty, tasty-quickcheck, vector
+ }:
+ mkDerivation {
+ pname = "vector-binary-instances";
+ version = "0.2.4";
+ sha256 = "1y236jb72iab9ska1mc48z6yb0xgwmj45laaqdyjxksd84z7hbrb";
+ libraryHaskellDepends = [ base binary vector ];
+ testHaskellDepends = [ base binary tasty tasty-quickcheck vector ];
+ benchmarkHaskellDepends = [
+ base binary bytestring criterion deepseq vector
+ ];
+ homepage = "https://github.com/bos/vector-binary-instances";
+ description = "Instances of Data.Binary and Data.Serialize for vector";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"vector-buffer" = callPackage
({ mkDerivation, base, deepseq, vector }:
mkDerivation {
@@ -205080,6 +210478,18 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "vector-space_0_13" = callPackage
+ ({ mkDerivation, base, Boolean, MemoTrie, NumInstances }:
+ mkDerivation {
+ pname = "vector-space";
+ version = "0.13";
+ sha256 = "05yn93vnhzhpp2i6qb4b3dasvmpk71rab6vhssqvpb3qhdvxb482";
+ libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ];
+ description = "Vector & affine spaces, linear maps, and derivatives";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"vector-space-map" = callPackage
({ mkDerivation, base, containers, doctest, vector-space }:
mkDerivation {
@@ -205205,6 +210615,37 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
+ "vectortiles_1_3_0" = callPackage
+ ({ mkDerivation, base, bytestring, containers, criterion, deepseq
+ , hashable, hex, microlens, microlens-platform, protocol-buffers
+ , protocol-buffers-descriptor, tasty, tasty-hunit, text
+ , transformers, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "vectortiles";
+ version = "1.3.0";
+ sha256 = "1hvnk2b3g6dm58az7wyl8bcq4h8s0fkz0v0pig9gpad5smkmgjk0";
+ libraryHaskellDepends = [
+ base bytestring containers deepseq hashable protocol-buffers
+ protocol-buffers-descriptor text transformers unordered-containers
+ vector
+ ];
+ testHaskellDepends = [
+ base bytestring containers hashable hex protocol-buffers
+ protocol-buffers-descriptor tasty tasty-hunit text
+ unordered-containers vector
+ ];
+ benchmarkHaskellDepends = [
+ base bytestring containers criterion hashable microlens
+ microlens-platform protocol-buffers protocol-buffers-descriptor
+ text unordered-containers vector
+ ];
+ homepage = "https://github.com/fosskers/vectortiles";
+ description = "GIS Vector Tiles, as defined by Mapbox";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"verbalexpressions" = callPackage
({ mkDerivation, base, regex-pcre }:
mkDerivation {
@@ -205391,19 +210832,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "vicinity" = callPackage
+ ({ mkDerivation, base, containers, doctest, QuickCheck
+ , quickcheck-classes, semigroups
+ }:
+ mkDerivation {
+ pname = "vicinity";
+ version = "0.1.0";
+ sha256 = "0yy1arybixrbkgmdnfv0y2rmkl3qf5fa2rymklqbyr00av3dr25j";
+ libraryHaskellDepends = [ base semigroups ];
+ testHaskellDepends = [
+ base containers doctest QuickCheck quickcheck-classes
+ ];
+ homepage = "https://github.com/andrewthad/vicinity#readme";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"viewprof" = callPackage
- ({ mkDerivation, base, brick, containers, ghc-prof, lens
+ ({ mkDerivation, base, brick, containers, directory, ghc-prof, lens
, scientific, text, vector, vector-algorithms, vty
}:
mkDerivation {
pname = "viewprof";
- version = "0.0.0.12";
- sha256 = "0a9bf8smqjjwz4m0gqac9zf9qp6ka3dhy2qrflbg1k5spd0dqqh5";
+ version = "0.0.0.13";
+ sha256 = "1ichcff012k1f9cqk01sixv3yx52krnhjfnw73yw06kacpd7i74z";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
- base brick containers ghc-prof lens scientific text vector
- vector-algorithms vty
+ base brick containers directory ghc-prof lens scientific text
+ vector vector-algorithms vty
];
homepage = "https://github.com/maoe/viewprof";
description = "Text-based interactive GHC .prof viewer";
@@ -205641,8 +211098,8 @@ self: {
({ mkDerivation, base, contravariant, transformers, vinyl }:
mkDerivation {
pname = "vinyl-utils";
- version = "0.3.0.0";
- sha256 = "0gqlqh0apymn3zydxklqjfp4sr9h170n2r9rai5z2phxv666dmz6";
+ version = "0.3.0.1";
+ sha256 = "0lcpg2mxmr41lqpn5ksc35c0w16s45z6qq9wjbm0cv8r047k9bq5";
libraryHaskellDepends = [ base contravariant transformers vinyl ];
homepage = "https://github.com/marcinmrotek/vinyl-utils";
description = "Utilities for vinyl";
@@ -206009,8 +211466,8 @@ self: {
}:
mkDerivation {
pname = "vty";
- version = "5.19";
- sha256 = "0wbapqy1w3mbmfga4azlxcj047nfcpd6hnqa3xf33xy6simwxnrr";
+ version = "5.19.2";
+ sha256 = "158afcgzcwq7ybjw7jk28q799xzpns47m1l4sivc3wrrfklqh7xz";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -206440,8 +211897,8 @@ self: {
}:
mkDerivation {
pname = "wai-extra";
- version = "3.0.20.2";
- sha256 = "0szmh1wnbcw1mi89rrp35kgnjglc2dx6ib5l3rcki4d9fc04w8xn";
+ version = "3.0.22.0";
+ sha256 = "0rwksl5jkhkgd10qi0wvhfw28g1qci60pc6chrv5bg0w0xqkv532";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -206460,38 +211917,6 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
- "wai-extra_3_0_21_0" = callPackage
- ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring
- , blaze-builder, bytestring, case-insensitive, containers, cookie
- , data-default-class, deepseq, directory, fast-logger, hspec
- , http-types, HUnit, iproute, lifted-base, network, old-locale
- , resourcet, streaming-commons, stringsearch, text, time
- , transformers, unix, unix-compat, vault, void, wai, wai-logger
- , word8, zlib
- }:
- mkDerivation {
- pname = "wai-extra";
- version = "3.0.21.0";
- sha256 = "1kngdp16hia9x3i47a6f3cwbsn58678madzmj3l4qb6mcfnk1a3y";
- isLibrary = true;
- isExecutable = true;
- libraryHaskellDepends = [
- aeson ansi-terminal base base64-bytestring blaze-builder bytestring
- case-insensitive containers cookie data-default-class deepseq
- directory fast-logger http-types iproute lifted-base network
- old-locale resourcet streaming-commons stringsearch text time
- transformers unix unix-compat vault void wai wai-logger word8 zlib
- ];
- testHaskellDepends = [
- base blaze-builder bytestring case-insensitive cookie fast-logger
- hspec http-types HUnit resourcet text time transformers wai zlib
- ];
- homepage = "http://github.com/yesodweb/wai";
- description = "Provides some basic WAI handlers and middleware";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = stdenv.lib.platforms.none;
- }) {};
-
"wai-frontend-monadcgi" = callPackage
({ mkDerivation, base, bytestring, case-insensitive, cgi
, containers, http-types, transformers, wai
@@ -206741,8 +212166,8 @@ self: {
}:
mkDerivation {
pname = "wai-logger";
- version = "2.3.0";
- sha256 = "1w0b0vinsyqr37wciljkz8g5dcmfi2r210lq194a0wkycly9kkch";
+ version = "2.3.1";
+ sha256 = "0ldx9jiq70ga2clsrg1sw5jsy76n4s6kzs3785qs87gbj5dqfdip";
libraryHaskellDepends = [
base blaze-builder byteorder bytestring case-insensitive
fast-logger http-types network unix unix-time wai
@@ -206752,6 +212177,30 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "wai-logger-buffered" = callPackage
+ ({ mkDerivation, base, bytestring, containers, data-default
+ , http-types, time, wai, warp
+ }:
+ mkDerivation {
+ pname = "wai-logger-buffered";
+ version = "0.1.0.1";
+ sha256 = "0ksyh5g3wsldg739gzjvvmw9r1wrm5vq84n3shjqsl2y29r4kbls";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base bytestring containers data-default time wai
+ ];
+ executableHaskellDepends = [
+ base bytestring containers data-default http-types time wai warp
+ ];
+ testHaskellDepends = [
+ base bytestring containers data-default time wai
+ ];
+ homepage = "https://github.com/ChrisCoffey/wai-logger-buffered#readme";
+ description = "Buffer requets before logging them";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"wai-logger-prefork" = callPackage
({ mkDerivation, base, bytestring, date-cache, fast-logger
, http-types, unix, wai, wai-logger
@@ -207008,8 +212457,8 @@ self: {
}:
mkDerivation {
pname = "wai-middleware-content-type";
- version = "0.5.1";
- sha256 = "1xvb38nq7mb4gpraj46j39hgf9vqcqng3hxhlj52zj7yn7d6279q";
+ version = "0.5.2";
+ sha256 = "0v9gi7lljfn58g558xlxhlmp4chq7m6a4kf0b4k23scygwh727jj";
libraryHaskellDepends = [
aeson base blaze-builder blaze-html bytestring clay exceptions
extractable-singleton hashable http-media http-types lucid mmorph
@@ -207243,8 +212692,8 @@ self: {
}:
mkDerivation {
pname = "wai-middleware-rollbar";
- version = "0.8.0";
- sha256 = "07fms55rpa099hlmr02dsbij8pr81r9h4m7ll1bxq06zgyi7ajzd";
+ version = "0.8.2";
+ sha256 = "08bzikcfgrni328mmxwxsr4kbsc5bjjacbxm18hs74b8n4g5f1qd";
libraryHaskellDepends = [
aeson base bytestring case-insensitive hostname http-client
http-conduit http-types network text time unordered-containers uuid
@@ -207259,6 +212708,31 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "wai-middleware-rollbar_0_8_3" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, case-insensitive
+ , containers, hostname, hspec, hspec-golden-aeson, http-client
+ , http-conduit, http-types, lens, lens-aeson, network, QuickCheck
+ , text, time, unordered-containers, uuid, wai
+ }:
+ mkDerivation {
+ pname = "wai-middleware-rollbar";
+ version = "0.8.3";
+ sha256 = "17ys7ddpfa0sbjh79k240zqk2v7nlh0v7hrgr7kanal3pk7mvwvm";
+ libraryHaskellDepends = [
+ aeson base bytestring case-insensitive hostname http-client
+ http-conduit http-types network text time unordered-containers uuid
+ wai
+ ];
+ testHaskellDepends = [
+ aeson base bytestring case-insensitive containers hspec
+ hspec-golden-aeson lens lens-aeson QuickCheck text
+ ];
+ homepage = "https://github.com/joneshf/wai-middleware-rollbar#readme";
+ description = "Middleware that communicates to Rollbar";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"wai-middleware-route" = callPackage
({ mkDerivation, base, bytestring, http-types, HUnit
, test-framework, test-framework-hunit, text, wai, wai-test
@@ -207291,8 +212765,8 @@ self: {
pname = "wai-middleware-static";
version = "0.8.1";
sha256 = "0xaksnb1lzbw6rj62l4x9jpx40c1l2c33x5cb5vqk08g84zz3dg0";
- revision = "4";
- editedCabalFile = "0yxrs5dzd79pklvk014nj4dq8arjzyr3bhq432rzqzr4zjijyblf";
+ revision = "5";
+ editedCabalFile = "1lb4whil5x1arjb3503x8j9i3wmf678ii1dx0paqqx7dchs6cfwl";
libraryHaskellDepends = [
base bytestring containers cryptonite directory expiring-cache-map
filepath http-types memory mime-types mtl old-locale semigroups
@@ -207486,8 +212960,8 @@ self: {
}:
mkDerivation {
pname = "wai-routes";
- version = "0.10.0";
- sha256 = "1yqd79gm0xl7p8ag2pii4kcn3vb90qkli54dq4jb619bia9lsfsy";
+ version = "0.10.1";
+ sha256 = "1ahlvyplg1mh3w2yxag0nk67w13k70rff77b96grgr48a8b9b82g";
libraryHaskellDepends = [
aeson base blaze-builder bytestring case-insensitive containers
cookie data-default-class filepath http-types mime-types
@@ -207987,6 +213461,42 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "warp_3_2_15" = callPackage
+ ({ mkDerivation, array, async, auto-update, base, blaze-builder
+ , bytestring, case-insensitive, containers, directory, doctest
+ , gauge, ghc-prim, hashable, hspec, http-client, http-date
+ , http-types, http2, HUnit, iproute, lifted-base, network, process
+ , QuickCheck, silently, simple-sendfile, stm, streaming-commons
+ , text, time, transformers, unix, unix-compat, vault, wai, word8
+ }:
+ mkDerivation {
+ pname = "warp";
+ version = "3.2.15";
+ sha256 = "10l2qk4qn6vf898fp4ahdyhn49f8zjhlczxv0d93wkc695m59his";
+ libraryHaskellDepends = [
+ array async auto-update base blaze-builder bytestring
+ case-insensitive containers ghc-prim hashable http-date http-types
+ http2 iproute network simple-sendfile stm streaming-commons text
+ unix unix-compat vault wai word8
+ ];
+ testHaskellDepends = [
+ array async auto-update base blaze-builder bytestring
+ case-insensitive containers directory doctest ghc-prim hashable
+ hspec http-client http-date http-types http2 HUnit iproute
+ lifted-base network process QuickCheck silently simple-sendfile stm
+ streaming-commons text time transformers unix unix-compat vault wai
+ word8
+ ];
+ benchmarkHaskellDepends = [
+ auto-update base bytestring containers gauge hashable http-date
+ http-types network unix unix-compat
+ ];
+ homepage = "http://github.com/yesodweb/wai";
+ description = "A fast, light-weight web server for WAI applications";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"warp-dynamic" = callPackage
({ mkDerivation, base, data-default, dyre, http-types, wai, warp }:
mkDerivation {
@@ -208457,10 +213967,10 @@ self: {
}:
mkDerivation {
pname = "web-routes";
- version = "0.27.12";
- sha256 = "0c0wqr3f79gx26pfknvv4zka8g8fkfxw5fqb0qpq8zv0mv5rflba";
+ version = "0.27.13";
+ sha256 = "10b0hs7mmvs9ay3ik93s8xd7zlx8pyz20626nrha4mwyixgkmc59";
revision = "1";
- editedCabalFile = "1pdp6x3q5423m99n24nhwlqmi0xyz0dhz02v2m8n4nkbg33lrv1q";
+ editedCabalFile = "1s8ax7r8l0484730p36c3gn3n28zhl2p1nwjnprsbhcxd83yq4dh";
libraryHaskellDepends = [
base blaze-builder bytestring exceptions ghc-prim http-types mtl
parsec split text utf8-string
@@ -208471,6 +213981,28 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "web-routes_0_27_14" = callPackage
+ ({ mkDerivation, base, blaze-builder, bytestring, exceptions
+ , ghc-prim, hspec, http-types, HUnit, mtl, parsec, QuickCheck
+ , split, text, utf8-string
+ }:
+ mkDerivation {
+ pname = "web-routes";
+ version = "0.27.14";
+ sha256 = "1m5ywqy2c9v478ybyrzqc407zdqcg18p5587mrq34v7bnjk27rak";
+ revision = "1";
+ editedCabalFile = "061kp8rpmbpr9f9n3kja8160z209hwz42yy3kikn6b446rdc4pdr";
+ libraryHaskellDepends = [
+ base blaze-builder bytestring exceptions ghc-prim http-types mtl
+ parsec split text utf8-string
+ ];
+ testHaskellDepends = [ base hspec HUnit QuickCheck text ];
+ homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes";
+ description = "portable, type-safe URL routing";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"web-routes-boomerang" = callPackage
({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }:
mkDerivation {
@@ -208592,6 +214124,22 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "web-routes-wai_0_24_3_1" = callPackage
+ ({ mkDerivation, base, bytestring, http-types, text, wai
+ , web-routes
+ }:
+ mkDerivation {
+ pname = "web-routes-wai";
+ version = "0.24.3.1";
+ sha256 = "0j9h22nsj7zf5qpf4i07jdcih00r2fivdilvj8wsylk4d23x27wf";
+ libraryHaskellDepends = [
+ base bytestring http-types text wai web-routes
+ ];
+ description = "Library for maintaining correctness of URLs within an application";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"web-routing" = callPackage
({ mkDerivation, base, bytestring, criterion, doctest, primitive
, text, types-compat, unordered-containers
@@ -208880,6 +214428,7 @@ self: {
];
description = "Parser and Pretty Printer for the Web IDL Language";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {LEXER = null;};
@@ -209053,8 +214602,8 @@ self: {
}:
mkDerivation {
pname = "websockets";
- version = "0.12.2.0";
- sha256 = "1jjb3qp6kniddn7jf4vv25v3fqainiclw0f3iyk4shq49clllki1";
+ version = "0.12.3.1";
+ sha256 = "019jkvmbs5wvjwczqy06spd6545mly08n5pqbsaacmff4xznkz39";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -209209,8 +214758,8 @@ self: {
}:
mkDerivation {
pname = "weeder";
- version = "0.1.9";
- sha256 = "1k5q34zyw2ajy7k5imxygs86q0a245ax5ch4kgff12pfpyz0jmz7";
+ version = "0.1.13";
+ sha256 = "0a0zfp1g5mh393v4d1js5a0fnkj03q5kzycsyp3x4nk37dnc67fy";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
@@ -209222,6 +214771,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "weeder_1_0" = callPackage
+ ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq
+ , directory, extra, filepath, foundation, hashable, process, text
+ , unordered-containers, vector, yaml
+ }:
+ mkDerivation {
+ pname = "weeder";
+ version = "1.0";
+ sha256 = "1s6xfzv49pism1z4qpid3745w8x06nddifzb9165j2h6n7fivgav";
+ isLibrary = false;
+ isExecutable = true;
+ executableHaskellDepends = [
+ aeson base bytestring cmdargs deepseq directory extra filepath
+ foundation hashable process text unordered-containers vector yaml
+ ];
+ homepage = "https://github.com/ndmitchell/weeder#readme";
+ description = "Detect dead code";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"weigh" = callPackage
({ mkDerivation, base, bytestring-trie, containers, deepseq, mtl
, process, random, split, template-haskell, temporary
@@ -209546,6 +215116,7 @@ self: {
homepage = "https://github.com/Haskell-mouse/wigner-ville-accelerate";
description = "Wigner-ville transform using the Accelerate library";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
broken = true;
}) {wigner = null;};
@@ -209593,8 +215164,8 @@ self: {
}:
mkDerivation {
pname = "wild-bind";
- version = "0.1.0.3";
- sha256 = "0zvkkxmlpfgb107cx2rcp7igsqxhdng88sk4hw6y7bikkd5pdxgj";
+ version = "0.1.1.0";
+ sha256 = "1z9jiqbla3nxfij6cxcpd5lpgnixz89mhnfr5ksma5khfyc01sis";
libraryHaskellDepends = [ base containers text transformers ];
testHaskellDepends = [
base hspec microlens QuickCheck stm transformers
@@ -209610,8 +215181,8 @@ self: {
}:
mkDerivation {
pname = "wild-bind-indicator";
- version = "0.1.0.1";
- sha256 = "0lvhczw0ah8kb1hd9k7rnjcs1pmn0qg1i2v0szvhh2ji8iznjznm";
+ version = "0.2.0.0";
+ sha256 = "09p7x77ksh9qp4ir5cy470y978m4ln0sp44pffm0mld1apdam27x";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
base containers gtk text transformers wild-bind
@@ -209627,8 +215198,8 @@ self: {
}:
mkDerivation {
pname = "wild-bind-task-x11";
- version = "0.1.0.1";
- sha256 = "1hvsaa8655wl74sikp59qgmi94285sbdnifynllgxdjdvzm4g4yl";
+ version = "0.2.0.1";
+ sha256 = "0n8sg0qg0ambh0744c19zwxxky2b0vwpmn464i3mp587dkfpm0p2";
libraryHaskellDepends = [
base text transformers wild-bind wild-bind-indicator wild-bind-x11
];
@@ -209636,6 +215207,7 @@ self: {
homepage = "https://github.com/debug-ito/wild-bind";
description = "Task to install and export everything you need to use WildBind in X11";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"wild-bind-x11" = callPackage
@@ -209655,6 +215227,27 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "wild-bind-x11_0_2_0_0" = callPackage
+ ({ mkDerivation, async, base, containers, fold-debounce, hspec, mtl
+ , semigroups, stm, text, time, transformers, wild-bind, X11
+ }:
+ mkDerivation {
+ pname = "wild-bind-x11";
+ version = "0.2.0.0";
+ sha256 = "0x7zy76x9zmh6pjv6yhkb53l6pkn4wh76x34adx538fyf6a8mk6b";
+ libraryHaskellDepends = [
+ base containers fold-debounce mtl semigroups stm text transformers
+ wild-bind X11
+ ];
+ testHaskellDepends = [
+ async base hspec text time transformers wild-bind X11
+ ];
+ homepage = "https://github.com/debug-ito/wild-bind";
+ description = "X11-specific implementation for WildBind";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"win-hp-path" = callPackage
({ mkDerivation, base, process, split }:
mkDerivation {
@@ -210143,8 +215736,8 @@ self: {
}:
mkDerivation {
pname = "wolf";
- version = "0.3.37";
- sha256 = "09ry5bq0hmrdv09hd9v16r4dyyyfzpf785sfrz3by6hal8bkwj6w";
+ version = "0.3.40";
+ sha256 = "1ns6dy76m5sw4rzi98ah29g21car7hlkmbfxdiawwsaq0x4bn4ph";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -210233,6 +215826,35 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "word2vec-model" = callPackage
+ ({ mkDerivation, attoparsec, base, binary, binary-ieee754
+ , bytestring, conduit, conduit-combinators, conduit-extra, hspec
+ , HUnit, text, unordered-containers, vector
+ }:
+ mkDerivation {
+ pname = "word2vec-model";
+ version = "0.1.0.0";
+ sha256 = "1dz6q7ym5z5l0pkzmvawpdpjh8z6pf5ph26m0b7k9q95q42qypmj";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ attoparsec base binary binary-ieee754 bytestring text
+ unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ attoparsec base binary binary-ieee754 bytestring conduit
+ conduit-combinators conduit-extra text unordered-containers vector
+ ];
+ testHaskellDepends = [
+ attoparsec base binary binary-ieee754 bytestring hspec HUnit text
+ unordered-containers vector
+ ];
+ homepage = "https://gonito.net/gitlist/word2vec-model.git";
+ description = "Reading word2vec binary models";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"word8" = callPackage
({ mkDerivation, base, bytestring, criterion, hspec }:
mkDerivation {
@@ -210548,22 +216170,21 @@ self: {
}) {};
"wrecker" = callPackage
- ({ mkDerivation, aeson, aeson-qq, ansi-terminal, ansigraph, array
+ ({ mkDerivation, aeson, ansi-terminal, ansigraph, array
, authenticate-oauth, base, base64-bytestring, blaze-builder
, bytestring, case-insensitive, clock, clock-extras, connection
, containers, cookie, cryptonite, data-default, data-default-class
- , deepseq, exceptions, filepath, hspec, hspec-discover, http-client
- , http-client-tls, http-types, immortal, lens, markdown-unlit
- , memory, mime-types, network, network-uri, next-ref
- , optparse-applicative, random, scotty, statistics, stm, stm-chans
- , streaming-commons, tabular, tdigest, text, threads
- , threads-extras, time, tls, transformers, unagi-chan, unix
- , unordered-containers, vector, vty, wai, warp, wreq
+ , deepseq, exceptions, filepath, http-client, http-client-tls
+ , http-types, immortal, lens, markdown-unlit, memory, mime-types
+ , network, network-uri, next-ref, optparse-applicative, random
+ , statistics, stm, stm-chans, streaming-commons, tabular, tdigest
+ , text, threads, threads-extras, time, tls, transformers
+ , unagi-chan, unix, unordered-containers, vector, vty, wreq
}:
mkDerivation {
pname = "wrecker";
- version = "1.2.3.0";
- sha256 = "138a8az5500ys2yvwif17vbmsmisd0r3q4yc8azfrd09y359ndlq";
+ version = "1.2.4.0";
+ sha256 = "1yrjr1mhywxwdcnakyfgga7jlwpxzb4clldp21igw35y3n53i6y8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -210579,12 +216200,47 @@ self: {
];
executableHaskellDepends = [
base http-client http-client-tls lens markdown-unlit
- optparse-applicative wreq
+ optparse-applicative transformers wreq
];
- testHaskellDepends = [
- aeson aeson-qq base bytestring connection hspec hspec-discover
- http-client immortal markdown-unlit network next-ref scotty text
- transformers unordered-containers wai warp wreq
+ homepage = "https://github.com/lorenzo/wrecker#readme";
+ description = "An HTTP Performance Benchmarker";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
+ "wrecker_1_3_1_0" = callPackage
+ ({ mkDerivation, aeson, ansi-terminal, ansigraph, array
+ , authenticate-oauth, base, base64-bytestring, blaze-builder
+ , bytestring, case-insensitive, clock, clock-extras, connection
+ , containers, cookie, cryptonite, data-default, data-default-class
+ , deepseq, exceptions, fast-logger, filepath, http-client
+ , http-client-tls, http-types, immortal, lens, markdown-unlit
+ , memory, mime-types, network, network-uri, next-ref
+ , optparse-applicative, random, statistics, stm, stm-chans
+ , streaming-commons, tabular, tdigest, text, threads
+ , threads-extras, time, tls, transformers, unix
+ , unordered-containers, vector, vty, wreq
+ }:
+ mkDerivation {
+ pname = "wrecker";
+ version = "1.3.1.0";
+ sha256 = "0z0a9k88npw09n54mplg2aa98y4p8kmk14v8ks2dc2ilf24lrri7";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson ansi-terminal ansigraph array authenticate-oauth base
+ base64-bytestring blaze-builder bytestring case-insensitive clock
+ clock-extras connection containers cookie cryptonite data-default
+ data-default-class deepseq exceptions fast-logger filepath
+ http-client http-client-tls http-types immortal memory mime-types
+ network network-uri next-ref optparse-applicative random statistics
+ stm stm-chans streaming-commons tabular tdigest text threads
+ threads-extras time tls transformers unix unordered-containers
+ vector vty wreq
+ ];
+ executableHaskellDepends = [
+ base http-client http-client-tls lens markdown-unlit
+ optparse-applicative transformers wreq
];
homepage = "https://github.com/lorenzo/wrecker#readme";
description = "An HTTP Performance Benchmarker";
@@ -210605,8 +216261,8 @@ self: {
}:
mkDerivation {
pname = "wrecker-ui";
- version = "3.0.0.0";
- sha256 = "0plzkb9bhsrd14h07f6rd9689hxx79kdr9gs5r5qsxsk3zpn4rs6";
+ version = "3.1.1.0";
+ sha256 = "0lsgbjn4fcvk5qaldhlskyz3vq9g6w7an0sqbvndx7r1hvpaznrh";
isLibrary = false;
isExecutable = true;
enableSeparateDataOutput = true;
@@ -210620,6 +216276,7 @@ self: {
postgresql-simple postgresql-simple-url process resource-pool
resourcet scotty stm temporary text time transformers wai-cors
];
+ homepage = "https://github.com/seatgeek/wrecker-ui#readme";
description = "A web interface for Wrecker, the HTTP Performance Benchmarker";
license = stdenv.lib.licenses.bsd3;
hydraPlatforms = stdenv.lib.platforms.none;
@@ -210628,21 +216285,24 @@ self: {
"wreq" = callPackage
({ mkDerivation, aeson, aeson-pretty, attoparsec
, authenticate-oauth, base, base16-bytestring, base64-bytestring
- , byteable, bytestring, case-insensitive, containers, cryptohash
- , directory, doctest, exceptions, filepath, ghc-prim, hashable
- , http-client, http-client-tls, http-types, HUnit, lens, lens-aeson
- , mime-types, network-info, psqueues, QuickCheck, snap-core
- , snap-server, template-haskell, temporary, test-framework
- , test-framework-hunit, test-framework-quickcheck2, text, time
- , time-locale-compat, transformers, unix-compat
+ , byteable, bytestring, Cabal, cabal-doctest, case-insensitive
+ , containers, cryptohash, directory, doctest, exceptions, filepath
+ , ghc-prim, hashable, http-client, http-client-tls, http-types
+ , HUnit, lens, lens-aeson, mime-types, network-info, psqueues
+ , QuickCheck, snap-core, snap-server, template-haskell, temporary
+ , test-framework, test-framework-hunit, test-framework-quickcheck2
+ , text, time, time-locale-compat, transformers, unix-compat
, unordered-containers, uuid, vector
}:
mkDerivation {
pname = "wreq";
- version = "0.5.1.0";
- sha256 = "1p8cn9yzm2ggb3kac17xc3if6sdxjdh544k730imvvhm0szx4j76";
+ version = "0.5.2.0";
+ sha256 = "06v70dpnh7lp1sr0i0fvl2b2cx0z57dfwi8i2fxva0gcdwan0fki";
+ revision = "1";
+ editedCabalFile = "01x430yrqiv02pq7h55h3y70hvz7n62882vnw1m53qqxp667i580";
isLibrary = true;
isExecutable = true;
+ setupHaskellDepends = [ base Cabal cabal-doctest ];
libraryHaskellDepends = [
aeson attoparsec authenticate-oauth base base16-bytestring byteable
bytestring case-insensitive containers cryptohash exceptions
@@ -210706,8 +216366,8 @@ self: {
({ mkDerivation, base, bytestring, text, utf8-string, wreq }:
mkDerivation {
pname = "wreq-stringless";
- version = "0.5.1.0";
- sha256 = "1f23f1dxim8xkx7jj0z7fr4xjpmxc8cr0rbh84hhb359mkfklhvf";
+ version = "0.5.9.1";
+ sha256 = "0dgjjybbc4nza1a0af2j8jxscyhlcwdspmvy8zsmcczzcdhx2b2h";
libraryHaskellDepends = [ base bytestring text utf8-string wreq ];
homepage = "https://github.com/j-keck/wreq-stringless#readme";
description = "Simple wrapper to use wreq without Strings";
@@ -211066,8 +216726,8 @@ self: {
}:
mkDerivation {
pname = "wuss";
- version = "1.1.5";
- sha256 = "0n7sixmvy084hggvagkd9nq06gxhisrklm1b8fahkjylahbzh2qd";
+ version = "1.1.6";
+ sha256 = "1g2k48mngg8fr6cvkimjr39jc83b87lva0320bwdnf19nyz1fy9y";
libraryHaskellDepends = [
base bytestring connection network websockets
];
@@ -212022,6 +217682,36 @@ self: {
license = stdenv.lib.licenses.mit;
}) {};
+ "xlsx_0_7_0" = callPackage
+ ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search
+ , bytestring, conduit, containers, criterion, data-default, deepseq
+ , Diff, errors, extra, filepath, groom, lens, mtl, network-uri
+ , old-locale, raw-strings-qq, safe, smallcheck, tasty, tasty-hunit
+ , tasty-smallcheck, text, time, transformers, vector, xeno
+ , xml-conduit, zip-archive, zlib
+ }:
+ mkDerivation {
+ pname = "xlsx";
+ version = "0.7.0";
+ sha256 = "1fg0y6raxavqnk6hnchjppizc01zszav78hdf38d3c7rgnd0vnmd";
+ libraryHaskellDepends = [
+ attoparsec base base64-bytestring binary-search bytestring conduit
+ containers data-default deepseq errors extra filepath lens mtl
+ network-uri old-locale safe text time transformers vector xeno
+ xml-conduit zip-archive zlib
+ ];
+ testHaskellDepends = [
+ base bytestring containers Diff groom lens mtl raw-strings-qq
+ smallcheck tasty tasty-hunit tasty-smallcheck text time vector
+ xml-conduit
+ ];
+ benchmarkHaskellDepends = [ base bytestring criterion ];
+ homepage = "https://github.com/qrilka/xlsx";
+ description = "Simple and incomplete Excel file parser/writer";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"xlsx-tabular" = callPackage
({ mkDerivation, aeson, base, bytestring, containers, data-default
, lens, text, xlsx
@@ -212112,8 +217802,8 @@ self: {
}:
mkDerivation {
pname = "xml-conduit";
- version = "1.7.0";
- sha256 = "0g0a6h52n6q3w09350d6vgjpvb6xj224isp4lphgwbmd2xr12i76";
+ version = "1.7.1.2";
+ sha256 = "0n4k0rq9j5cc9kdvj9xbx8gmiqlyk5x6pw8yxzw5wfsw7qkych2s";
libraryHaskellDepends = [
attoparsec base blaze-builder blaze-html blaze-markup bytestring
conduit conduit-extra containers data-default-class deepseq
@@ -213058,17 +218748,17 @@ self: {
}) {};
"xmonad-vanessa" = callPackage
- ({ mkDerivation, base, composition, containers, hspec, process
- , transformers, X11, xmonad, xmonad-contrib
+ ({ mkDerivation, base, composition-prelude, containers, hspec
+ , process, transformers, X11, xmonad, xmonad-contrib
}:
mkDerivation {
pname = "xmonad-vanessa";
- version = "0.1.1.4";
- sha256 = "1qbapbb72qa78n174x8y9q2zzb1g1bw6dgg260hxxzc7v9kb88xm";
+ version = "0.1.1.6";
+ sha256 = "1im97p6g7c7gvcm9an7nzv9k7yipvd5yv39zfgr26q7vnr6hj4dq";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
- base composition containers process transformers X11 xmonad
+ base composition-prelude containers process transformers X11 xmonad
xmonad-contrib
];
executableHaskellDepends = [ base ];
@@ -213083,8 +218773,8 @@ self: {
({ mkDerivation, base, magic, mtl, random, unix, xmonad }:
mkDerivation {
pname = "xmonad-wallpaper";
- version = "0.0.1.3";
- sha256 = "0vw1pcfpsxcaqnq9s5p7my3jr6q38ndm7qd5x7m06wmakcalcbyy";
+ version = "0.0.1.4";
+ sha256 = "0f6214kqp86xnk1zginjiprnqlj2fzcvh3w5sv3yvqg98mwdd0cg";
libraryHaskellDepends = [ base magic mtl random unix xmonad ];
description = "xmonad wallpaper extension";
license = stdenv.lib.licenses.lgpl3;
@@ -213596,6 +219286,83 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "yam-app" = callPackage
+ ({ mkDerivation, aeson, base, conduit, containers, ctrie
+ , data-default, directory, exceptions, fast-logger, monad-control
+ , monad-logger, mtl, persistent, persistent-sqlite, random
+ , resource-pool, resourcet, string-conversions, text, time
+ , transformers, unordered-containers, wai-logger, yaml
+ }:
+ mkDerivation {
+ pname = "yam-app";
+ version = "0.1.11";
+ sha256 = "0qbc7s5l030yilq8zlq5hszk6hgqjxp6yablap1ykm2211wipbq3";
+ libraryHaskellDepends = [
+ aeson base conduit containers ctrie data-default directory
+ exceptions fast-logger monad-control monad-logger mtl persistent
+ persistent-sqlite random resource-pool resourcet string-conversions
+ text time transformers unordered-containers wai-logger yaml
+ ];
+ homepage = "https://github.com/leptonyu/yam/tree/master/yam-app#readme";
+ description = "Yam App";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "yam-job" = callPackage
+ ({ mkDerivation, base, cron, yam-app }:
+ mkDerivation {
+ pname = "yam-job";
+ version = "0.1.11";
+ sha256 = "0hs46q1xwwx44f4zxhs4245cdnr9g4r2a67cm191n1wd86sfhrpc";
+ libraryHaskellDepends = [ base cron yam-app ];
+ homepage = "https://github.com/leptonyu/yam/tree/master/yam-job#readme";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "yam-servant" = callPackage
+ ({ mkDerivation, aeson, base, http-types, lens, servant
+ , servant-server, servant-swagger, servant-swagger-ui, swagger2
+ , text, wai, wai-extra, warp, yam-app, yam-job
+ }:
+ mkDerivation {
+ pname = "yam-servant";
+ version = "0.1.11";
+ sha256 = "0z1my2jgcbvdx4v5zh66yw99vnck5rbi54s6adbp26v4szc8j40s";
+ libraryHaskellDepends = [
+ aeson base http-types lens servant servant-server servant-swagger
+ servant-swagger-ui swagger2 text wai wai-extra warp yam-app yam-job
+ ];
+ homepage = "https://github.com/leptonyu/yam/tree/master/yam-app#readme";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "yam-transaction-odbc" = callPackage
+ ({ mkDerivation, base, containers, persistent-odbc, yam-app }:
+ mkDerivation {
+ pname = "yam-transaction-odbc";
+ version = "0.1.10";
+ sha256 = "18nzdzzpykdp42sdsailhinxlrpwcrfys2n967ky9yizj7n8dcrx";
+ libraryHaskellDepends = [
+ base containers persistent-odbc yam-app
+ ];
+ homepage = "https://github.com/leptonyu/yam/tree/master/yam-transaction-odbc#readme";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
+ "yam-transaction-postgresql" = callPackage
+ ({ mkDerivation, base, containers, persistent-postgresql, yam-app
+ }:
+ mkDerivation {
+ pname = "yam-transaction-postgresql";
+ version = "0.1.11";
+ sha256 = "1li9vmnnj9xw1j60gmjym9rxlljjic9w7bkxip22yhb6qnmidpc9";
+ libraryHaskellDepends = [
+ base containers persistent-postgresql yam-app
+ ];
+ homepage = "https://github.com/leptonyu/yam/tree/master/yam-transaction-postgresql#readme";
+ license = stdenv.lib.licenses.bsd3;
+ }) {};
+
"yamemo" = callPackage
({ mkDerivation, base, containers, mtl }:
mkDerivation {
@@ -213609,16 +219376,17 @@ self: {
}) {};
"yaml" = callPackage
- ({ mkDerivation, aeson, aeson-qq, attoparsec, base, base-compat
- , bytestring, conduit, containers, directory, filepath, hspec
- , HUnit, libyaml, mockery, resourcet, scientific, semigroups
- , template-haskell, temporary, text, transformers
- , unordered-containers, vector
+ ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring
+ , conduit, containers, directory, filepath, hspec, HUnit, libyaml
+ , mockery, resourcet, scientific, semigroups, template-haskell
+ , temporary, text, transformers, unordered-containers, vector
}:
mkDerivation {
pname = "yaml";
- version = "0.8.25";
- sha256 = "16bx7vkj455796wdklh8h13zm98h5m81dl8np0sjbx9hcsrfdbyp";
+ version = "0.8.28";
+ sha256 = "0swgkzkfrwj0ac7lssn8rnrdfmh3lcsdn5fbq2iwv55di6jbc0pp";
+ revision = "1";
+ editedCabalFile = "0f8vb5v0xfpsc02zqh9pzgv4fir93sgijk342lz5k872gscfjn62";
configureFlags = [ "-fsystem-libyaml" ];
isLibrary = true;
isExecutable = true;
@@ -213630,9 +219398,9 @@ self: {
libraryPkgconfigDepends = [ libyaml ];
executableHaskellDepends = [ aeson base bytestring ];
testHaskellDepends = [
- aeson aeson-qq base base-compat bytestring conduit directory hspec
- HUnit mockery resourcet temporary text transformers
- unordered-containers vector
+ aeson base base-compat bytestring conduit directory hspec HUnit
+ mockery resourcet temporary text transformers unordered-containers
+ vector
];
homepage = "http://github.com/snoyberg/yaml/";
description = "Support for parsing and rendering YAML documents";
@@ -213696,8 +219464,8 @@ self: {
}:
mkDerivation {
pname = "yaml-light-lens";
- version = "0.3.3.3";
- sha256 = "1kqia8i7vi7fbcrlwjv7yn09xnlm34k40qhb050rqzfrmyhpk2kq";
+ version = "0.3.3.4";
+ sha256 = "1vvwgb302w2nz05c97gzxkjx7m2lp25bpp3l16bzh92mjvqddpbd";
libraryHaskellDepends = [
base bytestring bytestring-lexing containers lens yaml-light
];
@@ -213842,6 +219610,7 @@ self: {
executableHaskellDepends = [ base blank-canvas text Yampa ];
description = "blank-canvas frontend for Yampa";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"yampa-glfw" = callPackage
@@ -214487,8 +220256,8 @@ self: {
}:
mkDerivation {
pname = "yesod-auth-hmac-keccak";
- version = "0.0.0.3";
- sha256 = "1x5qnhdhy0n6kf9gljkig2q4dsfay1rv8gg3xc5ly5dvbbmy4zp8";
+ version = "0.0.0.4";
+ sha256 = "17i3xxxdpq58q7y80xrh266lzkl8dh686v25kpapn2r0c4vxm291";
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson base bytestring cryptonite mtl persistent random shakespeare
@@ -214832,8 +220601,8 @@ self: {
}:
mkDerivation {
pname = "yesod-core";
- version = "1.4.37.2";
- sha256 = "0pip1y97zwfy073rc5yrhfcfj1m0nwrzih8f27m77y9dbdcwgmhs";
+ version = "1.4.37.3";
+ sha256 = "1jw1302p5s9jy7xghxzg9j63pn6b1hp957n1808qyk1iz7yrfsg0";
libraryHaskellDepends = [
aeson auto-update base blaze-builder blaze-html blaze-markup
byteable bytestring case-insensitive cereal clientsession conduit
@@ -215982,8 +221751,8 @@ self: {
}:
mkDerivation {
pname = "yesod-test";
- version = "1.5.8";
- sha256 = "0rvbvr8pa60b9rvhnsd1wcbs0x49s2rhqc76nqzv2i0qry5aym7h";
+ version = "1.5.9.1";
+ sha256 = "05l5n28azbh6r1vsi7xvz1h19if5zrwn1b3jsr2913axfs3d9r3y";
libraryHaskellDepends = [
attoparsec base blaze-builder blaze-html blaze-markup bytestring
case-insensitive containers cookie hspec-core html-conduit
@@ -217048,6 +222817,7 @@ self: {
homepage = "http://bitbucket.org/iago/z3-haskell";
description = "Bindings for the Z3 Theorem Prover";
license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
}) {gomp = null; inherit (pkgs) z3;};
"z3-encoding" = callPackage
@@ -217352,22 +223122,22 @@ self: {
}) {};
"zifter" = callPackage
- ({ mkDerivation, ansi-terminal, async, base, directory, exceptions
- , filepath, genvalidity, genvalidity-hspec, genvalidity-path, hspec
- , optparse-applicative, path, path-io, process, QuickCheck, safe
- , stm, validity, validity-path
+ ({ mkDerivation, ansi-terminal, async, base, colour, directory
+ , exceptions, filepath, genvalidity, genvalidity-hspec
+ , genvalidity-path, hspec, optparse-applicative, path, path-io
+ , process, QuickCheck, safe, stm, validity, validity-path
}:
mkDerivation {
pname = "zifter";
- version = "0.0.1.3";
- sha256 = "0hams2ayxm73p2m032vjxnrdpg7d8iz293sx29h011siv1xjyaab";
+ version = "0.0.1.6";
+ sha256 = "0bswk4z26v020qkcm09cjkjkvwxsx1mrzrf3kajhwwzpb8vzxbdh";
libraryHaskellDepends = [
ansi-terminal async base directory exceptions filepath
optparse-applicative path path-io process safe stm validity
validity-path
];
testHaskellDepends = [
- ansi-terminal base directory genvalidity genvalidity-hspec
+ ansi-terminal base colour directory genvalidity genvalidity-hspec
genvalidity-path hspec path path-io QuickCheck stm
];
homepage = "http://cs-syd.eu";
@@ -217382,8 +223152,8 @@ self: {
}:
mkDerivation {
pname = "zifter-cabal";
- version = "0.0.0.2";
- sha256 = "009vhy3x5hb24n1ylr31hvgfk2bic1r9yy8nk78ym1yhjb4vrrj5";
+ version = "0.0.0.3";
+ sha256 = "04nwyma5p6ka86zh2hczli4842l5hg6kvhsv3bwwf722bkhzdznq";
libraryHaskellDepends = [
base directory filepath path path-io process safe zifter
];
@@ -217397,8 +223167,8 @@ self: {
({ mkDerivation, base, path, process, zifter }:
mkDerivation {
pname = "zifter-git";
- version = "0.0.0.0";
- sha256 = "0mq5aa7nljbdgimvs948kzn16m74771jyswbk0fq6jqyrb80li4j";
+ version = "0.0.0.1";
+ sha256 = "1fsrair0c0a6j2jmghcxvbs3dr6j7gzh3yfimflva64nvwfx8vb8";
libraryHaskellDepends = [ base path process zifter ];
homepage = "http://cs-syd.eu";
description = "zifter-git";
@@ -217412,8 +223182,8 @@ self: {
}:
mkDerivation {
pname = "zifter-google-java-format";
- version = "0.0.0.0";
- sha256 = "0kl3mgg4hbzl9ifd8x30nnczrygs5ziqhmz47l5nzx40ja177546";
+ version = "0.0.0.1";
+ sha256 = "00am6djnk7ivb9cd5v59axlbi3da70m2fzfghmzq6dgvlkghng0c";
libraryHaskellDepends = [
base filepath path path-io process safe zifter
];
@@ -217429,8 +223199,8 @@ self: {
}:
mkDerivation {
pname = "zifter-hindent";
- version = "0.0.0.1";
- sha256 = "10qwlvw1zq5q530xlh69ag9ap4jl5gv5xj7sc4bwjglbbcw39iag";
+ version = "0.0.0.2";
+ sha256 = "106iv5gqqlmvdjs1z4n7p3m11c36x4531395fpxh5sfzc8mrhgg2";
libraryHaskellDepends = [
base directory filepath path path-io process safe zifter
];
@@ -217445,10 +223215,8 @@ self: {
}:
mkDerivation {
pname = "zifter-hlint";
- version = "0.0.0.0";
- sha256 = "0bvp6l5k42ls996h3qc7wy4qgcx0phd8hf0l99kcqan2gpx8qn6p";
- revision = "1";
- editedCabalFile = "08wmzid4g3av9w86ysybvg2mwkfx63b19v2i71hvik48bl5v6mlv";
+ version = "0.0.0.1";
+ sha256 = "1303crjb500psmsnc3ivy67qgz5gdbd3dsfnf3qis39amxmw1wf4";
libraryHaskellDepends = [
base filepath hlint path path-io safe zifter
];
@@ -217459,16 +223227,20 @@ self: {
}) {};
"zifter-stack" = callPackage
- ({ mkDerivation, base, Cabal, directory, filepath, path, path-io
- , process, safe, zifter
+ ({ mkDerivation, base, Cabal, directory, filepath, hspec, path
+ , path-io, process, safe, stm, zifter
}:
mkDerivation {
pname = "zifter-stack";
- version = "0.0.0.6";
- sha256 = "0z2y77fd9ij8s9qqyjik1syh5ry169bda6wlsa4lj658f8yghggc";
+ version = "0.0.0.10";
+ sha256 = "1qsxim5rmj2s4k615390iqy4691ilrx5h75fd38ds599kvxgvwni";
libraryHaskellDepends = [
base Cabal directory filepath path path-io process safe zifter
];
+ testHaskellDepends = [
+ base Cabal directory filepath hspec path path-io process safe stm
+ zifter
+ ];
homepage = "http://cs-syd.eu";
description = "zifter-stack";
license = stdenv.lib.licenses.mit;
@@ -217543,14 +223315,12 @@ self: {
"zip-archive" = callPackage
({ mkDerivation, array, base, binary, bytestring, containers
, digest, directory, filepath, HUnit, mtl, old-time, pretty
- , process, temporary, text, time, unix, zip, zlib
+ , process, temporary, text, time, unix, unzip, zip, zlib
}:
mkDerivation {
pname = "zip-archive";
- version = "0.3.1.1";
- sha256 = "09c3y13r77shyamibr298i4l0rp31i41w3rg1ksnrl3gkrj8x1ly";
- revision = "1";
- editedCabalFile = "0n8f1075gz5q2k9mqzadca6is0fi1bgi91sfw1yq2kqakkbrbkqy";
+ version = "0.3.2.2";
+ sha256 = "1xyabamc3670r8qjwpyfxcbsxhsnzy6i9n5zx58maq830lwp2m9c";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
@@ -217559,14 +223329,14 @@ self: {
];
executableHaskellDepends = [ base bytestring directory ];
testHaskellDepends = [
- base bytestring directory HUnit old-time process temporary time
- unix
+ base bytestring directory filepath HUnit old-time process temporary
+ time unix
];
- testToolDepends = [ zip ];
+ testToolDepends = [ unzip zip ];
homepage = "http://github.com/jgm/zip-archive";
description = "Library for creating and modifying zip archives";
license = stdenv.lib.licenses.bsd3;
- }) {inherit (pkgs) zip;};
+ }) {inherit (pkgs) unzip; inherit (pkgs) zip;};
"zip-conduit" = callPackage
({ mkDerivation, base, bytestring, cereal, conduit, conduit-extra
@@ -217667,16 +223437,16 @@ self: {
"zippers" = callPackage
({ mkDerivation, base, Cabal, cabal-doctest, criterion, doctest
- , lens, profunctors, semigroupoids
+ , lens, profunctors, semigroupoids, semigroups
}:
mkDerivation {
pname = "zippers";
- version = "0.2.4";
- sha256 = "1nzjs1s0lb0gr0n2qib4pdp24k7q707261n8icxzg81f0c04yafb";
- revision = "1";
- editedCabalFile = "18a7wlklxvl9fhk8j7njf8ifn2781vfiqz0vxk6ljx30f1p7plq1";
+ version = "0.2.5";
+ sha256 = "11f0jx0dbm2y9y5hnpakdvk9fmsm3awr2lcxp46dyma6arr7f4id";
setupHaskellDepends = [ base Cabal cabal-doctest ];
- libraryHaskellDepends = [ base lens profunctors semigroupoids ];
+ libraryHaskellDepends = [
+ base lens profunctors semigroupoids semigroups
+ ];
testHaskellDepends = [ base doctest ];
benchmarkHaskellDepends = [ base criterion lens ];
homepage = "http://github.com/ekmett/zippers/";
@@ -218117,6 +223887,45 @@ self: {
license = stdenv.lib.licenses.bsd3;
}) {};
+ "zuramaru" = callPackage
+ ({ mkDerivation, base, cmdargs, containers, distributive, doctest
+ , either, extensible, extra, lens, megaparsec, mono-traversable
+ , mtl, profunctors, readline, safe, safe-exceptions, silently
+ , singletons, string-qq, tasty, tasty-discover, tasty-hunit
+ , template-haskell, text, text-show, throwable-exceptions
+ , transformers
+ }:
+ mkDerivation {
+ pname = "zuramaru";
+ version = "0.1.0.0";
+ sha256 = "0g8kkwyjmsj5wqsqn6yxg9qr79ljfskc5qy4wg0xvlb8781xbj8m";
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base cmdargs containers distributive either extensible extra lens
+ megaparsec mono-traversable mtl profunctors readline safe
+ safe-exceptions singletons string-qq template-haskell text
+ text-show throwable-exceptions transformers
+ ];
+ executableHaskellDepends = [
+ base cmdargs containers distributive either extensible extra lens
+ megaparsec mono-traversable mtl profunctors readline safe
+ safe-exceptions singletons string-qq template-haskell text
+ text-show throwable-exceptions transformers
+ ];
+ testHaskellDepends = [
+ base cmdargs containers distributive doctest either extensible
+ extra lens megaparsec mono-traversable mtl profunctors readline
+ safe safe-exceptions silently singletons string-qq tasty
+ tasty-discover tasty-hunit template-haskell text text-show
+ throwable-exceptions transformers
+ ];
+ homepage = "https://github.com/aiya000/hs-zuramaru";
+ description = "A lisp processor, An inline-lisp, in Haskell";
+ license = stdenv.lib.licenses.mit;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ }) {};
+
"zxcvbn-c" = callPackage
({ mkDerivation, base }:
mkDerivation {
diff --git a/pkgs/development/haskell-modules/hie-packages.nix b/pkgs/development/haskell-modules/hie-packages.nix
new file mode 100644
index 00000000000..3f08f64b1e1
--- /dev/null
+++ b/pkgs/development/haskell-modules/hie-packages.nix
@@ -0,0 +1,502 @@
+{ pkgs, stdenv, callPackage }: self:
+let src = pkgs.fetchFromGitHub
+ { owner = "haskell";
+ repo = "haskell-ide-engine";
+ rev = "3ec8e93e9ca751cf282556998851ffa65f32e06b";
+ sha256 = "1wzqzvsa39c1cngmmjryqrq4vqdg6d4wp5wdf17vp96ljvz1cczw";
+ };
+ cabal-helper-src = pkgs.fetchgit
+ { url = "https://gitlab.com/dxld/cabal-helper.git";
+ rev = "4bfc6b916fcc696a5d82e7cd35713d6eabcb0533";
+ sha256 = "1a8231as0wdvi0q73ha9lc0qrx23kmcwf910qaicvmdar5p2b15m";
+ };
+ ghc-dump-tree-src = pkgs.fetchgit
+ { url = "https://gitlab.com/alanz/ghc-dump-tree.git";
+ rev = "50f8b28fda675cca4df53909667c740120060c49";
+ sha256 = "0v3r81apdqp91sv7avy7f0s3im9icrakkggw8q5b7h0h4js6irqj";
+ };
+ ghc-mod-src = pkgs.fetchFromGitHub
+ { owner = "wz1000";
+ repo = "ghc-mod";
+ rev = "03c91ea53b6389e7a1fcf4e471171aa3d6c8de41";
+ sha256 = "11iic93klsh5izp8v4mhl7vnnlib821cfhdymlpg4drx7zbm9il6";
+ };
+ HaRe-src = pkgs.fetchgit
+ { url = "https://gitlab.com/alanz/HaRe.git";
+ rev = "e325975450ce89d790ed3f92de3ef675967d9538";
+ sha256 = "0z7r3l4j5a1brz7zb2rgd985m58rs0ki2p59y1l9i46fcy8r9y4g";
+ };
+ cabal-helper = self.cabal-helper_hie;
+ haddock-library = self.haddock-library_1_4_4;
+ hoogle = self.hoogle_5_0_14;
+ ghc-dump-tree = self.ghc-dump-tree_hie;
+ ghc-mod = self.ghc-mod_hie;
+ HaRe = self.HaRe_hie;
+in
+ { ### Overrides required by hie
+ cabal-helper_hie = callPackage
+ ({ mkDerivation, base, bytestring, Cabal, cabal-install, containers
+ , directory, exceptions, filepath, ghc-prim, mtl, process
+ , semigroupoids, template-haskell, temporary, transformers
+ , unix, unix-compat, utf8-string
+ }:
+ mkDerivation {
+ pname = "cabal-helper";
+ version = "0.8.0.0";
+ src = cabal-helper-src;
+ isLibrary = true;
+ isExecutable = true;
+ jailbreak = true;
+ setupHaskellDepends = [ base Cabal directory filepath ];
+ libraryHaskellDepends = [
+ base Cabal directory filepath ghc-prim mtl process semigroupoids
+ transformers unix unix-compat
+ ];
+ executableHaskellDepends = [
+ base bytestring Cabal containers directory exceptions filepath
+ ghc-prim mtl process template-haskell temporary transformers unix
+ unix-compat utf8-string
+ ];
+ testHaskellDepends = [
+ base bytestring Cabal directory exceptions filepath ghc-prim mtl
+ process template-haskell temporary transformers unix unix-compat
+ utf8-string
+ ];
+ testToolDepends = [ cabal-install ];
+ postInstall =
+ ''
+ libexec="$out/libexec/$(basename $out/lib/ghc*/*ghc*)/$name"
+ mkdir -p "$libexec"
+ ln -sv $out/bin/cabal-helper-wrapper "$libexec"
+ '';
+ doCheck = false;
+ description = "Simple interface to some of Cabal's configuration state, mainly used by ghc-mod";
+ license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+ ghc-dump-tree_hie = callPackage
+ ({ mkDerivation, aeson, base, bytestring, ghc, optparse-applicative
+ , pretty, pretty-show, process, unordered-containers
+ , vector
+ }:
+ mkDerivation {
+ pname = "ghc-dump-tree";
+ version = "0.2.0.1";
+ src = ghc-dump-tree-src;
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson base bytestring ghc pretty pretty-show process
+ unordered-containers vector
+ ];
+ executableHaskellDepends = [
+ aeson base bytestring ghc optparse-applicative pretty pretty-show
+ process unordered-containers vector
+ ];
+ homepage = "https://github.com/edsko/ghc-dump-tree";
+ description = "Dump GHC's parsed, renamed, and type checked ASTs";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+ ghc-mod-core = callPackage
+ ({ mkDerivation, base, binary, bytestring, Cabal, cabal-helper
+ , containers, deepseq, directory, djinn-ghc, extra, fclabels
+ , filepath, fingertree, ghc, ghc-boot, ghc-paths, ghc-syb-utils
+ , haskell-src-exts, hlint, monad-control, monad-journal, mtl
+ , old-time, optparse-applicative, pipes, process, safe, semigroups
+ , split, syb, template-haskell, temporary, text, time
+ , transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "ghc-mod-core";
+ version = "5.9.0.0";
+ src = "${ghc-mod-src}/core";
+ setupHaskellDepends = [
+ base Cabal containers directory filepath process template-haskell
+ transformers
+ ];
+ libraryHaskellDepends = [
+ base binary bytestring cabal-helper containers deepseq directory
+ djinn-ghc extra fclabels filepath fingertree ghc ghc-boot ghc-paths
+ ghc-syb-utils haskell-src-exts hlint monad-control monad-journal
+ mtl old-time optparse-applicative pipes process safe semigroups
+ split syb template-haskell temporary text time transformers
+ transformers-base
+ ];
+ homepage = "https://github.com/DanielG/ghc-mod";
+ description = "Happy Haskell Hacking";
+ license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit cabal-helper; };
+ ghc-mod_hie = callPackage
+ ({ mkDerivation, base, binary, bytestring, Cabal, cabal-doctest
+ , cabal-helper, containers, criterion, deepseq, directory
+ , djinn-ghc, doctest, extra, fclabels, filepath, ghc, ghc-boot
+ , ghc-mod-core, ghc-paths, ghc-syb-utils, haskell-src-exts, hlint
+ , hspec, monad-control, monad-journal, mtl, old-time
+ , optparse-applicative, pipes, process, safe, semigroups, shelltest
+ , split, syb, template-haskell, temporary, text, time
+ , transformers, transformers-base
+ }:
+ mkDerivation {
+ pname = "ghc-mod";
+ version = "5.9.0.0";
+ src = ghc-mod-src;
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ setupHaskellDepends = [
+ base Cabal cabal-doctest containers directory filepath process
+ template-haskell transformers
+ ];
+ libraryHaskellDepends = [
+ base binary bytestring cabal-helper containers deepseq directory
+ djinn-ghc extra fclabels filepath ghc ghc-boot ghc-mod-core
+ ghc-paths ghc-syb-utils haskell-src-exts hlint monad-control
+ monad-journal mtl old-time optparse-applicative pipes process safe
+ semigroups split syb template-haskell temporary text time
+ transformers transformers-base
+ ];
+ executableHaskellDepends = [
+ base binary deepseq directory fclabels filepath ghc ghc-mod-core
+ monad-control mtl old-time optparse-applicative process semigroups
+ split time
+ ];
+ testHaskellDepends = [
+ base cabal-helper containers directory doctest fclabels filepath
+ ghc ghc-boot ghc-mod-core hspec monad-journal mtl process split
+ temporary transformers
+ ];
+ testToolDepends = [ shelltest ];
+ # Doesn't work with our doctest
+ doCheck = false;
+ benchmarkHaskellDepends = [
+ base criterion directory filepath ghc-mod-core temporary
+ ];
+ homepage = "https://github.com/DanielG/ghc-mod";
+ description = "Happy Haskell Hacking";
+ license = stdenv.lib.licenses.agpl3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { shelltest = null; inherit cabal-helper; };
+ HaRe_hie = callPackage
+ ({ mkDerivation, attoparsec, base, base-prelude, Cabal, cabal-helper
+ , case-insensitive, containers, conversion
+ , conversion-case-insensitive, conversion-text, Diff, directory
+ , filepath, foldl, ghc, ghc-exactprint, ghc-mod-core, ghc-syb-utils
+ , gitrev, hslogger, hspec, HUnit, monad-control, mtl
+ , optparse-applicative, optparse-simple, parsec, stdenv
+ , Strafunski-StrategyLib, syb, syz, turtle
+ }:
+ mkDerivation {
+ pname = "HaRe";
+ version = "0.8.4.1";
+ src = HaRe-src;
+ isLibrary = true;
+ isExecutable = true;
+ enableSeparateDataOutput = true;
+ libraryHaskellDepends = [
+ base cabal-helper containers directory filepath ghc ghc-exactprint
+ ghc-mod-core ghc-syb-utils hslogger monad-control mtl
+ Strafunski-StrategyLib syb syz
+ ];
+ executableHaskellDepends = [
+ base Cabal ghc-mod-core gitrev mtl optparse-applicative
+ optparse-simple
+ ];
+ testHaskellDepends = [
+ attoparsec base base-prelude cabal-helper case-insensitive
+ containers conversion conversion-case-insensitive conversion-text
+ Diff directory filepath foldl ghc ghc-exactprint ghc-mod-core
+ ghc-syb-utils hslogger hspec HUnit monad-control mtl parsec
+ Strafunski-StrategyLib syb syz turtle
+ ];
+ # Test directory doesn't exist
+ doCheck = false;
+ homepage = "https://github.com/RefactoringTools/HaRe/wiki";
+ description = "the Haskell Refactorer";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit cabal-helper; };
+ ### hie packages
+ haskell-ide-engine = callPackage
+ ({ mkDerivation, aeson, async, base, bytestring, Cabal, cabal-install
+ , containers, data-default, Diff, directory, either, ekg, filepath, ghc
+ , ghc-mod-core, gitrev, haskell-lsp, hie-apply-refact, hie-base
+ , hie-brittany, hie-build-plugin, hie-eg-plugin-async
+ , hie-example-plugin2, hie-ghc-mod, hie-ghc-tree, hie-haddock
+ , hie-hare, hie-hoogle, hie-plugin-api, hoogle, hoogleLocal, hslogger, hspec
+ , lens, mtl, optparse-simple, QuickCheck, quickcheck-instances
+ , sorted-list, stm, text, time, transformers
+ , unordered-containers, vector, vinyl, yaml, yi-rope
+ }:
+ mkDerivation {
+ pname = "haskell-ide-engine";
+ version = "0.1.0.0";
+ inherit src;
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ aeson async base bytestring Cabal containers data-default directory
+ either filepath ghc ghc-mod-core gitrev haskell-lsp
+ hie-apply-refact hie-base hie-brittany hie-ghc-mod hie-haddock
+ hie-hare hie-hoogle hie-plugin-api hslogger lens mtl
+ optparse-simple sorted-list stm text transformers
+ unordered-containers vector yi-rope
+ ];
+ executableHaskellDepends = [
+ base Cabal containers directory ekg ghc-mod-core gitrev haskell-lsp
+ hie-apply-refact hie-build-plugin hie-eg-plugin-async
+ hie-example-plugin2 hie-ghc-mod hie-ghc-tree hie-hare hie-hoogle
+ hie-plugin-api hslogger optparse-simple stm text time transformers
+ unordered-containers vinyl
+ ];
+ testHaskellDepends = [
+ aeson base containers Diff directory filepath ghc-mod-core
+ haskell-lsp hie-apply-refact hie-base hie-eg-plugin-async
+ hie-example-plugin2 hie-ghc-mod hie-ghc-tree hie-hare hie-hoogle
+ hie-plugin-api hoogle hslogger hspec QuickCheck
+ quickcheck-instances stm text transformers unordered-containers
+ vector vinyl yaml
+ ];
+
+ preCheck =
+ ''
+ export HOME=$NIX_BUILD_TOP/home
+ mkdir -p $HOME/.hoogle
+ ln -sv ${hoogleLocal}/share/doc/hoogle/default.hoo $HOME/.hoogle/default-haskell-${hoogle.version}.hoo
+ '';
+ # https://github.com/haskell/haskell-ide-engine/issues/425
+ # The disabled tests do work in a local nix-shell with cabal available.
+ patches = [ ./patches/hie-testsuite.patch ];
+ homepage = "http://github.com/githubuser/haskell-ide-engine#readme";
+ description = "Provide a common engine to power any Haskell IDE";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit hoogle; hoogleLocal = (self.hoogleLocal {}).override { inherit hoogle; }; };
+ hie-apply-refact = callPackage
+ ({ mkDerivation, aeson, apply-refact, base, either, extra, ghc-mod
+ , ghc-mod-core, haskell-src-exts, hie-base, hie-plugin-api, hlint
+ , text, transformers
+ }:
+ mkDerivation {
+ pname = "hie-apply-refact";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-apply-refact";
+ libraryHaskellDepends = [
+ aeson apply-refact base either extra ghc-mod ghc-mod-core
+ haskell-src-exts hie-base hie-plugin-api hlint text transformers
+ ];
+ description = "Haskell IDE Apply Refact plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit ghc-mod; };
+ hie-base = callPackage
+ ({ mkDerivation, aeson, base, haskell-lsp, text }:
+ mkDerivation {
+ pname = "hie-base";
+ version = "0.1.0.0";
+ inherit src;
+ preUnpack = "sourceRoot=source/hie-base";
+ libraryHaskellDepends = [ aeson base haskell-lsp text ];
+ description = "Haskell IDE API base types";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+ hie-brittany = callPackage
+ ({ mkDerivation, aeson, base, brittany, ghc-mod, ghc-mod-core
+ , haskell-lsp, hie-plugin-api, lens, text
+ }:
+ mkDerivation {
+ pname = "hie-brittany";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-brittany";
+ libraryHaskellDepends = [
+ aeson base brittany ghc-mod ghc-mod-core haskell-lsp hie-plugin-api
+ lens text
+ ];
+ description = "Haskell IDE Hoogle plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit ghc-mod; };
+ hie-build-plugin = callPackage
+ ({ mkDerivation, aeson, base, bytestring, Cabal, cabal-helper
+ , containers, directory, filepath, haskell-lsp, hie-plugin-api
+ , process, stm, text, transformers, yaml
+ }:
+ mkDerivation {
+ pname = "hie-build-plugin";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-build-plugin";
+ libraryHaskellDepends = [
+ aeson base bytestring Cabal cabal-helper containers directory
+ filepath haskell-lsp hie-plugin-api process stm text transformers
+ yaml
+ ];
+ description = "Haskell IDE build plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit cabal-helper; };
+ hie-eg-plugin-async = callPackage
+ ({ mkDerivation, base, ghc-mod-core, hie-plugin-api, stm
+ , text
+ }:
+ mkDerivation {
+ pname = "hie-eg-plugin-async";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-eg-plugin-async";
+ libraryHaskellDepends = [
+ base ghc-mod-core hie-plugin-api stm text
+ ];
+ description = "Haskell IDE example plugin, using async processes";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+ hie-example-plugin2 = callPackage
+ ({ mkDerivation, base, hie-plugin-api, text }:
+ mkDerivation {
+ pname = "hie-example-plugin2";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-example-plugin2";
+ libraryHaskellDepends = [ base hie-plugin-api text ];
+ description = "Haskell IDE example plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+ hie-ghc-mod = callPackage
+ ({ mkDerivation, aeson, base, containers, ghc, ghc-mod, ghc-mod-core
+ , hie-base, hie-plugin-api, text, transformers
+ }:
+ mkDerivation {
+ pname = "hie-ghc-mod";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-ghc-mod";
+ libraryHaskellDepends = [
+ aeson base containers ghc ghc-mod ghc-mod-core hie-base
+ hie-plugin-api text transformers
+ ];
+ description = "Haskell IDE ghc-mod plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit ghc-mod; };
+ hie-ghc-tree = callPackage
+ ({ mkDerivation, aeson, base, ghc-dump-tree, ghc-mod, ghc-mod-core
+ , hie-base, hie-plugin-api, text
+ }:
+ mkDerivation {
+ pname = "hie-ghc-tree";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-ghc-tree";
+ libraryHaskellDepends = [
+ aeson base ghc-dump-tree ghc-mod ghc-mod-core hie-base
+ hie-plugin-api text
+ ];
+ description = "Haskell IDE GHC Tree plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit ghc-dump-tree ghc-mod; };
+ hie-haddock = callPackage
+ ({ mkDerivation, aeson, base, containers, directory, either
+ , filepath, ghc, ghc-exactprint, ghc-mod, ghc-mod-core, haddock-api
+ , haddock-library, HaRe, haskell-lsp, hie-base, hie-ghc-mod
+ , hie-hare, hie-plugin-api, lens, monad-control, mtl, text
+ , transformers
+ }:
+ mkDerivation {
+ pname = "hie-haddock";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-haddock";
+ libraryHaskellDepends = [
+ aeson base containers directory either filepath ghc ghc-exactprint
+ ghc-mod ghc-mod-core haddock-api haddock-library HaRe haskell-lsp
+ hie-base hie-ghc-mod hie-hare hie-plugin-api lens monad-control mtl
+ text transformers
+ ];
+ description = "Haskell IDE Haddock plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit haddock-library HaRe ghc-mod; };
+ hie-hare = callPackage
+ ({ mkDerivation, aeson, base, containers, Diff, either, ghc
+ , ghc-exactprint, ghc-mod, ghc-mod-core, HaRe, haskell-lsp
+ , hie-base, hie-ghc-mod, hie-plugin-api, lens, monad-control, mtl
+ , text, transformers
+ }:
+ mkDerivation {
+ pname = "hie-hare";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-hare";
+ libraryHaskellDepends = [
+ aeson base containers Diff either ghc ghc-exactprint ghc-mod
+ ghc-mod-core HaRe haskell-lsp hie-base hie-ghc-mod hie-plugin-api
+ lens monad-control mtl text transformers
+ ];
+ description = "Haskell IDE HaRe plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit ghc-mod HaRe; };
+ hie-hoogle = callPackage
+ ({ mkDerivation, aeson, base, directory, filepath, ghc-mod
+ , ghc-mod-core, hie-plugin-api, hoogle, tagsoup, text
+ }:
+ mkDerivation {
+ pname = "hie-hoogle";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-hoogle";
+ libraryHaskellDepends = [
+ aeson base directory filepath ghc-mod ghc-mod-core hie-plugin-api
+ hoogle tagsoup text
+ ];
+ description = "Haskell IDE Hoogle plugin";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) { inherit ghc-mod hoogle; };
+ hie-plugin-api = callPackage
+ ({ mkDerivation, aeson, base, containers, Diff, directory, either
+ , filepath, fingertree, ghc, ghc-mod-core, haskell-lsp, hie-base
+ , hslogger, lifted-base, monad-control, mtl, stdenv, stm, syb, text
+ , time, transformers, unordered-containers
+ }:
+ mkDerivation {
+ pname = "hie-plugin-api";
+ version = "0.1.0.0";
+ inherit src;
+ postUnpack = "sourceRoot=source/hie-plugin-api";
+ libraryHaskellDepends = [
+ aeson base containers Diff directory either filepath fingertree ghc
+ ghc-mod-core haskell-lsp hie-base hslogger lifted-base
+ monad-control mtl stm syb text time transformers
+ unordered-containers
+ ];
+ description = "Haskell IDE API for plugin communication";
+ license = stdenv.lib.licenses.bsd3;
+ hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
+ }) {};
+ }
diff --git a/pkgs/development/haskell-modules/initial-packages.nix b/pkgs/development/haskell-modules/initial-packages.nix
new file mode 100644
index 00000000000..8e8712d9096
--- /dev/null
+++ b/pkgs/development/haskell-modules/initial-packages.nix
@@ -0,0 +1,2 @@
+args@{ pkgs, stdenv, callPackage }: self:
+ (import ./hie-packages.nix args self) // (import ./hackage-packages.nix args self)
diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix
index 96520dce2b2..fef827cd9a1 100644
--- a/pkgs/development/haskell-modules/lib.nix
+++ b/pkgs/development/haskell-modules/lib.nix
@@ -3,33 +3,139 @@
{ pkgs, lib }:
rec {
+ /* This function takes a file like `hackage-packages.nix` and constructs
+ a full package set out of that.
+ */
makePackageSet = import ./make-package-set.nix;
+ /* The function overrideCabal lets you alter the arguments to the
+ mkDerivation function.
+
+ Example:
+
+ First, note how the aeson package is constructed in hackage-packages.nix:
+
+ "aeson" = callPackage ({ mkDerivation, attoparsec,
+ }:
+ mkDerivation {
+ pname = "aeson";
+
+ homepage = "https://github.com/bos/aeson";
+ })
+
+ The mkDerivation function of haskellPackages will take care of putting
+ the homepage in the right place, in meta.
+
+ > haskellPackages.aeson.meta.homepage
+ "https://github.com/bos/aeson"
+
+ > x = haskell.lib.overrideCabal haskellPackages.aeson (old: { homepage = old.homepage + "#readme"; })
+ > x.meta.homepage
+ "https://github.com/bos/aeson#readme"
+
+ */
overrideCabal = drv: f: (drv.override (args: args // {
mkDerivation = drv: (args.mkDerivation drv).override f;
})) // {
overrideScope = scope: overrideCabal (drv.overrideScope scope) f;
};
+ # : Map Name (Either Path VersionNumber) -> HaskellPackageOverrideSet
+ # Given a set whose values are either paths or version strings, produces
+ # a package override set (i.e. (self: super: { etc. })) that sets
+ # the packages named in the input set to the corresponding versions
+ packageSourceOverrides =
+ overrides: self: super: pkgs.lib.mapAttrs (name: src:
+ let isPath = x: builtins.substring 0 1 (toString x) == "/";
+ generateExprs = if isPath src
+ then self.callCabal2nix
+ else self.callHackage;
+ in generateExprs name src {}) overrides;
+
+ /* doCoverage modifies a haskell package to enable the generation
+ and installation of a coverage report.
+
+ See https://wiki.haskell.org/Haskell_program_coverage
+ */
doCoverage = drv: overrideCabal drv (drv: { doCoverage = true; });
+
+ /* dontCoverage modifies a haskell package to disable the generation
+ and installation of a coverage report.
+ */
dontCoverage = drv: overrideCabal drv (drv: { doCoverage = false; });
+ /* doHaddock modifies a haskell package to enable the generation and
+ installation of API documentation from code comments using the
+ haddock tool.
+ */
doHaddock = drv: overrideCabal drv (drv: { doHaddock = true; });
+
+ /* dontHaddock modifies a haskell package to disable the generation and
+ installation of API documentation from code comments using the
+ haddock tool.
+ */
dontHaddock = drv: overrideCabal drv (drv: { doHaddock = false; });
+ /* doJailbreak enables the removal of version bounds from the cabal
+ file. You may want to avoid this function.
+
+ This is useful when a package reports that it can not be built
+ due to version mismatches. In some cases, removing the version
+ bounds entirely is an easy way to make a package build, but at
+ the risk of breaking software in non-obvious ways now or in the
+ future.
+
+ Instead of jailbreaking, you can patch the cabal file.
+ */
doJailbreak = drv: overrideCabal drv (drv: { jailbreak = true; });
+
+ /* dontJailbreak restores the use of the version bounds the check
+ the use of dependencies in the package description.
+ */
dontJailbreak = drv: overrideCabal drv (drv: { jailbreak = false; });
+ /* doCheck enables dependency checking, compilation and execution
+ of test suites listed in the package description file.
+ */
doCheck = drv: overrideCabal drv (drv: { doCheck = true; });
+ /* dontCheck disables dependency checking, compilation and execution
+ of test suites listed in the package description file.
+ */
dontCheck = drv: overrideCabal drv (drv: { doCheck = false; });
+ /* doBenchmark enables dependency checking, compilation and execution
+ for benchmarks listed in the package description file.
+ */
doBenchmark = drv: overrideCabal drv (drv: { doBenchmark = true; });
+ /* dontBenchmark disables dependency checking, compilation and execution
+ for benchmarks listed in the package description file.
+ */
dontBenchmark = drv: overrideCabal drv (drv: { doBenchmark = false; });
+ /* doDistribute enables the distribution of binaries for the package
+ via hydra.
+ */
doDistribute = drv: overrideCabal drv (drv: { hydraPlatforms = drv.platforms or ["i686-linux" "x86_64-linux" "x86_64-darwin"]; });
+ /* dontDistribute disables the distribution of binaries for the package
+ via hydra.
+ */
dontDistribute = drv: overrideCabal drv (drv: { hydraPlatforms = []; });
+ /* appendConfigureFlag adds a single argument that will be passed to the
+ cabal configure command, after the arguments that have been defined
+ in the initial declaration or previous overrides.
+
+ Example:
+
+ > haskell.lib.appendConfigureFlag haskellPackages.servant "--profiling-detail=all-functions"
+ */
appendConfigureFlag = drv: x: overrideCabal drv (drv: { configureFlags = (drv.configureFlags or []) ++ [x]; });
+
+ /* removeConfigureFlag drv x is a Haskell package like drv, but with
+ all cabal configure arguments that are equal to x removed.
+
+ > haskell.lib.removeConfigureFlag haskellPackages.servant "--verbose"
+ */
removeConfigureFlag = drv: x: overrideCabal drv (drv: { configureFlags = lib.remove x (drv.configureFlags or []); });
addBuildTool = drv: x: addBuildTools drv [x];
@@ -50,7 +156,7 @@ rec {
enableCabalFlag = drv: x: appendConfigureFlag (removeConfigureFlag drv "-f-${x}") "-f${x}";
disableCabalFlag = drv: x: appendConfigureFlag (removeConfigureFlag drv "-f${x}") "-f-${x}";
- markBroken = drv: overrideCabal drv (drv: { broken = true; });
+ markBroken = drv: overrideCabal drv (drv: { broken = true; hydraPlatforms = []; });
markBrokenVersion = version: drv: assert drv.version == version; markBroken drv;
enableLibraryProfiling = drv: overrideCabal drv (drv: { enableLibraryProfiling = true; });
@@ -76,17 +182,28 @@ rec {
disableHardening = drv: flags: overrideCabal drv (drv: { hardeningDisable = flags; });
- # Controls if Nix should strip the binary files (removes debug symbols)
+ /* Let Nix strip the binary files.
+ * This removes debugging symbols.
+ */
doStrip = drv: overrideCabal drv (drv: { dontStrip = false; });
+
+ /* Stop Nix from stripping the binary files.
+ * This keeps debugging symbols.
+ */
dontStrip = drv: overrideCabal drv (drv: { dontStrip = true; });
- # Useful for debugging segfaults with gdb.
- # -g: enables debugging symbols
- # --disable-*-stripping: tell GHC not to strip resulting binaries
- # dontStrip: see above
+ /* Useful for debugging segfaults with gdb.
+ * This includes dontStrip.
+ */
enableDWARFDebugging = drv:
+ # -g: enables debugging symbols
+ # --disable-*-stripping: tell GHC not to strip resulting binaries
+ # dontStrip: see above
appendConfigureFlag (dontStrip drv) "--ghc-options=-g --disable-executable-stripping --disable-library-stripping";
+ /* Create a source distribution tarball like those found on hackage,
+ instead of building the package.
+ */
sdistTarball = pkg: lib.overrideDerivation pkg (drv: {
name = "${drv.pname}-source-${drv.version}";
# Since we disable the haddock phase, we also need to override the
@@ -99,10 +216,15 @@ rec {
fixupPhase = ":";
});
+ /* Use the gold linker. It is a linker for ELF that is designed
+ "to run as fast as possible on modern systems"
+ */
linkWithGold = drv : appendConfigureFlag drv
"--ghc-option=-optl-fuse-ld=gold --ld-option=-fuse-ld=gold --with-ld=ld.gold";
- # link executables statically against haskell libs to reduce closure size
+ /* link executables statically against haskell libs to reduce
+ closure size
+ */
justStaticExecutables = drv: overrideCabal drv (drv: {
enableSharedExecutables = false;
isLibrary = false;
@@ -112,6 +234,11 @@ rec {
configureFlags = (drv.configureFlags or []) ++ ["--ghc-option=-optl=-dead_strip"];
});
+ /* Build a source distribution tarball instead of using the source files
+ directly. The effect is that the package is built as if it were published
+ on hackage. This can be used as a test for the source distribution,
+ assuming the build fails when packaging mistakes are in the cabal file.
+ */
buildFromSdist = pkg: lib.overrideDerivation pkg (drv: {
unpackPhase = let src = sdistTarball pkg; tarname = "${pkg.pname}-${pkg.version}"; in ''
echo "Source tarball is at ${src}/${tarname}.tar.gz"
@@ -120,10 +247,22 @@ rec {
'';
});
+ /* Build the package in a strict way to uncover potential problems.
+ This includes buildFromSdist and failOnAllWarnings.
+ */
buildStrictly = pkg: buildFromSdist (failOnAllWarnings pkg);
+ /* Turn on most of the compiler warnings and fail the build if any
+ of them occur. */
failOnAllWarnings = drv: appendConfigureFlag drv "--ghc-option=-Wall --ghc-option=-Werror";
+ /* Add a post-build check to verify that dependencies declared in
+ the cabal file are actually used.
+
+ The first attrset argument can be used to configure the strictness
+ of this check and a list of ignored package names that would otherwise
+ cause false alarms.
+ */
checkUnusedPackages =
{ ignoreEmptyImports ? false
, ignoreMainModule ? false
@@ -142,9 +281,99 @@ rec {
buildStackProject = pkgs.callPackage ./generic-stack-builder.nix { };
+ /* Add a dummy command to trigger a build despite an equivalent
+ earlier build that is present in the store or cache.
+ */
triggerRebuild = drv: i: overrideCabal drv (drv: { postUnpack = ": trigger rebuild ${toString i}"; });
+ /* Override the sources for the package and optionaly the version.
+ This also takes of removing editedCabalFile.
+ */
overrideSrc = drv: { src, version ? drv.version }:
overrideCabal drv (_: { inherit src version; editedCabalFile = null; });
+ # Extract the haskell build inputs of a haskell package.
+ # This is useful to build environments for developing on that
+ # package.
+ getHaskellBuildInputs = p:
+ (p.override { mkDerivation = extractBuildInputs p.compiler;
+ }).haskellBuildInputs;
+
+ # Under normal evaluation, simply return the original package. Under
+ # nix-shell evaluation, return a nix-shell optimized environment.
+ shellAware = p: if lib.inNixShell then p.env else p;
+
+ ghcInfo = ghc:
+ rec { isCross = (ghc.cross or null) != null;
+ isGhcjs = ghc.isGhcjs or false;
+ nativeGhc = if isCross || isGhcjs
+ then ghc.bootPkgs.ghc
+ else ghc;
+ };
+
+ ### mkDerivation helpers
+ # These allow external users of a haskell package to extract
+ # information about how it is built in the same way that the
+ # generic haskell builder does, by reusing the same functions.
+ # Each function here has the same interface as mkDerivation and thus
+ # can be called for a given package simply by overriding the
+ # mkDerivation argument it used. See getHaskellBuildInputs above for
+ # an example of this.
+
+ # Some information about which phases should be run.
+ controlPhases = ghc: let inherit (ghcInfo ghc) isCross; in
+ { doCheck ? !isCross && (lib.versionOlder "7.4" ghc.version)
+ , doBenchmark ? false
+ , ...
+ }: { inherit doCheck doBenchmark; };
+
+ # Divide the build inputs of the package into useful sets.
+ extractBuildInputs = ghc:
+ { setupHaskellDepends ? [], extraLibraries ? []
+ , librarySystemDepends ? [], executableSystemDepends ? []
+ , pkgconfigDepends ? [], libraryPkgconfigDepends ? []
+ , executablePkgconfigDepends ? [], testPkgconfigDepends ? []
+ , benchmarkPkgconfigDepends ? [], testDepends ? []
+ , testHaskellDepends ? [], testSystemDepends ? []
+ , testToolDepends ? [], benchmarkDepends ? []
+ , benchmarkHaskellDepends ? [], benchmarkSystemDepends ? []
+ , benchmarkToolDepends ? [], buildDepends ? []
+ , libraryHaskellDepends ? [], executableHaskellDepends ? []
+ , ...
+ }@args:
+ let inherit (ghcInfo ghc) isGhcjs nativeGhc;
+ inherit (controlPhases ghc args) doCheck doBenchmark;
+ isHaskellPkg = x: x ? isHaskellLibrary;
+ allPkgconfigDepends =
+ pkgconfigDepends ++ libraryPkgconfigDepends ++
+ executablePkgconfigDepends ++
+ lib.optionals doCheck testPkgconfigDepends ++
+ lib.optionals doBenchmark benchmarkPkgconfigDepends;
+ otherBuildInputs =
+ setupHaskellDepends ++ extraLibraries ++
+ librarySystemDepends ++ executableSystemDepends ++
+ allPkgconfigDepends ++
+ lib.optionals doCheck ( testDepends ++ testHaskellDepends ++
+ testSystemDepends ++ testToolDepends
+ ) ++
+ # ghcjs's hsc2hs calls out to the native hsc2hs
+ lib.optional isGhcjs nativeGhc ++
+ lib.optionals doBenchmark ( benchmarkDepends ++
+ benchmarkHaskellDepends ++
+ benchmarkSystemDepends ++
+ benchmarkToolDepends
+ );
+ propagatedBuildInputs =
+ buildDepends ++ libraryHaskellDepends ++
+ executableHaskellDepends;
+ allBuildInputs = propagatedBuildInputs ++ otherBuildInputs;
+ isHaskellPartition =
+ lib.partition isHaskellPkg allBuildInputs;
+ in
+ { haskellBuildInputs = isHaskellPartition.right;
+ systemBuildInputs = isHaskellPartition.wrong;
+ inherit propagatedBuildInputs otherBuildInputs
+ allPkgconfigDepends;
+ };
+
}
diff --git a/pkgs/development/haskell-modules/make-package-set.nix b/pkgs/development/haskell-modules/make-package-set.nix
index 7ac0ef509f4..0f866a96e71 100644
--- a/pkgs/development/haskell-modules/make-package-set.nix
+++ b/pkgs/development/haskell-modules/make-package-set.nix
@@ -1,7 +1,14 @@
# This expression takes a file like `hackage-packages.nix` and constructs
# a full package set out of that.
-{ # package-set used for non-haskell dependencies (all of nixpkgs)
+{ # package-set used for build tools (all of nixpkgs)
+ buildPackages
+
+, # A haskell package set for Setup.hs, compiler plugins, and similar
+ # build-time uses.
+ buildHaskellPackages
+
+, # package-set used for non-haskell dependencies (all of nixpkgs)
pkgs
, # stdenv to use for building haskell packages
@@ -15,8 +22,8 @@
, # compiler to use
ghc
-, # A function that takes `{ pkgs, stdenv, callPackage }` as the first arg and `self`
- # as second, and returns a set of haskell packages
+, # A function that takes `{ pkgs, stdenv, callPackage }` as the first arg and
+ # `self` as second, and returns a set of haskell packages
package-set
, # The final, fully overriden package set usable with the nixpkgs fixpoint
@@ -28,19 +35,18 @@
self:
let
+ inherit (stdenv) buildPlatform hostPlatform;
inherit (stdenv.lib) fix' extends makeOverridable;
inherit (haskellLib) overrideCabal;
mkDerivationImpl = pkgs.callPackage ./generic-builder.nix {
inherit stdenv;
- inherit (pkgs) fetchurl pkgconfig glibcLocales coreutils gnugrep gnused;
- nodejs = pkgs.nodejs-slim;
- jailbreak-cabal = if (self.ghc.cross or null) != null
- then self.ghc.bootPkgs.jailbreak-cabal
- else self.jailbreak-cabal;
+ nodejs = buildPackages.nodejs-slim;
+ inherit buildHaskellPackages;
inherit (self) ghc;
- hscolour = overrideCabal self.hscolour (drv: {
+ inherit (buildHaskellPackages) jailbreak-cabal;
+ hscolour = overrideCabal buildHaskellPackages.hscolour (drv: {
isLibrary = false;
doHaddock = false;
hyperlinkSource = false; # Avoid depending on hscolour for this build.
@@ -75,8 +81,8 @@ let
# lost on `.override`) but determine the auto-args based on `drv` (the problem here
# is that nix has no way to "passthrough" args while preserving the reflection
# info that callPackage uses to determine the arguments).
- drv = if builtins.isFunction fn then fn else import fn;
- auto = builtins.intersectAttrs (builtins.functionArgs drv) scope;
+ drv = if stdenv.lib.isFunction fn then fn else import fn;
+ auto = builtins.intersectAttrs (stdenv.lib.functionArgs drv) scope;
# this wraps the `drv` function to add a `overrideScope` function to the result.
drvScope = allArgs: drv allArgs // {
@@ -95,26 +101,26 @@ let
defaultScope = mkScope self;
callPackage = drv: args: callPackageWithScope defaultScope drv args;
- withPackages = packages: callPackage ./with-packages-wrapper.nix {
+ withPackages = packages: buildPackages.callPackage ./with-packages-wrapper.nix {
inherit (self) llvmPackages;
- haskellPackages = self;
+ inherit ghc;
inherit packages;
};
haskellSrc2nix = { name, src, sha256 ? null }:
let
sha256Arg = if isNull sha256 then "--sha256=" else ''--sha256="${sha256}"'';
- in pkgs.stdenv.mkDerivation {
+ in pkgs.buildPackages.stdenv.mkDerivation {
name = "cabal2nix-${name}";
- buildInputs = [ pkgs.haskellPackages.cabal2nix ];
+ nativeBuildInputs = [ pkgs.buildPackages.haskellPackages.cabal2nix ];
preferLocalBuild = true;
phases = ["installPhase"];
LANG = "en_US.UTF-8";
- LOCALE_ARCHIVE = pkgs.lib.optionalString pkgs.stdenv.isLinux "${pkgs.glibcLocales}/lib/locale/locale-archive";
+ LOCALE_ARCHIVE = pkgs.lib.optionalString buildPlatform.isLinux "${buildPackages.glibcLocales}/lib/locale/locale-archive";
installPhase = ''
export HOME="$TMP"
mkdir -p "$out"
- cabal2nix --compiler=${self.ghc.name} --system=${stdenv.system} ${sha256Arg} "${src}" > "$out/default.nix"
+ cabal2nix --compiler=${ghc.haskellCompilerName} --system=${stdenv.system} ${sha256Arg} "${src}" > "$out/default.nix"
'';
};
@@ -134,55 +140,40 @@ in package-set { inherit pkgs stdenv callPackage; } self // {
inherit mkDerivation callPackage haskellSrc2nix hackage2nix;
+ inherit (haskellLib) packageSourceOverrides;
+
callHackage = name: version: self.callPackage (self.hackage2nix name version);
# Creates a Haskell package from a source package by calling cabal2nix on the source.
- callCabal2nix = name: src: args: if builtins.typeOf src != "path"
- then self.callPackage (haskellSrc2nix { inherit name src; }) args
- else
- # When `src` is a Nix path literal, only use `cabal2nix` on
- # the cabal file, so that the "import-from-derivation" is only
- # recomputed when the cabal file changes, and so your source
- # code isn't duplicated into the nix store on every change.
- # This can only be done when `src` is a Nix path literal
- # because that is the only kind of source that
- # `builtins.filterSource` works on. But this filtering isn't
- # usually important on other kinds of sources, like
- # `fetchFromGitHub`.
- overrideCabal (self.callPackage (haskellSrc2nix {
- inherit name;
- src = builtins.filterSource (path: type:
- pkgs.lib.hasSuffix "${name}.cabal" path || pkgs.lib.hasSuffix "package.yaml" path
- ) src;
- }) args) (_: { inherit src; });
-
- # : Map Name (Either Path VersionNumber) -> HaskellPackageOverrideSet
- # Given a set whose values are either paths or version strings, produces
- # a package override set (i.e. (self: super: { etc. })) that sets
- # the packages named in the input set to the corresponding versions
- packageSourceOverrides =
- overrides: self: super: pkgs.lib.mapAttrs (name: src:
- let isPath = x: builtins.substring 0 1 (toString x) == "/";
- generateExprs = if isPath src
- then self.callCabal2nix
- else self.callHackage;
- in generateExprs name src {}) overrides;
+ callCabal2nix = name: src: args:
+ overrideCabal (self.callPackage (haskellSrc2nix {
+ inherit name;
+ src = pkgs.lib.cleanSourceWith
+ { src = if pkgs.lib.canCleanSource src
+ then src
+ else pkgs.safeDiscardStringContext src;
+ filter = path: type:
+ pkgs.lib.hasSuffix "${name}.cabal" path ||
+ pkgs.lib.hasSuffix "package.yaml" path;
+ };
+ }) args) (_: { inherit src; });
# : { root : Path
# , source-overrides : Defaulted (Either Path VersionNumber)
# , overrides : Defaulted (HaskellPackageOverrideSet)
+ # , modifier : Defaulted
# } -> NixShellAwareDerivation
# Given a path to a haskell package directory whose cabal file is
# named the same as the directory name, an optional set of
# source overrides as appropriate for the 'packageSourceOverrides'
- # function, and an optional set of arbitrary overrides,
- # return a derivation appropriate for nix-build or nix-shell
- # to build that package.
- developPackage = { root, source-overrides ? {}, overrides ? self: super: {} }:
+ # function, an optional set of arbitrary overrides, and an optional
+ # haskell package modifier, return a derivation appropriate
+ # for nix-build or nix-shell to build that package.
+ developPackage = { root, source-overrides ? {}, overrides ? self: super: {}, modifier ? drv: drv }:
let name = builtins.baseNameOf root;
drv =
(extensible-self.extend (pkgs.lib.composeExtensions (self.packageSourceOverrides source-overrides) overrides)).callCabal2nix name root {};
- in if pkgs.lib.inNixShell then drv.env else drv;
+ in if pkgs.lib.inNixShell then (modifier drv).env else modifier drv;
ghcWithPackages = selectFrom: withPackages (selectFrom self);
diff --git a/pkgs/development/haskell-modules/patches/hie-testsuite.patch b/pkgs/development/haskell-modules/patches/hie-testsuite.patch
new file mode 100644
index 00000000000..86cac15c246
--- /dev/null
+++ b/pkgs/development/haskell-modules/patches/hie-testsuite.patch
@@ -0,0 +1,40 @@
+diff --git a/test/HaRePluginSpec.hs b/test/HaRePluginSpec.hs
+index 039c094..d0d1fa4 100644
+--- a/test/HaRePluginSpec.hs
++++ b/test/HaRePluginSpec.hs
+@@ -326,35 +326,6 @@ hareSpec = do
+ $ List [TextEdit (Range (Position 4 0) (Position 8 12))
+ "parseStr = char '\"' *> (many1 (noneOf \"\\\"\")) <* char '\"'"])
+ Nothing)
+- it "finds definition across components" $ do
+- let u = filePathToUri "./app/Main.hs"
+- let lreq = setTypecheckedModule u
+- let req = findDef u (toPos (7,8))
+- r <- dispatchRequestPGoto $ lreq >> req
+- r `shouldBe` IdeResponseOk [Location (filePathToUri $ cwd > "test/testdata/gototest/src/Lib.hs")
+- (Range (toPos (6,1)) (toPos (6,9)))]
+- let req2 = findDef u (toPos (7,20))
+- r2 <- dispatchRequestPGoto $ lreq >> req2
+- r2 `shouldBe` IdeResponseOk [Location (filePathToUri $ cwd > "test/testdata/gototest/src/Lib2.hs")
+- (Range (toPos (5,1)) (toPos (5,2)))]
+- it "finds definition in the same component" $ do
+- let u = filePathToUri "./src/Lib2.hs"
+- let lreq = setTypecheckedModule u
+- let req = findDef u (toPos (6,5))
+- r <- dispatchRequestPGoto $ lreq >> req
+- r `shouldBe` IdeResponseOk [Location (filePathToUri $ cwd > "test/testdata/gototest/src/Lib.hs")
+- (Range (toPos (6,1)) (toPos (6,9)))]
+- it "finds local definitions" $ do
+- let u = filePathToUri "./src/Lib2.hs"
+- let lreq = setTypecheckedModule u
+- let req = findDef u (toPos (7,11))
+- r <- dispatchRequestPGoto $ lreq >> req
+- r `shouldBe` IdeResponseOk [Location (filePathToUri $ cwd > "test/testdata/gototest/src/Lib2.hs")
+- (Range (toPos (10,9)) (toPos (10,10)))]
+- let req2 = findDef u (toPos (10,13))
+- r2 <- dispatchRequestPGoto $ lreq >> req2
+- r2 `shouldBe` IdeResponseOk [Location (filePathToUri $ cwd > "test/testdata/gototest/src/Lib2.hs")
+- (Range (toPos (9,9)) (toPos (9,10)))]
+
+
+ -- ---------------------------------
diff --git a/pkgs/development/haskell-modules/patches/lzma-tests.patch b/pkgs/development/haskell-modules/patches/lzma-tests.patch
new file mode 100644
index 00000000000..e4e327ab6bb
--- /dev/null
+++ b/pkgs/development/haskell-modules/patches/lzma-tests.patch
@@ -0,0 +1,13 @@
+--- a/lzma.cabal
++++ b/lzma.cabal
+@@ -70,8 +70,8 @@ test-suite lzma-tests
+ , base
+ , bytestring
+ -- additional dependencies that require version bounds
+- build-depends: HUnit >= 1.2 && <1.4
+- , QuickCheck >= 2.8 && <2.9
++ build-depends: HUnit >= 1.2 && <2
++ , QuickCheck >= 2.8 && <3
+ , tasty >= 0.10 && <0.12
+ , tasty-hunit == 0.9.*
+ , tasty-quickcheck >= 0.8.3.2 && < 0.9
diff --git a/pkgs/development/haskell-modules/with-packages-wrapper.nix b/pkgs/development/haskell-modules/with-packages-wrapper.nix
index ac484b3c112..aa0090e4cff 100644
--- a/pkgs/development/haskell-modules/with-packages-wrapper.nix
+++ b/pkgs/development/haskell-modules/with-packages-wrapper.nix
@@ -1,7 +1,6 @@
-{ stdenv, lib, ghc, llvmPackages, packages, symlinkJoin, makeWrapper
-, ignoreCollisions ? false, withLLVM ? false
+{ lib, targetPlatform, ghc, llvmPackages, packages, symlinkJoin, makeWrapper
+, withLLVM ? false
, postBuild ? ""
-, haskellPackages
, ghcLibdir ? null # only used by ghcjs, when resolving plugins
}:
@@ -36,9 +35,8 @@ let
isHaLVM = ghc.isHaLVM or false;
ghc761OrLater = isGhcjs || isHaLVM || lib.versionOlder "7.6.1" ghc.version;
packageDBFlag = if ghc761OrLater then "--global-package-db" else "--global-conf";
- ghcCommand' = if isGhcjs then "ghcjs" else "ghc";
- crossPrefix = if (ghc.cross or null) != null then "${ghc.cross.config}-" else "";
- ghcCommand = "${crossPrefix}${ghcCommand'}";
+ ghcCommand' = if isGhcjs then "ghcjs" else "ghc";
+ ghcCommand = "${ghc.targetPrefix}${ghcCommand'}";
ghcCommandCaps= lib.toUpper ghcCommand';
libDir = if isHaLVM then "$out/lib/HaLVM-${ghc.version}" else "$out/lib/${ghcCommand}-${ghc.version}";
docDir = "$out/share/doc/ghc/html";
@@ -46,10 +44,10 @@ let
paths = lib.filter (x: x ? isHaskellLibrary) (lib.closePropagation packages);
hasLibraries = lib.any (x: x.isHaskellLibrary) paths;
# CLang is needed on Darwin for -fllvm to work:
- # https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/code-generators.html
+ # https://downloads.haskell.org/~ghc/latest/docs/html/users_guide/codegens.html#llvm-code-generator-fllvm
llvm = lib.makeBinPath
([ llvmPackages.llvm ]
- ++ lib.optional stdenv.isDarwin llvmPackages.clang);
+ ++ lib.optional targetPlatform.isDarwin llvmPackages.clang);
in
if paths == [] && !withLLVM then ghc else
symlinkJoin {
@@ -59,7 +57,6 @@ symlinkJoin {
name = ghc.name + "-with-packages";
paths = paths ++ [ghc];
extraOutputsToInstall = [ "out" "doc" ];
- inherit ignoreCollisions;
postBuild = ''
. ${makeWrapper}/nix-support/setup-hook
@@ -99,7 +96,7 @@ symlinkJoin {
makeWrapper ${ghc}/bin/$prg $out/bin/$prg --add-flags "${packageDBFlag}=${packageCfgDir}"
fi
done
- '' + (lib.optionalString stdenv.isDarwin ''
+ '' + (lib.optionalString targetPlatform.isDarwin ''
# Work around a linker limit in macOS Sierra (see generic-builder.nix):
local packageConfDir="$out/lib/${ghc.name}/package.conf.d";
local dynamicLinksDir="$out/lib/links"
@@ -107,7 +104,7 @@ symlinkJoin {
# Clean up the old links that may have been (transitively) included by
# symlinkJoin:
rm -f $dynamicLinksDir/*
- for d in $(grep dynamic-library-dirs $packageConfDir/*|awk '{print $2}'); do
+ for d in $(grep dynamic-library-dirs $packageConfDir/*|awk '{print $2}'|sort -u); do
ln -s $d/*.dylib $dynamicLinksDir
done
for f in $packageConfDir/*.conf; do
@@ -133,6 +130,5 @@ symlinkJoin {
passthru = {
preferLocalBuild = true;
inherit (ghc) version meta;
- inherit haskellPackages;
};
}
diff --git a/pkgs/development/idris-modules/build-idris-package.nix b/pkgs/development/idris-modules/build-idris-package.nix
index 9dfa3430ed8..0048634f5b4 100644
--- a/pkgs/development/idris-modules/build-idris-package.nix
+++ b/pkgs/development/idris-modules/build-idris-package.nix
@@ -3,39 +3,21 @@
# args: Additional arguments to pass to mkDerivation. Generally should include at least
# name and src.
{ stdenv, idris, gmp }: args: stdenv.mkDerivation ({
- preHook = ''
- # Library import path
- export IDRIS_LIBRARY_PATH=$PWD/idris-libs
- mkdir -p $IDRIS_LIBRARY_PATH
-
- # Library install path
- export IBCSUBDIR=$out/lib/${idris.name}
- mkdir -p $IBCSUBDIR
-
- addIdrisLibs () {
- if [ -d $1/lib/${idris.name} ]; then
- ln -sv $1/lib/${idris.name}/* $IDRIS_LIBRARY_PATH
- fi
- }
-
- envHooks+=(addIdrisLibs)
- '';
-
buildPhase = ''
- ${idris}/bin/idris --build *.ipkg
+ idris --build *.ipkg
'';
doCheck = true;
checkPhase = ''
if grep -q test *.ipkg; then
- ${idris}/bin/idris --testpkg *.ipkg
+ idris --testpkg *.ipkg
fi
'';
installPhase = ''
- ${idris}/bin/idris --install *.ipkg --ibcsubdir $IBCSUBDIR
+ idris --install *.ipkg --ibcsubdir $IBCSUBDIR
'';
- buildInputs = [ gmp ];
+ buildInputs = [ gmp idris ];
} // args)
diff --git a/pkgs/development/idris-modules/idris-wrapper.nix b/pkgs/development/idris-modules/idris-wrapper.nix
index 5e3eb511bd3..0e3a8393140 100644
--- a/pkgs/development/idris-modules/idris-wrapper.nix
+++ b/pkgs/development/idris-modules/idris-wrapper.nix
@@ -10,5 +10,7 @@ symlinkJoin {
wrapProgram $out/bin/idris \
--suffix PATH : ${ stdenv.lib.makeBinPath path } \
--suffix LIBRARY_PATH : ${stdenv.lib.makeLibraryPath lib}
- '';
-}
+ mkdir -p $out/nix-support
+ substituteAll ${./setup-hook.sh} $out/nix-support/setup-hook
+ '';
+ }
diff --git a/pkgs/development/idris-modules/setup-hook.sh b/pkgs/development/idris-modules/setup-hook.sh
new file mode 100644
index 00000000000..30a487ea80d
--- /dev/null
+++ b/pkgs/development/idris-modules/setup-hook.sh
@@ -0,0 +1,16 @@
+# Library import path
+export IDRIS_LIBRARY_PATH=$PWD/idris-libs
+mkdir -p $IDRIS_LIBRARY_PATH
+
+# Library install path
+export IBCSUBDIR=$out/lib/@name@
+mkdir -p $IBCSUBDIR
+
+addIdrisLibs () {
+ if [ -d $1/lib/@name@ ]; then
+ ln -sv $1/lib/@name@/* $IDRIS_LIBRARY_PATH
+ fi
+}
+
+# All run-time deps
+addEnvHooks 1 addIdrisLibs
diff --git a/pkgs/development/idris-modules/with-packages.nix b/pkgs/development/idris-modules/with-packages.nix
index d2b09808ec1..d4638670f69 100644
--- a/pkgs/development/idris-modules/with-packages.nix
+++ b/pkgs/development/idris-modules/with-packages.nix
@@ -14,7 +14,7 @@
fi
}
- envHooks+=(installIdrisLib)
+ envHostTargetHooks+=(installIdrisLib)
'';
unpackPhase = ''
diff --git a/pkgs/development/interpreters/elixir/1.6.nix b/pkgs/development/interpreters/elixir/1.6.nix
new file mode 100644
index 00000000000..673a4b6e51b
--- /dev/null
+++ b/pkgs/development/interpreters/elixir/1.6.nix
@@ -0,0 +1,7 @@
+{ mkDerivation }:
+
+mkDerivation rec {
+ version = "1.6.0";
+ sha256 = "0wfmbrq70n85mx17kl9h2k0xzgnhncz3xygjx9cbvpmiwwdzgrdx";
+ minimumOTPVersion = "18";
+}
diff --git a/pkgs/development/interpreters/elixir/setup-hook.sh b/pkgs/development/interpreters/elixir/setup-hook.sh
index 2ed3b2e6454..501eca3cf02 100644
--- a/pkgs/development/interpreters/elixir/setup-hook.sh
+++ b/pkgs/development/interpreters/elixir/setup-hook.sh
@@ -2,4 +2,4 @@ addErlLibPath() {
addToSearchPath ERL_LIBS $1/lib/elixir/lib
}
-envHooks+=(addErlLibPath)
+addEnvHooks "$hostOffset" addErlLibPath
diff --git a/pkgs/development/interpreters/erlang/R16B02-basho.nix b/pkgs/development/interpreters/erlang/R16B02-basho.nix
index 33c34f7fecc..714924514ed 100644
--- a/pkgs/development/interpreters/erlang/R16B02-basho.nix
+++ b/pkgs/development/interpreters/erlang/R16B02-basho.nix
@@ -36,7 +36,7 @@ mkDerivation rec {
tar xf "${manpages}" -C "$out/lib/erlang"
for i in "$out"/lib/erlang/man/man[0-9]/*.[0-9]; do
prefix="''${i%/*}"
- ensureDir "$out/share/man/''${prefix##*/}"
+ mkdir -p "$out/share/man/''${prefix##*/}"
ln -s "$i" "$out/share/man/''${prefix##*/}/''${i##*/}erl"
done
'';
diff --git a/pkgs/development/interpreters/erlang/setup-hook.sh b/pkgs/development/interpreters/erlang/setup-hook.sh
index 68c0f762dfc..3962d154ba9 100644
--- a/pkgs/development/interpreters/erlang/setup-hook.sh
+++ b/pkgs/development/interpreters/erlang/setup-hook.sh
@@ -2,4 +2,4 @@ addErlangLibPath() {
addToSearchPath ERL_LIBS $1/lib/erlang/lib
}
-envHooks+=(addErlangLibPath)
+addEnvHooks "$hostOffset" addErlangLibPath
diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix
index fe9f94beed1..e10c5fbb568 100644
--- a/pkgs/development/interpreters/guile/default.nix
+++ b/pkgs/development/interpreters/guile/default.nix
@@ -10,11 +10,11 @@
(rec {
name = "guile-${version}";
- version = "2.2.0";
+ version = "2.2.3";
src = fetchurl {
url = "mirror://gnu/guile/${name}.tar.xz";
- sha256 = "05dmvhd1y135x7w5qfw4my42cfp6l8bbhjfxvchcc1cbdvzri0f1";
+ sha256 = "11j01agvnci2cx32wwpqs9078856yxmvs15gcsz7ganpkj2ahlw3";
};
outputs = [ "out" "dev" "info" ];
diff --git a/pkgs/development/interpreters/guile/setup-hook-2.0.sh b/pkgs/development/interpreters/guile/setup-hook-2.0.sh
index fd1dc944ed4..c7fb4f70fc6 100644
--- a/pkgs/development/interpreters/guile/setup-hook-2.0.sh
+++ b/pkgs/development/interpreters/guile/setup-hook-2.0.sh
@@ -10,4 +10,4 @@ addGuileLibPath () {
fi
}
-envHooks+=(addGuileLibPath)
+addEnvHooks "$hostOffset" addGuileLibPath
diff --git a/pkgs/development/interpreters/guile/setup-hook-2.2.sh b/pkgs/development/interpreters/guile/setup-hook-2.2.sh
index 86c1e0d3e4a..73e700bde02 100644
--- a/pkgs/development/interpreters/guile/setup-hook-2.2.sh
+++ b/pkgs/development/interpreters/guile/setup-hook-2.2.sh
@@ -10,4 +10,4 @@ addGuileLibPath () {
fi
}
-envHooks+=(addGuileLibPath)
+addEnvHooks "$hostOffset" addGuileLibPath
diff --git a/pkgs/development/interpreters/guile/setup-hook.sh b/pkgs/development/interpreters/guile/setup-hook.sh
index c1d19e579ed..bf04fee1e89 100644
--- a/pkgs/development/interpreters/guile/setup-hook.sh
+++ b/pkgs/development/interpreters/guile/setup-hook.sh
@@ -5,4 +5,4 @@ addGuileLibPath () {
fi
}
-envHooks+=(addGuileLibPath)
+addEnvHooks "$hostOffset" addGuileLibPath
diff --git a/pkgs/development/interpreters/hy/default.nix b/pkgs/development/interpreters/hy/default.nix
index 3cafd956277..41e5e3d93be 100644
--- a/pkgs/development/interpreters/hy/default.nix
+++ b/pkgs/development/interpreters/hy/default.nix
@@ -2,7 +2,7 @@
pythonPackages.buildPythonApplication rec {
name = "hy-${version}";
- version = "0.12.1";
+ version = "0.13.1";
src = fetchurl {
url = "mirror://pypi/h/hy/${name}.tar.gz";
diff --git a/pkgs/development/interpreters/jruby/default.nix b/pkgs/development/interpreters/jruby/default.nix
index ff192c07286..2224a13ba7c 100644
--- a/pkgs/development/interpreters/jruby/default.nix
+++ b/pkgs/development/interpreters/jruby/default.nix
@@ -36,7 +36,7 @@ jruby = stdenv.mkDerivation rec {
addToSearchPath GEM_PATH \$1/${passthru.gemPath}
}
- envHooks+=(addGemPath)
+ addEnvHooks "$hostOffset" addGemPath
EOF
'';
diff --git a/pkgs/development/interpreters/lua-5/5.2.nix b/pkgs/development/interpreters/lua-5/5.2.nix
index 43e289cd369..0cdc4770a98 100644
--- a/pkgs/development/interpreters/lua-5/5.2.nix
+++ b/pkgs/development/interpreters/lua-5/5.2.nix
@@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
'';
crossAttrs = let
- inherit (hostPlatform) isDarwin isMingw;
+ inherit (hostPlatform) isDarwin isMinGW;
in {
configurePhase = ''
makeFlagsArray=(
@@ -65,10 +65,10 @@ stdenv.mkDerivation rec {
INSTALL_MAN=$out/share/man/man1
V=${luaversion}
R=${version}
- ${if isMingw then "mingw" else stdenv.lib.optionalString isDarwin ''
+ ${if isMinGW then "mingw" else stdenv.lib.optionalString isDarwin ''
''}
)
- '' + stdenv.lib.optionalString isMingw ''
+ '' + stdenv.lib.optionalString isMinGW ''
installFlagsArray=(
TO_BIN="lua.exe luac.exe"
TO_LIB="liblua.a lua52.dll"
diff --git a/pkgs/development/interpreters/lua-5/5.3.nix b/pkgs/development/interpreters/lua-5/5.3.nix
index a512a251313..ad1dfa8823c 100644
--- a/pkgs/development/interpreters/lua-5/5.3.nix
+++ b/pkgs/development/interpreters/lua-5/5.3.nix
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
'';
crossAttrs = let
- inherit (hostPlatform) isDarwin isMingw;
+ inherit (hostPlatform) isDarwin isMinGW;
in {
configurePhase = ''
makeFlagsArray=(
@@ -64,10 +64,10 @@ stdenv.mkDerivation rec {
INSTALL_MAN=$out/share/man/man1
V=${luaversion}
R=${version}
- ${if isMingw then "mingw" else stdenv.lib.optionalString isDarwin ''
+ ${if isMinGW then "mingw" else stdenv.lib.optionalString isDarwin ''
''}
)
- '' + stdenv.lib.optionalString isMingw ''
+ '' + stdenv.lib.optionalString isMinGW ''
installFlagsArray=(
TO_BIN="lua.exe luac.exe"
TO_LIB="liblua.a lua52.dll"
diff --git a/pkgs/development/interpreters/lua-5/sockets.nix b/pkgs/development/interpreters/lua-5/sockets.nix
index b83b920497d..d8a789e9209 100644
--- a/pkgs/development/interpreters/lua-5/sockets.nix
+++ b/pkgs/development/interpreters/lua-5/sockets.nix
@@ -20,6 +20,6 @@ stdenv.mkDerivation rec {
meta = {
homepage = http://w3.impa.br/~diego/software/luasocket/;
hydraPlatforms = stdenv.lib.platforms.linux;
- maintainers = [ stdenv.lib.maintainers.mornfall ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix
index 62c63ef6c5c..14a4bac47f6 100644
--- a/pkgs/development/interpreters/perl/default.nix
+++ b/pkgs/development/interpreters/perl/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurlBoot, enableThreading ? stdenv ? glibc }:
+{ lib, stdenv, fetchurlBoot, buildPackages, enableThreading ? stdenv ? glibc }:
with lib;
@@ -19,7 +19,8 @@ let
libc = if stdenv.cc.libc or null != null then stdenv.cc.libc else "/usr";
libcInc = lib.getDev libc;
libcLib = lib.getLib libc;
- common = { version, sha256 }: stdenv.mkDerivation rec {
+ crossCompiling = stdenv.buildPlatform != stdenv.hostPlatform;
+ common = { version, sha256 }: stdenv.mkDerivation (rec {
name = "perl-${version}";
src = fetchurlBoot {
@@ -50,6 +51,8 @@ let
pwd="$(type -P pwd)"
substituteInPlace dist/PathTools/Cwd.pm \
--replace "/bin/pwd" "$pwd"
+ '' + stdenv.lib.optionalString crossCompiling ''
+ substituteInPlace cnf/configure_tool.sh --replace "cc -E -P" "cc -E"
'';
# Build a thread-safe Perl with a dynamic libperls.o. We need the
@@ -58,8 +61,10 @@ let
# contains the string "perl", Configure would select $out/lib.
# Miniperl needs -lm. perl needs -lrt.
configureFlags =
- [ "-de"
- "-Dcc=cc"
+ (if crossCompiling
+ then [ "-Dlibpth=\"\"" "-Dglibpth=\"\"" ]
+ else [ "-de" "-Dcc=cc" ])
+ ++ [
"-Uinstallusrbinperl"
"-Dinstallstyle=lib/perl5"
"-Duseshrplib"
@@ -69,14 +74,13 @@ let
++ optional stdenv.isSunOS "-Dcc=gcc"
++ optional enableThreading "-Dusethreads";
- configureScript = "${stdenv.shell} ./Configure";
+ configureScript = stdenv.lib.optionalString (!crossCompiling) "${stdenv.shell} ./Configure";
- dontAddPrefix = true;
+ dontAddPrefix = !crossCompiling;
- enableParallelBuilding = true;
+ enableParallelBuilding = !crossCompiling;
- preConfigure =
- ''
+ preConfigure = optionalString (!crossCompiling) ''
configureFlags="$configureFlags -Dprefix=$out -Dman1dir=$out/share/man/man1 -Dman3dir=$out/share/man/man3"
'' + optionalString (stdenv.isArm || stdenv.isMips) ''
configureFlagsArray=(-Dldflags="-lm -lrt")
@@ -121,7 +125,23 @@ let
maintainers = [ maintainers.eelco ];
platforms = platforms.all;
};
- };
+ } // stdenv.lib.optionalAttrs (stdenv.buildPlatform != stdenv.hostPlatform) rec {
+ crossVersion = "1.1.8";
+
+ perl-cross-src = fetchurlBoot {
+ url = "https://github.com/arsv/perl-cross/releases/download/${crossVersion}/perl-cross-${crossVersion}.tar.gz";
+ sha256 = "072j491rpz2qx2sngbg4flqh4lx5865zyql7b9lqm6s1kknjdrh8";
+ };
+
+ nativeBuildInputs = [ buildPackages.stdenv.cc ];
+
+ postUnpack = ''
+ unpackFile ${perl-cross-src}
+ cp -R perl-cross-${crossVersion}/* perl-${version}/
+ '';
+
+ configurePlatforms = [ "build" "host" "target" ];
+ });
in rec {
perl = perl524;
diff --git a/pkgs/development/interpreters/perl/setup-hook.sh b/pkgs/development/interpreters/perl/setup-hook.sh
index a8656b8531d..7909412806c 100644
--- a/pkgs/development/interpreters/perl/setup-hook.sh
+++ b/pkgs/development/interpreters/perl/setup-hook.sh
@@ -2,4 +2,4 @@ addPerlLibPath () {
addToSearchPath PERL5LIB $1/lib/perl5/site_perl
}
-envHooks+=(addPerlLibPath)
+addEnvHooks "$hostOffset" addPerlLibPath
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index db4eb6eaee0..c547e3d8ada 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -4,7 +4,7 @@
, mysql, libxml2, readline, zlib, curl, postgresql, gettext
, openssl, pcre, pkgconfig, sqlite, config, libjpeg, libpng, freetype
, libxslt, libmcrypt, bzip2, icu, openldap, cyrus_sasl, libmhash, freetds
-, uwimap, pam, gmp, apacheHttpd, libiconv, systemd }:
+, uwimap, pam, gmp, apacheHttpd, libiconv, systemd, libsodium }:
let
@@ -12,9 +12,8 @@ let
{ version, sha256 }:
let php7 = lib.versionAtLeast version "7.0";
- mysqlHeaders = mysql.lib.dev or mysql;
mysqlndSupport = config.php.mysqlnd or false;
- mysqlBuildInputs = lib.optional (!mysqlndSupport) mysqlHeaders;
+ mysqlBuildInputs = lib.optional (!mysqlndSupport) mysql.connector-c;
in composableDerivation.composableDerivation {} (fixed: {
@@ -121,7 +120,7 @@ let
};
mysqli = {
- configureFlags = ["--with-mysqli=${if mysqlndSupport then "mysqlnd" else "${mysqlHeaders}/bin/mysql_config"}"];
+ configureFlags = ["--with-mysqli=${if mysqlndSupport then "mysqlnd" else "${mysql.connector-c}/bin/mysql_config"}"];
buildInputs = mysqlBuildInputs;
};
@@ -132,7 +131,7 @@ let
};
pdo_mysql = {
- configureFlags = ["--with-pdo-mysql=${if mysqlndSupport then "mysqlnd" else mysqlHeaders}"];
+ configureFlags = ["--with-pdo-mysql=${if mysqlndSupport then "mysqlnd" else mysql.connector-c}"];
buildInputs = mysqlBuildInputs;
};
@@ -226,6 +225,11 @@ let
calendar = {
configureFlags = ["--enable-calendar"];
};
+
+ sodium = {
+ configureFlags = ["--with-sodium=${libsodium.dev}"];
+ buildInputs = [libsodium];
+ };
};
cfg = {
@@ -265,6 +269,7 @@ let
mssqlSupport = (!php7) && (config.php.mssql or (!stdenv.isDarwin));
ztsSupport = config.php.zts or false;
calendarSupport = config.php.calendar or true;
+ sodiumSupport = (lib.versionAtLeast version "7.2") && config.php.sodium or true;
};
hardeningDisable = [ "bindnow" ];
@@ -333,17 +338,22 @@ let
in {
php56 = generic {
- version = "5.6.32";
- sha256 = "0lfbmdkvijkm6xc4p9sykv66y8xwhws0vsmka8v5cax4bxx4xr1y";
+ version = "5.6.33";
+ sha256 = "1k1ip1slk89hkp57qiqp8k2m5yrg9lx5rja542g87k8xfslrdxh7";
};
php70 = generic {
- version = "7.0.25";
- sha256 = "09fc2lj447phprvilvq2sb6n0r1snj142f8faphrd896s6b4v8lm";
+ version = "7.0.27";
+ sha256 = "0ca174kp2l3fjcp8z0mqnkbjfhijjzz7rs7bkzg1qk2cpdijbylr";
};
php71 = generic {
- version = "7.1.11";
- sha256 = "0ww5493w8w3jlks0xqlfm3v6mm53vpnv5vjy63inkj8zf3gdfikn";
+ version = "7.1.13";
+ sha256 = "18cqry8jy7q9fp82p3n9ndxffyba6f6q3maz3100jq245lfsbz9m";
+ };
+
+ php72 = generic {
+ version = "7.2.1";
+ sha256 = "0ygbcilbp3fiswd240ib2mvnhy0yy0az8kjzpjfd4kca4qzpj1py";
};
}
diff --git a/pkgs/development/interpreters/picoc/default.nix b/pkgs/development/interpreters/picoc/default.nix
index e78b7434719..62ab7b02585 100644
--- a/pkgs/development/interpreters/picoc/default.nix
+++ b/pkgs/development/interpreters/picoc/default.nix
@@ -47,6 +47,5 @@ stdenv.mkDerivation rec {
downloadPage = https://code.google.com/p/picoc/downloads/list;
license = licenses.bsd3;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/interpreters/pixie/default.nix b/pkgs/development/interpreters/pixie/default.nix
index b196af8e3ae..928a5517324 100644
--- a/pkgs/development/interpreters/pixie/default.nix
+++ b/pkgs/development/interpreters/pixie/default.nix
@@ -3,7 +3,7 @@
variant ? "jit", buildWithPypy ? false }:
let
- commit-count = "1356";
+ commit-count = "1364";
common-flags = "--thread --gcrootfinder=shadowstack --continuation";
variants = {
jit = { flags = "--opt=jit"; target = "target.py"; };
@@ -13,8 +13,8 @@ let
};
pixie-src = fetchgit {
url = "https://github.com/pixie-lang/pixie.git";
- rev = "d2a4267ea088f711af36a74928e8dfd8360584ad";
- sha256 = "1asf6yx7zy9cx4bsg8iai57dy3r3m45xcmkmw2vix70xvfy23ryf";
+ rev = "5eb0ccbe8b0087d3a5f2d0bbbc6998d624d3cd62";
+ sha256 = "0pf31x5h2m6dpxlidv98qay1y179qw40cw4cb4v4xa88gmq2f3vm";
};
pypy-tag = "91db1a9";
pypy-src = fetchurl {
@@ -56,30 +56,38 @@ let
RPYTHON="`pwd`/pypy-src/rpython/bin/rpython";
cd pixie-src
$PYTHON $RPYTHON ${common-flags} ${target}
- export LD_LIBRARY_PATH="${library-path}:$LD_LIBRARY_PATH"
find pixie -name "*.pxi" -exec ./pixie-vm -c {} \;
)'';
+ LD_LIBRARY_PATH = library-path;
+ C_INCLUDE_PATH = include-path;
+ LIBRARY_PATH = library-path;
+ PATH = bin-path;
installPhase = ''
mkdir -p $out/share $out/bin
cp pixie-src/pixie-vm $out/share/pixie-vm
cp -R pixie-src/pixie $out/share/pixie
- makeWrapper $out/share/pixie-vm $out/bin/pixie-vm \
- --prefix LD_LIBRARY_PATH : ${library-path} \
- --prefix C_INCLUDE_PATH : ${include-path} \
- --prefix LIBRARY_PATH : ${library-path} \
- --prefix PATH : ${bin-path}
- cat > $out/bin/pxi <&2 echo "[\$\$] WARNING: 'pxi' is a deprecated alias for 'pixie-vm', please update your scripts."
- exec $out/bin/pixie-vm "\$@"
- EOF
- chmod +x $out/bin/pxi
+ makeWrapper $out/share/pixie-vm $out/bin/pixie \
+ --prefix LD_LIBRARY_PATH : ${LD_LIBRARY_PATH} \
+ --prefix C_INCLUDE_PATH : ${C_INCLUDE_PATH} \
+ --prefix LIBRARY_PATH : ${LIBRARY_PATH} \
+ --prefix PATH : ${PATH}
+ '';
+ doCheck = true;
+ checkPhase = ''
+ RES=$(./pixie-src/pixie-vm -e "(print :ok)")
+ if [ "$RES" != ":ok" ]; then
+ echo "ERROR Unexpected output: '$RES'"
+ return 1
+ else
+ echo "$RES"
+ fi
'';
meta = {
description = "A clojure-like lisp, built with the pypy vm toolkit";
homepage = https://github.com/pixie-lang/pixie;
license = stdenv.lib.licenses.lgpl3;
- platforms = ["x86_64-linux" "i686-linux"];
+ platforms = ["x86_64-linux" "i686-linux" "x86_64-darwin"];
+ maintainers = with stdenv.lib.maintainers; [ bendlas ];
};
};
in build (builtins.getAttr variant variants)
diff --git a/pkgs/development/interpreters/pixie/dust.nix b/pkgs/development/interpreters/pixie/dust.nix
index 34b47113193..4a7f3423def 100644
--- a/pkgs/development/interpreters/pixie/dust.nix
+++ b/pkgs/development/interpreters/pixie/dust.nix
@@ -30,6 +30,6 @@ stdenv.mkDerivation rec {
description = "Provides tooling around pixie, e.g. a nicer repl, running tests and fetching dependencies";
homepage = src.meta.homepage;
license = stdenv.lib.licenses.lgpl3;
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
};
}
diff --git a/pkgs/development/interpreters/python/build-python-package-setuptools.nix b/pkgs/development/interpreters/python/build-python-package-setuptools.nix
index a09febb492b..bc512357acd 100644
--- a/pkgs/development/interpreters/python/build-python-package-setuptools.nix
+++ b/pkgs/development/interpreters/python/build-python-package-setuptools.nix
@@ -21,18 +21,18 @@ let
setuppy = ./run_setup.py;
in attrs // {
- # we copy nix_run_setup.py over so it's executed relative to the root of the source
+ # we copy nix_run_setup over so it's executed relative to the root of the source
# many project make that assumption
buildPhase = attrs.buildPhase or ''
runHook preBuild
- cp ${setuppy} nix_run_setup.py
- ${python.interpreter} nix_run_setup.py ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel
+ cp ${setuppy} nix_run_setup
+ ${python.interpreter} nix_run_setup ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel
runHook postBuild
'';
installCheckPhase = attrs.checkPhase or ''
runHook preCheck
- ${python.interpreter} nix_run_setup.py test
+ ${python.interpreter} nix_run_setup test
runHook postCheck
'';
diff --git a/pkgs/development/interpreters/python/cpython/2.7/default.nix b/pkgs/development/interpreters/python/cpython/2.7/default.nix
index 9352bb4d52e..1cb739b4d29 100644
--- a/pkgs/development/interpreters/python/cpython/2.7/default.nix
+++ b/pkgs/development/interpreters/python/cpython/2.7/default.nix
@@ -227,7 +227,7 @@ in stdenv.mkDerivation {
'';
license = stdenv.lib.licenses.psfl;
platforms = stdenv.lib.platforms.all;
- maintainers = with stdenv.lib.maintainers; [ chaoflow domenkozar ];
+ maintainers = with stdenv.lib.maintainers; [ fridh ];
# Higher priority than Python 3.x so that `/bin/python` points to `/bin/python2`
# in case both 2 and 3 are installed.
priority = -100;
diff --git a/pkgs/development/interpreters/python/cpython/3.4/default.nix b/pkgs/development/interpreters/python/cpython/3.4/default.nix
index 5c13035be1b..2e8a95e7329 100644
--- a/pkgs/development/interpreters/python/cpython/3.4/default.nix
+++ b/pkgs/development/interpreters/python/cpython/3.4/default.nix
@@ -185,6 +185,6 @@ in stdenv.mkDerivation {
'';
license = licenses.psfl;
platforms = with platforms; linux ++ darwin;
- maintainers = with maintainers; [ chaoflow domenkozar cstrahan ];
+ maintainers = with maintainers; [ fridh ];
};
}
diff --git a/pkgs/development/interpreters/python/cpython/3.5/default.nix b/pkgs/development/interpreters/python/cpython/3.5/default.nix
index 951cb367528..eb8d0a2df38 100644
--- a/pkgs/development/interpreters/python/cpython/3.5/default.nix
+++ b/pkgs/development/interpreters/python/cpython/3.5/default.nix
@@ -178,6 +178,6 @@ in stdenv.mkDerivation {
'';
license = licenses.psfl;
platforms = with platforms; linux ++ darwin;
- maintainers = with maintainers; [ chaoflow domenkozar cstrahan ];
+ maintainers = with maintainers; [ fridh ];
};
}
diff --git a/pkgs/development/interpreters/python/cpython/3.6/default.nix b/pkgs/development/interpreters/python/cpython/3.6/default.nix
index d5ac94c76e6..f48f2c19026 100644
--- a/pkgs/development/interpreters/python/cpython/3.6/default.nix
+++ b/pkgs/development/interpreters/python/cpython/3.6/default.nix
@@ -178,6 +178,6 @@ in stdenv.mkDerivation {
'';
license = licenses.psfl;
platforms = with platforms; linux ++ darwin;
- maintainers = with maintainers; [ chaoflow domenkozar cstrahan kragniz ];
+ maintainers = with maintainers; [ fridh kragniz ];
};
}
diff --git a/pkgs/development/interpreters/python/mk-python-derivation.nix b/pkgs/development/interpreters/python/mk-python-derivation.nix
index 5f7348ac825..d9cff16f448 100644
--- a/pkgs/development/interpreters/python/mk-python-derivation.nix
+++ b/pkgs/development/interpreters/python/mk-python-derivation.nix
@@ -13,7 +13,10 @@
{ name ? "${attrs.pname}-${attrs.version}"
-# Dependencies for building the package
+# Build-time dependencies for the package
+, nativeBuildInputs ? []
+
+# Run-time dependencies for the package
, buildInputs ? []
# Dependencies needed for running the checkPhase.
@@ -66,13 +69,15 @@ toPythonModule (python.stdenv.mkDerivation (builtins.removeAttrs attrs [
name = namePrefix + name;
- buildInputs = ([ wrapPython (ensureNewerSourcesHook { year = "1980"; }) ]
- ++ (lib.optional (lib.hasSuffix "zip" attrs.src.name or "") unzip)
+ nativeBuildInputs = [ (ensureNewerSourcesHook { year = "1980"; }) ]
+ ++ nativeBuildInputs;
+
+ buildInputs = [ wrapPython ]
+ ++ lib.optional (lib.hasSuffix "zip" (attrs.src.name or "")) unzip
++ lib.optionals doCheck checkInputs
- ++ lib.optional catchConflicts setuptools # If we nog longer propagate setuptools
+ ++ lib.optional catchConflicts setuptools # If we no longer propagate setuptools
++ buildInputs
- ++ pythonPath
- );
+ ++ pythonPath;
# Propagate python and setuptools. We should stop propagating setuptools.
propagatedBuildInputs = propagatedBuildInputs ++ [ python setuptools ];
diff --git a/pkgs/development/interpreters/python/pypy/2.7/default.nix b/pkgs/development/interpreters/python/pypy/2.7/default.nix
index aea389d160f..e68cfc3148f 100644
--- a/pkgs/development/interpreters/python/pypy/2.7/default.nix
+++ b/pkgs/development/interpreters/python/pypy/2.7/default.nix
@@ -10,7 +10,7 @@
assert zlibSupport -> zlib != null;
let
- majorVersion = "5.9";
+ majorVersion = "5.10";
minorVersion = "0";
minorVersionSuffix = "";
pythonVersion = "2.7";
@@ -26,7 +26,7 @@ in stdenv.mkDerivation rec {
src = fetchurl {
url = "https://bitbucket.org/pypy/pypy/get/release-pypy${pythonVersion}-v${version}.tar.bz2";
- sha256 = "1q3kcnniyvnca1l7x10mbhp4xwjr03ajh2h8j6cbdllci38zdjy1";
+ sha256 = "10j1s6r6iv80nvpi6gv8w05v505h2ndj9xx31yz7d50ab04dfg23";
};
nativeBuildInputs = [ pkgconfig makeWrapper ];
@@ -79,17 +79,6 @@ in stdenv.mkDerivation rec {
setupHook = python-setup-hook sitePackages;
- postBuild = ''
- pushd ./lib_pypy
- ../pypy-c ./_audioop_build.py
- ../pypy-c ./_curses_build.py
- ../pypy-c ./_pwdgrp_build.py
- ../pypy-c ./_sqlite3_build.py
- ../pypy-c ./_syslog_build.py
- ../pypy-c ./_tkinter/tklib_build.py
- popd
- '';
-
doCheck = true;
checkPhase = ''
export TERMINFO="${ncurses.out}/share/terminfo/";
@@ -149,7 +138,7 @@ in stdenv.mkDerivation rec {
homepage = http://pypy.org/;
description = "Fast, compliant alternative implementation of the Python language (2.7.13)";
license = licenses.mit;
- platforms = platforms.linux;
- maintainers = with maintainers; [ domenkozar ];
+ platforms = [ "i686-linux" "x86_64-linux" ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/interpreters/python/setup-hook.sh b/pkgs/development/interpreters/python/setup-hook.sh
index dda9bed39f8..77ec9e9ac0b 100644
--- a/pkgs/development/interpreters/python/setup-hook.sh
+++ b/pkgs/development/interpreters/python/setup-hook.sh
@@ -12,10 +12,13 @@ toPythonPath() {
echo $result
}
-envHooks+=(addPythonPath)
+addEnvHooks "$hostOffset" addPythonPath
# Determinism: The interpreter is patched to write null timestamps when compiling python files.
# This way python doesn't try to update them when we freeze timestamps in nix store.
export DETERMINISTIC_BUILD=1;
# Determinism: We fix the hashes of str, bytes and datetime objects.
export PYTHONHASHSEED=0;
+# Determinism. Whenever Python is included, it should not check user site-packages.
+# This option is only relevant when the sandbox is disabled.
+export PYTHONNOUSERSITE=1;
diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix
index f949e16321d..2397cce97ea 100644
--- a/pkgs/development/interpreters/racket/default.nix
+++ b/pkgs/development/interpreters/racket/default.nix
@@ -33,11 +33,11 @@ in
stdenv.mkDerivation rec {
name = "racket-${version}";
- version = "6.11";
+ version = "6.12";
src = fetchurl {
url = "https://mirror.racket-lang.org/installers/${version}/${name}-src.tgz";
- sha256 = "1nk7705x24jjlbqqhj8yvbgqkfscxx3m81bry1g56kjxysjmf3sw";
+ sha256 = "0cwcypzjfl9py1s695mhqkiapff7c1w29llsmdj7qgn58wl0apk5";
};
FONTCONFIG_FILE = fontsConf;
diff --git a/pkgs/development/interpreters/ruby/default.nix b/pkgs/development/interpreters/ruby/default.nix
index d664c00bc31..9d82810900f 100644
--- a/pkgs/development/interpreters/ruby/default.nix
+++ b/pkgs/development/interpreters/ruby/default.nix
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchurl, fetchpatch, fetchFromSavannah, fetchFromGitHub
, zlib, openssl, gdbm, ncurses, readline, groff, libyaml, libffi, autoreconfHook, bison
, autoconf, darwin ? null
-, buildEnv, bundler, bundix
+, buildEnv, bundler, bundix, Foundation
} @ args:
let
@@ -27,6 +27,7 @@ let
tag = ver.gitTag;
isRuby20 = ver.majMin == "2.0";
isRuby21 = ver.majMin == "2.1";
+ isRuby25 = ver.majMin == "2.5";
baseruby = self.override { useRailsExpress = false; };
self = lib.makeOverridable (
{ stdenv, lib, fetchurl, fetchpatch, fetchFromSavannah, fetchFromGitHub
@@ -40,7 +41,7 @@ let
, libffi, fiddleSupport ? true
, autoreconfHook, bison, autoconf
, darwin ? null
- , buildEnv, bundler, bundix
+ , buildEnv, bundler, bundix, Foundation
}:
let rubySrc =
if useRailsExpress then fetchFromGitHub {
@@ -75,11 +76,13 @@ let
++ (op opensslSupport openssl)
++ (op gdbmSupport gdbm)
++ (op yamlSupport libyaml)
+ ++ (op isRuby25 autoconf)
# Looks like ruby fails to build on darwin without readline even if curses
# support is not enabled, so add readline to the build inputs if curses
# support is disabled (if it's enabled, we already have it) and we're
# running on darwin
++ (op (!cursesSupport && stdenv.isDarwin) readline)
+ ++ (op (isRuby25 && stdenv.isDarwin) Foundation)
++ (ops stdenv.isDarwin (with darwin; [ libiconv libobjc libunwind ]));
enableParallelBuilding = true;
@@ -106,6 +109,11 @@ let
cp ${config}/config.guess tool/
cp ${config}/config.sub tool/
''
+ else if isRuby25 then ''
+ sed -i configure.ac -e '/config.guess/d'
+ cp ${config}/config.guess tool/
+ cp ${config}/config.sub tool/
+ ''
else opString useRailsExpress ''
sed -i configure.in -e '/config.guess/d'
cp ${config}/config.guess tool/
@@ -142,7 +150,7 @@ let
addToSearchPath GEM_PATH \$1/${passthru.gemPath}
}
- envHooks+=(addGemPath)
+ addEnvHooks "$hostOffset" addGemPath
EOF
'' + opString useRailsExpress ''
rbConfig=$(find $out/lib/ruby -name rbconfig.rb)
@@ -197,27 +205,35 @@ in {
};
};
- ruby_2_2_8 = generic {
- version = rubyVersion "2" "2" "8" "";
+ ruby_2_2_9 = generic {
+ version = rubyVersion "2" "2" "9" "";
sha256 = {
- src = "12i6v5i0djl4xx3x7fq12snqb5d4drqjmnwqs05fby4bagcbjdwg";
- git = "16nw0795nhrj13crp5x4jis8hmi3gsyjl96pwk698wlrb89lf9bw";
+ src = "19m1ximl7vcrsvq595dgrjh4yb6kar944095wbywqh7waiqcfirg";
+ git = "03qrjh55098wcqh2khxryzkzfqkznjrcdgwf27r2bgcycbg5ca5q";
};
};
- ruby_2_3_5 = generic {
- version = rubyVersion "2" "3" "5" "";
+ ruby_2_3_6 = generic {
+ version = rubyVersion "2" "3" "6" "";
sha256 = {
- src = "1k6x4g68lq30i0myip5bn56rcbwjxmqq95j1fkdgbvwbnaxzfqjl";
- git = "0spwqz4b5xxqzs13azsd4xz4jkc3is7d9q4s6s2qilb8ib4863jl";
+ src = "07jpa7fw1gyf069m7alf2b0zm53qm08w2ns45mhzmvgrg4r528l3";
+ git = "1bk59i0ygdc5z3zz3k6indfrxd2ix55np6rwvkcdpdw8svm749ds";
};
};
- ruby_2_4_2 = generic {
- version = rubyVersion "2" "4" "2" "";
+ ruby_2_4_3 = generic {
+ version = rubyVersion "2" "4" "3" "";
sha256 = {
- src = "174cdiz3am1f76vsnm3iqi9c5vqphypbf9kbxx6vqqmj01gfgfck";
- git = "1w83kzak3m6vv3k09ynfw9vpgc7vpmij3x3zmgrhwm4ds1sp5irl";
+ src = "161smb52q19r9lrzy22b3bhnkd0z8wjffm0qsfkml14j5ic7a0zx";
+ git = "0x2lqbqm2rq9j5zh1p72dma56nqvdkfbgzb9wybm4y4hwhiw8c1m";
+ };
+ };
+
+ ruby_2_5_0 = generic {
+ version = rubyVersion "2" "5" "0" "";
+ sha256 = {
+ src = "1azj0d2lzziw6iml7bx3sxpxzcdmfwfq3yhm7djyp20q1xiz7rj6";
+ git = "0d436nqmp3ykdkp4sck5bb8sf3qvx30x1p58xh8axv66mvsyc2jd";
};
};
}
diff --git a/pkgs/development/interpreters/ruby/patchsets.nix b/pkgs/development/interpreters/ruby/patchsets.nix
index 3d3b17cd2f7..55f4a9ef237 100644
--- a/pkgs/development/interpreters/ruby/patchsets.nix
+++ b/pkgs/development/interpreters/ruby/patchsets.nix
@@ -24,19 +24,24 @@ rec {
"${patchSet}/patches/ruby/2.1.8/railsexpress/08-funny-falcon-method-cache.patch"
"${patchSet}/patches/ruby/2.1.8/railsexpress/09-heap-dump-support.patch"
];
- "2.2.8" = ops useRailsExpress [
+ "2.2.9" = ops useRailsExpress [
"${patchSet}/patches/ruby/2.2/head/railsexpress/01-zero-broken-tests.patch"
"${patchSet}/patches/ruby/2.2/head/railsexpress/02-improve-gc-stats.patch"
"${patchSet}/patches/ruby/2.2/head/railsexpress/03-display-more-detailed-stack-trace.patch"
];
- "2.3.5" = ops useRailsExpress [
+ "2.3.6" = ops useRailsExpress [
"${patchSet}/patches/ruby/2.3/head/railsexpress/01-skip-broken-tests.patch"
"${patchSet}/patches/ruby/2.3/head/railsexpress/02-improve-gc-stats.patch"
"${patchSet}/patches/ruby/2.3/head/railsexpress/03-display-more-detailed-stack-trace.patch"
];
- "2.4.2" = ops useRailsExpress [
+ "2.4.3" = ops useRailsExpress [
"${patchSet}/patches/ruby/2.4/head/railsexpress/01-skip-broken-tests.patch"
"${patchSet}/patches/ruby/2.4/head/railsexpress/02-improve-gc-stats.patch"
"${patchSet}/patches/ruby/2.4/head/railsexpress/03-display-more-detailed-stack-trace.patch"
];
+ "2.5.0" = ops useRailsExpress [
+ "${patchSet}/patches/ruby/2.5/head/railsexpress/01-fix-broken-tests-caused-by-ad.patch"
+ "${patchSet}/patches/ruby/2.5/head/railsexpress/02-improve-gc-stats.patch"
+ "${patchSet}/patches/ruby/2.5/head/railsexpress/03-more-detailed-stacktrace.patch"
+ ];
}
diff --git a/pkgs/development/interpreters/ruby/rvm-patchsets.nix b/pkgs/development/interpreters/ruby/rvm-patchsets.nix
index c60d6e3728d..1598cbc56e1 100644
--- a/pkgs/development/interpreters/ruby/rvm-patchsets.nix
+++ b/pkgs/development/interpreters/ruby/rvm-patchsets.nix
@@ -3,6 +3,6 @@
fetchFromGitHub {
owner = "skaes";
repo = "rvm-patchsets";
- rev = "15f5df0fba0e2fb489856b5bdb67a52fb9745f94";
- sha256 = "0vdgr7xp3gbmsyaz4q78qlbwmp006b1gkgj0kwi6h8d80dclbzny";
+ rev = "ba5a3c6f972e1b957b4b3fe28b5730ef0e27bff3";
+ sha256 = "0sjmhhb8hshxa58x062j44w0xdck8ykgpsg33wjr0wv9npwpkwrz";
}
diff --git a/pkgs/development/interpreters/supercollider/default.nix b/pkgs/development/interpreters/supercollider/default.nix
index 642fd928f41..19abfe1cea2 100644
--- a/pkgs/development/interpreters/supercollider/default.nix
+++ b/pkgs/development/interpreters/supercollider/default.nix
@@ -9,12 +9,12 @@ in
stdenv.mkDerivation rec {
name = "supercollider-${version}";
- version = "3.8.0";
+ version = "3.8.1";
src = fetchurl {
url = "https://github.com/supercollider/supercollider/releases/download/Version-${version}/SuperCollider-${version}-Source-linux.tar.bz2";
- sha256 = "053b2xc2x1sczvlb41w6iciqlwy0zyfiv3jrynx4f8jgd6mizsm6";
+ sha256 = "1y8yb20k3lvj7c93qz2srrkvfv175n4n7p3qj89w0dp085mj0qmw";
};
hardeningDisable = [ "stackprotector" ];
diff --git a/pkgs/development/libraries/CGAL/default.nix b/pkgs/development/libraries/CGAL/default.nix
index e4eb8d3ab2e..46cdf3a47c6 100644
--- a/pkgs/development/libraries/CGAL/default.nix
+++ b/pkgs/development/libraries/CGAL/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, cmake, boost, gmp, mpfr }:
stdenv.mkDerivation rec {
- version = "4.9";
+ version = "4.11";
name = "cgal-" + version;
src = fetchFromGitHub {
owner = "CGAL";
repo = "releases";
rev = "CGAL-${version}";
- sha256 = "044amgml1x5h17rpkck2azmxrmjvlzzykv71cjh5hlajsi88cid5";
+ sha256 = "126r06aba5h8l73xmm5mwmxkir7sy122jn2j18cd4gz3z9p23npr";
};
# note: optional component libCGAL_ImageIO would need zlib and opengl;
diff --git a/pkgs/development/libraries/SDL/setup-hook.sh b/pkgs/development/libraries/SDL/setup-hook.sh
index 3696e743a07..20382f18f52 100644
--- a/pkgs/development/libraries/SDL/setup-hook.sh
+++ b/pkgs/development/libraries/SDL/setup-hook.sh
@@ -4,8 +4,4 @@ addSDLPath () {
fi
}
-if test -n "$crossConfig"; then
- crossEnvHooks+=(addSDLPath)
-else
- envHooks+=(addSDLPath)
-fi
+addEnvHooks "$hostOffset" addSDLPath
diff --git a/pkgs/development/libraries/SDL2/setup-hook.sh b/pkgs/development/libraries/SDL2/setup-hook.sh
index 5a26440f37b..3acce9d473c 100644
--- a/pkgs/development/libraries/SDL2/setup-hook.sh
+++ b/pkgs/development/libraries/SDL2/setup-hook.sh
@@ -4,8 +4,4 @@ addSDL2Path () {
fi
}
-if test -n "$crossConfig"; then
- crossEnvHooks+=(addSDL2Path)
-else
- envHooks+=(addSDL2Path)
-fi
+addEnvHooks "$hostOffset" addSDL2Path
diff --git a/pkgs/development/libraries/SDL2_gfx/default.nix b/pkgs/development/libraries/SDL2_gfx/default.nix
index a7ef0290734..a630e9cead8 100644
--- a/pkgs/development/libraries/SDL2_gfx/default.nix
+++ b/pkgs/development/libraries/SDL2_gfx/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, SDL2 }:
+{ stdenv, darwin, fetchurl, SDL2 }:
stdenv.mkDerivation rec {
name = "SDL2_gfx-${version}";
@@ -9,7 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "16jrijzdp095qf416zvj9gs2fqqn6zkyvlxs5xqybd0ip37cp6yn";
};
- buildInputs = [ SDL2 ];
+ buildInputs = [ SDL2 ]
+ ++ stdenv.lib.optional stdenv.isDarwin darwin.libobjc;
configureFlags = if stdenv.isi686 || stdenv.isx86_64 then "--enable-mmx" else "--disable-mmx";
@@ -38,6 +39,6 @@ stdenv.mkDerivation rec {
license = licenses.zlib;
maintainers = with maintainers; [ bjg ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/SDL2_mixer/default.nix b/pkgs/development/libraries/SDL2_mixer/default.nix
index 6eada0c83e5..00251adb915 100644
--- a/pkgs/development/libraries/SDL2_mixer/default.nix
+++ b/pkgs/development/libraries/SDL2_mixer/default.nix
@@ -1,5 +1,6 @@
{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig, which
, SDL2, libogg, libvorbis, smpeg2, flac, libmodplug
+, CoreServices, AudioUnit, AudioToolbox
, enableNativeMidi ? false, fluidsynth ? null }:
stdenv.mkDerivation rec {
@@ -17,6 +18,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook pkgconfig which ];
+ buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices AudioUnit AudioToolbox ];
+
propagatedBuildInputs = [ SDL2 libogg libvorbis fluidsynth smpeg2 flac libmodplug ];
configureFlags = [ "--disable-music-ogg-shared" ]
@@ -24,7 +27,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "SDL multi-channel audio mixer library";
- platforms = platforms.linux;
+ platforms = platforms.unix;
homepage = https://www.libsdl.org/projects/SDL_mixer/;
maintainers = with maintainers; [ MP2E ];
license = licenses.zlib;
diff --git a/pkgs/development/libraries/SDL2_net/default.nix b/pkgs/development/libraries/SDL2_net/default.nix
index cf81fc0cac8..780444d51f4 100644
--- a/pkgs/development/libraries/SDL2_net/default.nix
+++ b/pkgs/development/libraries/SDL2_net/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, SDL2 }:
+{ stdenv, darwin, fetchurl, SDL2 }:
stdenv.mkDerivation rec {
name = "SDL2_net-${version}";
@@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
sha256 = "08cxc1bicmyk89kiks7izw1rlx5ng5n6xpy8fy0zxni3b9z8mkhm";
};
+ buildInputs = stdenv.lib.optional stdenv.isDarwin darwin.libobjc;
+
propagatedBuildInputs = [ SDL2 ];
meta = with stdenv.lib; {
@@ -16,6 +18,6 @@ stdenv.mkDerivation rec {
homepage = https://www.libsdl.org/projects/SDL_net;
license = licenses.zlib;
maintainers = with maintainers; [ MP2E ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/SDL2_ttf/default.nix b/pkgs/development/libraries/SDL2_ttf/default.nix
index 010ca46695a..87436119ef4 100644
--- a/pkgs/development/libraries/SDL2_ttf/default.nix
+++ b/pkgs/development/libraries/SDL2_ttf/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, SDL2, freetype, mesa_noglu }:
+{ stdenv, darwin, fetchurl, SDL2, freetype, mesa_noglu }:
stdenv.mkDerivation rec {
name = "SDL2_ttf-${version}";
@@ -9,11 +9,12 @@ stdenv.mkDerivation rec {
sha256 = "0xljwcpvd2knrjdfag5b257xqayplz55mqlszrqp0kpnphh5xnrl";
};
- buildInputs = [ SDL2 freetype mesa_noglu ];
+ buildInputs = [ SDL2 freetype mesa_noglu ]
+ ++ stdenv.lib.optional stdenv.isDarwin darwin.libobjc;
meta = with stdenv.lib; {
description = "SDL TrueType library";
- platforms = platforms.linux;
+ platforms = platforms.unix;
license = licenses.zlib;
homepage = https://www.libsdl.org/projects/SDL_ttf/;
};
diff --git a/pkgs/development/libraries/Xaw3d/default.nix b/pkgs/development/libraries/Xaw3d/default.nix
index 8cadc7290aa..07d256f4f57 100644
--- a/pkgs/development/libraries/Xaw3d/default.nix
+++ b/pkgs/development/libraries/Xaw3d/default.nix
@@ -4,9 +4,9 @@ stdenv.mkDerivation {
name = "Xaw3d-1.6.2";
src = fetchurl {
urls = [
- ftp://ftp.x.org/pub/xorg/individual/lib/libXaw3d-1.6.tar.bz2
+ ftp://ftp.x.org/pub/xorg/individual/lib/libXaw3d-1.6.2.tar.bz2
];
- sha256 = "099kx6ni5vkgr3kf40glif8m6r1m1hq6hxqlqrblaj1w5cphh8hi";
+ sha256 = "0awplv1nf53ywv01yxphga3v6dcniwqnxgnb0cn4khb121l12kxp";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [imake gccmakedep libXpm libXp bison flex];
diff --git a/pkgs/development/libraries/accounts-qt/default.nix b/pkgs/development/libraries/accounts-qt/default.nix
index e45a9f2f387..e7a90e40548 100644
--- a/pkgs/development/libraries/accounts-qt/default.nix
+++ b/pkgs/development/libraries/accounts-qt/default.nix
@@ -25,7 +25,6 @@ stdenv.mkDerivation rec {
description = "Qt library for accessing the online accounts database";
homepage = https://gitlab.com/accounts-sso;
license = licenses.lgpl21;
- maintainers = with maintainers; [ nckx ];
platforms = with platforms; linux;
};
}
diff --git a/pkgs/development/libraries/alembic/default.nix b/pkgs/development/libraries/alembic/default.nix
index bd540cdd500..a185f19a9a1 100644
--- a/pkgs/development/libraries/alembic/default.nix
+++ b/pkgs/development/libraries/alembic/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, unzip, cmake, openexr, hdf5 }:
+{ stdenv, fetchFromGitHub, unzip, cmake, openexr, hdf5-threadsafe }:
stdenv.mkDerivation rec
{
@@ -14,7 +14,8 @@ stdenv.mkDerivation rec
outputs = [ "bin" "dev" "out" "lib" ];
- buildInputs = [ unzip cmake openexr hdf5 ];
+ nativeBuildInputs = [ unzip cmake ];
+ buildInputs = [ openexr hdf5-threadsafe ];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/apr-util/default.nix b/pkgs/development/libraries/apr-util/default.nix
index 3251693f574..7e7864cef52 100644
--- a/pkgs/development/libraries/apr-util/default.nix
+++ b/pkgs/development/libraries/apr-util/default.nix
@@ -13,11 +13,11 @@ assert ldapSupport -> openldap != null;
with stdenv.lib;
stdenv.mkDerivation rec {
- name = "apr-util-1.6.0";
+ name = "apr-util-1.6.1";
src = fetchurl {
url = "mirror://apache/apr/${name}.tar.bz2";
- sha256 = "0k6a90d67xl36brz69s7adgkswjmw7isnjblm1naqmjblwzwjx44";
+ sha256 = "0nq3s1yn13vplgl6qfm09f7n0wm08malff9s59bqf9nid9xjzqfk";
};
patches = optional stdenv.isFreeBSD ./include-static-dependencies.patch;
diff --git a/pkgs/development/libraries/apr/default.nix b/pkgs/development/libraries/apr/default.nix
index 9abf48289ae..ecdeb35f6ed 100644
--- a/pkgs/development/libraries/apr/default.nix
+++ b/pkgs/development/libraries/apr/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "apr-1.6.2";
+ name = "apr-1.6.3";
src = fetchurl {
url = "mirror://apache/apr/${name}.tar.bz2";
- sha256 = "1gffipa87pflvgvw01dbkvgh75p8n2sr56m1pcl01avv6zm9q409";
+ sha256 = "0wiik6amxn6lkc55fv9yz5i3kbxnqbp36alrzabx1avsdp8hc7qk";
};
patches = stdenv.lib.optionals stdenv.isDarwin [ ./is-this-a-compiler-bug.patch ];
diff --git a/pkgs/development/libraries/aspell/dictionaries.nix b/pkgs/development/libraries/aspell/dictionaries.nix
index fc6b47e8a63..8d97d6db2f1 100644
--- a/pkgs/development/libraries/aspell/dictionaries.nix
+++ b/pkgs/development/libraries/aspell/dictionaries.nix
@@ -212,6 +212,15 @@ in {
};
};
+ tr = buildDict {
+ shortName = "tr-0.50-0";
+ fullName = "Turkish";
+ src = fetchurl {
+ url = mirror://gnu/aspell/dict/tr/aspell-tr-0.50-0.tar.bz2;
+ sha256 = "0jpvpm96ga7s7rmsm6rbyrrr22b2dicxv2hy7ysv5y7bbq757ihb";
+ };
+ };
+
uk = buildDict {
shortName = "uk-1.4.0-0";
fullName = "Ukrainian";
diff --git a/pkgs/development/libraries/atk/default.nix b/pkgs/development/libraries/atk/default.nix
index 61c18837782..f7d3887cc18 100644
--- a/pkgs/development/libraries/atk/default.nix
+++ b/pkgs/development/libraries/atk/default.nix
@@ -18,13 +18,11 @@ stdenv.mkDerivation rec {
buildInputs = libintlOrEmpty;
- nativeBuildInputs = [ pkgconfig perl ];
+ nativeBuildInputs = [ pkgconfig perl gobjectIntrospection ];
propagatedBuildInputs = [
# Required by atk.pc
glib
- # TODO: Why propagate?
- gobjectIntrospection
];
doCheck = true;
diff --git a/pkgs/development/libraries/audiofile/default.nix b/pkgs/development/libraries/audiofile/default.nix
index 80aae344dcd..182471acf4a 100644
--- a/pkgs/development/libraries/audiofile/default.nix
+++ b/pkgs/development/libraries/audiofile/default.nix
@@ -5,7 +5,7 @@ let
fetchDebianPatch = { name, debname, sha256 }:
fetchpatch {
inherit sha256 name;
- url = "https://anonscm.debian.org/cgit/pkg-multimedia/audiofile.git/plain/debian/patches/${debname}?h=debian/0.3.6-4";
+ url = "https://salsa.debian.org/multimedia-team/audiofile/raw/debian/0.3.6-4/debian/patches/${debname}";
};
in
diff --git a/pkgs/development/libraries/aws-sdk-cpp/default.nix b/pkgs/development/libraries/aws-sdk-cpp/default.nix
index 40df40480f3..47d9e7dba4c 100644
--- a/pkgs/development/libraries/aws-sdk-cpp/default.nix
+++ b/pkgs/development/libraries/aws-sdk-cpp/default.nix
@@ -28,7 +28,8 @@ in stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
separateDebugInfo = stdenv.isLinux;
- buildInputs = [ cmake curl ];
+ nativeBuildInputs = [ cmake curl ];
+ buildInputs = [ zlib curl openssl ];
cmakeFlags =
lib.optional (!customMemoryManagement) "-DCUSTOM_MEMORY_MANAGEMENT=0"
@@ -51,10 +52,6 @@ in stdenv.mkDerivation rec {
rm aws-cpp-sdk-core-tests/aws/auth/AWSCredentialsProviderTest.cpp
'';
- NIX_LDFLAGS = lib.concatStringsSep " " (
- (map (pkg: "-rpath ${lib.getOutput "lib" pkg}/lib"))
- [ curl openssl zlib stdenv.cc.cc ]);
-
meta = {
description = "A C++ interface for Amazon Web Services";
homepage = https://github.com/awslabs/aws-sdk-cpp;
diff --git a/pkgs/development/libraries/babl/default.nix b/pkgs/development/libraries/babl/default.nix
index 04e714f886e..f7788eb93cb 100644
--- a/pkgs/development/libraries/babl/default.nix
+++ b/pkgs/development/libraries/babl/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "babl-0.1.38";
+ name = "babl-0.1.42";
src = fetchurl {
url = "http://ftp.gtk.org/pub/babl/0.1/${name}.tar.bz2";
- sha256 = "11pfbyzq20596p9sgwraxspg3djg1jzz6wvz4bapf0yyr97jiyd0";
+ sha256 = "1wc7fyj9bfqfiwf1w33g3vv3wcl18pd9cxr9fc0iy391szrsynb8";
};
doCheck = true;
diff --git a/pkgs/development/libraries/bobcat/default.nix b/pkgs/development/libraries/bobcat/default.nix
index 9805930c7bf..dd7d6a34867 100644
--- a/pkgs/development/libraries/bobcat/default.nix
+++ b/pkgs/development/libraries/bobcat/default.nix
@@ -39,6 +39,5 @@ stdenv.mkDerivation rec {
homepage = https://fbb-git.github.io/bobcat/;
license = licenses.gpl3;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix
index 421d7072397..b79900288c9 100644
--- a/pkgs/development/libraries/boehm-gc/default.nix
+++ b/pkgs/development/libraries/boehm-gc/default.nix
@@ -3,11 +3,15 @@
}:
stdenv.mkDerivation rec {
- name = "boehm-gc-7.6.0";
+ name = "boehm-gc-${version}";
+ version = "7.6.2";
src = fetchurl {
- url = http://www.hboehm.info/gc/gc_source/gc-7.6.0.tar.gz;
- sha256 = "143x7g0d0k6250ai6m2x3l4y352mzizi4wbgrmahxscv2aqjhjm1";
+ urls = [
+ "http://www.hboehm.info/gc/gc_source/gc-${version}.tar.gz"
+ "https://github.com/ivmai/bdwgc/releases/download/v${version}/gc-${version}.tar.gz"
+ ];
+ sha256 = "07nli9hgdzc09qzw169sn7gchkrn5kqgyniv2rspcy1xaq2j04dx";
};
buildInputs = [ libatomic_ops ];
@@ -20,17 +24,11 @@ stdenv.mkDerivation rec {
[ "--enable-cplusplus" ]
++ lib.optional enableLargeConfig "--enable-large-config";
- doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
+ doCheck = true; # not cross;
# Don't run the native `strip' when cross-compiling.
dontStrip = hostPlatform != buildPlatform;
- postInstall =
- ''
- mkdir -p $out/share/doc
- mv $out/share/gc $out/share/doc/gc
- '';
-
enableParallelBuilding = true;
meta = {
diff --git a/pkgs/development/libraries/boost/1.59.nix b/pkgs/development/libraries/boost/1.59.nix
index 2666b1d6c5d..603d7883c64 100644
--- a/pkgs/development/libraries/boost/1.59.nix
+++ b/pkgs/development/libraries/boost/1.59.nix
@@ -8,33 +8,33 @@ callPackage ./generic.nix (args // rec {
sha256 = "1jj1aai5rdmd72g90a3pd8sw9vi32zad46xv5av8fhnr48ir6ykj";
};
- patches = if stdenv.isCygwin then [
- ./cygwin-fedora-boost-1.50.0-fix-non-utf8-files.patch
- ./cygwin-fedora-boost-1.50.0-pool.patch
- ./cygwin-fedora-boost-1.57.0-mpl-print.patch
- ./cygwin-fedora-boost-1.57.0-spirit-unused_typedef.patch
- ./cygwin-fedora-boost-1.54.0-locale-unused_typedef.patch
- ./cygwin-fedora-boost-1.54.0-python-unused_typedef.patch
- ./cygwin-fedora-boost-1.57.0-pool-test_linking.patch
- ./cygwin-fedora-boost-1.54.0-pool-max_chunks_shadow.patch
- ./cygwin-fedora-boost-1.57.0-signals2-weak_ptr.patch
- ./cygwin-fedora-boost-1.57.0-uuid-comparison.patch
- ./cygwin-fedora-boost-1.57.0-move-is_class.patch
- ./cygwin-1.40.0-cstdint-cygwin.patch
- ./cygwin-1.57.0-asio-cygwin.patch
- ./cygwin-1.55.0-asio-MSG_EOR.patch
- ./cygwin-1.57.0-config-cygwin.patch
- ./cygwin-1.57.0-context-cygwin.patch
- ./cygwin-1.57.0-filesystem-cygwin.patch
- ./cygwin-1.55.0-interlocked-cygwin.patch
- ./cygwin-1.40.0-iostreams-cygwin.patch
- ./cygwin-1.57.0-locale-cygwin.patch
- ./cygwin-1.57.0-log-cygwin.patch
- ./cygwin-1.40.0-python-cygwin.patch
- ./cygwin-1.40.0-regex-cygwin.patch
- ./cygwin-1.57.0-smart_ptr-cygwin.patch
- ./cygwin-1.57.0-system-cygwin.patch
- ./cygwin-1.45.0-jam-cygwin.patch
- ./cygwin-1.50.0-jam-pep3149.patch
- ] else null;
+ patches = stdenv.lib.optionals stdenv.isCygwin [
+ ./cygwin-fedora-boost-1.50.0-fix-non-utf8-files.patch
+ ./cygwin-fedora-boost-1.50.0-pool.patch
+ ./cygwin-fedora-boost-1.57.0-mpl-print.patch
+ ./cygwin-fedora-boost-1.57.0-spirit-unused_typedef.patch
+ ./cygwin-fedora-boost-1.54.0-locale-unused_typedef.patch
+ ./cygwin-fedora-boost-1.54.0-python-unused_typedef.patch
+ ./cygwin-fedora-boost-1.57.0-pool-test_linking.patch
+ ./cygwin-fedora-boost-1.54.0-pool-max_chunks_shadow.patch
+ ./cygwin-fedora-boost-1.57.0-signals2-weak_ptr.patch
+ ./cygwin-fedora-boost-1.57.0-uuid-comparison.patch
+ ./cygwin-fedora-boost-1.57.0-move-is_class.patch
+ ./cygwin-1.40.0-cstdint-cygwin.patch
+ ./cygwin-1.57.0-asio-cygwin.patch
+ ./cygwin-1.55.0-asio-MSG_EOR.patch
+ ./cygwin-1.57.0-config-cygwin.patch
+ ./cygwin-1.57.0-context-cygwin.patch
+ ./cygwin-1.57.0-filesystem-cygwin.patch
+ ./cygwin-1.55.0-interlocked-cygwin.patch
+ ./cygwin-1.40.0-iostreams-cygwin.patch
+ ./cygwin-1.57.0-locale-cygwin.patch
+ ./cygwin-1.57.0-log-cygwin.patch
+ ./cygwin-1.40.0-python-cygwin.patch
+ ./cygwin-1.40.0-regex-cygwin.patch
+ ./cygwin-1.57.0-smart_ptr-cygwin.patch
+ ./cygwin-1.57.0-system-cygwin.patch
+ ./cygwin-1.45.0-jam-cygwin.patch
+ ./cygwin-1.50.0-jam-pep3149.patch
+ ];
})
diff --git a/pkgs/development/libraries/boost/1.65.nix b/pkgs/development/libraries/boost/1.65.nix
index 56b136cd99b..9837e1c6919 100644
--- a/pkgs/development/libraries/boost/1.65.nix
+++ b/pkgs/development/libraries/boost/1.65.nix
@@ -9,6 +9,4 @@ callPackage ./generic.nix (args // rec {
sha256 = "9807a5d16566c57fd74fb522764e0b134a8bbe6b6e8967b83afefd30dcd3be81";
};
- enableNumpy = true;
-
})
diff --git a/pkgs/development/libraries/boost/1.66.nix b/pkgs/development/libraries/boost/1.66.nix
new file mode 100644
index 00000000000..3fd9c160824
--- /dev/null
+++ b/pkgs/development/libraries/boost/1.66.nix
@@ -0,0 +1,12 @@
+{ stdenv, callPackage, fetchurl, ... } @ args:
+
+callPackage ./generic.nix (args // rec {
+ version = "1.66_0";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/boost/boost_1_66_0.tar.bz2";
+ # SHA256 from http://www.boost.org/users/history/version_1_66_0.html
+ sha256 = "5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9";
+ };
+
+})
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index b2ec31ace17..c2a59431ac0 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -1,18 +1,19 @@
{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames, libiconv
-, buildPlatform, hostPlatform
-, toolset ? if stdenv.cc.isClang then "clang" else null
+, which
+, buildPackages, buildPlatform, hostPlatform
+, toolset ? /**/ if stdenv.cc.isClang then "clang"
+ else if stdenv.cc.isGNU && hostPlatform != buildPlatform then "gcc-cross"
+ else null
, enableRelease ? true
, enableDebug ? false
, enableSingleThreaded ? false
, enableMultiThreaded ? true
, enableShared ? !(hostPlatform.libc == "msvcrt") # problems for now
, enableStatic ? !enableShared
-, enablePIC ? false
-, enableExceptions ? false
, enablePython ? hostPlatform == buildPlatform
-, enableNumpy ? false
+, enableNumpy ? enablePython && stdenv.lib.versionAtLeast version "1.65"
, taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic))
-, patches ? null
+, patches ? []
, mpi ? null
# Attributes inherit from specific versions
@@ -21,8 +22,9 @@
}:
# We must build at least one type of libraries
-assert !enableShared -> enableStatic;
+assert enableShared || enableStatic;
+# Python isn't supported when cross-compiling
assert enablePython -> hostPlatform == buildPlatform;
assert enableNumpy -> enablePython;
@@ -46,86 +48,41 @@ let
# To avoid library name collisions
layout = if taggedLayout then "tagged" else "system";
- cflags = if enablePIC && enableExceptions then
- "cflags=\"-fPIC -fexceptions\" cxxflags=-fPIC linkflags=-fPIC"
- else if enablePIC then
- "cflags=-fPIC cxxflags=-fPIC linkflags=-fPIC"
- else if enableExceptions then
- "cflags=-fexceptions"
- else
- "";
-
- withToolset = stdenv.lib.optionalString (toolset != null) "--with-toolset=${toolset}";
-
- genericB2Flags = [
+ b2Args = concatStringsSep " " ([
"--includedir=$dev/include"
"--libdir=$out/lib"
"-j$NIX_BUILD_CORES"
"--layout=${layout}"
"variant=${variant}"
"threading=${threading}"
- ] ++ optional (link != "static") "runtime-link=${runtime-link}" ++ [
+ "runtime-link=${runtime-link}"
"link=${link}"
- "${cflags}"
- ] ++ optional (variant == "release") "debug-symbols=off"
- ++ optional (!enablePython) "--without-python";
-
- nativeB2Flags = [
"-sEXPAT_INCLUDE=${expat.dev}/include"
"-sEXPAT_LIBPATH=${expat.out}/lib"
- ] ++ optional (toolset != null) "toolset=${toolset}"
- ++ optional (mpi != null) "--user-config=user-config.jam";
- nativeB2Args = concatStringsSep " " (genericB2Flags ++ nativeB2Flags);
-
- crossB2Flags = [
- "-sEXPAT_INCLUDE=${expat.crossDrv}/include"
- "-sEXPAT_LIBPATH=${expat.crossDrv}/lib"
- "--user-config=user-config.jam"
- "toolset=gcc-cross"
- ] ++ optionals (hostPlatform.libc == "msvcrt") [
+ ] ++ optional (variant == "release") "debug-symbols=off"
+ ++ optional (toolset != null) "toolset=${toolset}"
+ ++ optional (mpi != null || hostPlatform != buildPlatform) "--user-config=user-config.jam"
+ ++ optionals (hostPlatform.libc == "msvcrt") [
"target-os=windows"
"threadapi=win32"
"binary-format=pe"
"address-model=${toString hostPlatform.parsed.cpu.bits}"
"architecture=x86"
- ];
- crossB2Args = concatStringsSep " " (genericB2Flags ++ crossB2Flags);
-
- builder = b2Args: ''
- ./b2 ${b2Args}
- '';
-
- installer = b2Args: ''
- # boostbook is needed by some applications
- mkdir -p $dev/share/boostbook
- cp -a tools/boostbook/{xsl,dtd} $dev/share/boostbook/
-
- # Let boost install everything else
- ./b2 ${b2Args} install
- '';
-
- commonConfigureFlags = [
- "--includedir=$(dev)/include"
- "--libdir=$(out)/lib"
- ];
-
- fixup = ''
- # Make boost header paths relative so that they are not runtime dependencies
- (
- cd "$dev"
- find include \( -name '*.hpp' -or -name '*.h' -or -name '*.ipp' \) \
- -exec sed '1i#line 1 "{}"' -i '{}' \;
- )
- '' + optionalString (hostPlatform.libc == "msvcrt") ''
- ${stdenv.cc.targetPrefix}ranlib "$out/lib/"*.a
- '';
+ ]);
in
stdenv.mkDerivation {
name = "boost-${version}";
- inherit src patches version;
+ inherit src;
+
+ patchFlags = optionalString (hostPlatform.libc == "msvcrt") "-p0";
+ patches = patches ++ optional (hostPlatform.libc == "msvcrt") (fetchurl {
+ url = "https://svn.boost.org/trac/boost/raw-attachment/tickaet/7262/"
+ + "boost-mingw.patch";
+ sha256 = "0s32kwll66k50w6r5np1y5g907b7lcpsjhfgr7rsw7q5syhzddyj";
+ });
meta = {
homepage = http://boost.org/;
@@ -142,9 +99,13 @@ stdenv.mkDerivation {
--replace '@rpath/$(<[1]:D=)' "$out/lib/\$(<[1]:D=)";
fi;
'' + optionalString (mpi != null) ''
- cat << EOF > user-config.jam
+ cat << EOF >> user-config.jam
using mpi : ${mpi}/bin/mpiCC ;
EOF
+ '' + optionalString (hostPlatform != buildPlatform) ''
+ cat << EOF >> user-config.jam
+ using gcc : cross : ${stdenv.cc.targetPrefix}c++ ;
+ EOF
'';
NIX_CFLAGS_LINK = stdenv.lib.optionalString stdenv.isDarwin
@@ -152,6 +113,7 @@ stdenv.mkDerivation {
enableParallelBuilding = true;
+ nativeBuildInputs = [ which buildPackages.stdenv.cc ];
buildInputs = [ expat zlib bzip2 libiconv ]
++ optional (hostPlatform == buildPlatform) icu
++ optional stdenv.isDarwin fixDarwinDylibNames
@@ -159,39 +121,35 @@ stdenv.mkDerivation {
++ optional enableNumpy python.pkgs.numpy;
configureScript = "./bootstrap.sh";
- configureFlags = commonConfigureFlags
- ++ [ "--with-python=${python.interpreter}" ]
- ++ optional (hostPlatform == buildPlatform) "--with-icu=${icu.dev}"
+ configurePlatforms = [];
+ configureFlags = [
+ "--includedir=$(dev)/include"
+ "--libdir=$(out)/lib"
+ ] ++ optional enablePython "--with-python=${python.interpreter}"
+ ++ [ (if hostPlatform == buildPlatform then "--with-icu=${icu.dev}" else "--without-icu") ]
++ optional (toolset != null) "--with-toolset=${toolset}";
- buildPhase = builder nativeB2Args;
+ buildPhase = ''
+ ./b2 ${b2Args}
+ '';
- installPhase = installer nativeB2Args;
+ installPhase = ''
+ # boostbook is needed by some applications
+ mkdir -p $dev/share/boostbook
+ cp -a tools/boostbook/{xsl,dtd} $dev/share/boostbook/
- postFixup = fixup;
+ # Let boost install everything else
+ ./b2 ${b2Args} install
+ '';
+
+ postFixup = ''
+ # Make boost header paths relative so that they are not runtime dependencies
+ find "$dev/include" \( -name '*.hpp' -or -name '*.h' -or -name '*.ipp' \) \
+ -exec sed '1i#line 1 "{}"' -i '{}' \;
+ '' + optionalString (hostPlatform.libc == "msvcrt") ''
+ $RANLIB "$out/lib/"*.a
+ '';
outputs = [ "out" "dev" ];
setOutputFlags = false;
-
- crossAttrs = rec {
- # We want to substitute the contents of configureFlags, removing thus the
- # usual --build and --host added on cross building.
- preConfigure = ''
- export configureFlags="--without-icu ${concatStringsSep " " commonConfigureFlags}"
- cat << EOF > user-config.jam
- using gcc : cross : $crossConfig-g++ ;
- EOF
- '';
- buildPhase = builder crossB2Args;
- installPhase = installer crossB2Args;
- postFixup = fixup;
- } // optionalAttrs (hostPlatform.libc == "msvcrt") {
- patches = fetchurl {
- url = "https://svn.boost.org/trac/boost/raw-attachment/ticket/7262/"
- + "boost-mingw.patch";
- sha256 = "0s32kwll66k50w6r5np1y5g907b7lcpsjhfgr7rsw7q5syhzddyj";
- };
-
- patchFlags = "-p0";
- };
}
diff --git a/pkgs/development/libraries/bullet/default.nix b/pkgs/development/libraries/bullet/default.nix
index f6676321860..39a5a9869ba 100644
--- a/pkgs/development/libraries/bullet/default.nix
+++ b/pkgs/development/libraries/bullet/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "bullet-${version}";
- version = "2.86.1";
+ version = "2.87";
src = fetchFromGitHub {
owner = "bulletphysics";
repo = "bullet3";
rev = version;
- sha256 = "1k81hr5y9rs2nsal6711fal21rxp6h573cpmjjk8x8ji2crqbqlz";
+ sha256 = "1msp7w3563vb43w70myjmqsdb97kna54dcfa7yvi9l3bvamb92w3";
};
buildInputs = [ cmake ] ++
@@ -16,6 +16,8 @@ stdenv.mkDerivation rec {
then with darwin.apple_sdk.frameworks; [ Cocoa OpenGL ]
else [mesa freeglut]);
+ patches = [ ./gwen-narrowing.patch ];
+
postPatch = stdenv.lib.optionalString stdenv.isDarwin ''
sed -i 's/FIND_PACKAGE(OpenGL)//' CMakeLists.txt
sed -i 's/FIND_LIBRARY(COCOA_LIBRARY Cocoa)//' CMakeLists.txt
diff --git a/pkgs/development/libraries/bullet/gwen-narrowing.patch b/pkgs/development/libraries/bullet/gwen-narrowing.patch
new file mode 100644
index 00000000000..c6c06325dae
--- /dev/null
+++ b/pkgs/development/libraries/bullet/gwen-narrowing.patch
@@ -0,0 +1,22 @@
+commit a5d3497577c78b03c05c69d17df972fa9fb54f53
+Author: Linus Heckemann
+Date: Fri Jan 5 23:57:09 2018 +0100
+
+ Add -Wno-narrowing to GWEN's CMakeLists
+
+ This avoids the compilation issue that occurs on aarch64 with gcc6.
+ (nixpkgs-specific patch)
+
+diff --git a/examples/ThirdPartyLibs/Gwen/CMakeLists.txt b/examples/ThirdPartyLibs/Gwen/CMakeLists.txt
+index 82fa0ffba..26c4bbd37 100644
+--- a/examples/ThirdPartyLibs/Gwen/CMakeLists.txt
++++ b/examples/ThirdPartyLibs/Gwen/CMakeLists.txt
+@@ -15,7 +15,7 @@ IF(NOT WIN32 AND NOT APPLE)
+ ADD_DEFINITIONS("-DDYNAMIC_LOAD_X11_FUNCTIONS=1")
+ ENDIF()
+
+-ADD_DEFINITIONS( -DGLEW_STATIC -DGWEN_COMPILE_STATIC -D_HAS_EXCEPTIONS=0 -D_STATIC_CPPLIB )
++ADD_DEFINITIONS( -DGLEW_STATIC -DGWEN_COMPILE_STATIC -D_HAS_EXCEPTIONS=0 -D_STATIC_CPPLIB -Wno-narrowing )
+
+ FILE(GLOB gwen_SRCS "*.cpp" "Controls/*.cpp" "Controls/Dialog/*.cpp" "Controls/Dialogs/*.cpp" "Controls/Layout/*.cpp" "Controls/Property/*.cpp" "Input/*.cpp" "Platforms/*.cpp" "Renderers/*.cpp" "Skins/*.cpp")
+ FILE(GLOB gwen_HDRS "*.h" "Controls/*.h" "Controls/Dialog/*.h" "Controls/Dialogs/*.h" "Controls/Layout/*.h" "Controls/Property/*.h" "Input/*.h" "Platforms/*.h" "Renderers/*.h" "Skins/*.h")
diff --git a/pkgs/development/libraries/c-ares/default.nix b/pkgs/development/libraries/c-ares/default.nix
index 14ff7a5f16c..6b3b69f9997 100644
--- a/pkgs/development/libraries/c-ares/default.nix
+++ b/pkgs/development/libraries/c-ares/default.nix
@@ -1,5 +1,6 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, writeTextDir }:
+let self =
stdenv.mkDerivation rec {
name = "c-ares-1.13.0";
@@ -14,4 +15,28 @@ stdenv.mkDerivation rec {
license = licenses.mit;
platforms = platforms.all;
};
-}
+
+ # Adapted from running a cmake build
+ passthru.cmake-config = writeTextDir "c-ares-config.cmake"
+ ''
+ set(c-ares_INCLUDE_DIR "${self}/include")
+
+ set(c-ares_LIBRARY c-ares::cares)
+
+ add_library(c-ares::cares SHARED IMPORTED)
+
+ set_target_properties(c-ares::cares PROPERTIES
+ INTERFACE_INCLUDE_DIRECTORIES "${self}/include"
+ INTERFACE_LINK_LIBRARIES "nsl;rt"
+ )
+ set_property(TARGET c-ares::cares APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
+ set_target_properties(c-ares::cares PROPERTIES
+ IMPORTED_LOCATION_RELEASE "${self}/lib/libcares.so.2.2.0"
+ IMPORTED_SONAME_RELEASE "libcares.so.2"
+ )
+ add_library(c-ares::cares_shared INTERFACE IMPORTED)
+ set_target_properties(c-ares::cares_shared PROPERTIES INTERFACE_LINK_LIBRARIES "c-ares::cares")
+ set(c-ares_SHARED_LIBRARY c-ares::cares_shared)
+ '';
+
+}; in self
diff --git a/pkgs/development/libraries/c-ares/release.patch b/pkgs/development/libraries/c-ares/release.patch
new file mode 100644
index 00000000000..e745648062a
--- /dev/null
+++ b/pkgs/development/libraries/c-ares/release.patch
@@ -0,0 +1,19 @@
+diff -aur c-ares-cares-1_13_0/ares_version.h c-ares-1.13.0/ares_version.h
+--- c-ares-cares-1_13_0/ares_version.h 2017-06-20 02:00:21.000000000 -0400
++++ c-ares-1.13.0/ares_version.h 2017-06-20 02:03:54.000000000 -0400
+@@ -6,12 +6,12 @@
+ #define ARES_COPYRIGHT "2004 - 2016 Daniel Stenberg, ."
+
+ #define ARES_VERSION_MAJOR 1
+-#define ARES_VERSION_MINOR 12
+-#define ARES_VERSION_PATCH 1
++#define ARES_VERSION_MINOR 13
++#define ARES_VERSION_PATCH 0
+ #define ARES_VERSION ((ARES_VERSION_MAJOR<<16)|\
+ (ARES_VERSION_MINOR<<8)|\
+ (ARES_VERSION_PATCH))
+-#define ARES_VERSION_STR "1.12.1-DEV"
++#define ARES_VERSION_STR "1.13.0"
+
+ #if (ARES_VERSION >= 0x010700)
+ # define CARES_HAVE_ARES_LIBRARY_INIT 1
diff --git a/pkgs/development/libraries/cdk/default.nix b/pkgs/development/libraries/cdk/default.nix
index a97ca5cc698..19f39217fd0 100644
--- a/pkgs/development/libraries/cdk/default.nix
+++ b/pkgs/development/libraries/cdk/default.nix
@@ -2,15 +2,18 @@
stdenv.mkDerivation rec {
name = "cdk-${version}";
- version ="5.0-20161210";
+ version ="5.0-20171209";
buildInputs = [
ncurses
];
src = fetchurl {
- url = "ftp://invisible-island.net/cdk/cdk-${version}.tgz";
- sha256 = "1bazwcwz4qhxyc8jaahdd2nlm30f5dhy0f6cnix5rjjhi35mhxcy";
+ urls = [
+ "ftp://ftp.invisible-island.net/cdk/cdk-${version}.tgz"
+ "https://invisible-mirror.net/archives/cdk/cdk-${version}.tgz"
+ ];
+ sha256 = "0jq0dx7gm7gl6lv5mhlfkxhw5362g9dxqdlpjlrag069nns8xdc8";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/cpp-netlib/default.nix b/pkgs/development/libraries/cpp-netlib/default.nix
index ecc730597c3..e5391e7100d 100644
--- a/pkgs/development/libraries/cpp-netlib/default.nix
+++ b/pkgs/development/libraries/cpp-netlib/default.nix
@@ -26,6 +26,5 @@ stdenv.mkDerivation rec {
homepage = http://cpp-netlib.org;
license = licenses.boost;
platforms = platforms.all;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/cppdb/default.nix b/pkgs/development/libraries/cppdb/default.nix
index 72fa309b721..07c6e1490e7 100644
--- a/pkgs/development/libraries/cppdb/default.nix
+++ b/pkgs/development/libraries/cppdb/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, sqlite, libmysql, postgresql, unixODBC }:
+{ stdenv, fetchurl, cmake, sqlite, mysql, postgresql, unixODBC }:
stdenv.mkDerivation rec {
name = "cppdb";
@@ -11,9 +11,10 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- buildInputs = [ cmake sqlite libmysql postgresql unixODBC ];
+ buildInputs = [ cmake sqlite mysql.connector-c postgresql unixODBC ];
cmakeFlags = [ "--no-warn-unused-cli" ];
+ NIX_CFLAGS_COMPILE = [ "-I${mysql.connector-c}/include/mysql" "-L${mysql.connector-c}/lib/mysql" ];
meta = with stdenv.lib; {
homepage = http://cppcms.com/sql/cppdb/;
@@ -23,4 +24,3 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.juliendehos ];
};
}
-
diff --git a/pkgs/development/libraries/csfml/default.nix b/pkgs/development/libraries/csfml/default.nix
new file mode 100644
index 00000000000..8f66b65e49a
--- /dev/null
+++ b/pkgs/development/libraries/csfml/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, cmake, sfml }:
+
+let
+ version = "2.4";
+in
+
+stdenv.mkDerivation {
+ name = "csfml-${version}";
+ src = fetchFromGitHub {
+ owner = "SFML";
+ repo = "CSFML";
+ rev = "b5facb85d13bff451a5fd2d088a97472a685576c";
+ sha256 = "1q716gd7c7jlxzwpq5z4rjj5lsrn71ql2djphccdf9jannllqizn";
+ };
+ buildInputs = [ cmake sfml ];
+ cmakeFlags = [ "-DCMAKE_MODULE_PATH=${sfml}/share/SFML/cmake/Modules/" ];
+
+ meta = with stdenv.lib; {
+ homepage = http://www.sfml-dev.org/;
+ description = "Simple and fast multimedia library";
+ longDescription = ''
+ SFML is a simple, fast, cross-platform and object-oriented multimedia API.
+ It provides access to windowing, graphics, audio and network.
+ It is written in C++, and has bindings for various languages such as C, .Net, Ruby, Python.
+ '';
+ license = licenses.zlib;
+ maintainers = [ maintainers.jpdoyle ];
+
+ platforms = platforms.linux ++ platforms.darwin;
+ };
+}
diff --git a/pkgs/development/libraries/curlcpp/default.nix b/pkgs/development/libraries/curlcpp/default.nix
index c1579b71748..c1c867abcdf 100644
--- a/pkgs/development/libraries/curlcpp/default.nix
+++ b/pkgs/development/libraries/curlcpp/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ cmake curl ];
meta = with stdenv.lib; {
- homepage = http://josephp91.github.io/curlcpp/;
+ homepage = https://josephp91.github.io/curlcpp/;
description = "Object oriented C++ wrapper for CURL";
platforms = platforms.unix;
license = licenses.mit;
diff --git a/pkgs/development/libraries/dleyna-core/setup-hook.sh b/pkgs/development/libraries/dleyna-core/setup-hook.sh
index 046a77d5a4d..87b5c67dff5 100644
--- a/pkgs/development/libraries/dleyna-core/setup-hook.sh
+++ b/pkgs/development/libraries/dleyna-core/setup-hook.sh
@@ -5,5 +5,4 @@ addDleynaConnectorPath () {
fi
}
-envHooks+=(addDleynaConnectorPath)
-
+addEnvHooks "$targetOffset" addDleynaConnectorPath
diff --git a/pkgs/development/libraries/dlib/default.nix b/pkgs/development/libraries/dlib/default.nix
index 61932b29e62..bb150da6799 100644
--- a/pkgs/development/libraries/dlib/default.nix
+++ b/pkgs/development/libraries/dlib/default.nix
@@ -3,14 +3,14 @@
}:
stdenv.mkDerivation rec {
- version = "19.6";
+ version = "19.8";
name = "dlib-${version}";
src = fetchFromGitHub {
owner = "davisking";
repo = "dlib";
rev ="v${version}";
- sha256 = "1nlx4z53jnk7wysaxrzbyyqb65m45rw4g1fagazl2jvwh1qn49ds";
+ sha256 = "0ras4dl1ws9f9680bi8wg0mnbqvrpn0l2xl5lrvq3jvnijb3cz9i";
};
postPatch = ''
diff --git a/pkgs/development/libraries/expat/default.nix b/pkgs/development/libraries/expat/default.nix
index 01f3c11ac73..e341ce842eb 100644
--- a/pkgs/development/libraries/expat/default.nix
+++ b/pkgs/development/libraries/expat/default.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
outputMan = "dev"; # tiny page for a dev tool
- doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
+ doCheck = true; # not cross;
preCheck = ''
patchShebangs ./run.sh
diff --git a/pkgs/development/libraries/faad2/default.nix b/pkgs/development/libraries/faad2/default.nix
index 865bedf09ba..04a6b9c5354 100644
--- a/pkgs/development/libraries/faad2/default.nix
+++ b/pkgs/development/libraries/faad2/default.nix
@@ -5,10 +5,10 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "faad2-${version}";
- version = "2.7";
+ version = "2.8.8";
src = fetchurl {
- url = "mirror://sourceforge/faac/${name}.tar.bz2";
+ url = "mirror://sourceforge/faac/${name}.tar.gz";
sha256 = "1db37ydb6mxhshbayvirm5vz6j361bjim4nkpwjyhmy4ddfinmhl";
};
diff --git a/pkgs/development/libraries/fastpbkdf2/default.nix b/pkgs/development/libraries/fastpbkdf2/default.nix
new file mode 100644
index 00000000000..e781e2aab83
--- /dev/null
+++ b/pkgs/development/libraries/fastpbkdf2/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, openssl }:
+
+stdenv.mkDerivation {
+ name = "fastpbkdf2-1.0.0";
+
+ src = fetchFromGitHub {
+ owner = "ctz";
+ repo = "fastpbkdf2";
+ rev = "v1.0.0";
+ sha256 = "09ax0h4ik3vhvp3s98lic93l3g9f4v1jkr5k6z4g1lvm7s3lrha2";
+ };
+
+ buildInputs = [ openssl ];
+
+ preBuild = ''
+ makeFlagsArray=(CFLAGS="-std=c99 -O3 -g")
+ '';
+
+ installPhase = ''
+ mkdir -p $out/{lib,include/fastpbkdf2}
+ cp *.a $out/lib
+ cp fastpbkdf2.h $out/include/fastpbkdf2
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A fast PBKDF2-HMAC-{SHA1,SHA256,SHA512} implementation in C";
+ homepage = https://github.com/ctz/fastpbkdf2;
+ license = licenses.cc0;
+ maintainers = with maintainers; [ ledif ];
+ };
+}
diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix
index e8eab4827e6..906a15c419d 100644
--- a/pkgs/development/libraries/ffmpeg/generic.nix
+++ b/pkgs/development/libraries/ffmpeg/generic.nix
@@ -175,7 +175,7 @@ stdenv.mkDerivation rec {
configureFlags = configureFlags ++ [
"--cross-prefix=${stdenv.cc.targetPrefix}"
"--enable-cross-compile"
- "--target_os=${hostPlatform.parsed.kernel}"
+ "--target_os=${hostPlatform.parsed.kernel.name}"
"--arch=${hostPlatform.arch}"
];
};
diff --git a/pkgs/development/libraries/gamin/debian-patches.nix b/pkgs/development/libraries/gamin/debian-patches.nix
index f784b8ccfee..a8f334fb3c3 100644
--- a/pkgs/development/libraries/gamin/debian-patches.nix
+++ b/pkgs/development/libraries/gamin/debian-patches.nix
@@ -1,6 +1,6 @@
# Generated by debian-patches.sh from debian-patches.txt
let
- prefix = "http://patch-tracker.debian.org/patch/series/dl/gamin/0.1.10-4.1";
+ prefix = "https://sources.debian.org/data/main/g/gamin/0.1.10-4.1/debian/patches";
in
[
{
diff --git a/pkgs/development/libraries/gamin/debian-patches.txt b/pkgs/development/libraries/gamin/debian-patches.txt
index 4faad71d44d..46d2420b21e 100644
--- a/pkgs/development/libraries/gamin/debian-patches.txt
+++ b/pkgs/development/libraries/gamin/debian-patches.txt
@@ -1,2 +1,2 @@
-gamin/0.1.10-4
+gamin/0.1.10-4.1
17_deprecated_const_return.patch
diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix
index 984d3da8119..54174e7cfe4 100644
--- a/pkgs/development/libraries/gdal/default.nix
+++ b/pkgs/development/libraries/gdal/default.nix
@@ -8,12 +8,12 @@
with stdenv.lib;
stdenv.mkDerivation rec {
- version = "2.2.1";
+ version = "2.2.3";
name = "gdal-${version}";
src = fetchurl {
url = "http://download.osgeo.org/gdal/${version}/${name}.tar.xz";
- sha256 = "0rk0p0k787whzzdl8m1f9wcrm7h9bf1pny3z96d93b4383arhw4j";
+ sha256 = "a328d63d476b3653f5a25b5f7971e87a15cdf8860ab0729d4b1157ba988b8d0b";
};
buildInputs = [ unzip libjpeg libtiff libpng proj openssl sqlite
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
"--with-poppler=${poppler.dev}" # optional
"--with-libz=${zlib.dev}" # optional
"--with-pg=${postgresql}/bin/pg_config"
- "--with-mysql=${mysql.lib.dev}/bin/mysql_config"
+ "--with-mysql=${mysql.connector-c or mysql}/bin/mysql_config"
"--with-geotiff=${libgeotiff}"
"--with-sqlite3=${sqlite.dev}"
"--with-spatialite=${libspatialite}"
diff --git a/pkgs/development/libraries/gdal/gdal-1_11.nix b/pkgs/development/libraries/gdal/gdal-1_11.nix
index c9f0c076101..7a80ce7fdb6 100644
--- a/pkgs/development/libraries/gdal/gdal-1_11.nix
+++ b/pkgs/development/libraries/gdal/gdal-1_11.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, unzip, libjpeg, libtiff, zlib
-, postgresql, mysql, libgeotiff, python, pythonPackages, proj, geos, openssl
+, postgresql, mysql57, libgeotiff, python, pythonPackages, proj, geos, openssl
, libpng }:
stdenv.mkDerivation rec {
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
"--with-libz=${zlib.dev}" # optional
"--with-pg=${postgresql}/bin/pg_config"
- "--with-mysql=${mysql.lib.dev}/bin/mysql_config"
+ "--with-mysql=${mysql57.connector-c}/bin/mysql_config"
"--with-geotiff=${libgeotiff}"
"--with-python" # optional
"--with-static-proj4=${proj}" # optional
diff --git a/pkgs/development/libraries/gdbm/default.nix b/pkgs/development/libraries/gdbm/default.nix
index 3b78225a447..310aaa430da 100644
--- a/pkgs/development/libraries/gdbm/default.nix
+++ b/pkgs/development/libraries/gdbm/default.nix
@@ -1,14 +1,14 @@
{ stdenv, lib, buildPlatform, fetchurl }:
stdenv.mkDerivation rec {
- name = "gdbm-1.13";
+ name = "gdbm-1.14";
src = fetchurl {
url = "mirror://gnu/gdbm/${name}.tar.gz";
- sha256 = "0lx201q20dvc70f8a3c9s7s18z15inlxvbffph97ngvrgnyjq9cx";
+ sha256 = "02dakgrq93xwgln8qfv3vs5jyz5yvds5nyzkx6rhg9v585x478dd";
};
- doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
+ doCheck = true; # not cross;
# Linking static stubs on cygwin requires correct ordering.
# Consider upstreaming this.
diff --git a/pkgs/development/libraries/gdk-pixbuf/setup-hook.sh b/pkgs/development/libraries/gdk-pixbuf/setup-hook.sh
index ba7ab82f50b..5a7dcd79299 100644
--- a/pkgs/development/libraries/gdk-pixbuf/setup-hook.sh
+++ b/pkgs/development/libraries/gdk-pixbuf/setup-hook.sh
@@ -14,4 +14,4 @@ findGdkPixbufLoaders() {
}
-envHooks+=(findGdkPixbufLoaders)
+addEnvHooks "$hostOffset" findGdkPixbufLoaders
diff --git a/pkgs/development/libraries/gegl/3.0.nix b/pkgs/development/libraries/gegl/3.0.nix
index 158707557a5..2bb773a17b8 100644
--- a/pkgs/development/libraries/gegl/3.0.nix
+++ b/pkgs/development/libraries/gegl/3.0.nix
@@ -3,13 +3,15 @@
, libwebp, gnome3 }:
stdenv.mkDerivation rec {
- name = "gegl-0.3.26";
+ name = "gegl-0.3.28";
src = fetchurl {
url = "http://download.gimp.org/pub/gegl/0.3/${name}.tar.bz2";
- sha256 = "1a9zbi6ws0r0sqynvg2fh3ad0ipnphg7w62y7whlcrbpqi29izvf";
+ sha256 = "1zr3gmmzjhp2d3d3h51x80r5q7gs9rv67ywx69sif6as99h8fbqm";
};
+ NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
+
hardeningDisable = [ "format" ];
# needs fonts otherwise don't know how to pass them
@@ -28,11 +30,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig intltool which autoreconfHook ];
- meta = {
+ meta = with stdenv.lib; {
description = "Graph-based image processing framework";
homepage = http://www.gegl.org;
- license = stdenv.lib.licenses.gpl3;
- maintainers = with stdenv.lib.maintainers; [ jtojnar ];
- platforms = stdenv.lib.platforms.linux;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ jtojnar ];
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/geoip/default.nix b/pkgs/development/libraries/geoip/default.nix
index 60d40b10aa4..d93430ac1f5 100644
--- a/pkgs/development/libraries/geoip/default.nix
+++ b/pkgs/development/libraries/geoip/default.nix
@@ -1,17 +1,22 @@
# in geoipDatabase, you can insert a package defining ${geoipDatabase}/share/GeoIP
# e.g. geolite-legacy
-{ stdenv, fetchurl, pkgs, drvName ? "geoip", geoipDatabase ? "/var/lib/geoip-databases" }:
+{ stdenv, fetchFromGitHub, autoreconfHook
+, drvName ? "geoip", geoipDatabase ? "/var/lib/geoip-databases" }:
-let version = "1.6.2";
+let version = "1.6.12";
dataDir = if (stdenv.lib.isDerivation geoipDatabase) then "${toString geoipDatabase}/share/GeoIP" else geoipDatabase;
in stdenv.mkDerivation {
name = "${drvName}-${version}";
- src = fetchurl {
- url = "http://geolite.maxmind.com/download/geoip/api/c/GeoIP-${version}.tar.gz";
- sha256 = "0dd6si4cvip73kxdn43apg6yygvaf7dnk5awqfg9w2fd2ll0qnh7";
+ src = fetchFromGitHub {
+ owner = "maxmind";
+ repo = "geoip-api-c";
+ rev = "v${version}";
+ sha256 = "0ixyp3h51alnncr17hqp1p0rlqz9w69nlhm60rbzjjz3vjx52ajv";
};
+ nativeBuildInputs = [ autoreconfHook ];
+
postPatch = ''
find . -name Makefile.in -exec sed -i -r 's#^pkgdatadir\s*=.+$#pkgdatadir = ${dataDir}#' {} \;
'';
diff --git a/pkgs/development/libraries/gettext/gettext-setup-hook.sh b/pkgs/development/libraries/gettext/gettext-setup-hook.sh
index fe3ef1f9e15..5932ef6a44f 100644
--- a/pkgs/development/libraries/gettext/gettext-setup-hook.sh
+++ b/pkgs/development/libraries/gettext/gettext-setup-hook.sh
@@ -4,4 +4,4 @@ gettextDataDirsHook() {
fi
}
-envHooks+=(gettextDataDirsHook)
+addEnvHooks "$hostOffset" gettextDataDirsHook
diff --git a/pkgs/development/libraries/gflags/default.nix b/pkgs/development/libraries/gflags/default.nix
new file mode 100644
index 00000000000..d79b7691335
--- /dev/null
+++ b/pkgs/development/libraries/gflags/default.nix
@@ -0,0 +1,10 @@
+{ stdenv, fetchurl, cmake }:
+
+stdenv.mkDerivation
+ { name = "gflags-2.2.1";
+ src = fetchurl
+ { url = "https://github.com/gflags/gflags/archive/v2.2.1.tar.gz";
+ sha256 = "03lxc2ah8i392kh1naq99iip34k4fpv22kwflyx3byd2ssycs9xf";
+ };
+ nativeBuildInputs = [ cmake ];
+ }
diff --git a/pkgs/development/libraries/glib/setup-hook.sh b/pkgs/development/libraries/glib/setup-hook.sh
index c5cf293902c..233845c6541 100644
--- a/pkgs/development/libraries/glib/setup-hook.sh
+++ b/pkgs/development/libraries/glib/setup-hook.sh
@@ -5,13 +5,13 @@ make_glib_find_gsettings_schemas() {
addToSearchPath GSETTINGS_SCHEMAS_PATH "$1/share/gsettings-schemas/"*
fi
}
-envHooks+=(make_glib_find_gsettings_schemas)
+addEnvHooks "$hostOffset" make_glib_find_gsettings_schemas
# Install gschemas, if any, in a package-specific directory
glibPreInstallPhase() {
installFlagsArray+=("gsettingsschemadir=${!outputLib}/share/gsettings-schemas/$name/glib-2.0/schemas/")
}
-preInstallPhases+=(glibPreInstallPhase)
+preInstallPhases+=" glibPreInstallPhase"
glibPreFixupPhase() {
# Move gschemas in case the install flag didn't help
@@ -22,5 +22,4 @@ glibPreFixupPhase() {
addToSearchPath GSETTINGS_SCHEMAS_PATH "${!outputLib}/share/gsettings-schemas/$name"
}
-preFixupPhases+=(glibPreFixupPhase)
-
+preFixupPhases+=" glibPreFixupPhase"
diff --git a/pkgs/development/libraries/glibc/2.26-115to131.diff.gz b/pkgs/development/libraries/glibc/2.26-115to131.diff.gz
new file mode 100644
index 00000000000..3d866c567a7
Binary files /dev/null and b/pkgs/development/libraries/glibc/2.26-115to131.diff.gz differ
diff --git a/pkgs/development/libraries/glibc/2.26-75to115.diff.gz b/pkgs/development/libraries/glibc/2.26-75to115.diff.gz
new file mode 100644
index 00000000000..9bf1a4f7d39
Binary files /dev/null and b/pkgs/development/libraries/glibc/2.26-75to115.diff.gz differ
diff --git a/pkgs/development/libraries/glibc/allow-kernel-2.6.32.patch b/pkgs/development/libraries/glibc/allow-kernel-2.6.32.patch
new file mode 100644
index 00000000000..ce18b874c42
--- /dev/null
+++ b/pkgs/development/libraries/glibc/allow-kernel-2.6.32.patch
@@ -0,0 +1,39 @@
+diff --git a/sysdeps/unix/sysv/linux/configure b/sysdeps/unix/sysv/linux/configure
+index cace758c01..38fe7fe0b0 100644
+--- a/sysdeps/unix/sysv/linux/configure
++++ b/sysdeps/unix/sysv/linux/configure
+@@ -69,7 +69,7 @@ fi
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for kernel header at least $minimum_kernel" >&5
+ $as_echo_n "checking for kernel header at least $minimum_kernel... " >&6; }
+ decnum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/(\1 * 65536 + \2 * 256 + \3)/'`;
+-abinum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1,\2,\3/'`;
++abinum=`echo "2.6.32.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1,\2,\3/'`;
+ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+ /* end confdefs.h. */
+ #include
+diff --git a/sysdeps/unix/sysv/linux/configure.ac b/sysdeps/unix/sysv/linux/configure.ac
+index 13abda0a51..6abc12eaed 100644
+--- a/sysdeps/unix/sysv/linux/configure.ac
++++ b/sysdeps/unix/sysv/linux/configure.ac
+@@ -50,7 +50,7 @@ fi
+ AC_MSG_CHECKING(for kernel header at least $minimum_kernel)
+ changequote(,)dnl
+ decnum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/(\1 * 65536 + \2 * 256 + \3)/'`;
+-abinum=`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1,\2,\3/'`;
++abinum=`echo "2.6.32.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1,\2,\3/'`;
+ changequote([,])dnl
+ AC_TRY_COMPILE([#include
+ #if LINUX_VERSION_CODE < $decnum
+diff --git a/sysdeps/unix/sysv/linux/dl-osinfo.h b/sysdeps/unix/sysv/linux/dl-osinfo.h
+index 823cd8224d..482caaeeec 100644
+--- a/sysdeps/unix/sysv/linux/dl-osinfo.h
++++ b/sysdeps/unix/sysv/linux/dl-osinfo.h
+@@ -39,7 +39,7 @@
+ GLRO(dl_osversion) = version; \
+ \
+ /* Now we can test with the required version. */ \
+- if (__LINUX_KERNEL_VERSION > 0 && version < __LINUX_KERNEL_VERSION) \
++ if (__LINUX_KERNEL_VERSION > 0 && version < __LINUX_KERNEL_VERSION && version != 0x020620) \
+ /* Not sufficent. */ \
+ FATAL ("FATAL: kernel too old\n"); \
+ } \
diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix
index 86f3be15fea..b17d4effb1e 100644
--- a/pkgs/development/libraries/glibc/common.nix
+++ b/pkgs/development/libraries/glibc/common.nix
@@ -20,7 +20,7 @@
let
version = "2.26";
- patchSuffix = "-75";
+ patchSuffix = "-131";
sha256 = "1ggnj1hzjym7sn93rbwydcqd562q73lsb7g7kd199g6j9j9hlkp5";
cross = if buildPlatform != hostPlatform then hostPlatform else null;
in
@@ -47,6 +47,10 @@ stdenv.mkDerivation ({
$ git show --reverse glibc-2.25..release/2.25/master | gzip -n -9 --rsyncable - > 2.25-49.patch.gz
*/
./2.26-75.patch.gz
+ ./2.26-75to115.diff.gz
+ # contains fix for CVE-2018-1000001 as the last commit:
+ # https://sourceware.org/git/?p=glibc.git;a=commit;h=fabef2edbc
+ ./2.26-115to131.diff.gz
/* Have rpcgen(1) look for cpp(1) in $PATH. */
./rpcgen-path.patch
@@ -64,6 +68,25 @@ stdenv.mkDerivation ({
"/bin:/usr/bin", which is inappropriate on NixOS machines. This
patch extends the search path by "/run/current-system/sw/bin". */
./fix_path_attribute_in_getconf.patch
+
+ /* Allow running with RHEL 6 -like kernels. The patch adds an exception
+ for glibc to accept 2.6.32 and to tag the ELFs as 2.6.32-compatible
+ (otherwise the loader would refuse libc).
+ Note that glibc will fully work only on their heavily patched kernels
+ and we lose early mismatch detection on 2.6.32.
+
+ On major glibc updates we should check that the patched kernel supports
+ all the required features. ATM it's verified up to glibc-2.26-131.
+ # HOWTO: check glibc sources for changes in kernel requirements
+ git log -p glibc-2.25.. sysdeps/unix/sysv/linux/x86_64/kernel-features.h sysdeps/unix/sysv/linux/kernel-features.h
+ # get kernel sources (update the URL)
+ mkdir tmp && cd tmp
+ curl http://vault.centos.org/6.9/os/Source/SPackages/kernel-2.6.32-696.el6.src.rpm | rpm2cpio - | cpio -idmv
+ tar xf linux-*.bz2
+ # check syscall presence, for example
+ less linux-*?/arch/x86/kernel/syscall_table_32.S
+ */
+ ./allow-kernel-2.6.32.patch
]
++ lib.optional stdenv.isx86_64 ./fix-x64-abi.patch;
@@ -104,7 +127,6 @@ stdenv.mkDerivation ({
] ++ lib.optionals withLinuxHeaders [
"--enable-kernel=3.2.0" # can't get below with glibc >= 2.26
] ++ lib.optionals (cross != null) [
- (if cross.withTLS then "--with-tls" else "--without-tls")
(if cross ? float && cross.float == "soft" then "--without-fp" else "--with-fp")
] ++ lib.optionals (cross != null) [
"--with-__thread"
@@ -121,7 +143,7 @@ stdenv.mkDerivation ({
outputs = [ "out" "bin" "dev" "static" ];
- nativeBuildInputs = lib.optional (cross != null) buildPackages.stdenv.cc;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
buildInputs = lib.optionals withGd [ gd libpng ];
# Needed to install share/zoneinfo/zone.tab. Set to impure /bin/sh to
@@ -133,8 +155,7 @@ stdenv.mkDerivation ({
// (removeAttrs args [ "withLinuxHeaders" "withGd" ]) //
{
- name = name + "-${version}${patchSuffix}" +
- lib.optionalString (cross != null) "-${cross.config}";
+ name = name + "-${version}${patchSuffix}";
src = fetchurl {
url = "mirror://gnu/glibc/glibc-${version}.tar.xz";
@@ -167,14 +188,7 @@ stdenv.mkDerivation ({
libc_cv_forced_unwind=yes
libc_cv_c_cleanup=yes
libc_cv_gnu89_inline=yes
- # Only due to a problem in gcc configure scripts:
- libc_cv_sparc64_tls=${if cross.withTLS then "yes" else "no"}
EOF
-
- export BUILD_CC=gcc
- export CC="$crossConfig-gcc"
- export AR="$crossConfig-ar"
- export RANLIB="$crossConfig-ranlib"
'';
preBuild = lib.optionalString withGd "unset NIX_DONT_SET_RPATH";
diff --git a/pkgs/development/libraries/glm/default.nix b/pkgs/development/libraries/glm/default.nix
index 0841990fa95..904727ceae6 100644
--- a/pkgs/development/libraries/glm/default.nix
+++ b/pkgs/development/libraries/glm/default.nix
@@ -1,23 +1,28 @@
-{ stdenv, fetchurl, unzip }:
+{ stdenv, fetchzip, cmake }:
stdenv.mkDerivation rec {
- name = "glm-0.9.6.1";
+ version = "0.9.8.5";
+ name = "glm-${version}";
- src = fetchurl {
- url = "mirror://sourceforge/project/ogl-math/${name}/${name}.zip";
- sha256 = "1s1kpf9hpyq6bdf87nhlkxyr2ay0ip9wqicdma9h8yz4vs20r2hs";
+ src = fetchzip {
+ url = "https://github.com/g-truc/glm/releases/download/${version}/${name}.zip";
+ sha256 = "0dkfj4hin3am9fxgcvwr5gj0h9y52x7wa03lfwb3q0bvaj1rsly2";
};
- buildInputs = [ unzip ];
+ nativeBuildInputs = [ cmake ];
outputs = [ "out" "doc" ];
- installPhase = ''
- mkdir -p "$out/include"
- cp -r glm "$out/include"
+ cmakeConfigureFlags = [ "-DGLM_INSTALL_ENABLE=off" ];
- mkdir -p "$doc/share/doc/glm"
- cp -r doc/* "$doc/share/doc/glm"
+ postPatch = ''
+ substituteInPlace CMakeLists.txt \
+ --replace '"''${CMAKE_CURRENT_BINARY_DIR}/''${GLM_INSTALL_CONFIGDIR}' '"''${GLM_INSTALL_CONFIGDIR}'
+ '';
+
+ postInstall = ''
+ mkdir -p $doc/share/doc/glm
+ cp -rv $NIX_BUILD_TOP/$sourceRoot/doc/* $doc/share/doc/glm
'';
meta = with stdenv.lib; {
@@ -33,3 +38,4 @@ stdenv.mkDerivation rec {
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}
+
diff --git a/pkgs/development/libraries/gmp/6.x.nix b/pkgs/development/libraries/gmp/6.x.nix
index e3bacc86d58..5973c89cef7 100644
--- a/pkgs/development/libraries/gmp/6.x.nix
+++ b/pkgs/development/libraries/gmp/6.x.nix
@@ -1,6 +1,5 @@
{ stdenv, fetchurl, m4, cxx ? true
, buildPackages
-, buildPlatform, hostPlatform
, withStatic ? false }:
let inherit (stdenv.lib) optional optionalString; in
@@ -19,8 +18,8 @@ let self = stdenv.mkDerivation rec {
outputs = [ "out" "dev" "info" ];
passthru.static = self.out;
- nativeBuildInputs = [ m4 ]
- ++ stdenv.lib.optional (buildPlatform != hostPlatform) buildPackages.stdenv.cc;
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
+ nativeBuildInputs = [ m4 ];
configureFlags =
# Build a "fat binary", with routines for several sub-architectures
@@ -43,7 +42,7 @@ let self = stdenv.mkDerivation rec {
configureFlagsArray+=("--build=$(./configfsf.guess)")
'';
- doCheck = buildPlatform == hostPlatform;
+ doCheck = true; # not cross;
dontDisableStatic = withStatic;
diff --git a/pkgs/development/libraries/gmtk/default.nix b/pkgs/development/libraries/gmtk/default.nix
new file mode 100644
index 00000000000..0fac97aaa43
--- /dev/null
+++ b/pkgs/development/libraries/gmtk/default.nix
@@ -0,0 +1,32 @@
+{stdenv, substituteAll, fetchFromGitHub, libtool, pkgconfig, intltool, glib, gtk3
+, libpulseaudio, mplayer, gnome_mplayer }:
+
+stdenv.mkDerivation rec {
+ name = "gmtk-${version}";
+ version = "1.0.9";
+
+ src = fetchFromGitHub {
+ owner = "kdekorte";
+ repo = "gmtk";
+ rev = "v${version}";
+ sha256 = "1zb5m1y1gckal3140gvx31572a6xpccwfmdwa1w5lx2wdq1pwk1i";
+ };
+
+ nativeBuildInputs = [ libtool pkgconfig intltool ];
+ buildInputs = [ glib gtk3 libpulseaudio ];
+
+ patches = [
+ (substituteAll {
+ src = ./fix-paths.patch;
+ mplayer = "${mplayer}/bin/mplayer";
+ })
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Common functions for gnome-mplayer and gecko-mediaplayer";
+ homepage = https://sites.google.com/site/kdekorte2/gnomemplayer;
+ license = licenses.gpl2;
+ maintainers = gnome_mplayer.meta.maintainers;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/libraries/gmtk/fix-paths.patch b/pkgs/development/libraries/gmtk/fix-paths.patch
new file mode 100644
index 00000000000..64738300aba
--- /dev/null
+++ b/pkgs/development/libraries/gmtk/fix-paths.patch
@@ -0,0 +1,20 @@
+--- a/src/gmtk_media_player.c
++++ b/src/gmtk_media_player.c
+@@ -2449,7 +2449,7 @@
+ player->minimum_mplayer = detect_mplayer_features(player);
+
+ if (player->mplayer_binary == NULL || !g_file_test(player->mplayer_binary, G_FILE_TEST_EXISTS)) {
+- argv[argn++] = g_strdup_printf("mplayer");
++ argv[argn++] = g_strdup_printf("@mplayer@");
+ } else {
+ argv[argn++] = g_strdup_printf("%s", player->mplayer_binary);
+ }
+@@ -4135,7 +4135,7 @@
+ return ret;
+
+ if (player->mplayer_binary == NULL || !g_file_test(player->mplayer_binary, G_FILE_TEST_EXISTS)) {
+- av[ac++] = g_strdup_printf("mplayer");
++ av[ac++] = g_strdup_printf("@mplayer@");
+ } else {
+ av[ac++] = g_strdup_printf("%s", player->mplayer_binary);
+ }
diff --git a/pkgs/development/libraries/gobject-introspection/setup-hook.sh b/pkgs/development/libraries/gobject-introspection/setup-hook.sh
index 583d8475ec3..a79ce05a38d 100644
--- a/pkgs/development/libraries/gobject-introspection/setup-hook.sh
+++ b/pkgs/development/libraries/gobject-introspection/setup-hook.sh
@@ -1,5 +1,4 @@
make_gobject_introspection_find_gir_files() {
-
# required for .typelib files, eg mypaint git version
if [ -d "$1/lib/girepository-1.0" ]; then
addToSearchPath GI_TYPELIB_PATH $1/lib/girepository-1.0
@@ -11,11 +10,18 @@ make_gobject_introspection_find_gir_files() {
fi
}
-envHooks+=(make_gobject_introspection_find_gir_files)
+addEnvHooks "$hostOffset" make_gobject_introspection_find_gir_files
+
+giDiscoverSelf() {
+ if [ -d "$prefix/lib/girepository-1.0" ]; then
+ addToSearchPath GI_TYPELIB_PATH $prefix/lib/girepository-1.0
+ fi
+}
+
+preFixupHooks+=(giDiscoverSelf)
_multioutMoveGlibGir() {
moveToOutput share/gir-1.0 "${!outputDev}"
}
preFixupHooks+=(_multioutMoveGlibGir)
-
diff --git a/pkgs/development/libraries/goffice/default.nix b/pkgs/development/libraries/goffice/default.nix
index d2f3d848dd7..f67129c007e 100644
--- a/pkgs/development/libraries/goffice/default.nix
+++ b/pkgs/development/libraries/goffice/default.nix
@@ -2,11 +2,11 @@
, libgsf, libxml2, libxslt, cairo, pango, librsvg, libspectre }:
stdenv.mkDerivation rec {
- name = "goffice-0.10.36";
+ name = "goffice-0.10.38";
src = fetchurl {
url = "mirror://gnome/sources/goffice/0.10/${name}.tar.xz";
- sha256 = "cfe65fc0a665538704c7bab8541784291cf0781df8b4cff73cb0a513ee0baad6";
+ sha256 = "443199d7a9833fddaadfc4f9065c289e639eed480de316f37da816e396bb9764";
};
nativeBuildInputs = [ pkgconfig intltool ];
diff --git a/pkgs/development/libraries/grantlee/5/setup-hook.sh b/pkgs/development/libraries/grantlee/5/setup-hook.sh
index aaa64868dc9..b51cb4a3190 100644
--- a/pkgs/development/libraries/grantlee/5/setup-hook.sh
+++ b/pkgs/development/libraries/grantlee/5/setup-hook.sh
@@ -10,8 +10,4 @@ _grantleeEnvHook() {
propagatedUserEnvPkgs+=" $1"
fi
}
-if [ "$crossEnv" ]; then
- crossEnvHooks+=(_grantleeEnvHook)
-else
- envHooks+=(_grantleeEnvHook)
-fi
+addEnvHooks "$hostOffset" _grantleeEnvHook
diff --git a/pkgs/development/libraries/grpc/default.nix b/pkgs/development/libraries/grpc/default.nix
new file mode 100644
index 00000000000..4e6fe783dc2
--- /dev/null
+++ b/pkgs/development/libraries/grpc/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchurl, cmake, zlib, c-ares, pkgconfig, openssl, protobuf, gflags }:
+
+stdenv.mkDerivation rec
+ { name = "grpc-1.8.3";
+ src = fetchurl
+ { url = "https://github.com/grpc/grpc/archive/v1.8.3.tar.gz";
+ sha256 = "14ichjllvhkbv8sjh9j5njnagpqw2sl12n41ga90jnj7qvfwwjy1";
+ };
+ nativeBuildInputs = [ cmake pkgconfig ];
+ buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags ];
+ cmakeFlags =
+ [ "-DgRPC_ZLIB_PROVIDER=package"
+ "-DgRPC_CARES_PROVIDER=package"
+ "-DgRPC_SSL_PROVIDER=package"
+ "-DgRPC_PROTOBUF_PROVIDER=package"
+ "-DgRPC_GFLAGS_PROVIDER=package"
+ ];
+ enableParallelBuilds = true;
+ }
diff --git a/pkgs/development/libraries/gstreamer/core/setup-hook.sh b/pkgs/development/libraries/gstreamer/core/setup-hook.sh
index 3dd7812ece6..b8c741af578 100644
--- a/pkgs/development/libraries/gstreamer/core/setup-hook.sh
+++ b/pkgs/development/libraries/gstreamer/core/setup-hook.sh
@@ -5,5 +5,5 @@ addGstreamer1LibPath () {
fi
}
-envHooks+=(addGstreamer1LibPath)
+addEnvHooks "$hostOffset" addGstreamer1LibPath
diff --git a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix
index f6138fafaef..bee80cb24ec 100644
--- a/pkgs/development/libraries/gstreamer/gstreamermm/default.nix
+++ b/pkgs/development/libraries/gstreamer/gstreamermm/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }:
let
- ver_maj = "1.8";
+ ver_maj = "1.10";
ver_min = "0";
in
stdenv.mkDerivation rec {
@@ -9,16 +9,9 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz";
- sha256 = "0i4sk6ns4dyi4szk45bkm4kvl57l52lgm15p2wg2rhx2gr2w3qry";
+ sha256 = "0q4dx9sncqbwgpzma0zvj6zssc279yl80pn8irb95qypyyggwn5y";
};
- patches = [
- (fetchurl {
- url = https://bug783628.bugzilla-attachments.gnome.org/attachment.cgi?id=354765;
- sha256 = "082510a934bl05mz4cyakp8mfmd97cdj7vdrbvyqc4g58dcskvz0";
- })
- ];
-
outputs = [ "out" "dev" ];
nativeBuildInputs = [ pkgconfig file ];
@@ -31,8 +24,8 @@ stdenv.mkDerivation rec {
description = "C++ interface for GStreamer";
homepage = https://gstreamer.freedesktop.org/bindings/cplusplus.html;
license = licenses.lgpl21Plus;
- maintainers = with maintainers; [ romildo ];
platforms = platforms.unix;
+ maintainers = with maintainers; [ romildo ];
};
}
diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-bad/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-bad/default.nix
index bdb1b6c7bb7..77465645d23 100644
--- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-bad/default.nix
+++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-bad/default.nix
@@ -12,6 +12,12 @@ stdenv.mkDerivation rec {
sha256 = "148lw51dm6pgw8vc6v0fpvm7p233wr11nspdzmvq7bjp2cd7vbhf";
};
+ postInstall = ''
+ # Fixes CVE-2016-9447
+ # Does not actually impact NSF playback
+ rm -v $out/lib/gstreamer-0.10/libgstnsf.so
+ '';
+
buildInputs =
[ pkgconfig glib gstreamer gst-plugins-base libdvdnav libdvdread orc ];
diff --git a/pkgs/development/libraries/gstreamer/legacy/gstreamer/setup-hook.sh b/pkgs/development/libraries/gstreamer/legacy/gstreamer/setup-hook.sh
index e89aeda5bc1..65ce2611251 100644
--- a/pkgs/development/libraries/gstreamer/legacy/gstreamer/setup-hook.sh
+++ b/pkgs/development/libraries/gstreamer/legacy/gstreamer/setup-hook.sh
@@ -5,4 +5,4 @@ addGstreamerLibPath () {
fi
}
-envHooks+=(addGstreamerLibPath)
+addEnvHooks "$hostOffset" addGstreamerLibPath
diff --git a/pkgs/development/libraries/gtk+/2.x.nix b/pkgs/development/libraries/gtk+/2.x.nix
index 45222b7d7fc..169fd119d51 100644
--- a/pkgs/development/libraries/gtk+/2.x.nix
+++ b/pkgs/development/libraries/gtk+/2.x.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gettext, glib, atk, pango, cairo, perl, xorg
-, gdk_pixbuf, libintlOrEmpty, xlibsWrapper
+, gdk_pixbuf, libintlOrEmpty, xlibsWrapper, gobjectIntrospection
, xineramaSupport ? stdenv.isLinux
, cupsSupport ? true, cups ? null
, gdktarget ? "x11"
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
setupHook = ./setup-hook.sh;
- nativeBuildInputs = [ setupHook perl pkgconfig gettext ];
+ nativeBuildInputs = [ setupHook perl pkgconfig gettext gobjectIntrospection ];
patches = [ ./2.0-immodules.cache.patch ./gtk2-theme-paths.patch ];
diff --git a/pkgs/development/libraries/libgumbo/default.nix b/pkgs/development/libraries/gumbo/default.nix
similarity index 95%
rename from pkgs/development/libraries/libgumbo/default.nix
rename to pkgs/development/libraries/gumbo/default.nix
index 210a66e654a..17ca323a5fe 100644
--- a/pkgs/development/libraries/libgumbo/default.nix
+++ b/pkgs/development/libraries/gumbo/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libtool }:
stdenv.mkDerivation rec {
- name = "libgumbo-${version}";
+ name = "gumbo-${version}";
version = "0.10.1";
src = fetchFromGitHub {
diff --git a/pkgs/development/libraries/hwloc/default.nix b/pkgs/development/libraries/hwloc/default.nix
index 4d6af866990..c0745cb9e68 100644
--- a/pkgs/development/libraries/hwloc/default.nix
+++ b/pkgs/development/libraries/hwloc/default.nix
@@ -6,15 +6,13 @@
with stdenv.lib;
stdenv.mkDerivation rec {
- name = "hwloc-1.11.8";
+ name = "hwloc-1.11.9";
src = fetchurl {
url = "http://www.open-mpi.org/software/hwloc/v1.11/downloads/${name}.tar.bz2";
- sha256 = "0karxv4r1r8sa7ki5aamlxdvyvz0bvzq4gdhq0yi5nc4a0k11vzc";
+ sha256 = "0r2im1s5lp7zjwqalcqcnlxx0dsky1bnx5waf2r3rmj888c36hrr";
};
- hardeningDisable = [ "format" ];
-
configureFlags = [
"--localstatedir=/var"
];
@@ -75,8 +73,8 @@ stdenv.mkDerivation rec {
# http://www.open-mpi.org/projects/hwloc/license.php
license = licenses.bsd3;
- homepage = http://www.open-mpi.org/projects/hwloc/;
- maintainers = [ ];
+ homepage = https://www.open-mpi.org/projects/hwloc/;
+ maintainers = with maintainers; [ fpletz ];
platforms = platforms.all;
};
}
diff --git a/pkgs/development/libraries/ignition-math/default.nix b/pkgs/development/libraries/ignition-math/default.nix
index 66b21b6fae6..867ce024d2f 100644
--- a/pkgs/development/libraries/ignition-math/default.nix
+++ b/pkgs/development/libraries/ignition-math/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
'';
meta = with stdenv.lib; {
- homepage = http://ignitionrobotics.org/libraries/math;
+ homepage = https://ignitionrobotics.org/libraries/math;
description = "Math library by Ingition Robotics, created for the Gazebo project";
license = licenses.asl20;
maintainers = with maintainers; [ pxc ];
diff --git a/pkgs/development/libraries/ilmbase/default.nix b/pkgs/development/libraries/ilmbase/default.nix
index 21c2c46105e..956a8667be5 100644
--- a/pkgs/development/libraries/ilmbase/default.nix
+++ b/pkgs/development/libraries/ilmbase/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, automake, autoconf, libtool, which }:
stdenv.mkDerivation rec {
- name = "ilmbase-2.2.0";
+ name = "ilmbase-2.2.1";
src = fetchurl {
url = "http://download.savannah.nongnu.org/releases/openexr/${name}.tar.gz";
- sha256 = "1izddjwbh1grs8080vmaix72z469qy29wrvkphgmqmcm0sv1by7c";
+ sha256 = "17k0hq19wplx9s029kjrq6c51x2ryrfmaavcappkd0g67gk0dhna";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/development/libraries/ip2location-c/default.nix b/pkgs/development/libraries/ip2location-c/default.nix
index 109510df79b..82a4ec33755 100644
--- a/pkgs/development/libraries/ip2location-c/default.nix
+++ b/pkgs/development/libraries/ip2location-c/default.nix
@@ -28,6 +28,5 @@ stdenv.mkDerivation rec {
homepage = http://www.ip2location.com/developers/c-7;
license = with licenses; [ gpl3Plus lgpl3Plus ];
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/java/lombok/default.nix b/pkgs/development/libraries/java/lombok/default.nix
index 05ad908b3c3..df9b3f96c87 100644
--- a/pkgs/development/libraries/java/lombok/default.nix
+++ b/pkgs/development/libraries/java/lombok/default.nix
@@ -1,13 +1,18 @@
-{stdenv, fetchurl}:
+{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "lombok-1.16.8";
+ name = "lombok-1.16.20";
+
src = fetchurl {
url = "https://projectlombok.org/downloads/${name}.jar";
- sha256 = "0s7ak6gx1h04da2rdhvc0fk896cwqm2m7g3chqcjpsrkgfdv4cpy";
+ sha256 = "0v8fq4qlpjh4b87xx35m32y2xpnj4d05xflrgghia6mar8c8n5y5";
};
- phases = [ "installPhase" ];
- installPhase = "mkdir -p $out/share/java; cp $src $out/share/java/lombok.jar";
+
+ buildCommand = ''
+ mkdir -p $out/share/java
+ cp $src $out/share/java/lombok.jar
+ '';
+
meta = {
description = "A library that can write a lot of boilerplate for your Java project";
platforms = stdenv.lib.platforms.all;
diff --git a/pkgs/development/libraries/jemalloc/default.nix b/pkgs/development/libraries/jemalloc/default.nix
index 8c8c181409d..0882431cc15 100644
--- a/pkgs/development/libraries/jemalloc/default.nix
+++ b/pkgs/development/libraries/jemalloc/default.nix
@@ -1,21 +1,30 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, fetchpatch }:
stdenv.mkDerivation rec {
name = "jemalloc-${version}";
- version = "4.5.0";
+ version = "5.0.1";
src = fetchurl {
url = "https://github.com/jemalloc/jemalloc/releases/download/${version}/${name}.tar.bz2";
- sha256 = "9409d85664b4f135b77518b0b118c549009dc10f6cba14557d170476611f6780";
+ sha256 = "4814781d395b0ef093b21a08e8e6e0bd3dab8762f9935bbfb71679b0dea7c3e9";
};
# By default, jemalloc puts a je_ prefix onto all its symbols on OSX, which
# then stops downstream builds (mariadb in particular) from detecting it. This
# option should remove the prefix and give us a working jemalloc.
- configureFlags = stdenv.lib.optional stdenv.isDarwin "--with-jemalloc-prefix=";
-
+ configureFlags = stdenv.lib.optional stdenv.isDarwin "--with-jemalloc-prefix="
+ # jemalloc is unable to correctly detect transparent hugepage support on
+ # ARM (https://github.com/jemalloc/jemalloc/issues/526), and the default
+ # kernel ARMv6/7 kernel does not enable it, so we explicitly disable support
+ ++ stdenv.lib.optional stdenv.isArm "--disable-thp";
doCheck = true;
+ patches = stdenv.lib.optional stdenv.isAarch64 (fetchpatch {
+ url = "https://patch-diff.githubusercontent.com/raw/jemalloc/jemalloc/pull/1035.patch";
+ sha256 = "02y0q3dp253bipxv4r954nqipbjbj92p6ww9bx5bk3d8pa81wkqq";
+ });
+
+ enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://jemalloc.net;
diff --git a/pkgs/development/libraries/json-glib/default.nix b/pkgs/development/libraries/json-glib/default.nix
index 2414931e76a..bf32f4f8e8b 100644
--- a/pkgs/development/libraries/json-glib/default.nix
+++ b/pkgs/development/libraries/json-glib/default.nix
@@ -1,4 +1,7 @@
-{ stdenv, fetchurl, fetchpatch, glib, meson, ninja, pkgconfig, gettext, gobjectIntrospection, dbus, libintlOrEmpty }:
+{ stdenv, fetchurl, fetchpatch, glib, meson, ninja, pkgconfig, gettext
+, gobjectIntrospection, dbus, libintlOrEmpty
+, fixDarwinDylibNames
+}:
stdenv.mkDerivation rec {
name = "json-glib-${minVer}.2";
@@ -11,7 +14,8 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ glib ];
nativeBuildInputs = [ meson ninja pkgconfig gettext gobjectIntrospection ];
- buildInputs = libintlOrEmpty;
+ buildInputs = libintlOrEmpty
+ ++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
@@ -27,8 +31,6 @@ stdenv.mkDerivation rec {
doCheck = true;
- checkPhase = "meson test";
-
meta = with stdenv.lib; {
homepage = http://live.gnome.org/JsonGlib;
description = "A library providing (de)serialization support for the JavaScript Object Notation (JSON) format";
diff --git a/pkgs/development/libraries/kdb/default.nix b/pkgs/development/libraries/kdb/default.nix
index 399d5914c2d..e85190cdfce 100644
--- a/pkgs/development/libraries/kdb/default.nix
+++ b/pkgs/development/libraries/kdb/default.nix
@@ -1,7 +1,7 @@
{
mkDerivation, lib, fetchurl,
extra-cmake-modules,
- qtbase, qttranslations, kcoreaddons, python2, sqlite, postgresql, libmysql
+ qtbase, qttranslations, kcoreaddons, python2, sqlite, postgresql, mysql
}:
mkDerivation rec {
@@ -16,7 +16,7 @@ mkDerivation rec {
nativeBuildInputs = [ extra-cmake-modules ];
- buildInputs = [ qttranslations kcoreaddons python2 sqlite postgresql libmysql ];
+ buildInputs = [ qttranslations kcoreaddons python2 sqlite postgresql mysql.connector-c ];
propagatedBuildInputs = [ qtbase ];
diff --git a/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/setup-hook.sh
index c1b1e21852c..88091e78a0c 100644
--- a/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/setup-hook.sh
+++ b/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/setup-hook.sh
@@ -2,7 +2,7 @@ _ecmEnvHook() {
addToSearchPath XDG_DATA_DIRS "$1/share"
addToSearchPath XDG_CONFIG_DIRS "$1/etc/xdg"
}
-envHooks+=(_ecmEnvHook)
+addEnvHooks "$targetOffset" _ecmEnvHook
_ecmPreConfigureHook() {
# Because we need to use absolute paths here, we must set *all* the paths.
diff --git a/pkgs/development/libraries/kde-frameworks/fetch.sh b/pkgs/development/libraries/kde-frameworks/fetch.sh
index b9f6d092571..119abbe9f53 100644
--- a/pkgs/development/libraries/kde-frameworks/fetch.sh
+++ b/pkgs/development/libraries/kde-frameworks/fetch.sh
@@ -1 +1 @@
-WGET_ARGS=( https://download.kde.org/stable/frameworks/5.41/ -A '*.tar.xz' )
+WGET_ARGS=( https://download.kde.org/stable/frameworks/5.42/ -A '*.tar.xz' )
diff --git a/pkgs/development/libraries/kde-frameworks/kcmutils/kcmutils-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks/kcmutils/kcmutils-follow-symlinks.patch
index 5e1007b7fc0..cc041b9aa3b 100644
--- a/pkgs/development/libraries/kde-frameworks/kcmutils/kcmutils-follow-symlinks.patch
+++ b/pkgs/development/libraries/kde-frameworks/kcmutils/kcmutils-follow-symlinks.patch
@@ -1,13 +1,13 @@
-Index: kcmutils-5.33.0/src/kpluginselector.cpp
-===================================================================
---- kcmutils-5.33.0.orig/src/kpluginselector.cpp
-+++ kcmutils-5.33.0/src/kpluginselector.cpp
-@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const Q
+diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp
+index 137c865..097ab75 100644
+--- a/src/kpluginselector.cpp
++++ b/src/kpluginselector.cpp
+@@ -303,7 +303,7 @@ void KPluginSelector::addPlugins(const QString &componentName,
QStringList desktopFileNames;
const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory);
- Q_FOREACH (const QString &dir, dirs) {
+ for (const QString &dir : dirs) {
- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories);
-+ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks);
++ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks);
while (it.hasNext()) {
desktopFileNames.append(it.next());
}
diff --git a/pkgs/development/libraries/kde-frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
index 7a6c0ee9053..3b6ea27d41e 100644
--- a/pkgs/development/libraries/kde-frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
+++ b/pkgs/development/libraries/kde-frameworks/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch
@@ -1,25 +1,18 @@
-From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001
-From: Thomas Tuegel
-Date: Wed, 14 Oct 2015 06:47:01 -0500
-Subject: [PATCH] qdiriterator follow symlinks
-
----
- src/khelpclient.cpp | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp
-index 53a331e..80fbb01 100644
+index fbbc0fa..cb78741 100644
--- a/src/khelpclient.cpp
+++ b/src/khelpclient.cpp
@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname)
QString docPath;
const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation);
- Q_FOREACH (const QString &dir, desktopDirs) {
+ for (const QString &dir : desktopDirs) {
- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories);
+ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks);
while (it.hasNext()) {
const QString desktopPath(it.next());
KDesktopFile desktopFile(desktopPath);
---
-2.5.2
-
+@@ -75,4 +75,3 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname)
+ // launch khelpcenter, or a browser for URIs not handled by khelpcenter
+ QDesktopServices::openUrl(url);
+ }
+-
diff --git a/pkgs/development/libraries/kde-frameworks/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks/kdoctools/default.nix
index 661e89e3078..0a600fe8d05 100644
--- a/pkgs/development/libraries/kde-frameworks/kdoctools/default.nix
+++ b/pkgs/development/libraries/kde-frameworks/kdoctools/default.nix
@@ -8,10 +8,18 @@
mkDerivation {
name = "kdoctools";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
- nativeBuildInputs = [ extra-cmake-modules ];
- propagatedNativeBuildInputs = [ perl perlPackages.URI ];
+ nativeBuildInputs = [
+ extra-cmake-modules
+ # The build system insists on having native Perl.
+ perl perlPackages.URI
+ ];
+ propagatedBuildInputs = [
+ # kdoctools at runtime actually needs Perl for the platform kdoctools is
+ # running on, not necessarily native perl.
+ perl perlPackages.URI
+ qtbase
+ ];
buildInputs = [ karchive ki18n ];
- propagatedBuildInputs = [ qtbase ];
outputs = [ "out" "dev" ];
patches = [ ./kdoctools-no-find-docbook-xml.patch ];
cmakeFlags = [
diff --git a/pkgs/development/libraries/kde-frameworks/kdoctools/setup-hook.sh b/pkgs/development/libraries/kde-frameworks/kdoctools/setup-hook.sh
index 5cfffbd622d..2928d9b34db 100644
--- a/pkgs/development/libraries/kde-frameworks/kdoctools/setup-hook.sh
+++ b/pkgs/development/libraries/kde-frameworks/kdoctools/setup-hook.sh
@@ -2,4 +2,4 @@ addXdgData() {
addToSearchPath XDG_DATA_DIRS "$1/share"
}
-envHooks+=(addXdgData)
+addEnvHooks "$targetOffset" addXdgData
diff --git a/pkgs/development/libraries/kde-frameworks/kimageformats.nix b/pkgs/development/libraries/kde-frameworks/kimageformats.nix
index 26a8637bafc..29748a5f7f4 100644
--- a/pkgs/development/libraries/kde-frameworks/kimageformats.nix
+++ b/pkgs/development/libraries/kde-frameworks/kimageformats.nix
@@ -12,5 +12,5 @@ mkDerivation {
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ karchive openexr qtbase ];
outputs = [ "out" ]; # plugins only
- NIX_CFLAGS_COMPILE = "-I${getDev ilmbase}/include/OpenEXR";
+ CXXFLAGS = "-I${getDev ilmbase}/include/OpenEXR";
}
diff --git a/pkgs/development/libraries/kde-frameworks/kinit/default.nix b/pkgs/development/libraries/kde-frameworks/kinit/default.nix
index 1036ea27745..538078fd745 100644
--- a/pkgs/development/libraries/kde-frameworks/kinit/default.nix
+++ b/pkgs/development/libraries/kde-frameworks/kinit/default.nix
@@ -14,10 +14,10 @@ mkDerivation {
kconfig kcrash ki18n kio kservice kwindowsystem
];
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
- NIX_CFLAGS_COMPILE = [
- ''-DNIXPKGS_KF5_KIOCORE="${getLib kio}/lib/libKF5KIOCore.so.5"''
- ''-DNIXPKGS_KF5_PARTS="${getLib kparts}/lib/libKF5Parts.so.5"''
- ''-DNIXPKGS_KF5_PLASMA="${getLib plasma-framework}/lib/libKF5Plasma.so.5"''
+ CXXFLAGS = [
+ ''-DNIXPKGS_KF5_KIOCORE=\"${getLib kio}/lib/libKF5KIOCore.so.5\"''
+ ''-DNIXPKGS_KF5_PARTS=\"${getLib kparts}/lib/libKF5Parts.so.5\"''
+ ''-DNIXPKGS_KF5_PLASMA=\"${getLib plasma-framework}/lib/libKF5Plasma.so.5\"''
];
postFixup = ''
moveToOutput "lib/libexec/kf5/start_kdeinit" "$bin"
diff --git a/pkgs/development/libraries/kde-frameworks/plasma-framework.nix b/pkgs/development/libraries/kde-frameworks/plasma-framework.nix
index d3a81b50bf1..a2a90e448d4 100644
--- a/pkgs/development/libraries/kde-frameworks/plasma-framework.nix
+++ b/pkgs/development/libraries/kde-frameworks/plasma-framework.nix
@@ -4,7 +4,7 @@
kactivities, karchive, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons,
kdeclarative, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio,
knotifications, kpackage, kservice, kwayland, kwindowsystem, kxmlgui,
- qtbase, qtdeclarative, qtscript, qtx11extras,
+ qtbase, qtdeclarative, qtscript, qtx11extras, kirigami2
}:
mkDerivation {
@@ -14,7 +14,7 @@ mkDerivation {
buildInputs = [
kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons
kdeclarative kglobalaccel kguiaddons ki18n kiconthemes kio knotifications
- kwayland kwindowsystem kxmlgui qtdeclarative qtscript qtx11extras
+ kwayland kwindowsystem kxmlgui qtdeclarative qtscript qtx11extras kirigami2
];
propagatedBuildInputs = [ kpackage kservice qtbase ];
}
diff --git a/pkgs/development/libraries/kde-frameworks/srcs.nix b/pkgs/development/libraries/kde-frameworks/srcs.nix
index d99c723082f..f8d4bcf5c8f 100644
--- a/pkgs/development/libraries/kde-frameworks/srcs.nix
+++ b/pkgs/development/libraries/kde-frameworks/srcs.nix
@@ -3,611 +3,611 @@
{
attica = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/attica-5.41.0.tar.xz";
- sha256 = "1l97qhf053z7grl8d77p9zajdvaw3zicllwna9p2vyzbb6n6qyq7";
- name = "attica-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/attica-5.42.0.tar.xz";
+ sha256 = "0icjsk5sbri6nwybb2301wc6ysc1h4p35rxqp0adifyksq8akyxd";
+ name = "attica-5.42.0.tar.xz";
};
};
baloo = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/baloo-5.41.0.tar.xz";
- sha256 = "1kl4xs09r21bi11b5dzjkmc8igh5iv8nvq0gxd00n7qjghpxa399";
- name = "baloo-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/baloo-5.42.0.tar.xz";
+ sha256 = "18yknkcls1ypsp8n5l254bhlffiq4as5w1wgcjzhnf49cacys8nl";
+ name = "baloo-5.42.0.tar.xz";
};
};
bluez-qt = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/bluez-qt-5.41.0.tar.xz";
- sha256 = "08wlsmr12n3whqr65zm3l9hmzbaca2jkkhb1wwq5ilqm3gvxxz0n";
- name = "bluez-qt-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/bluez-qt-5.42.0.tar.xz";
+ sha256 = "0pbb0nn70hbsnp9q8jvqr3s85gh4bnnh1mp8xfkia2hp4c63ws9f";
+ name = "bluez-qt-5.42.0.tar.xz";
};
};
breeze-icons = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/breeze-icons-5.41.0.tar.xz";
- sha256 = "1k06ms48cnnwnlrh9wdabsms581jy70nz5narwg1zpzb6clf9p4w";
- name = "breeze-icons-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/breeze-icons-5.42.0.tar.xz";
+ sha256 = "0mrj0b022yfy669qqby09k4ij6aqyky23gpnjcp85df9saq0x44r";
+ name = "breeze-icons-5.42.0.tar.xz";
};
};
extra-cmake-modules = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/extra-cmake-modules-5.41.0.tar.xz";
- sha256 = "0rwz2rdyxr424z0mra29p8i6gf0b1402ifi94qrq7y4z1fa61bxs";
- name = "extra-cmake-modules-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/extra-cmake-modules-5.42.0.tar.xz";
+ sha256 = "1ml6s3ssr5izm3vnzlg5gn2nkcbz5l5nmapvyr4ml7n0089b43a3";
+ name = "extra-cmake-modules-5.42.0.tar.xz";
};
};
frameworkintegration = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/frameworkintegration-5.41.0.tar.xz";
- sha256 = "1k67hkzc2jw5im7vc8j64fqsxz5m8fnlq696hm5dh4fbclyckh5s";
- name = "frameworkintegration-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/frameworkintegration-5.42.0.tar.xz";
+ sha256 = "17fyny3c5chv7bipr19ayfjmd1amp2nms4ba5r7mwjp97xkphry7";
+ name = "frameworkintegration-5.42.0.tar.xz";
};
};
kactivities = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kactivities-5.41.0.tar.xz";
- sha256 = "1zxwmizq48kk6pd9y350gzszqi87wjbqni8z4mxa1kmw9lq01xlc";
- name = "kactivities-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kactivities-5.42.0.tar.xz";
+ sha256 = "0z0ac426npq99s1b8yzrqkjjjc34nbxlpw8pw388yj7fa41hw21r";
+ name = "kactivities-5.42.0.tar.xz";
};
};
kactivities-stats = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kactivities-stats-5.41.0.tar.xz";
- sha256 = "1nm34ln222x6mm4zpmvn8prqk9fr3jxyppn18kwlv0nfw16qmppq";
- name = "kactivities-stats-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kactivities-stats-5.42.0.tar.xz";
+ sha256 = "0si70hayf4brr83jzdjdsfvp8nc1sb7vdk0q532liafhf8hw9mq8";
+ name = "kactivities-stats-5.42.0.tar.xz";
};
};
kapidox = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kapidox-5.41.0.tar.xz";
- sha256 = "0jdphs536ymaj5f9gh5ycfgq1d41sas6bx4dzzjg13y26w6afyy6";
- name = "kapidox-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kapidox-5.42.0.tar.xz";
+ sha256 = "0izyd66p5403gl09l7irzy97mb9b14n4zyjrwap800zjlpwh41pz";
+ name = "kapidox-5.42.0.tar.xz";
};
};
karchive = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/karchive-5.41.0.tar.xz";
- sha256 = "0hd7jy9517m53ijvprl9ci97kjx7nd42ga33af71kqx5x030zi23";
- name = "karchive-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/karchive-5.42.0.tar.xz";
+ sha256 = "1vq2ngdxmdl6hzjwdcrv66ban8v9s5jiqwy1mgdqv4ak14l31qbi";
+ name = "karchive-5.42.0.tar.xz";
};
};
kauth = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kauth-5.41.0.tar.xz";
- sha256 = "1hkaf83p3xwcwkhlfbrdbg7b7nhw0gh0yw4lv8y3vpryn7pcd32l";
- name = "kauth-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kauth-5.42.0.tar.xz";
+ sha256 = "04kqb2hhr9lkpkxiaqlnyk0kmk6p89z5fgp5i5g83hsi8maz7swi";
+ name = "kauth-5.42.0.tar.xz";
};
};
kbookmarks = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kbookmarks-5.41.0.tar.xz";
- sha256 = "173rf85msrp1awmf2zsxwv6jjfkz7yc2pbh4jq0hfcgnqk46s9v0";
- name = "kbookmarks-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kbookmarks-5.42.0.tar.xz";
+ sha256 = "08q413mr5ib04gwnqznvm9vkkfmnh16rgf6rqdvclnci9w7ml5x2";
+ name = "kbookmarks-5.42.0.tar.xz";
};
};
kcmutils = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kcmutils-5.41.0.tar.xz";
- sha256 = "165b5hk0cv769kk9dqqggc6ji6gzln8zns5k6rv12rz825aysnhs";
- name = "kcmutils-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kcmutils-5.42.0.tar.xz";
+ sha256 = "1q67b0m6w3xvm22kq8b0b0rib1jzf25gf6dz7h286987zfbbs5n7";
+ name = "kcmutils-5.42.0.tar.xz";
};
};
kcodecs = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kcodecs-5.41.0.tar.xz";
- sha256 = "0y96mbp9j083kwkqxk0qgrjyhylp8f7f0ngcqcvhh8s6sgpb8xq9";
- name = "kcodecs-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kcodecs-5.42.0.tar.xz";
+ sha256 = "0b19z432r9dnyjknvwffhcmrg969yhydjvy4qrkrf22026f4smwc";
+ name = "kcodecs-5.42.0.tar.xz";
};
};
kcompletion = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kcompletion-5.41.0.tar.xz";
- sha256 = "0b6bh5l4s5q8yi6vls11c8b8dpscykh138kydfi925nxkrms7yv3";
- name = "kcompletion-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kcompletion-5.42.0.tar.xz";
+ sha256 = "0yqci2v0dk5v1mz4n3gca599a7mpihy563zc6sl8hsa30ld8li0f";
+ name = "kcompletion-5.42.0.tar.xz";
};
};
kconfig = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kconfig-5.41.0.tar.xz";
- sha256 = "1jch9bpqshigwvc2qs46qa0mclr1hdn0sqlkxbl4b2xb5xj28nzn";
- name = "kconfig-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kconfig-5.42.0.tar.xz";
+ sha256 = "08gg0d20c09j7hyxm8ydpzk2yf30c87g9ag7a9nfykrmi6cqirdq";
+ name = "kconfig-5.42.0.tar.xz";
};
};
kconfigwidgets = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kconfigwidgets-5.41.0.tar.xz";
- sha256 = "1lbpjkhxmpah32ig1wlxkr1v1l3fqicnnvj6lhwpk0bxys8cdnd2";
- name = "kconfigwidgets-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kconfigwidgets-5.42.0.tar.xz";
+ sha256 = "191zm24q2n001b65hcnfh2639k4iqhxwdmgdw29php3n2648xq4z";
+ name = "kconfigwidgets-5.42.0.tar.xz";
};
};
kcoreaddons = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kcoreaddons-5.41.0.tar.xz";
- sha256 = "1f45x4adql708903x4g27x1wbzvbwd809ibiqa5kiijayaqkjxqf";
- name = "kcoreaddons-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kcoreaddons-5.42.0.tar.xz";
+ sha256 = "17qv7r6z72mm9a0hyx5dgk90ikhhgm41bkvnq2hjal0py2lsnrs9";
+ name = "kcoreaddons-5.42.0.tar.xz";
};
};
kcrash = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kcrash-5.41.0.tar.xz";
- sha256 = "1jp06hz33mpcy2y93w4j3yqcvkphigiwq6j89mvgi9h21pahpjvy";
- name = "kcrash-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kcrash-5.42.0.tar.xz";
+ sha256 = "049y0xdyw37y0qid3d3plj8szfys5gw98j7lhcakiini8mn5cins";
+ name = "kcrash-5.42.0.tar.xz";
};
};
kdbusaddons = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kdbusaddons-5.41.0.tar.xz";
- sha256 = "02d6zv43vpz5h8si100zlsf5yfgjajsgwldcxblckyjr0qn42xny";
- name = "kdbusaddons-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kdbusaddons-5.42.0.tar.xz";
+ sha256 = "1613pc3r70jnzvpwm1xjdbdsmcpx28jwvcs2qq9swlywr5qr9hbd";
+ name = "kdbusaddons-5.42.0.tar.xz";
};
};
kdeclarative = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kdeclarative-5.41.0.tar.xz";
- sha256 = "1hxfrz4d7xjm63b9kawhf382gz1xykvdi9q4syhkjfbpyacxfjga";
- name = "kdeclarative-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kdeclarative-5.42.0.tar.xz";
+ sha256 = "1w604jy6vg2247vggz0ivl7wy2h5iapkz2z86mah3aw99f7dqa22";
+ name = "kdeclarative-5.42.0.tar.xz";
};
};
kded = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kded-5.41.0.tar.xz";
- sha256 = "10wmj3nb8vn90h1j0s5kfr8iydk7k853gg9v6hxivm92v6zr6l9g";
- name = "kded-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kded-5.42.0.tar.xz";
+ sha256 = "0w25dl4pnvby28gz0yvij32vi9n3p8si4nm4x45j7zsi2cb70j4l";
+ name = "kded-5.42.0.tar.xz";
};
};
kdelibs4support = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/portingAids/kdelibs4support-5.41.0.tar.xz";
- sha256 = "1mkp3w8h8cyskbfxcwsl72v87376x66n20ig7b3b6ply36578br4";
- name = "kdelibs4support-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/portingAids/kdelibs4support-5.42.0.tar.xz";
+ sha256 = "0aiig8akn6bdxrqdl96xjjy2pxw8hhfrsalbkkzyhh06j794snfb";
+ name = "kdelibs4support-5.42.0.tar.xz";
};
};
kdesignerplugin = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kdesignerplugin-5.41.0.tar.xz";
- sha256 = "1c1pnjgp9nifynwvsyjp7c45j40i111xnmjp89bb1jk9fv9g2f99";
- name = "kdesignerplugin-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kdesignerplugin-5.42.0.tar.xz";
+ sha256 = "004axa1fkj954d65x7l9z8dmw04209hb368rwa4gjzb8naf13ib6";
+ name = "kdesignerplugin-5.42.0.tar.xz";
};
};
kdesu = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kdesu-5.41.0.tar.xz";
- sha256 = "126m7by50zzkmk0r778xlkqfbfpihwd6d3wzd4hbqkh9km18l1rb";
- name = "kdesu-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kdesu-5.42.0.tar.xz";
+ sha256 = "0402p1h7wifk6sppg7ca9w0zfjllbhc1j5gsxj7ypq55g94np7hx";
+ name = "kdesu-5.42.0.tar.xz";
};
};
kdewebkit = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kdewebkit-5.41.0.tar.xz";
- sha256 = "1rnixlm37x5k4cdwckml2zdmm30k938nklkd7qnbaal230dzvj6d";
- name = "kdewebkit-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kdewebkit-5.42.0.tar.xz";
+ sha256 = "1csd4p996im7ygxc5rfdkzgdpngjgzyqakj12rl9rnfbsd15i8kb";
+ name = "kdewebkit-5.42.0.tar.xz";
};
};
kdnssd = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kdnssd-5.41.0.tar.xz";
- sha256 = "042dmh50rxvipb5pqz0csb3y7cvzc2ga2a5qcvd1vw84ii1mmjbh";
- name = "kdnssd-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kdnssd-5.42.0.tar.xz";
+ sha256 = "1k1rz62h3mafliik5n0k98dc56b5v2v6qyqj40696mcyc2d1yvll";
+ name = "kdnssd-5.42.0.tar.xz";
};
};
kdoctools = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kdoctools-5.41.0.tar.xz";
- sha256 = "06v63br6m5nhvsdsynhb7i825yrry94s7zrk20k0xw4yahpvkjcs";
- name = "kdoctools-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kdoctools-5.42.0.tar.xz";
+ sha256 = "1bby3avdllch1mji0mxzcix8q5yir5a0i6wpjs5lwckv1glh6kmz";
+ name = "kdoctools-5.42.0.tar.xz";
};
};
kemoticons = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kemoticons-5.41.0.tar.xz";
- sha256 = "1lj6c6k8dh2rgj1128ms2xv7dk1v9li5rcy2djqfynqdrvg5iy3g";
- name = "kemoticons-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kemoticons-5.42.0.tar.xz";
+ sha256 = "0f6an1bwxnga41a2b35b2pdcni4p0hh76k4jvanl3g046v07f2wr";
+ name = "kemoticons-5.42.0.tar.xz";
};
};
kfilemetadata = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kfilemetadata-5.41.0.tar.xz";
- sha256 = "0y9ya18bqa8sfi2c10y2q0dkwdry0wfq5s2sb53q0fh2fph7hjvi";
- name = "kfilemetadata-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kfilemetadata-5.42.0.tar.xz";
+ sha256 = "03wk38q3sq354ykz9dwbgykn73ldf94ryx6hxvpr66bq3a59jmwz";
+ name = "kfilemetadata-5.42.0.tar.xz";
};
};
kglobalaccel = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kglobalaccel-5.41.0.tar.xz";
- sha256 = "0i8aw0jbsh26asjmhs0lax1yv9qalpr82cd8m0nbyqn2s3f4jyaf";
- name = "kglobalaccel-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kglobalaccel-5.42.0.tar.xz";
+ sha256 = "0nlza73i0qd79yhwhpnvgbh2xa9lvd1n2xg25p3bvfzwidcfdxg6";
+ name = "kglobalaccel-5.42.0.tar.xz";
};
};
kguiaddons = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kguiaddons-5.41.0.tar.xz";
- sha256 = "0cva0qy946srqay9nmh97mjv7kf2lr51nipx9qx2jd21d8cvz8p1";
- name = "kguiaddons-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kguiaddons-5.42.0.tar.xz";
+ sha256 = "193i8b4f13dkgp88m3pk9wzi0dhx7qmsnmpizxia3457gg016wn7";
+ name = "kguiaddons-5.42.0.tar.xz";
};
};
khtml = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/portingAids/khtml-5.41.0.tar.xz";
- sha256 = "0gbs63d7izb8kaf4k8ssp2lkcps9fqk32czjpmzx3fq1gnaczry3";
- name = "khtml-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/portingAids/khtml-5.42.0.tar.xz";
+ sha256 = "1bfslndxvad0zgzr22w2mz1xwavix9bh5qrrv8dpshlh043bwr3l";
+ name = "khtml-5.42.0.tar.xz";
};
};
ki18n = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/ki18n-5.41.0.tar.xz";
- sha256 = "12ylqsi7lsxvdcg9a1p9hkd6lpcj971k77zly6vpb4yb3s6z0jqd";
- name = "ki18n-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/ki18n-5.42.0.tar.xz";
+ sha256 = "1rpriflb2a48j94zxgh63l6rzq4nlnlkvy89ns1vkdw42bnqrjx9";
+ name = "ki18n-5.42.0.tar.xz";
};
};
kiconthemes = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kiconthemes-5.41.0.tar.xz";
- sha256 = "1ywg7b3vy3p7vmd055a72hmpnwp0l0yvf6cnb6nvmpnp3pm737g1";
- name = "kiconthemes-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kiconthemes-5.42.0.tar.xz";
+ sha256 = "1nbxxpf8bv835xl35b17rk8s3zs110bh31078kqqh7dhvwzlxic7";
+ name = "kiconthemes-5.42.0.tar.xz";
};
};
kidletime = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kidletime-5.41.0.tar.xz";
- sha256 = "0k4q8ssqfbgfqvjq1rpills16nz4fi92mc754644by3s0czh409w";
- name = "kidletime-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kidletime-5.42.0.tar.xz";
+ sha256 = "019r41r28pcrcn1kwxsll53za705jkc9n23b6sr2lplgjk05bcxh";
+ name = "kidletime-5.42.0.tar.xz";
};
};
kimageformats = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kimageformats-5.41.0.tar.xz";
- sha256 = "11df264s3n192pggdmql2pklnflc8fn9v8zrjpn38f99hs46bq8s";
- name = "kimageformats-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kimageformats-5.42.0.tar.xz";
+ sha256 = "1k67yrmszx7azjzrg478rimbz991lghx4d6dmg22p6dknajd78a6";
+ name = "kimageformats-5.42.0.tar.xz";
};
};
kinit = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kinit-5.41.0.tar.xz";
- sha256 = "05jqsnj33gwxp4lc81378kb58idnmcmn84smy3hkqwlakisnwgy9";
- name = "kinit-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kinit-5.42.0.tar.xz";
+ sha256 = "05vpac41pw1n8y58l2z08vyknzv950x8dxxw66dnymm2v31w07ia";
+ name = "kinit-5.42.0.tar.xz";
};
};
kio = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kio-5.41.0.tar.xz";
- sha256 = "17k4pfbhkv1inx5c3wqm388c02cdf3wnqgnhky271v7gb5ww5i4h";
- name = "kio-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kio-5.42.0.tar.xz";
+ sha256 = "1526a89x11ank55dp3rfp7xd04w8x7prjg3y6i7n2q9nabwhw7gc";
+ name = "kio-5.42.0.tar.xz";
};
};
kirigami2 = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kirigami2-5.41.0.tar.xz";
- sha256 = "04l7b86fs7s80dfrznc2c0zh6phpgirwsinykrzfqg792gmbvx2h";
- name = "kirigami2-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kirigami2-5.42.0.tar.xz";
+ sha256 = "11gqn7amp0r9bgh8ldgisfc2lrkzkn5mq2a1madf24nvjbkvqnqv";
+ name = "kirigami2-5.42.0.tar.xz";
};
};
kitemmodels = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kitemmodels-5.41.0.tar.xz";
- sha256 = "13kngcj8ifnhbp0jsrjwhw49my8pnw493g11y11cw17hw7sqg55k";
- name = "kitemmodels-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kitemmodels-5.42.0.tar.xz";
+ sha256 = "0mcdzdqwmvf9pwirsrnjbhrgqphnfmanbl9zij4qsmin8n866mhc";
+ name = "kitemmodels-5.42.0.tar.xz";
};
};
kitemviews = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kitemviews-5.41.0.tar.xz";
- sha256 = "0147pm5p03w1b71mrr5rssmh2n80q54ghfpbjpq3spjdkjg1f26f";
- name = "kitemviews-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kitemviews-5.42.0.tar.xz";
+ sha256 = "1j1q0b08f8mnfc3r2a7rplyb2nv9f0aq5a3fxskinvg70c6y248w";
+ name = "kitemviews-5.42.0.tar.xz";
};
};
kjobwidgets = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kjobwidgets-5.41.0.tar.xz";
- sha256 = "1fbdk6l8rbnyqn0cz2dm9cagn7x89zpy3wczj1cdvnc7k7wg75qv";
- name = "kjobwidgets-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kjobwidgets-5.42.0.tar.xz";
+ sha256 = "1m3csdl7wh18ywv5p0qpbjpixvflgjcq3yvk3vlvh0sxxlwcz8k4";
+ name = "kjobwidgets-5.42.0.tar.xz";
};
};
kjs = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/portingAids/kjs-5.41.0.tar.xz";
- sha256 = "1a263cng8i304yh66iq45hwpgnl8ng6wvjrsl11hhqmyv07h2kk0";
- name = "kjs-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/portingAids/kjs-5.42.0.tar.xz";
+ sha256 = "1m26sb2qyrcgmpkw76k2yv5my2pkhld96vw6aaqm77q90faw734g";
+ name = "kjs-5.42.0.tar.xz";
};
};
kjsembed = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/portingAids/kjsembed-5.41.0.tar.xz";
- sha256 = "1vxbh5rd9rdj3m7sag48c4cns443j479mlfbwxgnpm92z67ka7x7";
- name = "kjsembed-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/portingAids/kjsembed-5.42.0.tar.xz";
+ sha256 = "10w4w4ncwr245bv1ii4sh154w91ghfz0l60k89j50lsydpcqcp3a";
+ name = "kjsembed-5.42.0.tar.xz";
};
};
kmediaplayer = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/portingAids/kmediaplayer-5.41.0.tar.xz";
- sha256 = "03420i82p984w6iqdiam2xam7b9khh76pll4ffn0c5k4wf1ba2z4";
- name = "kmediaplayer-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/portingAids/kmediaplayer-5.42.0.tar.xz";
+ sha256 = "1k1pjc0cz36gs0pl2pxw8f9f82xkbqyy320nfyhan5waxbl1qd5n";
+ name = "kmediaplayer-5.42.0.tar.xz";
};
};
knewstuff = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/knewstuff-5.41.0.tar.xz";
- sha256 = "0j9qgswiacv7yj8c28q343falaglh5zc4wwcflwy1zvrp59bjcz4";
- name = "knewstuff-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/knewstuff-5.42.0.tar.xz";
+ sha256 = "0i2gmyp67xzf2m5wnv7v574q3gsp1yxfflv1jgl0wy57vchwn9g6";
+ name = "knewstuff-5.42.0.tar.xz";
};
};
knotifications = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/knotifications-5.41.0.tar.xz";
- sha256 = "1dsiigmzmhmg3x6y5nf2i9zq3hc4nca2gg2dvl0bz1lm438ddy84";
- name = "knotifications-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/knotifications-5.42.0.tar.xz";
+ sha256 = "0awmwypmd104vhaj2v9k83niflxj26d4mbl6mzfcj75lgka6kffc";
+ name = "knotifications-5.42.0.tar.xz";
};
};
knotifyconfig = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/knotifyconfig-5.41.0.tar.xz";
- sha256 = "0hrdjh76php34wkcswnh5rfnkajf0g9n8mpqsdj4djxja39vi6vs";
- name = "knotifyconfig-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/knotifyconfig-5.42.0.tar.xz";
+ sha256 = "1h07bjj71611v6912m5ajli6qszh9w925zqbk3vih8rn6pd2s3mc";
+ name = "knotifyconfig-5.42.0.tar.xz";
};
};
kpackage = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kpackage-5.41.0.tar.xz";
- sha256 = "1663sshy52my9qbrj8ny1a6sipl94l2paxss4k5977fyyax15zdm";
- name = "kpackage-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kpackage-5.42.0.tar.xz";
+ sha256 = "10amhh07x8d0jkyylb19cyzjs71k8dq1y8isfahqzb2kd43vijqa";
+ name = "kpackage-5.42.0.tar.xz";
};
};
kparts = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kparts-5.41.0.tar.xz";
- sha256 = "09ddh7n8jj8zisdm90lbmc4xk4axsibhx1cjbpaigzcfcvnj1b71";
- name = "kparts-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kparts-5.42.0.tar.xz";
+ sha256 = "1mb5gp2ckmmrb4ym7cqvyl81wnp7cryk85gmizl7cnn69svlf40h";
+ name = "kparts-5.42.0.tar.xz";
};
};
kpeople = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kpeople-5.41.0.tar.xz";
- sha256 = "1k72br66mnvkripzdq2wcchlrg6p7mxfqa0rbq0rq3q7npw1zzw5";
- name = "kpeople-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kpeople-5.42.0.tar.xz";
+ sha256 = "050km3rpx58acx2341si46lxc2hywa59m8rwd849c2dnsxw3w1hm";
+ name = "kpeople-5.42.0.tar.xz";
};
};
kplotting = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kplotting-5.41.0.tar.xz";
- sha256 = "197n2m3q9b588j56m30i12z55nbymbj4wgpgrkbsci7162jjjj1z";
- name = "kplotting-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kplotting-5.42.0.tar.xz";
+ sha256 = "109b9grshrwralyp8ilkbf1k0akaggygqh6wafqdf0ris0ps13l9";
+ name = "kplotting-5.42.0.tar.xz";
};
};
kpty = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kpty-5.41.0.tar.xz";
- sha256 = "04xg5pn65nvk1bdh6bfznbsmlra6gzph72i7m28h9idnz143lr12";
- name = "kpty-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kpty-5.42.0.tar.xz";
+ sha256 = "07s16zxs03ixy7yxy9fda83yqhcgqzx42gnvwjwkyc8q05njmma6";
+ name = "kpty-5.42.0.tar.xz";
};
};
kross = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/portingAids/kross-5.41.0.tar.xz";
- sha256 = "0xsfgwb3ihgby6r6wycxnqkd9d7zrj6w3h9bxw8n4asjfri7lgwi";
- name = "kross-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/portingAids/kross-5.42.0.tar.xz";
+ sha256 = "1aqqwby6jslimpvx42d4n6gjsjc8l82gmsq5ajpv9zkkk91dqfqi";
+ name = "kross-5.42.0.tar.xz";
};
};
krunner = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/krunner-5.41.0.tar.xz";
- sha256 = "0vyxijs0vnpa19z7avd1438q1c7s4ka17hbsdq2r0jza3iwkfx83";
- name = "krunner-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/krunner-5.42.0.tar.xz";
+ sha256 = "0xh9kss67l09am1ilsr9zyx1yhlmaq3g9x60hw0sx7h7wrl6zsw6";
+ name = "krunner-5.42.0.tar.xz";
};
};
kservice = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kservice-5.41.0.tar.xz";
- sha256 = "0k3ch3vbdy9rm82d9n6mf6ir3qm7l2fddp98jy4jmsr0qynqn50q";
- name = "kservice-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kservice-5.42.0.tar.xz";
+ sha256 = "0z8zfpd00ndvkm1klp8l4mrcksshhyg280zgmg3gffz5rgh3gwri";
+ name = "kservice-5.42.0.tar.xz";
};
};
ktexteditor = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/ktexteditor-5.41.0.tar.xz";
- sha256 = "1idvldchfbnvimvcrizigmmam62q7rpam06xprcizywyxq53yw7z";
- name = "ktexteditor-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/ktexteditor-5.42.0.tar.xz";
+ sha256 = "020y3j6vm15sfpiwainr3qsx9i93j15mrvq523wmbmdj1z36yrh2";
+ name = "ktexteditor-5.42.0.tar.xz";
};
};
ktextwidgets = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/ktextwidgets-5.41.0.tar.xz";
- sha256 = "0m6n4v0njvcaky87f0ga47iwq12hsvghadj8pngjrksankvaj23n";
- name = "ktextwidgets-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/ktextwidgets-5.42.0.tar.xz";
+ sha256 = "088azbv95ycwxmxxw4l63i2l14fmn8l473pb4djh2mvz1ypfqayk";
+ name = "ktextwidgets-5.42.0.tar.xz";
};
};
kunitconversion = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kunitconversion-5.41.0.tar.xz";
- sha256 = "1kn6lw58b9w6f38mra2hizbnik64ka3gvgqk1xqp0mspqmr498rw";
- name = "kunitconversion-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kunitconversion-5.42.0.tar.xz";
+ sha256 = "0219pna4l3vvhyf5acsc87n48jzdnws6kwyhaiy3hy1pzrilv32l";
+ name = "kunitconversion-5.42.0.tar.xz";
};
};
kwallet = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kwallet-5.41.0.tar.xz";
- sha256 = "1gdzfp3gbr5qp821pkhaj6v8zg3q21xz6j11frjww8fn5nmp3v3l";
- name = "kwallet-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kwallet-5.42.0.tar.xz";
+ sha256 = "1kv3v7593srfn0wd7qp4rhvb30rxp7d2qmlwi0n4nc9s6v59pabn";
+ name = "kwallet-5.42.0.tar.xz";
};
};
kwayland = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kwayland-5.41.0.tar.xz";
- sha256 = "1dw2g6wwj7hhxlgzrjqk39ywpzh6ijwfjnzqjp6s8s5274fvjqbn";
- name = "kwayland-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kwayland-5.42.0.tar.xz";
+ sha256 = "0wr6ygppahxsx3dh71h2wmybv7z7iyqdv7wn80cxb0mp4zpyinh7";
+ name = "kwayland-5.42.0.tar.xz";
};
};
kwidgetsaddons = {
- version = "5.41.0";
+ version = "5.42.1";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kwidgetsaddons-5.41.0.tar.xz";
- sha256 = "15fm7gni22wb64pski3fn5myrn9z22h077hzzcc34c3af21yh5s5";
- name = "kwidgetsaddons-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kwidgetsaddons-5.42.1.tar.xz";
+ sha256 = "0h0vfrfl5zi01fpvmd825kazzlyawz3i66qrfkymdrnvqmfzcmlg";
+ name = "kwidgetsaddons-5.42.1.tar.xz";
};
};
kwindowsystem = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kwindowsystem-5.41.0.tar.xz";
- sha256 = "0x4jz9qkvxs5dlzk860f8vhlczgxg6di614y8ji6afra760nk17l";
- name = "kwindowsystem-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kwindowsystem-5.42.0.tar.xz";
+ sha256 = "15k6x0f93qxka3mz7qfzak2ibdd88q77pz6akil8s3g41zsg2dqv";
+ name = "kwindowsystem-5.42.0.tar.xz";
};
};
kxmlgui = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kxmlgui-5.41.0.tar.xz";
- sha256 = "0cgwx3lhnn982gvl2yv5272bs3il05ssfpjlkgmqgnrnz2qxlhlr";
- name = "kxmlgui-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kxmlgui-5.42.0.tar.xz";
+ sha256 = "0kfxjx8wrhkys5bydnv84nqxc2jqvv92zb2l6zpi0km5ggmia5y0";
+ name = "kxmlgui-5.42.0.tar.xz";
};
};
kxmlrpcclient = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/kxmlrpcclient-5.41.0.tar.xz";
- sha256 = "0y7n6xk18a6zci36ka426h7ar8r7kkr80jn47mc6jw3qdk4nvri7";
- name = "kxmlrpcclient-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/kxmlrpcclient-5.42.0.tar.xz";
+ sha256 = "0ciip27ilsfk9s3gslpbi06v8i6ipdbmcig2jf43z3amsxpq0ncn";
+ name = "kxmlrpcclient-5.42.0.tar.xz";
};
};
modemmanager-qt = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/modemmanager-qt-5.41.0.tar.xz";
- sha256 = "1bp9mllzgvqr3dsjg9a81yv487whf26vfxiyim8hr42b9j8v8wj0";
- name = "modemmanager-qt-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/modemmanager-qt-5.42.0.tar.xz";
+ sha256 = "0q6qzn60z55h0gyc9xwdfaq45mjpk3zrr6d4qqjjfkqsr3866sfx";
+ name = "modemmanager-qt-5.42.0.tar.xz";
};
};
networkmanager-qt = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/networkmanager-qt-5.41.0.tar.xz";
- sha256 = "0vdrbfwamk5p6mm0i05bxvmrlqxm9c5d373pn7qrm0kzs916xhlv";
- name = "networkmanager-qt-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/networkmanager-qt-5.42.0.tar.xz";
+ sha256 = "03hhvx8d52mfgbhd4gn0vhsk9k1fv1pvq24ixxdgs2mw44v884xq";
+ name = "networkmanager-qt-5.42.0.tar.xz";
};
};
oxygen-icons5 = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/oxygen-icons5-5.41.0.tar.xz";
- sha256 = "1zpcjfzw4pv73ms8pc1w4fpvxcbpasl2av0g4y6sj7rshzdgrj31";
- name = "oxygen-icons5-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/oxygen-icons5-5.42.0.tar.xz";
+ sha256 = "0pnav9h0xmvbaamzpcyznjjv25slz8maszshx7sj7h07b5a23x46";
+ name = "oxygen-icons5-5.42.0.tar.xz";
};
};
plasma-framework = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/plasma-framework-5.41.0.tar.xz";
- sha256 = "1risn810pyncfpn01xiqsb5j8pwsnmx60lfajnx7qygny6b69pl4";
- name = "plasma-framework-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/plasma-framework-5.42.0.tar.xz";
+ sha256 = "079c8h0lmbkfr3srj5m8a40b50kyrxbgmy1n66329l8js9xrvaah";
+ name = "plasma-framework-5.42.0.tar.xz";
};
};
prison = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/prison-5.41.0.tar.xz";
- sha256 = "0q3r1a3047yxhsd3qfwzwsw261zrfdmsklnyq5d2ayflchcj5vxi";
- name = "prison-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/prison-5.42.0.tar.xz";
+ sha256 = "0bhg2fjdwsv7mk16jh1nc3miwggz1dl9l99l2f20xvi75hn7rryg";
+ name = "prison-5.42.0.tar.xz";
};
};
qqc2-desktop-style = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/qqc2-desktop-style-5.41.0.tar.xz";
- sha256 = "166cjfaly8fzzchq8pk2s7f5mm63cwmayw3qc0p7amy5d0nykm0w";
- name = "qqc2-desktop-style-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/qqc2-desktop-style-5.42.0.tar.xz";
+ sha256 = "1arlfhcshfs11pgf87jzjgln1p711zlx0v0q014740mbzb9g5wnk";
+ name = "qqc2-desktop-style-5.42.0.tar.xz";
};
};
solid = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/solid-5.41.0.tar.xz";
- sha256 = "0i2qxps26rg2x1576m35k4kj018i9jpsnlayzsk4fcj44kvsq9z3";
- name = "solid-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/solid-5.42.0.tar.xz";
+ sha256 = "10lr8paaq6vaiqn833kzcdc3kkyv8j9fdchy7h8pvi9ajjjwq0lq";
+ name = "solid-5.42.0.tar.xz";
};
};
sonnet = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/sonnet-5.41.0.tar.xz";
- sha256 = "1jhpl0ajqlln88fmzbwjxn0illbas4s0hbzwd3w56s9wg8j18s76";
- name = "sonnet-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/sonnet-5.42.0.tar.xz";
+ sha256 = "1r3amddmy0nm8klw0jzvb8bl1l9hkrx50d8j0zq2lbjy36h3yliw";
+ name = "sonnet-5.42.0.tar.xz";
};
};
syntax-highlighting = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/syntax-highlighting-5.41.0.tar.xz";
- sha256 = "0hmcb9f162hyvfb0mfkm69avgrbl146l7lyfzb93z1hk6f2gpxqc";
- name = "syntax-highlighting-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/syntax-highlighting-5.42.0.tar.xz";
+ sha256 = "1iwiym50859jki4x41rfdmbd14jiq5lr2hdg46pjkyw17njdjd60";
+ name = "syntax-highlighting-5.42.0.tar.xz";
};
};
threadweaver = {
- version = "5.41.0";
+ version = "5.42.0";
src = fetchurl {
- url = "${mirror}/stable/frameworks/5.41/threadweaver-5.41.0.tar.xz";
- sha256 = "08nlskhdds13wplv4lwy4xshimkhl8jvzkz1h1qks6wggbwxf11m";
- name = "threadweaver-5.41.0.tar.xz";
+ url = "${mirror}/stable/frameworks/5.42/threadweaver-5.42.0.tar.xz";
+ sha256 = "1isqlpnfxzxyz7mdm7yfrafgnx09mcndicdgdw3mi4r4misbrrbn";
+ name = "threadweaver-5.42.0.tar.xz";
};
};
}
diff --git a/pkgs/development/libraries/kerberos/krb5.nix b/pkgs/development/libraries/kerberos/krb5.nix
index 101c3aca07d..98073b7bbdc 100644
--- a/pkgs/development/libraries/kerberos/krb5.nix
+++ b/pkgs/development/libraries/kerberos/krb5.nix
@@ -22,7 +22,12 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" ];
configureFlags = [ "--with-tcl=no" "--localstatedir=/var/lib"]
- ++ optional stdenv.isFreeBSD ''WARN_CFLAGS=""'';
+ ++ optional stdenv.isFreeBSD ''WARN_CFLAGS=""''
+ ++ optionals (stdenv.buildPlatform != stdenv.hostPlatform)
+ [ "krb5_cv_attr_constructor_destructor=yes,yes"
+ "ac_cv_func_regcomp=yes"
+ "ac_cv_printf_positional=yes"
+ ];
nativeBuildInputs = [ pkgconfig perl ]
++ optional (!libOnly) yacc
diff --git a/pkgs/development/libraries/libagar/default.nix b/pkgs/development/libraries/libagar/default.nix
index 1c9e8eca0d5..ee984a53b4c 100644
--- a/pkgs/development/libraries/libagar/default.nix
+++ b/pkgs/development/libraries/libagar/default.nix
@@ -20,15 +20,16 @@ stdenv.mkDerivation rec {
"--with-gettext=${gettext}"
"--with-jpeg=${libjpeg.dev}"
"--with-gl=${mesa}"
- "--with-mysql=yes"
+ "--with-mysql=${mysql.connector-c}"
"--with-manpages=yes"
];
outputs = [ "out" "devdoc" ];
nativeBuildInputs = [ pkgconfig libtool gettext ];
+
buildInputs = [
- bsdbuild perl xlibsWrapper libXinerama SDL mesa mysql.client mandoc
+ bsdbuild perl xlibsWrapper libXinerama SDL mesa mysql.connector-c mandoc
freetype.dev libpng libjpeg.dev fontconfig portaudio libsndfile
];
diff --git a/pkgs/development/libraries/libargon2/default.nix b/pkgs/development/libraries/libargon2/default.nix
index 79cbf09317c..94e8ea05e66 100644
--- a/pkgs/development/libraries/libargon2/default.nix
+++ b/pkgs/development/libraries/libargon2/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "libargon2-${version}";
- version = "20161029";
+ version = "20171227";
src = fetchFromGitHub {
owner = "P-H-C";
repo = "phc-winner-argon2";
rev = "${version}";
- sha256 = "021g8wi4g67ywm8zf3yncqwrmfz7ypgm1ih9wcmnxip5n75rymh5";
+ sha256 = "0sc9zca1anqk41017vjpas4kxi4cbn0zvicv8vj8p2sb2gy94bh8";
};
installPhase = ''
diff --git a/pkgs/development/libraries/libass/default.nix b/pkgs/development/libraries/libass/default.nix
index 058839f70f8..d7ebf781a04 100644
--- a/pkgs/development/libraries/libass/default.nix
+++ b/pkgs/development/libraries/libass/default.nix
@@ -19,11 +19,11 @@ in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "libass-${version}";
- version = "0.13.7";
+ version = "0.14.0";
src = fetchurl {
url = "https://github.com/libass/libass/releases/download/${version}/${name}.tar.xz";
- sha256 = "17byv926w1mxn56n896sxvdq4m0yv1l7qbm688h6zr3nzgsyarbh";
+ sha256 = "18iqznl4mabhj9ywfsz4kwvbsplcv1jjxq50nxssvbj8my1267w8";
};
configureFlags = [
diff --git a/pkgs/development/libraries/libassuan/default.nix b/pkgs/development/libraries/libassuan/default.nix
index bad2a060cdc..94369449ff3 100644
--- a/pkgs/development/libraries/libassuan/default.nix
+++ b/pkgs/development/libraries/libassuan/default.nix
@@ -1,11 +1,11 @@
{ fetchurl, stdenv, pth, libgpgerror }:
stdenv.mkDerivation rec {
- name = "libassuan-2.4.3";
+ name = "libassuan-2.5.1";
src = fetchurl {
url = "mirror://gnupg/libassuan/${name}.tar.bz2";
- sha256 = "0w9bmasln4z8mn16s1is55a06w3nv8jbyal496z5jvr5vcxkm112";
+ sha256 = "0jb4nb4nrjr949gd3lw8lh4v5d6qigxaq6xwy24w5apjnhvnrya7";
};
outputs = [ "out" "dev" "info" ];
diff --git a/pkgs/development/libraries/libast/default.nix b/pkgs/development/libraries/libast/default.nix
index 900bcac4156..bcfee044475 100644
--- a/pkgs/development/libraries/libast/default.nix
+++ b/pkgs/development/libraries/libast/default.nix
@@ -3,8 +3,8 @@
stdenv.mkDerivation rec {
name = "libast-${version}";
- version = "0.7";
-
+ version = "0.7.1";
+
src = fetchurl {
url = "http://www.eterm.org/download/${name}.tar.gz";
sha256 = "1w7bs46r4lykfd83kc3bg9i1rxzzlb4ydk23ikf8mx8avz05q1aj";
diff --git a/pkgs/development/libraries/libatomic_ops/default.nix b/pkgs/development/libraries/libatomic_ops/default.nix
index eedc0993d73..3aae754be40 100644
--- a/pkgs/development/libraries/libatomic_ops/default.nix
+++ b/pkgs/development/libraries/libatomic_ops/default.nix
@@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
name = "libatomic_ops-${version}";
- version = "7.6.0";
+ version = "7.6.2";
src = fetchurl {
urls = [
"http://www.ivmaisoft.com/_bin/atomic_ops/libatomic_ops-${version}.tar.gz"
"https://github.com/ivmai/libatomic_ops/releases/download/v${version}/libatomic_ops-${version}.tar.gz"
];
- sha256 ="03ylfr29g9zc0r6b6axz3i68alj5qmxgzknxwam3jlx0sz8hcb4f";
+ sha256 ="1rif2hjscq5mh639nsnjhb90c01gnmy1sbmj6x6hsn1xmpnj95r1";
};
nativeBuildInputs = stdenv.lib.optionals stdenv.isCygwin [ autoconf automake libtool ];
diff --git a/pkgs/development/libraries/libbladeRF/default.nix b/pkgs/development/libraries/libbladeRF/default.nix
index 8948a74ad63..3f4f48775c1 100644
--- a/pkgs/development/libraries/libbladeRF/default.nix
+++ b/pkgs/development/libraries/libbladeRF/default.nix
@@ -2,14 +2,14 @@
, libusb1, udev }:
stdenv.mkDerivation rec {
- version = "1.4.0";
+ version = "1.9.0";
name = "libbladeRF-v${version}";
src = fetchFromGitHub {
owner = "Nuand";
repo = "bladeRF";
rev = "libbladeRF_v${version}";
- sha256 = "1y00hqsmqaix4dql8mb75zx87zvn8b483yxv53x9qyjspksbs60c";
+ sha256 = "0frvphp4xxdxwzmi94b0asl7b891sd3fk8iw9kfk8h6f3cdhj8xa";
};
nativeBuildInputs = [ pkgconfig ];
@@ -35,6 +35,6 @@ stdenv.mkDerivation rec {
description = "Supporting library of the BladeRF SDR opensource hardware";
license = licenses.lgpl21;
maintainers = with maintainers; [ funfunctor ];
- platforms = platforms.linux;
+ platforms = with platforms; linux;
};
}
diff --git a/pkgs/development/libraries/libbluray/default.nix b/pkgs/development/libraries/libbluray/default.nix
index 8b67d52b875..fea4744a075 100644
--- a/pkgs/development/libraries/libbluray/default.nix
+++ b/pkgs/development/libraries/libbluray/default.nix
@@ -19,11 +19,11 @@ assert withFonts -> freetype != null;
stdenv.mkDerivation rec {
name = "libbluray-${version}";
- version = "1.0.0";
+ version = "1.0.2";
src = fetchurl {
url = "http://get.videolan.org/libbluray/${version}/${name}.tar.bz2";
- sha256 = "1k3lag4lxi2jjd3zh4wcb5l3hadzm54j5kagh92yzfy76p9svqzp";
+ sha256 = "1zxfnw1xbghcj7b3zz5djndv6gwssxda19cz1lrlqrkg8577r7kd";
};
patches = optional withJava ./BDJ-JARFILE-path.patch;
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
'';
configureFlags = with stdenv.lib;
- optional (! withJava) "--disable-bdjava"
+ optional (! withJava) "--disable-bdjava-jar"
++ optional (! withMetadata) "--without-libxml2"
++ optional (! withFonts) "--without-freetype"
;
diff --git a/pkgs/development/libraries/libbsd/default.nix b/pkgs/development/libraries/libbsd/default.nix
index 7e112caf3c7..0e232a50e94 100644
--- a/pkgs/development/libraries/libbsd/default.nix
+++ b/pkgs/development/libraries/libbsd/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libbsd-${version}";
- version = "0.8.6";
+ version = "0.8.7";
src = fetchurl {
url = "http://libbsd.freedesktop.org/releases/${name}.tar.xz";
- sha256 = "11wnkzims5grprvhb1ssmq9pc2lcgh2r2rk8gwgz36ply6fvyzs6";
+ sha256 = "0c9bl49zs0xdddcwj5dh0lay9sxi2m1yi74848g8p87mb87g2j7m";
};
# darwin changes configure.ac which means we need to regenerate
diff --git a/pkgs/development/libraries/libcdr/default.nix b/pkgs/development/libraries/libcdr/default.nix
index 670484f0ae6..6d8cafcfaa6 100644
--- a/pkgs/development/libraries/libcdr/default.nix
+++ b/pkgs/development/libraries/libcdr/default.nix
@@ -1,14 +1,14 @@
-{ stdenv, fetchurl, libwpg, libwpd, lcms, pkgconfig, librevenge, icu, boost }:
+{ stdenv, fetchurl, libwpg, libwpd, lcms, pkgconfig, librevenge, icu, boost, cppunit }:
stdenv.mkDerivation rec {
- name = "libcdr-0.1.1";
+ name = "libcdr-0.1.4";
src = fetchurl {
- url = "http://dev-www.libreoffice.org/src/${name}.tar.bz2";
- sha256 = "0javd72wmaqd6vprsh3clm393b3idjdjzbb7vyn44li7yaxppzkj";
+ url = "http://dev-www.libreoffice.org/src/${name}.tar.xz";
+ sha256 = "0vd6likgk51j46llybkx4wq3674xzrhp0k82220pkx9x1aqfi9z7";
};
- buildInputs = [ libwpg libwpd lcms librevenge icu boost ];
+ buildInputs = [ libwpg libwpd lcms librevenge icu boost cppunit ];
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/libraries/libcli/default.nix b/pkgs/development/libraries/libcli/default.nix
index 587e72409c4..f101eb22310 100644
--- a/pkgs/development/libraries/libcli/default.nix
+++ b/pkgs/development/libraries/libcli/default.nix
@@ -27,6 +27,5 @@ stdenv.mkDerivation rec {
homepage = http://sites.dparrish.com/libcli;
license = licenses.lgpl21Plus;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/libcollectdclient/default.nix b/pkgs/development/libraries/libcollectdclient/default.nix
index f6d9d7ca69b..e4e61c94283 100644
--- a/pkgs/development/libraries/libcollectdclient/default.nix
+++ b/pkgs/development/libraries/libcollectdclient/default.nix
@@ -5,14 +5,17 @@ overrideDerivation collectd (oldAttrs: {
name = "libcollectdclient-${collectd.version}";
buildInputs = [ ];
- configureFlags = [
- "--without-daemon"
+ NIX_CFLAGS_COMPILE = oldAttrs.NIX_CFLAGS_COMPILE ++ [
+ "-Wno-error=unused-function"
];
- makeFlags = [
- "-C src/libcollectdclient/"
+ configureFlags = oldAttrs.configureFlags ++ [
+ "--disable-daemon"
+ "--disable-all-plugins"
];
+ postInstall = "rm -rf $out/{bin,etc,sbin,share}";
+
}) // {
meta = with stdenv.lib; {
description = "C Library for collectd, a daemon which collects system performance statistics periodically";
diff --git a/pkgs/development/libraries/libconfuse/default.nix b/pkgs/development/libraries/libconfuse/default.nix
index a89bdec2c8a..1ef550238d1 100644
--- a/pkgs/development/libraries/libconfuse/default.nix
+++ b/pkgs/development/libraries/libconfuse/default.nix
@@ -32,6 +32,5 @@ stdenv.mkDerivation rec {
'';
license = licenses.isc;
platforms = platforms.linux ++ platforms.darwin;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/libdbi-drivers/default.nix b/pkgs/development/libraries/libdbi-drivers/default.nix
index 77c09f3ed15..2a03efd632f 100644
--- a/pkgs/development/libraries/libdbi-drivers/default.nix
+++ b/pkgs/development/libraries/libdbi-drivers/default.nix
@@ -1,5 +1,7 @@
{ stdenv, fetchurl, libdbi
-, libmysql ? null, sqlite ? null, postgresql ? null
+, mysql ? null
+, sqlite ? null
+, postgresql ? null
}:
with stdenv.lib;
@@ -11,7 +13,7 @@ stdenv.mkDerivation rec {
sha256 = "0m680h8cc4428xin4p733azysamzgzcmv4psjvraykrsaz6ymlj3";
};
- buildInputs = [ libdbi libmysql sqlite postgresql ];
+ buildInputs = [ libdbi sqlite postgresql ] ++ optional (mysql != null) mysql.connector-c;
postPatch = ''
sed -i '/SQLITE3_LIBS/ s/-lsqlite/-lsqlite3/' configure;
@@ -24,16 +26,18 @@ stdenv.mkDerivation rec {
"--enable-libdbi"
"--with-dbi-incdir=${libdbi}/include"
"--with-dbi-libdir=${libdbi}/lib"
- ] ++ optionals (libmysql != null) [
+ ] ++ optionals (mysql != null) [
"--with-mysql"
- ] ++ optionals (postgresql != null) [
- "--with-pgsql"
- "--with-pgsql_incdir=${postgresql}/include"
- "--with-pgsql_libdir=${postgresql.lib}/lib"
+ "--with-mysql-incdir=${mysql.connector-c}/include/mysql"
+ "--with-mysql-libdir=${mysql.connector-c}/lib/mysql"
] ++ optionals (sqlite != null) [
"--with-sqlite3"
"--with-sqlite3-incdir=${sqlite.dev}/include/sqlite"
"--with-sqlite3-libdir=${sqlite.out}/lib/sqlite"
+ ] ++ optionals (postgresql != null) [
+ "--with-pgsql"
+ "--with-pgsql_incdir=${postgresql}/include"
+ "--with-pgsql_libdir=${postgresql.lib}/lib"
];
installFlags = [ "DESTDIR=\${out}" ];
diff --git a/pkgs/development/libraries/libdivecomputer/default.nix b/pkgs/development/libraries/libdivecomputer/default.nix
index 23ab36fe09f..a09e48dcc1d 100644
--- a/pkgs/development/libraries/libdivecomputer/default.nix
+++ b/pkgs/development/libraries/libdivecomputer/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libdivecomputer-${version}";
- version = "0.5.0";
+ version = "0.6.0";
src = fetchurl {
url = "http://www.libdivecomputer.org/releases/${name}.tar.gz";
- sha256 = "11n2qpqg4b2h7mqifp9qm5gm1aqwy7wj1j4j5ha0wdjf55zzy30y";
+ sha256 = "0nm1mcscpxb9dv4p0lidd6rf5xg4vmcbigj6zqxvgn7pwnvpbzm0";
};
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/libdrm/default.nix b/pkgs/development/libraries/libdrm/default.nix
index 533d5d4cac8..e5e1e2e7a39 100644
--- a/pkgs/development/libraries/libdrm/default.nix
+++ b/pkgs/development/libraries/libdrm/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, libpthreadstubs, libpciaccess, valgrind-light }:
stdenv.mkDerivation rec {
- name = "libdrm-2.4.88";
+ name = "libdrm-2.4.89";
src = fetchurl {
url = "http://dri.freedesktop.org/libdrm/${name}.tar.bz2";
- sha256 = "b5e55dbac2124e742e639f5b8553e8b7395863bf73dab4f77e99fe2fc25572b5";
+ sha256 = "629f9782aabbb4809166de5f24d26fe0766055255038f16935602d89f136a02e";
};
outputs = [ "out" "dev" "bin" ];
diff --git a/pkgs/development/libraries/libelf/default.nix b/pkgs/development/libraries/libelf/default.nix
index bd0d23bd0cd..bb1dbe51765 100644
--- a/pkgs/development/libraries/libelf/default.nix
+++ b/pkgs/development/libraries/libelf/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl
-, gettext, glibc
+{ stdenv
+, fetchurl, autoreconfHook, gettext
, buildPlatform, hostPlatform
}:
@@ -17,12 +17,20 @@ stdenv.mkDerivation rec {
doCheck = true;
- # Libelf's custom NLS macros fail to determine the catalog file extension on
- # Darwin, so disable NLS for now.
- # FIXME: Eventually make Gettext a build input on all platforms.
- configureFlags = stdenv.lib.optional hostPlatform.isDarwin "--disable-nls";
+ configureFlags = []
+ # Configure check for dynamic lib support is broken, see
+ # http://lists.uclibc.org/pipermail/uclibc-cvs/2005-August/019383.html
+ ++ stdenv.lib.optional (hostPlatform != buildPlatform) "mr_cv_target_elf=yes"
+ # Libelf's custom NLS macros fail to determine the catalog file extension
+ # on Darwin, so disable NLS for now.
+ ++ stdenv.lib.optional hostPlatform.isDarwin "--disable-nls";
- nativeBuildInputs = [ gettext ];
+ nativeBuildInputs = [ gettext ]
+ # Need to regenerate configure script with newer version in order to pass
+ # "mr_cv_target_elf=yes", but `autoreconfHook` brings in `makeWrapper`
+ # which doesn't work with the bootstrapTools bash, so can only do this
+ # for cross builds when `stdenv.shell` is a newer bash.
+ ++ stdenv.lib.optional (hostPlatform != buildPlatform) autoreconfHook;
meta = {
description = "ELF object file access library";
diff --git a/pkgs/development/libraries/libewf/04-fix-FTBFS-GCC5.patch b/pkgs/development/libraries/libewf/04-fix-FTBFS-GCC5.patch
deleted file mode 100644
index 54878303589..00000000000
--- a/pkgs/development/libraries/libewf/04-fix-FTBFS-GCC5.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-Patch from Debian:
-https://sources.debian.net/data/main/libe/libewf/20140608-6/debian/patches/04-fix-FTBFS-GCC5.patch
-
-Description: fix a FTBFS with GCC-5. Thanks to Linn Crosetto for
- the first fix (see #777938). This patch closes #777945.
-Author: Joao Eriberto Mota Filho
-Last-Update: 2015-07-02
-Index: libewf-20140608/libuna/Makefile.am
-===================================================================
---- libewf-20140608.orig/libuna/Makefile.am
-+++ libewf-20140608/libuna/Makefile.am
-@@ -3,7 +3,7 @@ AM_CPPFLAGS = \
- -I$(top_srcdir)/include \
- -I$(top_srcdir)/common \
- @LIBCSTRING_CPPFLAGS@ \
-- @LIBCERROR_CPPFLAGS@
-+ @LIBCERROR_CPPFLAGS@ -std=gnu89
-
- noinst_LTLIBRARIES = libuna.la
-
diff --git a/pkgs/development/libraries/libewf/default.nix b/pkgs/development/libraries/libewf/default.nix
index ec53b50b5af..b1a6238a378 100644
--- a/pkgs/development/libraries/libewf/default.nix
+++ b/pkgs/development/libraries/libewf/default.nix
@@ -1,16 +1,16 @@
{ fetchurl, stdenv, zlib, openssl, libuuid, file, fuse, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
- version = "20140608";
+ version = "20171104";
name = "libewf-${version}";
+
src = fetchurl {
- url = "https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/libewf-20140608.tar.gz";
- sha256 = "0wfsffzxk934hl8cpwr14w8ixnh8d23x0xnnzcspjwi2c7730h6i";
+ url = "https://github.com/libyal/libewf/releases/download/${version}/libewf-experimental-${version}.tar.gz";
+ sha256 = "0h7036gpj5cryvh17aq6i2cpnbpwg5yswmfydxbbwvd9yfxd6dng";
};
- nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zlib openssl libuuid ];
- patches = [ ./04-fix-FTBFS-GCC5.patch ];
meta = {
description = "Library for support of the Expert Witness Compression Format";
diff --git a/pkgs/development/libraries/libewf/default.upstream b/pkgs/development/libraries/libewf/default.upstream
deleted file mode 100644
index a071132463f..00000000000
--- a/pkgs/development/libraries/libewf/default.upstream
+++ /dev/null
@@ -1,7 +0,0 @@
-url https://code.google.com/p/libewf/
-version_link 'googledrive[.]com'
-version_link '[.]tar[.]'
-do_overwrite () {
- do_overwrite_just_version
- set_var_value url "$CURRENT_URL"
-}
diff --git a/pkgs/development/libraries/libfilezilla/default.nix b/pkgs/development/libraries/libfilezilla/default.nix
index 0df0f570b2e..84e3517835e 100644
--- a/pkgs/development/libraries/libfilezilla/default.nix
+++ b/pkgs/development/libraries/libfilezilla/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libfilezilla-${version}";
- version = "0.11.1";
+ version = "0.11.2";
src = fetchurl {
url = "http://download.filezilla-project.org/libfilezilla/${name}.tar.bz2";
- sha256 = "1xv4is3zaz66h6iblj9pikapsjasjcbxx31bhkgn62xdq1sadfpc";
+ sha256 = "0wl42yxrha633dbh1vcbhrpsd7sv4zwskbmlpx549ygnzi39krcn";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/libgcrypt/default.nix b/pkgs/development/libraries/libgcrypt/default.nix
index e32ba050c38..397000fc7d2 100644
--- a/pkgs/development/libraries/libgcrypt/default.nix
+++ b/pkgs/development/libraries/libgcrypt/default.nix
@@ -4,11 +4,11 @@ assert enableCapabilities -> stdenv.isLinux;
stdenv.mkDerivation rec {
name = "libgcrypt-${version}";
- version = "1.8.1";
+ version = "1.8.2";
src = fetchurl {
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
- sha256 = "1cvqd9jk5qshbh48yh3ixw4zyr4n5k50r3475rrh20xfn7w7aa3s";
+ sha256 = "01sca9m8hm6b5v8hmqsfdjhyz013869p1f0fxw9ln52qfnp4q1n8";
};
outputs = [ "out" "dev" "info" ];
diff --git a/pkgs/development/libraries/libguestfs/default.nix b/pkgs/development/libraries/libguestfs/default.nix
index bfdd0cf8fd7..e659b31d974 100644
--- a/pkgs/development/libraries/libguestfs/default.nix
+++ b/pkgs/development/libraries/libguestfs/default.nix
@@ -2,7 +2,10 @@
, ncurses, cpio, gperf, perl, cdrkit, flex, bison, qemu, pcre, augeas, libxml2
, acl, libcap, libcap_ng, libconfig, systemd, fuse, yajl, libvirt, hivex
, gmp, readline, file, libintlperl, GetoptLong, SysVirt, numactl, xen, libapparmor
-, getopt, perlPackages, ocamlPackages }:
+, getopt, perlPackages, ocamlPackages
+, javaSupport ? false, jdk ? null }:
+
+assert javaSupport -> jdk != null;
stdenv.mkDerivation rec {
name = "libguestfs-${version}";
@@ -24,7 +27,8 @@ stdenv.mkDerivation rec {
cdrkit flex bison qemu pcre augeas libxml2 acl libcap libcap_ng libconfig
systemd fuse yajl libvirt gmp readline file hivex libintlperl GetoptLong
SysVirt numactl xen libapparmor getopt perlPackages.ModuleBuild
- ] ++ (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml_libvirt ocaml_gettext ounit ]);
+ ] ++ (with ocamlPackages; [ ocaml findlib ocamlbuild ocaml_libvirt ocaml_gettext ounit ])
+ ++ stdenv.lib.optional javaSupport jdk;
prePatch = ''
# build-time scripts
@@ -40,7 +44,8 @@ stdenv.mkDerivation rec {
# some scripts hardcore /usr/bin/env which is not available in the build env
patchShebangs .
'';
- configureFlags = "--disable-appliance --disable-daemon";
+ configureFlags = [ "--disable-appliance" "--disable-daemon" ]
+ ++ stdenv.lib.optionals (!javaSupport) [ "--disable-java" "--without-java" ];
patches = [ ./libguestfs-syms.patch ];
NIX_CFLAGS_COMPILE="-I${libxml2.dev}/include/libxml2/";
installFlags = "REALLY_INSTALL=yes";
diff --git a/pkgs/development/libraries/libhttpseverywhere/default.nix b/pkgs/development/libraries/libhttpseverywhere/default.nix
index 88a3ebbc4fb..c3405148242 100644
--- a/pkgs/development/libraries/libhttpseverywhere/default.nix
+++ b/pkgs/development/libraries/libhttpseverywhere/default.nix
@@ -1,7 +1,8 @@
-{stdenv, fetchurl, gnome3, glib, json_glib, libxml2, libarchive, libsoup, gobjectIntrospection, meson, ninja, pkgconfig, valadoc}:
+{ stdenv, fetchurl, pkgconfig, meson, ninja, valadoc
+, gnome3, glib, json_glib, libarchive, libsoup, gobjectIntrospection }:
stdenv.mkDerivation rec {
- major = "0.4";
+ major = "0.6";
minor = "5";
version = "${major}.${minor}";
@@ -9,16 +10,20 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnome/sources/libhttpseverywhere/${major}/libhttpseverywhere-${version}.tar.xz";
- sha256 = "07sgcw285rl9wqr5k7srs3fj7fhgrrw6w780jx8wy8jw2bfwlvj2";
+ sha256 = "0ksf6vqjyjii29dvy5147dmgqlqsq4d70xxai0p2prkx4jrwgj3z";
};
- nativeBuildInputs = [ gnome3.vala valadoc gobjectIntrospection meson ninja pkgconfig ];
- buildInputs = [ glib gnome3.libgee libxml2 json_glib libsoup libarchive ];
+ nativeBuildInputs = [ gnome3.vala gobjectIntrospection meson ninja pkgconfig valadoc ];
+ buildInputs = [ glib gnome3.libgee json_glib libsoup libarchive ];
+
+ mesonFlags = "-Denable_valadoc=true";
doCheck = true;
checkPhase = "./httpseverywhere_test";
+ outputs = [ "out" "devdoc" ];
+
meta = {
description = "library to use HTTPSEverywhere in desktop applications";
homepage = https://git.gnome.org/browse/libhttpseverywhere;
diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix
index db4c0c7738d..a0f7807786e 100644
--- a/pkgs/development/libraries/libinput/default.nix
+++ b/pkgs/development/libraries/libinput/default.nix
@@ -50,8 +50,6 @@ stdenv.mkDerivation rec {
doCheck = testsSupport;
- checkPhase = "meson test";
-
meta = {
description = "Handles input devices in Wayland compositors and provides a generic X.Org input driver";
homepage = http://www.freedesktop.org/wiki/Software/libinput;
diff --git a/pkgs/development/libraries/libite/default.nix b/pkgs/development/libraries/libite/default.nix
index 479deb7593d..51a7ab4851c 100644
--- a/pkgs/development/libraries/libite/default.nix
+++ b/pkgs/development/libraries/libite/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "libite-${version}";
- version = "1.9.2";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "troglobit";
repo = "libite";
rev = "v${version}";
- sha256 = "1y2iylsgs8am5br7an0xkrgshq6k2zkk8jfsaa7vdw2dh3qvc9pr";
+ sha256 = "07zypi3f02ygl7h5yc9sy136iiwgdi3r3nkjai9bq4gzjmzsvyl9";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix
index bf626df28ea..4ec0e5ebd9f 100644
--- a/pkgs/development/libraries/libjpeg-turbo/default.nix
+++ b/pkgs/development/libraries/libjpeg-turbo/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
+ doCheck = true; # not cross;
checkTarget = "test";
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/libkeyfinder/default.nix b/pkgs/development/libraries/libkeyfinder/default.nix
index 326d9c4f9d7..93f3b2a4f84 100644
--- a/pkgs/development/libraries/libkeyfinder/default.nix
+++ b/pkgs/development/libraries/libkeyfinder/default.nix
@@ -34,6 +34,5 @@ stdenv.mkDerivation rec {
homepage = http://www.ibrahimshaath.co.uk/keyfinder/;
license = licenses.gpl3Plus;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/liblcf/default.nix b/pkgs/development/libraries/liblcf/default.nix
new file mode 100644
index 00000000000..95b6b657fa2
--- /dev/null
+++ b/pkgs/development/libraries/liblcf/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, expat, icu }:
+
+stdenv.mkDerivation rec {
+ name = "liblcf-${version}";
+ version = "0.5.3";
+
+ src = fetchFromGitHub {
+ owner = "EasyRPG";
+ repo = "liblcf";
+ rev = version;
+ sha256 = "1y3pbl3jxan9f0cb1rxkibqjc0h23jm3jlwlv0xxn2pgw8l0fk34";
+ };
+
+ nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ buildInputs = [ expat icu ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/EasyRPG/liblcf;
+ license = licenses.mit;
+ maintainers = with maintainers; [ yegortimoshenko ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/libraries/libmikmod/default.nix b/pkgs/development/libraries/libmikmod/default.nix
index 8071d386db0..c509fcd2b4f 100644
--- a/pkgs/development/libraries/libmikmod/default.nix
+++ b/pkgs/development/libraries/libmikmod/default.nix
@@ -4,10 +4,10 @@ let
inherit (stdenv.lib) optional optionals optionalString;
in stdenv.mkDerivation rec {
- name = "libmikmod-3.3.11";
+ name = "libmikmod-3.3.11.1";
src = fetchurl {
url = "mirror://sourceforge/mikmod/${name}.tar.gz";
- sha256 = "1smb291jr4qm2cdk3gfpmh0pr23rx3jw3fw0j1zr3b4ih7727fni";
+ sha256 = "06bdnhb0l81srdzg6gn2v2ydhhaazza7rshrcj3q8dpqr3gn97dd";
};
buildInputs = [ texinfo ]
diff --git a/pkgs/development/libraries/libmpc/default.nix b/pkgs/development/libraries/libmpc/default.nix
index 4be59af6f0c..97366d24c36 100644
--- a/pkgs/development/libraries/libmpc/default.nix
+++ b/pkgs/development/libraries/libmpc/default.nix
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
name = "libmpc-${version}"; # to avoid clash with the MPD client
src = fetchurl {
- url = "http://www.multiprecision.org/mpc/download/mpc-${version}.tar.gz";
+ url = "https://ftp.gnu.org/gnu/mpc/mpc-${version}.tar.gz";
sha256 = "1hzci2zrrd7v3g1jk35qindq05hbl0bhjcyyisq9z209xb3fqzb1";
};
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
CFLAGS = "-I${gmp.dev}/include";
- doCheck = hostPlatform == buildPlatform;
+ doCheck = true; # not cross;
meta = {
description = "Library for multiprecision complex arithmetic with exact rounding";
diff --git a/pkgs/development/libraries/libmysqlconnectorcpp/default.nix b/pkgs/development/libraries/libmysqlconnectorcpp/default.nix
index 3905ba1b271..c184e647d28 100644
--- a/pkgs/development/libraries/libmysqlconnectorcpp/default.nix
+++ b/pkgs/development/libraries/libmysqlconnectorcpp/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
cmakeFlags = [ "-DMYSQL_LIB_DIR=${mysql}/lib" ];
meta = {
- homepage = http://dev.mysql.com/downloads/connector/cpp/;
+ homepage = https://dev.mysql.com/downloads/connector/cpp/;
description = "C++ library for connecting to mysql servers.";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/development/libraries/libnetfilter_conntrack/default.nix b/pkgs/development/libraries/libnetfilter_conntrack/default.nix
index a94bf28cd97..17dea7b3d7d 100644
--- a/pkgs/development/libraries/libnetfilter_conntrack/default.nix
+++ b/pkgs/development/libraries/libnetfilter_conntrack/default.nix
@@ -24,6 +24,5 @@ stdenv.mkDerivation rec {
homepage = http://netfilter.org/projects/libnetfilter_conntrack/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/libnetfilter_log/default.nix b/pkgs/development/libraries/libnetfilter_log/default.nix
index e3c8447549d..f660cd7a781 100644
--- a/pkgs/development/libraries/libnetfilter_log/default.nix
+++ b/pkgs/development/libraries/libnetfilter_log/default.nix
@@ -24,6 +24,6 @@ stdenv.mkDerivation rec {
homepage = http://netfilter.org/projects/libnetfilter_log/;
license = licenses.gpl2Plus;
platforms = platforms.linux;
- maintainers = with maintainers; [ orivej nckx ];
+ maintainers = with maintainers; [ orivej ];
};
}
diff --git a/pkgs/development/libraries/libnetfilter_queue/default.nix b/pkgs/development/libraries/libnetfilter_queue/default.nix
index 5de9409b729..12a45d088ef 100644
--- a/pkgs/development/libraries/libnetfilter_queue/default.nix
+++ b/pkgs/development/libraries/libnetfilter_queue/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, pkgconfig, libmnl, libnfnetlink }:
stdenv.mkDerivation rec {
- name = "libnetfilter_queue-1.0.2";
+ version = "1.0.3";
+ name = "libnetfilter_queue-${version}";
src = fetchurl {
- url = "ftp://ftp.netfilter.org/pub/libnetfilter_queue/${name}.tar.bz2";
- sha256 = "0chsmj9ky80068vn458ijz9sh4sk5yc08dw2d6b8yddybpmr1143";
+ url = "https://www.netfilter.org/projects/libnetfilter_queue/files/${name}.tar.bz2";
+ sha256 = "0x77m1fvbqzz5z64jz59fb6j8dvv8b9pg4fmznqwax4x6imjcncq";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/libraries/libnftnl/default.nix b/pkgs/development/libraries/libnftnl/default.nix
index 074c1a9dfd2..ad8c7626661 100644
--- a/pkgs/development/libraries/libnftnl/default.nix
+++ b/pkgs/development/libraries/libnftnl/default.nix
@@ -1,11 +1,12 @@
{ stdenv, fetchurl, pkgconfig, libmnl }:
stdenv.mkDerivation rec {
- name = "libnftnl-1.0.7";
+ version = "1.0.9";
+ name = "libnftnl-${version}";
src = fetchurl {
- url = "http://netfilter.org/projects/libnftnl/files/${name}.tar.bz2";
- sha256 = "10irjrylcfkbp11617yr19vpfhgl54w0kw02jhj0i1abqv5nxdlv";
+ url = "https://netfilter.org/projects/libnftnl/files/${name}.tar.bz2";
+ sha256 = "0d9nkdbdck8sg6msysqyv3m9kjr9sjif5amf26dfa0g3mqjdihgy";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/libraries/libopcodes/default.nix b/pkgs/development/libraries/libopcodes/default.nix
index 7ffc40f1494..d6d6989761b 100644
--- a/pkgs/development/libraries/libopcodes/default.nix
+++ b/pkgs/development/libraries/libopcodes/default.nix
@@ -19,7 +19,8 @@ stdenv.mkDerivation rec {
find . ../include/opcode -type f -exec sed {} -i -e 's/"bfd.h"//' \;
'';
- nativeBuildInputs = [ autoreconfHook264 bison buildPackages.stdenv.cc ];
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
+ nativeBuildInputs = [ autoreconfHook264 bison ];
buildInputs = [ libiberty ];
# dis-asm.h includes bfd.h
propagatedBuildInputs = [ libbfd ];
diff --git a/pkgs/development/libraries/libowfat/default.nix b/pkgs/development/libraries/libowfat/default.nix
index aaa1abacab8..1304aff9e3b 100644
--- a/pkgs/development/libraries/libowfat/default.nix
+++ b/pkgs/development/libraries/libowfat/default.nix
@@ -1,18 +1,18 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "libowfat-0.29";
+ name = "libowfat-0.31";
src = fetchurl {
- url = "http://dl.fefe.de/${name}.tar.bz2";
- sha256 = "09v4phf1d4y617fdqwn214jmkialf7xqcsyx3rzk7x5ysvpbvbab";
+ url = "https://www.fefe.de/libowfat/${name}.tar.xz";
+ sha256 = "04lagr62bd2cr0k8h59qfnx2klh2cf73k5kxsx8xrdybzhfarr6i";
};
makeFlags = "prefix=$(out)";
-
+
meta = with stdenv.lib; {
homepage = http://www.fefe.de/libowfat/;
license = licenses.gpl2;
platforms = platforms.linux;
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/development/libraries/libpinyin/default.nix b/pkgs/development/libraries/libpinyin/default.nix
index 15d14199041..26694eb3777 100644
--- a/pkgs/development/libraries/libpinyin/default.nix
+++ b/pkgs/development/libraries/libpinyin/default.nix
@@ -2,14 +2,13 @@
let
modelData = fetchurl {
- url = "mirror://sourceforge/libpinyin/models/model12.text.tar.gz";
- sha256 = "1fijhhnjgj8bj1xr5pp7c4qxf11cqybgfqg7v36l3x780d84hfnd";
+ url = "mirror://sourceforge/libpinyin/models/model14.text.tar.gz";
+ sha256 = "0qqk30nflj07zjhs231c95ln4yj4ipzwxxiwrxazrg4hb8bhypqq";
};
in
-
stdenv.mkDerivation rec {
name = "libpinyin-${version}";
- version = "1.6.0";
+ version = "2.1.91";
nativeBuildInputs = [ autoreconfHook glib db pkgconfig ];
@@ -21,7 +20,7 @@ stdenv.mkDerivation rec {
owner = "libpinyin";
repo = "libpinyin";
rev = version;
- sha256 = "0k40a7wfp8zj9d426afv0am5sr3m2i2p309fq0vf8qrb050hj17f";
+ sha256 = "0jbvn65p3zh0573hh27aasd3qly5anyfi8jnps2dxi0my09wbrq3";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix
index c4a6a246b90..5ad9cf1e7b7 100644
--- a/pkgs/development/libraries/libpng/default.nix
+++ b/pkgs/development/libraries/libpng/default.nix
@@ -30,7 +30,7 @@ in stdenv.mkDerivation rec {
# it's hard to cross-run tests and some check programs didn't compile anyway
makeFlags = stdenv.lib.optional (!doCheck) "check_PROGRAMS=";
- doCheck = hostPlatform == buildPlatform;
+ doCheck = true; # not cross;
passthru = { inherit zlib; };
diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix
index c35c7e1bc0f..b1100d00f3e 100644
--- a/pkgs/development/libraries/libpsl/default.nix
+++ b/pkgs/development/libraries/libpsl/default.nix
@@ -64,6 +64,5 @@ in stdenv.mkDerivation rec {
homepage = http://rockdaboot.github.io/libpsl/;
license = licenses.mit;
platforms = with platforms; linux ++ darwin;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/libqalculate/default.nix b/pkgs/development/libraries/libqalculate/default.nix
index 0e67f970b76..89b71c1855d 100644
--- a/pkgs/development/libraries/libqalculate/default.nix
+++ b/pkgs/development/libraries/libqalculate/default.nix
@@ -25,6 +25,9 @@ stdenv.mkDerivation rec {
substituteInPlace libqalculate/Calculator.cc \
--replace 'commandline = "gnuplot"' 'commandline = "${gnuplot}/bin/gnuplot"' \
--replace '"gnuplot -"' '"${gnuplot}/bin/gnuplot -"'
+ '' + stdenv.lib.optionalString stdenv.cc.isClang ''
+ substituteInPlace src/qalc.cc \
+ --replace 'printf(_("aborted"))' 'printf("%s", _("aborted"))'
'';
preBuild = ''
diff --git a/pkgs/development/libraries/libqmatrixclient/default.nix b/pkgs/development/libraries/libqmatrixclient/default.nix
index dc4981798bc..f537013d2fe 100644
--- a/pkgs/development/libraries/libqmatrixclient/default.nix
+++ b/pkgs/development/libraries/libqmatrixclient/default.nix
@@ -6,13 +6,13 @@
stdenv.mkDerivation rec {
name = "libqmatrixclient-${version}";
- version = "0.1";
+ version = "0.2";
src = fetchFromGitHub {
owner = "QMatrixClient";
repo = "libqmatrixclient";
- rev = "v${version}";
- sha256 = "1dlanf0y65zf6n1b1f4jzw04w07sl85wiw01c3yyn2ivp3clr13l";
+ rev = "v${version}-q0.0.5";
+ sha256 = "1m53yxsqjxv2jq0h1xipwsgaj5rca4fk4cl3azgvmf19l9yn00ck";
};
buildInputs = [ qtbase ];
diff --git a/pkgs/development/libraries/libraw/default.nix b/pkgs/development/libraries/libraw/default.nix
index 0b88cd02df7..c1df11aa544 100644
--- a/pkgs/development/libraries/libraw/default.nix
+++ b/pkgs/development/libraries/libraw/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libraw-${version}";
- version = "0.18.5";
+ version = "0.18.7";
src = fetchurl {
url = "http://www.libraw.org/data/LibRaw-${version}.tar.gz";
- sha256 = "0y519nlvl4bfnnxbwry35f6gbcv6jbbpd2lmiwv6pbyzv4a7saps";
+ sha256 = "0wap67mb03fl2himbs20yncnnrr71mszsfm2v4spks58c714gqw7";
};
outputs = [ "out" "lib" "dev" "doc" ];
diff --git a/pkgs/development/libraries/librdf/redland.nix b/pkgs/development/libraries/librdf/redland.nix
index 8e6fa005635..402af5d6f58 100644
--- a/pkgs/development/libraries/librdf/redland.nix
+++ b/pkgs/development/libraries/librdf/redland.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ perl pkgconfig ];
buildInputs = [ openssl libxslt curl pcre libxml2 ]
- ++ stdenv.lib.optional withMysql mysql
+ ++ stdenv.lib.optional withMysql mysql.connector-c
++ stdenv.lib.optional withSqlite sqlite
++ stdenv.lib.optional withPostgresql postgresql
++ stdenv.lib.optional withBdb db;
diff --git a/pkgs/development/libraries/librep/setup-hook.sh b/pkgs/development/libraries/librep/setup-hook.sh
index 420d63d6c51..4d875b69330 100644
--- a/pkgs/development/libraries/librep/setup-hook.sh
+++ b/pkgs/development/libraries/librep/setup-hook.sh
@@ -2,4 +2,4 @@ addRepDLLoadPath () {
addToSearchPath REP_DL_LOAD_PATH $1/lib/rep
}
-envHooks+=(addRepDLLoadPath)
+addEnvHooks "$hostOffset" addRepDLLoadPath
diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix
index 4818a720a30..ae03ef7ecb9 100644
--- a/pkgs/development/libraries/libressl/default.nix
+++ b/pkgs/development/libraries/libressl/default.nix
@@ -33,7 +33,7 @@ in {
};
libressl_2_6 = generic {
- version = "2.6.2";
- sha256 = "0y64grb2zx98rjp2lbwihyhbml4z5ih3v7ydbxdvmabj5d4x4adh";
+ version = "2.6.4";
+ sha256 = "07yi37a2ghsgj2b4w30q1s4d2inqnix7ika1m21y57p9z71212k3";
};
}
diff --git a/pkgs/development/libraries/librsync/default.nix b/pkgs/development/libraries/librsync/default.nix
index 3409948f59e..0f2ca371297 100644
--- a/pkgs/development/libraries/librsync/default.nix
+++ b/pkgs/development/libraries/librsync/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "librsync-${version}";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchFromGitHub {
owner = "librsync";
repo = "librsync";
rev = "v${version}";
- sha256 = "0yad7nkw6d8j824qkxrj008ak2wq6yw5p894sbhr35yc1wr5mki6";
+ sha256 = "0wihjinqbjl4hnvrgsk4ca1zy5v6bj7vjm6wlygwvgbn5yh3yq0x";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/development/libraries/libsass/default.nix b/pkgs/development/libraries/libsass/default.nix
index 75bc9668fca..0ad02c190c1 100644
--- a/pkgs/development/libraries/libsass/default.nix
+++ b/pkgs/development/libraries/libsass/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libsass-${version}";
- version = "3.4.5";
+ version = "3.4.8";
src = fetchurl {
url = "https://github.com/sass/libsass/archive/${version}.tar.gz";
- sha256 = "1j22138l5ymqjfj5zan9d2hipa3ahjmifgpjahqy1smlg5sb837x";
+ sha256 = "0gq0mg42sq2nxiv25fh37frlr0iyqamh7shv83qixnqklqpkfi13";
};
patchPhase = ''
diff --git a/pkgs/development/libraries/libserialport/default.nix b/pkgs/development/libraries/libserialport/default.nix
index 812847ea123..90f0afa5796 100644
--- a/pkgs/development/libraries/libserialport/default.nix
+++ b/pkgs/development/libraries/libserialport/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "libserialport-0.1.1";
src = fetchurl {
- url = "http://sigrok.org/download/source/libserialport/${name}.tar.gz";
+ url = "https://sigrok.org/download/source/libserialport/${name}.tar.gz";
sha256 = "17ajlwgvyyrap8z7f16zcs59pksvncwbmd3mzf98wj7zqgczjaja";
};
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Cross-platform shared library for serial port access";
- homepage = http://sigrok.org/;
+ homepage = https://sigrok.org/;
license = licenses.gpl3Plus;
# macOS, Windows and Android is also supported (according to upstream).
platforms = platforms.linux;
diff --git a/pkgs/development/libraries/libsexy/default.nix b/pkgs/development/libraries/libsexy/default.nix
index c8751c3e5dd..49cdb2c95ba 100644
--- a/pkgs/development/libraries/libsexy/default.nix
+++ b/pkgs/development/libraries/libsexy/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "A collection of GTK+ widgets";
- homepage = http://blog.chipx86.com/tag/libsexy/;
+ homepage = https://blog.chipx86.com/tag/libsexy/;
license = licenses.lgpl21;
maintainers = with maintainers; [ ];
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/libsigcxx/default.nix b/pkgs/development/libraries/libsigcxx/default.nix
index 4a309a87f2e..f6bfff78fa2 100644
--- a/pkgs/development/libraries/libsigcxx/default.nix
+++ b/pkgs/development/libraries/libsigcxx/default.nix
@@ -10,11 +10,6 @@ stdenv.mkDerivation rec {
url = "mirror://gnome/sources/libsigc++/${ver_maj}/${name}.tar.xz";
sha256 = "f843d6346260bfcb4426259e314512b99e296e8ca241d771d21ac64f28298d81";
};
- patches = [(fetchpatch {
- url = "https://anonscm.debian.org/cgit/collab-maint/libsigc++-2.0.git/plain"
- + "/debian/patches/0002-Enforce-c-11-via-pkg-config.patch?id=d451a4d195b1";
- sha256 = "19g19473syp2z3kg8vdrli89lm9kcvaqajkqfmdig1vfpkbq0nci";
- })];
nativeBuildInputs = [ pkgconfig gnum4 ];
diff --git a/pkgs/development/libraries/libsigsegv/default.nix b/pkgs/development/libraries/libsigsegv/default.nix
index 8e1079bfbc8..8152c1ea852 100644
--- a/pkgs/development/libraries/libsigsegv/default.nix
+++ b/pkgs/development/libraries/libsigsegv/default.nix
@@ -4,16 +4,16 @@
}:
stdenv.mkDerivation rec {
- name = "libsigsegv-2.11";
+ name = "libsigsegv-2.12";
src = fetchurl {
url = "mirror://gnu/libsigsegv/${name}.tar.gz";
- sha256 = "063swdvq7mbmc1clv0rnh20grwln1zfc2qnm0sa1hivcxyr2wz6x";
+ sha256 = "1dlhqf4igzpqayms25lkhycjq1ccavisx8cnb3y4zapbkqsszq9s";
};
patches = if enableSigbusFix then [ ./sigbus_fix.patch ] else null;
- doCheck = hostPlatform == buildPlatform;
+ doCheck = true; # not cross;
meta = {
homepage = http://www.gnu.org/software/libsigsegv/;
diff --git a/pkgs/development/libraries/libsnark/darwin-fix-clock-gettime.patch b/pkgs/development/libraries/libsnark/darwin-fix-clock-gettime.patch
new file mode 100644
index 00000000000..2eee84d1c4b
--- /dev/null
+++ b/pkgs/development/libraries/libsnark/darwin-fix-clock-gettime.patch
@@ -0,0 +1,41 @@
+Adapted from https://github.com/zcash/libsnark/pull/10
+
+diff --git a/depends/libff/libff/common/profiling.cpp b/depends/libff/libff/common/profiling.cpp
+index f2a1985..319149c 100755
+--- a/depends/libff/libff/common/profiling.cpp
++++ b/depends/libff/libff/common/profiling.cpp
+@@ -27,6 +27,13 @@
+ #include
+ #endif
+
++#ifdef __MACH__
++#include
++#include
++#include
++#include
++#endif
++
+ namespace libff {
+
+ long long get_nsec_time()
+@@ -42,10 +49,20 @@ long long get_nsec_cpu_time()
+ return 0;
+ #else
+ ::timespec ts;
++#ifdef __MACH__
++ clock_serv_t cclock;
++ mach_timespec_t mts;
++ host_get_clock_service(mach_host_self(), CALENDAR_CLOCK, &cclock);
++ clock_get_time(cclock, &mts);
++ mach_port_deallocate(mach_task_self(), cclock);
++ ts.tv_sec = mts.tv_sec;
++ ts.tv_nsec = mts.tv_nsec;
++#else
+ if ( ::clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts) )
+ throw ::std::runtime_error("clock_gettime(CLOCK_PROCESS_CPUTIME_ID) failed");
+ // If we expected this to work, don't silently ignore failures, because that would hide the problem and incur an unnecessarily system-call overhead. So if we ever observe this exception, we should probably add a suitable #ifdef .
+ //TODO: clock_gettime(CLOCK_PROCESS_CPUTIME_ID) is not supported by native Windows. What about Cygwin? Should we #ifdef on CLOCK_PROCESS_CPUTIME_ID or on __linux__?
++#endif
+ return ts.tv_sec * 1000000000ll + ts.tv_nsec;
+ #endif
+ }
diff --git a/pkgs/development/libraries/libsnark/default.nix b/pkgs/development/libraries/libsnark/default.nix
new file mode 100644
index 00000000000..578053bbb42
--- /dev/null
+++ b/pkgs/development/libraries/libsnark/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, openssl, boost, gmp, procps, fetchpatch, patchutils }:
+
+let
+ rev = "9e6b19ff15bc19fba5da1707ba18e7f160e5ed07";
+ inherit (stdenv) lib;
+in stdenv.mkDerivation rec {
+ name = "libsnark-pre${version}";
+ version = stdenv.lib.substring 0 8 rev;
+
+ buildInputs = [ cmake pkgconfig openssl boost gmp ] ++ lib.optional stdenv.hostPlatform.isLinux procps;
+
+ cmakeFlags = lib.optionals stdenv.hostPlatform.isDarwin [ "-DWITH_PROCPS=OFF" "-DWITH_SUPERCOP=OFF" ];
+
+ src = fetchFromGitHub {
+ inherit rev;
+ owner = "scipr-lab";
+ repo = "libsnark";
+ sha256 = "13f02qp2fmfhvxlp4xi69m0l8r5nq913l2f0zwdk7hl46lprfdca";
+ fetchSubmodules = true;
+ };
+
+ patches = [ ./darwin-fix-clock-gettime.patch ];
+
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "C++ library for zkSNARKs";
+ homepage = https://github.com/scipr-lab/libsnark;
+ license = licenses.mit;
+ platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
+ };
+}
diff --git a/pkgs/development/libraries/libsodium/default.nix b/pkgs/development/libraries/libsodium/default.nix
index 5d4535676e7..0b341b38917 100644
--- a/pkgs/development/libraries/libsodium/default.nix
+++ b/pkgs/development/libraries/libsodium/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "libsodium-1.0.15";
+ name = "libsodium-1.0.16";
src = fetchurl {
url = "https://download.libsodium.org/libsodium/releases/${name}.tar.gz";
- sha256 = "1x3qw7lsz44vcxpcn1dvwig410phg6gmv31jwj94arrgka3rwspv";
+ sha256 = "0cq5pn7qcib7q70mm1lgjwj75xdxix27v0xl1xl0kvxww7hwgbgf";
};
outputs = [ "out" "dev" ];
diff --git a/pkgs/development/libraries/libsrs2/default.nix b/pkgs/development/libraries/libsrs2/default.nix
index a2e94c33ce3..7d9ea25e9d2 100644
--- a/pkgs/development/libraries/libsrs2/default.nix
+++ b/pkgs/development/libraries/libsrs2/default.nix
@@ -5,14 +5,14 @@ stdenv.mkDerivation rec {
version = "1.0.18";
src = fetchurl {
- url = "http://www.libsrs2.org/srs/libsrs2-${version}.tar.gz";
+ url = "https://www.libsrs2.org/srs/libsrs2-${version}.tar.gz";
sha256 = "9d1191b705d7587a5886736899001d04168392bbb6ed6345a057ade50943a492";
};
meta = {
description = "The next generation SRS library from the original designer of SRS";
license = with lib.licenses; [ gpl2 bsd3 ];
- homepage = http://www.libsrs2.org/;
+ homepage = https://www.libsrs2.org/;
platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/development/libraries/libstatgrab/default.nix b/pkgs/development/libraries/libstatgrab/default.nix
index 036bb806f68..72d73e35848 100644
--- a/pkgs/development/libraries/libstatgrab/default.nix
+++ b/pkgs/development/libraries/libstatgrab/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
buildInputs = [] ++ stdenv.lib.optional stdenv.isDarwin IOKit;
meta = with stdenv.lib; {
- homepage = http://www.i-scream.org/libstatgrab/;
+ homepage = https://www.i-scream.org/libstatgrab/;
description = "A library that provides cross platforms access to statistics about the running system";
license = licenses.gpl2;
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/libstdc++5/default.nix b/pkgs/development/libraries/libstdc++5/default.nix
index 5c0e7c9bdfa..f8397052b77 100644
--- a/pkgs/development/libraries/libstdc++5/default.nix
+++ b/pkgs/development/libraries/libstdc++5/default.nix
@@ -21,13 +21,13 @@ stdenv.mkDerivation rec {
name = "siginfo.patch";
url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/siginfo.patch?h=packages/libstdc%2B%2B5&id=e36ee8ed9bb5942db14cf6249a2ead14974a2bfa";
sha256 = "15zldbm33yba293dgrgsbv3j332hkc3iqpyc8fa7zl42mh9qk22j";
- addPrefixes = true;
+ extraPrefix = "";
})
(fetchpatch {
name = "gcc-3.4.3-no_multilib_amd64.patch";
url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/gcc-3.4.3-no_multilib_amd64.patch?h=packages/libstdc%2B%2B5&id=e36ee8ed9bb5942db14cf6249a2ead14974a2bfa";
sha256 = "11m5lc51b0addhc4yq4rz0dwpv6k73rrj73wya3lqdk8rly6cjpm";
- addPrefixes = true;
+ extraPrefix = "";
})
# Required because of glibc 2.26
./struct-ucontext.patch
diff --git a/pkgs/development/libraries/libstemmer/default.nix b/pkgs/development/libraries/libstemmer/default.nix
new file mode 100644
index 00000000000..67d6d8d42ea
--- /dev/null
+++ b/pkgs/development/libraries/libstemmer/default.nix
@@ -0,0 +1,22 @@
+{ lib, stdenv, fetchFromGitHub, cmake }:
+
+stdenv.mkDerivation rec {
+ name = "libstemmer-2017-03-02";
+
+ src = fetchFromGitHub {
+ owner = "zvelo";
+ repo = "libstemmer";
+ rev = "78c149a3a6f262a35c7f7351d3f77b725fc646cf";
+ sha256 = "06md6n6h1f2zvnjrpfrq7ng46l1x12c14cacbrzmh5n0j98crpq7";
+ };
+
+ nativeBuildInputs = [ cmake ];
+
+ meta = with lib; {
+ description = "Snowball Stemming Algorithms";
+ homepage = "http://snowball.tartarus.org/";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ fpletz ];
+ platforms = platforms.all;
+ };
+}
diff --git a/pkgs/development/libraries/libsvm/default.nix b/pkgs/development/libraries/libsvm/default.nix
index a366baf27e3..8d3d2f4c60c 100644
--- a/pkgs/development/libraries/libsvm/default.nix
+++ b/pkgs/development/libraries/libsvm/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "3.20";
src = fetchurl {
- url = "http://www.csie.ntu.edu.tw/~cjlin/libsvm/libsvm-${version}.tar.gz";
+ url = "https://www.csie.ntu.edu.tw/~cjlin/libsvm/libsvm-${version}.tar.gz";
sha256 = "1gj5v5zp1qnsnv0iwxq0ikhf8262d3s5dq6syr6yqkglps0284hg";
};
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A library for support vector machines";
- homepage = http://www.csie.ntu.edu.tw/~cjlin/libsvm/;
+ homepage = https://www.csie.ntu.edu.tw/~cjlin/libsvm/;
license = licenses.bsd3;
maintainers = [ maintainers.spwhitt ];
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/libtiff/default.nix b/pkgs/development/libraries/libtiff/default.nix
index ee21f3df7ac..0f95b6d34c7 100644
--- a/pkgs/development/libraries/libtiff/default.nix
+++ b/pkgs/development/libraries/libtiff/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
+ doCheck = true; # not cross;
meta = with stdenv.lib; {
description = "Library and utilities for working with the TIFF image file format";
diff --git a/pkgs/development/libraries/libtorrent-rasterbar/1.0.nix b/pkgs/development/libraries/libtorrent-rasterbar/1.0.nix
deleted file mode 100644
index fbd30ac04f7..00000000000
--- a/pkgs/development/libraries/libtorrent-rasterbar/1.0.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-args@{ callPackage, fetchpatch, ... }:
-
-callPackage (import ./generic.nix {
- version = "1.0.11";
- sha256 = "17p34d3n29q04pvz975gfl1fyj3sg9cl5l6j673xqfq3fpyis58i";
- patches = [
- # Compatibility with new Boost
- (fetchpatch {
- url = "https://github.com/arvidn/libtorrent/commit/7eb3cf6bc6dbada3fa7bb7ff4d5981182813a0e2.patch";
- sha256 = "07agbrii6i8q4wmgpqbln7ldhhadaf5npcinvi6hnyipsr48jbj5";
- })
- ];
-}) args
diff --git a/pkgs/development/libraries/libtorrent-rasterbar/default.nix b/pkgs/development/libraries/libtorrent-rasterbar/default.nix
index ff5027fd472..00ec2298617 100644
--- a/pkgs/development/libraries/libtorrent-rasterbar/default.nix
+++ b/pkgs/development/libraries/libtorrent-rasterbar/default.nix
@@ -1,6 +1,6 @@
args@{ callPackage, ... }:
callPackage (import ./generic.nix {
- version = "1.1.5";
- sha256 = "1ifpcqw5mj2dwk23lhc2vpb47mg3j573v5z4zp8dkczpz7wg5jxq";
+ version = "1.1.6";
+ sha256 = "1xlh0sqypjbx0imw3bkbjwgwb4bm6zl7c0y01p0xsw8ncfmwjll7";
}) args
diff --git a/pkgs/development/libraries/libtoxcore/default.nix b/pkgs/development/libraries/libtoxcore/default.nix
index af9c38a9634..a742be3c1e4 100644
--- a/pkgs/development/libraries/libtoxcore/default.nix
+++ b/pkgs/development/libraries/libtoxcore/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "libtoxcore-${version}";
- version = "0.1.10";
+ version = "0.1.11";
src = fetchFromGitHub {
owner = "TokTok";
repo = "c-toxcore";
rev = "v${version}";
- sha256 = "1d3f7lnlxra2lhih838bvlahxqv50j35g9kfyzspq971sb5z30mv";
+ sha256 = "1fya5gfiwlpk6fxhalv95n945ymvp2iidiyksrjw1xw95fzsp1ij";
};
cmakeFlags = [
@@ -37,7 +37,8 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = with stdenv.lib; {
- description = "P2P FOSS instant messaging application aimed to replace Skype with crypto";
+ description = "P2P FOSS instant messaging application aimed to replace Skype";
+ homepage = https://tox.chat;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.all;
diff --git a/pkgs/development/libraries/liburcu/default.nix b/pkgs/development/libraries/liburcu/default.nix
index 3b92aff72a5..0c88f987104 100644
--- a/pkgs/development/libraries/liburcu/default.nix
+++ b/pkgs/development/libraries/liburcu/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
- version = "0.9.3";
+ version = "0.9.5";
name = "liburcu-${version}";
src = fetchurl {
url = "http://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
- sha256 = "01j0xp3f0w147yfyzybkjvb7i67i7prsvnkssgvgwry9lvk35khv";
+ sha256 = "19iq7985rhvbrj99hlmbyq2wjrkhssvigh5454mhaprn3c7jaj6r";
};
nativeBuildInputs = stdenv.lib.optional doCheck perl;
diff --git a/pkgs/development/libraries/libvdpau/default.nix b/pkgs/development/libraries/libvdpau/default.nix
index ceb42fe2bfc..eccee83fa85 100644
--- a/pkgs/development/libraries/libvdpau/default.nix
+++ b/pkgs/development/libraries/libvdpau/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "libvdpau-1.1.1";
src = fetchurl {
- url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.bz2";
+ url = "https://people.freedesktop.org/~aplattner/vdpau/${name}.tar.bz2";
sha256 = "857a01932609225b9a3a5bf222b85e39b55c08787d0ad427dbd9ec033d58d736";
};
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
installFlags = [ "moduledir=$(out)/lib/vdpau" ];
meta = with stdenv.lib; {
- homepage = http://people.freedesktop.org/~aplattner/vdpau/;
+ homepage = https://people.freedesktop.org/~aplattner/vdpau/;
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
license = licenses.mit; # expat version
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/libvncserver/default.nix b/pkgs/development/libraries/libvncserver/default.nix
index f7e477ff34a..b325c9b246c 100644
--- a/pkgs/development/libraries/libvncserver/default.nix
+++ b/pkgs/development/libraries/libvncserver/default.nix
@@ -1,12 +1,8 @@
{stdenv, fetchurl,
- libtool, libjpeg, openssl, libX11, libXdamage, xproto, damageproto,
- xextproto, libXext, fixesproto, libXfixes, xineramaproto, libXinerama,
- libXrandr, randrproto, libXtst, zlib, libgcrypt, autoreconfHook
- , systemd, pkgconfig, libpng
+ libtool, libjpeg, openssl, zlib, libgcrypt, autoreconfHook, pkgconfig, libpng,
+ systemd
}:
-assert stdenv.isLinux;
-
let
s = # Generated upstream information
rec {
@@ -16,27 +12,25 @@ let
url="https://github.com/LibVNC/libvncserver/archive/LibVNCServer-${version}.tar.gz";
sha256="15189n09r1pg2nqrpgxqrcvad89cdcrca9gx6qhm6akjf81n6g8r";
};
- buildInputs = [
- libtool libjpeg openssl libX11 libXdamage xproto damageproto
- xextproto libXext fixesproto libXfixes xineramaproto libXinerama
- libXrandr randrproto libXtst zlib libgcrypt autoreconfHook systemd
- pkgconfig libpng
- ];
in
stdenv.mkDerivation {
inherit (s) name version;
- inherit buildInputs;
src = fetchurl {
inherit (s) url sha256;
};
preConfigure = ''
sed -e 's@/usr/include/linux@${stdenv.cc.libc}/include/linux@g' -i configure
'';
+ nativeBuildInputs = [ pkgconfig autoreconfHook ];
+ buildInputs = [
+ libtool libjpeg openssl libgcrypt libpng
+ ] ++ stdenv.lib.optional stdenv.isLinux systemd;
+ propagatedBuildInputs = [ zlib ];
meta = {
inherit (s) version;
description = "VNC server library";
license = stdenv.lib.licenses.gpl2Plus ;
maintainers = [stdenv.lib.maintainers.raskin];
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.unix;
};
}
diff --git a/pkgs/development/libraries/libvorbis/default.nix b/pkgs/development/libraries/libvorbis/default.nix
index 682fcca98a3..f59237ee164 100644
--- a/pkgs/development/libraries/libvorbis/default.nix
+++ b/pkgs/development/libraries/libvorbis/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, libogg, pkgconfig }:
+{ stdenv, fetchurl, libogg, pkgconfig, fetchpatch }:
stdenv.mkDerivation rec {
name = "libvorbis-1.3.5";
@@ -10,6 +10,23 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" "doc" ];
+ patches = [
+ (fetchpatch {
+ url = "https://github.com/xiph/vorbis/commit/a79ec216cd119069c68b8f3542c6a425a74ab993.patch";
+ sha256 = "0xhsa96n3dlh2l85bxpz4b9m78mfxfgi2ibhjp77110a0nvkjr6h";
+ name = "CVE-2017-14633";
+ })
+ (fetchpatch {
+ url = "https://github.com/xiph/vorbis/commit/c1c2831fc7306d5fbd7bc800324efd12b28d327f.patch";
+ sha256 = "17lb86105im6fc0h0cx5sn94p004jsdbbs2vj1m9ll6z9yb4rxwc";
+ name = "CVE-2017-14632";
+ })
+ (fetchpatch {
+ url = "https://gitlab.xiph.org/xiph/vorbis/uploads/a68cf70fa10c8081a633f77b5c6576b7/0001-CVE-2017-14160-make-sure-we-don-t-overflow.patch";
+ sha256 = "0v21p59cb3z77ch1v6q5dcrd733h91f3m8ifnd7kkkr8gzn17d5x";
+ name = "CVE-2017-14160";
+ })
+ ];
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs = [ libogg ];
@@ -17,7 +34,7 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = with stdenv.lib; {
- homepage = http://xiph.org/vorbis/;
+ homepage = https://xiph.org/vorbis/;
license = licenses.bsd3;
maintainers = [ maintainers.ehmry ];
platforms = platforms.all;
diff --git a/pkgs/development/libraries/libvpx/default.nix b/pkgs/development/libraries/libvpx/default.nix
index 4b50fe090e3..1e96ff9bb1a 100644
--- a/pkgs/development/libraries/libvpx/default.nix
+++ b/pkgs/development/libraries/libvpx/default.nix
@@ -173,7 +173,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "WebM VP8/VP9 codec SDK";
- homepage = http://www.webmproject.org/;
+ homepage = https://www.webmproject.org/;
license = licenses.bsd3;
maintainers = with maintainers; [ codyopel ];
platforms = platforms.all;
diff --git a/pkgs/development/libraries/libxc/default.nix b/pkgs/development/libraries/libxc/default.nix
new file mode 100644
index 00000000000..67ec3b57fa7
--- /dev/null
+++ b/pkgs/development/libraries/libxc/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, gfortran, perl }:
+
+let
+ version = "3.0.1";
+
+in stdenv.mkDerivation {
+ name = "libxc-${version}";
+ src = fetchurl {
+ url = "http://www.tddft.org/programs/octopus/down.php?file=libxc/${version}/libxc-${version}.tar.gz";
+ sha256 = "1xyac89yx03vm86rvk07ps1d39xss3amw46a1k53mv30mgr94rl3";
+ };
+
+ buildInputs = [ gfortran ];
+ nativeBuildInputs = [ perl ];
+
+ preConfigure = ''
+ patchShebangs ./
+ '';
+
+ configureFlags = [ "--enable-shared" ];
+
+ doCheck = true;
+ enableParallelBuilding = true;
+
+ meta = with stdenv.lib; {
+ description = "Library of exchange-correlation functionals for density-functional theory";
+ homepage = http://octopus-code.org/wiki/Libxc;
+ license = licenses.lgpl3;
+ platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ markuskowa ];
+ };
+}
diff --git a/pkgs/development/libraries/libxcomp/default.nix b/pkgs/development/libraries/libxcomp/default.nix
index f38c7a90032..68f8c44a8ec 100644
--- a/pkgs/development/libraries/libxcomp/default.nix
+++ b/pkgs/development/libraries/libxcomp/default.nix
@@ -23,6 +23,5 @@ stdenv.mkDerivation rec {
homepage = http://wiki.x2go.org/doku.php/wiki:libs:nx-libs;
license = licenses.gpl2;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/libxmp/default.nix b/pkgs/development/libraries/libxmp/default.nix
index 28584d14a87..ca4d7edbf32 100644
--- a/pkgs/development/libraries/libxmp/default.nix
+++ b/pkgs/development/libraries/libxmp/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "libxmp-4.3.12";
+ name = "libxmp-4.4.1";
meta = with stdenv.lib; {
description = "Extended module player library";
@@ -17,6 +17,6 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://sourceforge/xmp/libxmp/${name}.tar.gz";
- sha256 = "1536dfxgxl6dyvkdby8lxzi9f7y2qlwl8ylrkybips3ampcqgkhm";
+ sha256 = "1kycz4jsyvmf7ny9227b497wc7y5ligydi6fvvldmkf8hk63ad9m";
};
}
diff --git a/pkgs/development/libraries/libzip/default.nix b/pkgs/development/libraries/libzip/default.nix
index 850bb27e364..131b64c1c7f 100644
--- a/pkgs/development/libraries/libzip/default.nix
+++ b/pkgs/development/libraries/libzip/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.3.0";
src = fetchurl {
- url = "http://www.nih.at/libzip/${name}.tar.gz";
+ url = "https://www.nih.at/libzip/${name}.tar.gz";
sha256 = "1633dvjc08zwwhzqhnv62rjf1abx8y5njmm8y16ik9iwd07ka6d9";
};
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- homepage = http://www.nih.at/libzip;
+ homepage = https://www.nih.at/libzip;
description = "A C library for reading, creating and modifying zip archives";
platforms = stdenv.lib.platforms.unix;
};
diff --git a/pkgs/development/libraries/lightstep-tracer-cpp/default.nix b/pkgs/development/libraries/lightstep-tracer-cpp/default.nix
index 9aea42082c5..f5660e93d79 100644
--- a/pkgs/development/libraries/lightstep-tracer-cpp/default.nix
+++ b/pkgs/development/libraries/lightstep-tracer-cpp/default.nix
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Distributed tracing system built on top of the OpenTracing standard";
- homepage = "http://lightstep.com/";
+ homepage = "https://lightstep.com/";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
diff --git a/pkgs/development/libraries/lirc/default.nix b/pkgs/development/libraries/lirc/default.nix
index 960c8cc2494..7f4d8cc19c8 100644
--- a/pkgs/development/libraries/lirc/default.nix
+++ b/pkgs/development/libraries/lirc/default.nix
@@ -1,31 +1,45 @@
-{ stdenv, fetchurl, alsaLib, bash, help2man, pkgconfig, xlibsWrapper, python3, libxslt }:
+{ stdenv, fetchurl, alsaLib, bash, help2man, pkgconfig, xlibsWrapper, python3
+, libxslt, systemd, libusb, libftdi1 }:
stdenv.mkDerivation rec {
- name = "lirc-0.9.4";
+ name = "lirc-0.10.1";
src = fetchurl {
url = "mirror://sourceforge/lirc/${name}.tar.bz2";
- sha256 = "19c6ldjsdnk1md66q3nb035ja1xj217k8iabhxpsb8rs10a6kwi6";
+ sha256 = "1whlyifvvc7w04ahq07nnk1h18wc8j7c6wnvlb6mszravxh3qxcb";
};
- preBuild = "patchShebangs .";
+ postPatch = ''
+ patchShebangs .
+
+ # fix overriding PYTHONPATH
+ sed -i 's,^PYTHONPATH *= *,PYTHONPATH := $(PYTHONPATH):,' \
+ Makefile.in
+ sed -i 's,PYTHONPATH=,PYTHONPATH=$(PYTHONPATH):,' \
+ doc/Makefile.in
+ '';
+
+ preConfigure = ''
+ # use empty inc file instead of a from linux kernel generated one
+ touch lib/lirc/input_map.inc
+ '';
nativeBuildInputs = [ pkgconfig help2man ];
- buildInputs = [ alsaLib xlibsWrapper python3 libxslt ];
+ buildInputs = [ alsaLib xlibsWrapper libxslt systemd libusb libftdi1 ]
+ ++ (with python3.pkgs; [ python pyyaml setuptools ]);
configureFlags = [
- "--with-driver=devinput"
"--sysconfdir=/etc"
"--localstatedir=/var"
- "--enable-sandboxed"
+ "--with-systemdsystemunitdir=$(out)/lib/systemd/system"
+ "--enable-uinput" # explicite activation because build env has no uinput
+ "--enable-devinput" # explicite activation because build env has not /dev/input
];
- makeFlags = [ "m4dir=$(out)/m4" ];
-
installFlags = [
- "sysconfdir=\${out}/etc"
- "localstatedir=\${TMPDIR}"
+ "sysconfdir=$out/etc"
+ "localstatedir=$TMPDIR"
];
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/lzo/default.nix b/pkgs/development/libraries/lzo/default.nix
index e8f8a6ab9bb..c7667b554f4 100644
--- a/pkgs/development/libraries/lzo/default.nix
+++ b/pkgs/development/libraries/lzo/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
- doCheck = stdenv.hostPlatform == stdenv.buildPlatform;
+ doCheck = true; # not cross;
meta = with stdenv.lib; {
description = "Real-time data (de)compression library";
@@ -30,6 +30,5 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
platforms = platforms.all;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/mbedtls/default.nix b/pkgs/development/libraries/mbedtls/default.nix
index 8195ba2d4d6..82d867fedf0 100644
--- a/pkgs/development/libraries/mbedtls/default.nix
+++ b/pkgs/development/libraries/mbedtls/default.nix
@@ -1,11 +1,13 @@
-{ stdenv, fetchurl, perl }:
+{ stdenv, fetchFromGitHub, perl }:
stdenv.mkDerivation rec {
- name = "mbedtls-2.6.0";
+ name = "mbedtls-2.6.1";
- src = fetchurl {
- url = "https://tls.mbed.org/download/${name}-gpl.tgz";
- sha256 = "042q1l4708zjn5v72sa9qdvgx173kmy4hbcd23wj5vqd6vbmk6d9";
+ src = fetchFromGitHub {
+ owner = "ARMmbed";
+ repo = "mbedtls";
+ rev = name;
+ sha256 = "0d421w9bz4p1nw6kza3licv2w97y1364mcpb4fxvpgdqz48rc1vg";
};
nativeBuildInputs = [ perl ];
diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix
index fca99550a3c..d343bd1112d 100644
--- a/pkgs/development/libraries/mesa/default.nix
+++ b/pkgs/development/libraries/mesa/default.nix
@@ -66,7 +66,7 @@ let
in
let
- version = "17.2.7";
+ version = "17.2.8";
branch = head (splitString "." version);
driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32";
in
@@ -81,7 +81,7 @@ stdenv.mkDerivation {
"ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz"
"https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
];
- sha256 = "0s3slgjxnx482yw0knn4a6alsy2cq28rah6hnjbmf12mvyldxksh";
+ sha256 = "0pq9kmmyllgd63d936f3x1zsg7sqaswx47khbn0gvbgari2h753f";
};
prePatch = "patchShebangs .";
@@ -98,7 +98,7 @@ stdenv.mkDerivation {
# TODO: Figure out how to enable opencl without having a runtime dependency on clang
configureFlags = [
- "--sysconfdir=/etc"
+ "--sysconfdir=${driverLink}/etc"
"--localstatedir=/var"
"--with-dri-driverdir=$(drivers)/lib/dri"
"--with-dri-searchpath=${driverLink}/lib/dri"
@@ -197,7 +197,6 @@ stdenv.mkDerivation {
'';
# TODO:
- # @vcunat isn't sure if drirc will be found when in $out/etc/;
# check $out doesn't depend on llvm: builder failures are ignored
# for some reason grep -qv '${llvmPackages.llvm}' -R "$out";
postFixup = ''
@@ -214,7 +213,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
description = "An open source implementation of OpenGL";
- homepage = http://www.mesa3d.org/;
+ homepage = https://www.mesa3d.org/;
license = licenses.mit; # X11 variant, in most files
platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ eduarrrd vcunat ];
diff --git a/pkgs/development/libraries/mlt/qt-5.nix b/pkgs/development/libraries/mlt/qt-5.nix
index f3bdc005247..7111a78381d 100644
--- a/pkgs/development/libraries/mlt/qt-5.nix
+++ b/pkgs/development/libraries/mlt/qt-5.nix
@@ -69,7 +69,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Open source multimedia framework, designed for television broadcasting";
- homepage = http://www.mltframework.org/;
+ homepage = https://www.mltframework.org/;
license = licenses.gpl3;
maintainers = [ maintainers.goibhniu ];
platforms = platforms.linux;
diff --git a/pkgs/development/libraries/mpfr/default.nix b/pkgs/development/libraries/mpfr/default.nix
index 6be199af193..fe364f22f9a 100644
--- a/pkgs/development/libraries/mpfr/default.nix
+++ b/pkgs/development/libraries/mpfr/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
stdenv.lib.optional hostPlatform.isSunOS "--disable-thread-safe" ++
stdenv.lib.optional hostPlatform.is64bit "--with-pic";
- doCheck = hostPlatform == buildPlatform;
+ doCheck = true; # not cross;
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/mps/default.nix b/pkgs/development/libraries/mps/default.nix
index 4e4ddfb6389..5a841f165ca 100644
--- a/pkgs/development/libraries/mps/default.nix
+++ b/pkgs/development/libraries/mps/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation rec {
version = "1.116.0";
src = fetchurl {
- url = "http://www.ravenbrook.com/project/mps/release/${version}/mps-kit-${version}.tar.gz";
+ url = "https://www.ravenbrook.com/project/mps/release/${version}/mps-kit-${version}.tar.gz";
sha256 = "1k7vnanpgawnj84x2xs6md57pfib9p7c3acngqzkl3c2aqw8qay0";
};
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
meta = {
description = "A flexible memory management and garbage collection library";
- homepage = "http://www.ravenbrook.com/project/mps";
+ homepage = "https://www.ravenbrook.com/project/mps";
license = stdenv.lib.licenses.sleepycat;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix
index 9aade8b9672..0dd7b37e1a6 100644
--- a/pkgs/development/libraries/ncurses/default.nix
+++ b/pkgs/development/libraries/ncurses/default.nix
@@ -18,11 +18,16 @@ stdenv.mkDerivation rec {
url = "mirror://gnu/ncurses/${name}.tar.gz";
sha256 = "0fsn7xis81za62afan0vvm38bvgzg5wfmv1m86flqcj0nj7jjilh";
} else {
- url = "ftp://ftp.invisible-island.net/ncurses/current/${name}.tgz";
+ urls = [
+ "ftp://ftp.invisible-island.net/ncurses/current/${name}.tgz"
+ "https://invisible-mirror.net/archives/ncurses/current/${name}.tgz"
+ ];
sha256 = "11adzj0k82nlgpfrflabvqn2m7fmhp2y6pd7ivmapynxqb9vvb92";
});
- patches = [ ./clang.patch ] ++ lib.optional (abiVersion == "5" && stdenv.cc.isGNU) ./gcc-5.patch;
+ # Unnecessarily complicated in order to avoid mass-rebuilds
+ patches = lib.optional (!stdenv.cc.isClang || abiVersion == "5") ./clang.patch
+ ++ lib.optional (stdenv.cc.isGNU && abiVersion == "5") ./gcc-5.patch;
outputs = [ "out" "dev" "man" ];
setOutputFlags = false; # some aren't supported
@@ -37,10 +42,11 @@ stdenv.mkDerivation rec {
# Only the C compiler, and explicitly not C++ compiler needs this flag on solaris:
CFLAGS = lib.optionalString stdenv.isSunOS "-D_XOPEN_SOURCE_EXTENDED";
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [
pkgconfig
] ++ lib.optionals (buildPlatform != hostPlatform) [
- buildPackages.ncurses buildPackages.stdenv.cc
+ buildPackages.ncurses
];
buildInputs = lib.optional (mouseSupport && stdenv.isLinux) gpm;
diff --git a/pkgs/development/libraries/ndpi/default.nix b/pkgs/development/libraries/ndpi/default.nix
index f1232d7d253..c84cddc897c 100644
--- a/pkgs/development/libraries/ndpi/default.nix
+++ b/pkgs/development/libraries/ndpi/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
longDescription = ''
nDPI is a library for deep-packet inspection based on OpenDPI.
'';
- homepage = http://www.ntop.org/products/deep-packet-inspection/ndpi/;
+ homepage = https://www.ntop.org/products/deep-packet-inspection/ndpi/;
license = with licenses; lgpl3;
maintainers = with maintainers; [ takikawa ];
platforms = with platforms; unix;
diff --git a/pkgs/development/libraries/netcdf-cxx4/default.nix b/pkgs/development/libraries/netcdf-cxx4/default.nix
index de9023a5710..a57884912ba 100644
--- a/pkgs/development/libraries/netcdf-cxx4/default.nix
+++ b/pkgs/development/libraries/netcdf-cxx4/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, netcdf, hdf5, curl }:
stdenv.mkDerivation rec {
name = "netcdf-cxx4-${version}";
- version = "4.2.1";
+ version = "4.3.0";
src = fetchurl {
url = "https://github.com/Unidata/netcdf-cxx4/archive/v${version}.tar.gz";
- sha256 = "1g0fsmz59dnjib4a7r899lm99j3z6yxsw10c0wlihclzr6znmmds";
+ sha256 = "13zi8cbk18gggx1c12a580wdsbl714lw68a1wg7c86x0sybirni5";
};
buildInputs = [ netcdf hdf5 curl ];
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = {
description = "C++ API to manipulate netcdf files";
- homepage = http://www.unidata.ucar.edu/software/netcdf/;
+ homepage = https://www.unidata.ucar.edu/software/netcdf/;
license = stdenv.lib.licenses.free;
platforms = stdenv.lib.platforms.unix;
};
diff --git a/pkgs/development/libraries/netcdf/default.nix b/pkgs/development/libraries/netcdf/default.nix
index e7c64b9a76d..696df48bfbc 100644
--- a/pkgs/development/libraries/netcdf/default.nix
+++ b/pkgs/development/libraries/netcdf/default.nix
@@ -9,27 +9,30 @@ let
mpiSupport = hdf5.mpiSupport;
mpi = hdf5.mpi;
in stdenv.mkDerivation rec {
- name = "netcdf-4.4.1.1";
- src = fetchurl {
- url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
- sha256 = "1blc7ik5yin7i0ls2kag0a9xjk12m0dzx6v1x88az3ras3scci2d";
- };
+ name = "netcdf-4.6.0";
- buildInputs = [ hdf5 m4 curl mpi];
+ src = fetchurl {
+ url = "https://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz";
+ sha256 = "099qmdjj059wkj5za13zqnz0lcziqkcvyfdf894j4n6qq4c5iw2b";
+ };
- passthru = {
- mpiSupport = mpiSupport;
- inherit mpi;
- };
+ nativeBuildInputs = [ m4 ];
+ buildInputs = [ hdf5 curl mpi ];
- configureFlags = [
- "--enable-netcdf-4"
- "--enable-dap"
- "--enable-shared"
- ]
- ++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
+ passthru = {
+ mpiSupport = mpiSupport;
+ inherit mpi;
+ };
- meta = {
- platforms = stdenv.lib.platforms.unix;
- };
+ configureFlags = [
+ "--enable-netcdf-4"
+ "--enable-dap"
+ "--enable-shared"
+ ]
+ ++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" "CC=${mpi}/bin/mpicc" ]);
+
+ meta = {
+ platforms = stdenv.lib.platforms.unix;
+ homepage = https://www.unidata.ucar.edu/software/netcdf/;
+ };
}
diff --git a/pkgs/development/libraries/npth/default.nix b/pkgs/development/libraries/npth/default.nix
index 8ebf62cfdf0..dc4f4926e9d 100644
--- a/pkgs/development/libraries/npth/default.nix
+++ b/pkgs/development/libraries/npth/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "npth-1.3";
+ name = "npth-1.5";
src = fetchurl {
url = "ftp://ftp.gnupg.org/gcrypt/npth/${name}.tar.bz2";
- sha256 = "0am86vblapwz84254qpmhz0chk70g6qzh3wdxcs0gvba8d01ka5w";
+ sha256 = "1hmkkp6vzyrh8v01c2ynzf9vwikyagp7p1lxhbnr4ysk3w66jji9";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/nss/ckpem.patch b/pkgs/development/libraries/nss/ckpem.patch
new file mode 100644
index 00000000000..c1a65a6c0b2
--- /dev/null
+++ b/pkgs/development/libraries/nss/ckpem.patch
@@ -0,0 +1,11 @@
+--- nss/lib/ckfw/pem/ckpem.h 2018-01-03 13:36:12.000000000 -0800
++++ nss/lib/ckfw/pem/ckpem.h 2018-01-03 13:36:20.000000000 -0800
+@@ -156,8 +156,6 @@
+ NSS_EXTERN_DATA pemInternalObject nss_pem_data[];
+ NSS_EXTERN_DATA const PRUint32 nss_pem_nObjects;
+
+- PRBool logged_in;
+-
+ /* our raw object data array */
+ NSS_EXTERN_DATA pemInternalObject nss_pem_data[];
+ NSS_EXTERN_DATA const PRUint32 nss_pem_nObjects;
diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix
index 3e8ed856bfa..8d799e2c13a 100644
--- a/pkgs/development/libraries/nss/default.nix
+++ b/pkgs/development/libraries/nss/default.nix
@@ -9,11 +9,11 @@ let
in stdenv.mkDerivation rec {
name = "nss-${version}";
- version = "3.33";
+ version = "3.34.1";
src = fetchurl {
- url = "mirror://mozilla/security/nss/releases/NSS_3_33_RTM/src/${name}.tar.gz";
- sha256 = "1r44qa4j7sri50mxxbnrpm6fxprwrhv76whi7bfq73j06syxmw4q";
+ url = "mirror://mozilla/security/nss/releases/NSS_3_34_1_RTM/src/${name}.tar.gz";
+ sha256 = "186x33wsk4mzjz7dzbn8p0py9a0nzkgzpfkdv4rlyy5gghv5vhd3";
};
buildInputs = [ perl zlib sqlite ];
@@ -28,6 +28,7 @@ in stdenv.mkDerivation rec {
[
# Based on http://patch-tracker.debian.org/patch/series/dl/nss/2:3.15.4-1/85_security_load.patch
./85_security_load.patch
+ ./ckpem.patch
];
patchFlags = "-p0";
@@ -45,7 +46,8 @@ in stdenv.mkDerivation rec {
"NSS_ENABLE_ECC=1"
"USE_SYSTEM_ZLIB=1"
"NSS_USE_SYSTEM_SQLITE=1"
- ] ++ stdenv.lib.optional stdenv.is64bit "USE_64=1";
+ ] ++ stdenv.lib.optional stdenv.is64bit "USE_64=1"
+ ++ stdenv.lib.optional stdenv.isDarwin "CCC=clang++";
NIX_CFLAGS_COMPILE = "-Wno-error";
@@ -84,15 +86,22 @@ in stdenv.mkDerivation rec {
postFixup = ''
for libname in freebl3 nssdbm3 softokn3
- do
- libfile="$out/lib/lib$libname.so"
- LD_LIBRARY_PATH=$out/lib $out/bin/shlibsign -v -i "$libfile"
+ do '' +
+ (if stdenv.isDarwin
+ then ''
+ libfile="$out/lib/lib$libname.dylib"
+ DYLD_LIBRARY_PATH=$out/lib:${nspr.out}/lib \
+ '' else ''
+ libfile="$out/lib/lib$libname.so"
+ LD_LIBRARY_PATH=$out/lib:${nspr.out}/lib \
+ '') + ''
+ $out/bin/shlibsign -v -i "$libfile"
done
moveToOutput bin "$tools"
moveToOutput bin/nss-config "$dev"
moveToOutput lib/libcrmf.a "$dev" # needed by firefox, for example
- rm "$out"/lib/*.a
+ rm -f "$out"/lib/*.a
'';
meta = {
diff --git a/pkgs/development/libraries/ogre/1.9.x.nix b/pkgs/development/libraries/ogre/1.9.x.nix
new file mode 100644
index 00000000000..b3b6e918bde
--- /dev/null
+++ b/pkgs/development/libraries/ogre/1.9.x.nix
@@ -0,0 +1,46 @@
+{ fetchFromGitHub, stdenv, lib
+, cmake, mesa
+, freetype, freeimage, zziplib, randrproto, libXrandr
+, libXaw, freeglut, libXt, libpng, boost, ois
+, xproto, libX11, libXmu, libSM, pkgconfig
+, libXxf86vm, xf86vidmodeproto, libICE
+, renderproto, libXrender
+, withNvidiaCg ? false, nvidia_cg_toolkit
+, withSamples ? false }:
+
+stdenv.mkDerivation rec {
+ pname = "ogre";
+ version = "1.9.1";
+ name = "${pname}-${version}";
+
+ src = fetchFromGitHub {
+ owner = "OGRECave";
+ repo = "ogre";
+ rev = "v${version}";
+ sha256 = "11lfgzqaps3728dswrq3cbwk7aicigyz08q4hfyy6ikc6m35r4wg";
+ };
+
+ cmakeFlags = [ "-DOGRE_BUILD_SAMPLES=${toString withSamples}" ]
+ ++ map (x: "-DOGRE_BUILD_PLUGIN_${x}=on")
+ ([ "BSP" "OCTREE" "PCZ" "PFX" ] ++ lib.optional withNvidiaCg "CG")
+ ++ map (x: "-DOGRE_BUILD_RENDERSYSTEM_${x}=on") [ "GL" ];
+
+ enableParallelBuilding = true;
+
+ buildInputs =
+ [ cmake mesa
+ freetype freeimage zziplib randrproto libXrandr
+ libXaw freeglut libXt libpng boost ois
+ xproto libX11 libXmu libSM pkgconfig
+ libXxf86vm xf86vidmodeproto libICE
+ renderproto libXrender
+ ] ++ lib.optional withNvidiaCg nvidia_cg_toolkit;
+
+ meta = {
+ description = "A 3D engine";
+ homepage = http://www.ogre3d.org/;
+ maintainers = [ stdenv.lib.maintainers.raskin ];
+ platforms = stdenv.lib.platforms.linux;
+ license = stdenv.lib.licenses.mit;
+ };
+}
diff --git a/pkgs/development/libraries/ogre/default.nix b/pkgs/development/libraries/ogre/default.nix
index aba02827665..e0d6d2fa41c 100644
--- a/pkgs/development/libraries/ogre/default.nix
+++ b/pkgs/development/libraries/ogre/default.nix
@@ -9,11 +9,11 @@
, withSamples ? false }:
stdenv.mkDerivation {
- name = "ogre-1.9-hg-20160322";
+ name = "ogre-1.10.11";
src = fetchurl {
- url = "https://bitbucket.org/sinbad/ogre/get/v1-9.tar.gz";
- sha256 = "0w3argjy1biaxwa3c80zxxgll67wjp8czd83p87awlcvwzdk5mz9";
+ url = "https://bitbucket.org/sinbad/ogre/get/v1-10-11.tar.gz";
+ sha256 = "1zwvlx5dz9nwjazhnrhzb0w8ilpa84r0hrxrmmy69pgr1p1yif5a";
};
cmakeFlags = [ "-DOGRE_BUILD_SAMPLES=${toString withSamples}" ]
@@ -34,7 +34,7 @@ stdenv.mkDerivation {
meta = {
description = "A 3D engine";
- homepage = http://www.ogre3d.org/;
+ homepage = https://www.ogre3d.org/;
maintainers = [ stdenv.lib.maintainers.raskin ];
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.mit;
diff --git a/pkgs/development/libraries/ogrepaged/default.nix b/pkgs/development/libraries/ogrepaged/default.nix
index 2408c3e4904..e4045bcd5dc 100644
--- a/pkgs/development/libraries/ogrepaged/default.nix
+++ b/pkgs/development/libraries/ogrepaged/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, pkgconfig, ois, ogre, libX11, boost }:
+{ stdenv, fetchurl, fetchpatch, cmake, pkgconfig, ois, ogre, libX11, boost }:
stdenv.mkDerivation rec {
name = "ogre-paged-${version}";
@@ -9,6 +9,23 @@ stdenv.mkDerivation rec {
sha256 = "17j7rw9wbkynxbhm2lay3qgjnnagb2vd5jn9iijnn2lf8qzbgy82";
};
+ patches = [
+ # These patches come from https://github.com/RigsOfRods/ogre-pagedgeometry/pull/6
+ # and make ogre-paged build with ogre-1.10.
+ (fetchpatch {
+ url = "https://github.com/RigsOfRods/ogre-pagedgeometry/commit/2d4df577decba37ec3cdafc965deae0f6d31fe45.patch";
+ sha256 = "0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73";
+ })
+ (fetchpatch {
+ url = "https://github.com/RigsOfRods/ogre-pagedgeometry/commit/4d81789ec6f55e294a5ad040ea7abe2b415cbc92.patch";
+ sha256 = "17q8djdz2y3g46azxc3idhyvi6vf0sqkxld4bbyp3l9zn7dq76rp";
+ })
+ (fetchpatch {
+ url = "https://github.com/RigsOfRods/ogre-pagedgeometry/commit/10f7c5ce5b422e9cbac59d466f3567a24c8831a4.patch";
+ sha256 = "1kk0dbadzg73ai99l3w04q51sil36vzbkaqc79mdwy0vjrn4ardb";
+ })
+ ];
+
buildInputs = [ ois ogre libX11 boost ];
nativeBuildInputs = [ cmake pkgconfig ];
diff --git a/pkgs/development/libraries/opencv/3.x.nix b/pkgs/development/libraries/opencv/3.x.nix
index a9b3c85d396..356e1e336ac 100644
--- a/pkgs/development/libraries/opencv/3.x.nix
+++ b/pkgs/development/libraries/opencv/3.x.nix
@@ -1,6 +1,7 @@
{ lib, stdenv
-, fetchurl, fetchFromGitHub
+, fetchurl, fetchFromGitHub, fetchpatch
, cmake, pkgconfig, unzip, zlib, pcre, hdf5
+, caffe, glog, boost, google-gflags, protobuf
, config
, enableJPEG ? true, libjpeg
@@ -14,34 +15,39 @@
, enableCuda ? (config.cudaSupport or false), cudatoolkit
+, enableUnfree ? false
, enableIpp ? false
-, enableContrib ? false #, caffe, glog, boost, google-gflags
+, enableContrib ? false
, enablePython ? false, pythonPackages
, enableGtk2 ? false, gtk2
, enableGtk3 ? false, gtk3
+, enableVtk ? false, vtk
, enableFfmpeg ? false, ffmpeg
, enableGStreamer ? false, gst_all_1
, enableTesseract ? false, tesseract, leptonica
+, enableOvis ? false, ogre
+, enableGPhoto2 ? false, libgphoto2
+, enableDC1394 ? false, libdc1394
, enableDocs ? false, doxygen, graphviz-nox
-, AVFoundation, Cocoa, QTKit
+, AVFoundation, Cocoa, QTKit, VideoDecodeAcceleration, bzip2
}:
let
- version = "3.3.1";
+ version = "3.4.0";
src = fetchFromGitHub {
owner = "opencv";
repo = "opencv";
rev = version;
- sha256 = "1jq8nny78gp54yjgsnb2rdp5rwhp78b3r2i36b2vyx6xk6h6wwji";
+ sha256 = "1nc14kvsjwaisv7d1r6f0hn7na9zr2cm2zh3hd3r9qwm3g78xnac";
};
contribSrc = fetchFromGitHub {
owner = "opencv";
repo = "opencv_contrib";
rev = version;
- sha256 = "0q5vsa8dpa3mdhzas0ckagwh2sbckpm1kxsp0i3yfknsr5ampyi2";
+ sha256 = "1cxw7nra3f1hng057c6hi1ynsyqdazd69irjdgn8xjg6q9h76br0";
};
# Contrib must be built in order to enable Tesseract support:
@@ -104,6 +110,20 @@ let
dst = ".cache/xfeatures2d/boostdesc";
};
+ # See opencv_contrib/modules/face/CMakeLists.txt
+ face = {
+ src = fetchFromGitHub {
+ owner = "opencv";
+ repo = "opencv_3rdparty";
+ rev = "8afa57abc8229d611c4937165d20e2a2d9fc5a12";
+ sha256 = "061lsvqdidq9xa2hwrcvwi9ixflr2c2lfpc8drr159g68zi8bp4v";
+ };
+ files = {
+ "face_landmark_model.dat" = "7505c44ca4eb54b4ab1e4777cb96ac05";
+ };
+ dst = ".cache/data";
+ };
+
# See opencv/cmake/OpenCVDownload.cmake
installExtraFiles = extra : with lib; ''
mkdir -p "${extra.dst}"
@@ -122,14 +142,23 @@ let
dst = ".cache/tiny_dnn";
};
- opencvFlag = name: enabled: "-DWITH_${name}=${if enabled then "ON" else "OFF"}";
+ opencvFlag = name: enabled: "-DWITH_${name}=${printEnabled enabled}";
+ printEnabled = enabled : if enabled then "ON" else "OFF";
in
stdenv.mkDerivation rec {
name = "opencv-${version}";
inherit version src;
+ patches = [
+ # Fix for: https://github.com/opencv/opencv/issues/10474
+ (fetchpatch {
+ url = "https://github.com/opencv/opencv/commit/ea5a3e557f93844fdb5e54e3e8acfc5f61c6fd9f.patch";
+ sha256 = "1w7jmqlrx73ydh9jjsnnic5xz8r04kxbjpzkcfyb91v3az9132r1";
+ })
+ ];
+
postUnpack = lib.optionalString buildContrib ''
cp --no-preserve=mode -r "${contribSrc}/modules" "$NIX_BUILD_TOP/opencv_contrib"
'';
@@ -151,16 +180,19 @@ stdenv.mkDerivation rec {
${installExtraFiles vgg}
${installExtraFiles boostdesc}
+ ${installExtraFiles face}
mkdir -p "${tinyDnn.dst}"
ln -s "${tinyDnn.src}" "${tinyDnn.dst}/${tinyDnn.md5}-${tinyDnn.name}"
'');
buildInputs =
- [ zlib pcre hdf5 ]
+ [ zlib pcre hdf5 glog boost google-gflags protobuf ]
+ ++ lib.optional (!stdenv.isDarwin) caffe
++ lib.optional enablePython pythonPackages.python
++ lib.optional enableGtk2 gtk2
++ lib.optional enableGtk3 gtk3
+ ++ lib.optional enableVtk vtk
++ lib.optional enableJPEG libjpeg
++ lib.optional enablePNG libpng
++ lib.optional enableTIFF libtiff
@@ -168,7 +200,12 @@ stdenv.mkDerivation rec {
++ lib.optionals enableEXR [ openexr ilmbase ]
++ lib.optional enableJPEG2K jasper
++ lib.optional enableFfmpeg ffmpeg
+ ++ lib.optionals (enableFfmpeg && stdenv.isDarwin)
+ [ VideoDecodeAcceleration bzip2 ]
++ lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base ])
+ ++ lib.optional enableOvis ogre
+ ++ lib.optional enableGPhoto2 libgphoto2
+ ++ lib.optional enableDC1394 libdc1394
++ lib.optional enableEigen eigen
++ lib.optional enableOpenblas openblas
# There is seemingly no compile-time flag for Tesseract. It's
@@ -176,12 +213,7 @@ stdenv.mkDerivation rec {
# tesseract & leptonica.
++ lib.optionals enableTesseract [ tesseract leptonica ]
++ lib.optional enableCuda cudatoolkit
-
- # These are only needed for the currently disabled
- # cnn_3dobj and dnn_modern modules
- # ++ lib.optionals buildContrib [ caffe glog boost google-gflags ]
-
- ++ lib.optionals stdenv.isDarwin [ AVFoundation Cocoa QTKit ]
+ ++ lib.optionals stdenv.isDarwin [ AVFoundation Cocoa QTKit VideoDecodeAcceleration bzip2 ]
++ lib.optionals enableDocs [ doxygen graphviz-nox ];
propagatedBuildInputs = lib.optional enablePython pythonPackages.numpy;
@@ -192,6 +224,9 @@ stdenv.mkDerivation rec {
cmakeFlags = [
"-DWITH_OPENMP=ON"
+ "-DBUILD_PROTOBUF=OFF"
+ "-DPROTOBUF_UPDATE_FILES=ON"
+ "-DOPENCV_ENABLE_NONFREE=${printEnabled enableUnfree}"
(opencvFlag "IPP" enableIpp)
(opencvFlag "TIFF" enableTIFF)
(opencvFlag "JASPER" enableJPEG2K)
@@ -204,17 +239,14 @@ stdenv.mkDerivation rec {
] ++ lib.optionals enableCuda [
"-DCUDA_FAST_MATH=ON"
"-DCUDA_HOST_COMPILER=${cudatoolkit.cc}/bin/gcc"
- ] ++ lib.optionals buildContrib [
- # the cnn_3dobj module fails to build
- "-DBUILD_opencv_cnn_3dobj=OFF"
+ ]
+ ++ lib.optionals stdenv.isDarwin [
+ "-DWITH_OPENCL=OFF"
+ "-DWITH_LAPACK=OFF"
- # the dnn_modern module causes:
- # https://github.com/opencv/opencv_contrib/issues/823
- #
- # On OS X its dependency tiny-dnn-1.0.0a3 also fails to build.
- "-DBUILD_opencv_dnn_modern=OFF"
- ]
- ++ lib.optionals stdenv.isDarwin ["-DWITH_OPENCL=OFF" "-DWITH_LAPACK=OFF"];
+ # On OS X the tiny-dnn-1.0.0a3 dependency of dnn_modern fails to build.
+ "-DBUILD_opencv_dnn_modern=OFF"
+ ];
enableParallelBuilding = true;
@@ -229,7 +261,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Open Computer Vision Library with more than 500 algorithms";
homepage = http://opencv.org/;
- license = stdenv.lib.licenses.bsd3;
+ license = with stdenv.lib.licenses; if enableUnfree then unfree else bsd3;
maintainers = with stdenv.lib.maintainers; [viric mdaiter basvandijk];
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
diff --git a/pkgs/development/libraries/opencv/default.nix b/pkgs/development/libraries/opencv/default.nix
index aadd108620a..cbac7210a10 100644
--- a/pkgs/development/libraries/opencv/default.nix
+++ b/pkgs/development/libraries/opencv/default.nix
@@ -85,7 +85,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Open Computer Vision Library with more than 500 algorithms";
- homepage = http://opencv.org/;
+ homepage = https://opencv.org/;
license = licenses.bsd3;
maintainers = with maintainers; [ viric ];
platforms = platforms.linux ++ platforms.darwin;
diff --git a/pkgs/development/libraries/opendbx/default.nix b/pkgs/development/libraries/opendbx/default.nix
index 37afa3fd507..48ec5141e34 100644
--- a/pkgs/development/libraries/opendbx/default.nix
+++ b/pkgs/development/libraries/opendbx/default.nix
@@ -12,10 +12,10 @@ stdenv.mkDerivation rec {
};
preConfigure = ''
- export CPPFLAGS="-I${getDev mysql.client}/include/mysql"
- export LDFLAGS="-L${getLib mysql.client}/lib/mysql -L${getLib postgresql}/lib"
+ export CPPFLAGS="-I${mysql.connector-c}/include/mysql"
+ export LDFLAGS="-L${mysql.connector-c}/lib/mysql -L${postgresql}/lib"
configureFlagsArray=(--with-backends="mysql pgsql sqlite3")
'';
- buildInputs = [ readline mysql.client postgresql sqlite ];
+ buildInputs = [ readline mysql.connector-c postgresql sqlite ];
}
diff --git a/pkgs/development/libraries/openexr/default.nix b/pkgs/development/libraries/openexr/default.nix
index d2d8b686f35..8d5a6bb65a9 100644
--- a/pkgs/development/libraries/openexr/default.nix
+++ b/pkgs/development/libraries/openexr/default.nix
@@ -5,19 +5,11 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://download.savannah.nongnu.org/releases/openexr/${name}.tar.gz";
- sha256 = "0ca2j526n4wlamrxb85y2jrgcv0gf21b3a19rr0gh4rjqkv1581n";
+ sha256 = "1kdf2gqznsdinbd5vcmqnif442nyhdf9l7ckc51410qm2gv5m6lg";
};
patches = [
./bootstrap.patch
- (fetchpatch {
- # https://github.com/openexr/openexr/issues/232
- # https://github.com/openexr/openexr/issues/238
- name = "CVE-2017-12596.patch";
- url = "https://github.com/openexr/openexr/commit/f09f5f26c1924.patch";
- sha256 = "1d014da7c8cgbak5rgr4mq6wzm7kwznb921pr7nlb52vlfvqp4rs";
- stripLen = 1;
- })
];
outputs = [ "bin" "dev" "out" "doc" ];
diff --git a/pkgs/development/libraries/openldap/default.nix b/pkgs/development/libraries/openldap/default.nix
index 475ac496e7e..56118c9bbb2 100644
--- a/pkgs/development/libraries/openldap/default.nix
+++ b/pkgs/development/libraries/openldap/default.nix
@@ -57,7 +57,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
homepage = http://www.openldap.org/;
description = "An open source implementation of the Lightweight Directory Access Protocol";
- maintainers = with maintainers; [ lovek323 mornfall ];
+ maintainers = with maintainers; [ lovek323 ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/openmpi/default.nix b/pkgs/development/libraries/openmpi/default.nix
index 2d08f37c8c2..c2f79753bd1 100644
--- a/pkgs/development/libraries/openmpi/default.nix
+++ b/pkgs/development/libraries/openmpi/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, gfortran, perl, libibverbs
+{stdenv, fetchurl, gfortran, perl, rdma-core
# Enable the Sun Grid Engine bindings
, enableSGE ? false
@@ -21,7 +21,7 @@ in stdenv.mkDerivation rec {
};
buildInputs = [ gfortran ]
- ++ optional (stdenv.isLinux || stdenv.isFreeBSD) libibverbs;
+ ++ optional (stdenv.isLinux || stdenv.isFreeBSD) rdma-core;
nativeBuildInputs = [ perl ];
@@ -44,7 +44,7 @@ in stdenv.mkDerivation rec {
homepage = http://www.open-mpi.org/;
description = "Open source MPI-2 implementation";
longDescription = "The Open MPI Project is an open source MPI-2 implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers.";
- maintainers = [ stdenv.lib.maintainers.mornfall ];
+ maintainers = [ ];
platforms = platforms.unix;
};
}
diff --git a/pkgs/development/libraries/opensaml-cpp/default.nix b/pkgs/development/libraries/opensaml-cpp/default.nix
index c2c102ccf9b..659c4fb7cff 100644
--- a/pkgs/development/libraries/opensaml-cpp/default.nix
+++ b/pkgs/development/libraries/opensaml-cpp/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "opensaml-cpp-${version}";
- version = "2.6.0";
+ version = "2.6.1";
src = fetchgit {
url = "https://git.shibboleth.net/git/cpp-opensaml.git";
- rev = "61193de29e4c9f1ccff7ed7e1f42c2748c62be77";
- sha256 = "1jlxa1f2qn0kd15fzjqp80apxn42v47wg3mx1vk424m31rhi00xr";
+ rev = version;
+ sha256 = "0wjb6jyvh4hwpy1pvhh63i821746nqijysrd4vasbirkf4h6z7nx";
};
buildInputs = [ boost openssl log4shib xercesc xml-security-c xml-tooling-c zlib ];
diff --git a/pkgs/development/libraries/openslp/CVE-2016-4912.patch b/pkgs/development/libraries/openslp/CVE-2016-4912.patch
new file mode 100644
index 00000000000..06223deda89
--- /dev/null
+++ b/pkgs/development/libraries/openslp/CVE-2016-4912.patch
@@ -0,0 +1,11 @@
+--- a/common/slp_xmalloc.c
++++ b/common/slp_xmalloc.c
+@@ -206,7 +206,7 @@ void * _xrealloc(const char * file, int line, void * ptr, size_t size)
+ if (newptr == 0)
+ return 0;
+ memcpy(newptr, ptr, x->size);
+- _xfree(file, line, x);
++ _xfree(file, line, ptr);
+ }
+ return newptr;
+ }
diff --git a/pkgs/development/libraries/openslp/default.nix b/pkgs/development/libraries/openslp/default.nix
index 3ab3f68cde5..3e178d92013 100644
--- a/pkgs/development/libraries/openslp/default.nix
+++ b/pkgs/development/libraries/openslp/default.nix
@@ -19,6 +19,7 @@ stdenv.mkDerivation {
url = "https://src.fedoraproject.org/cgit/rpms/openslp.git/plain/openslp-2.0.0-cve-2016-7567.patch";
sha256 = "0zp61axx93b7nrbsyhn2x4dnw7n9y6g4rys21hyqxk4khrnc2yr9";
})
+ ./CVE-2016-4912.patch
];
meta = with stdenv.lib; {
diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix
index 78792e5b8dc..775e6056dff 100644
--- a/pkgs/development/libraries/openssl/default.nix
+++ b/pkgs/development/libraries/openssl/default.nix
@@ -1,5 +1,6 @@
{ stdenv, fetchurl, buildPackages, perl
-, hostPlatform
+, buildPlatform, hostPlatform
+, fetchpatch
, withCryptodev ? false, cryptodevHeaders
, enableSSL2 ? false
}:
@@ -7,10 +8,6 @@
with stdenv.lib;
let
-
- opensslCrossSystem = hostPlatform.openssl.system or
- (throw "openssl needs its platform name cross building");
-
common = args@{ version, sha256, patches ? [] }: stdenv.mkDerivation rec {
name = "openssl-${version}";
@@ -23,23 +20,34 @@ let
(args.patches or [])
++ [ ./nix-ssl-cert-file.patch ]
++ optional (versionOlder version "1.1.0")
- (if stdenv.isDarwin then ./use-etc-ssl-certs-darwin.patch else ./use-etc-ssl-certs.patch)
+ (if hostPlatform.isDarwin then ./use-etc-ssl-certs-darwin.patch else ./use-etc-ssl-certs.patch)
++ optional (versionOlder version "1.0.2" && hostPlatform.isDarwin)
./darwin-arch.patch;
outputs = [ "bin" "dev" "out" "man" ];
setOutputFlags = false;
- separateDebugInfo = stdenv.isLinux;
+ separateDebugInfo = hostPlatform.isLinux;
nativeBuildInputs = [ perl ];
buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders;
- # On x86_64-darwin, "./config" misdetects the system as
- # "darwin-i386-cc". So specify the system type explicitly.
- configureScript =
- if stdenv.system == "x86_64-darwin" then "./Configure darwin64-x86_64-cc"
- else if stdenv.system == "x86_64-solaris" then "./Configure solaris64-x86_64-gcc"
- else "./config";
+ # TODO(@Ericson2314): Improve with mass rebuild
+ configureScript = {
+ "x86_64-darwin" = "./Configure darwin64-x86_64-cc";
+ "x86_64-solaris" = "./Configure solaris64-x86_64-gcc";
+ }.${hostPlatform.system} or (
+ if hostPlatform == buildPlatform
+ then "./config"
+ else if hostPlatform.isMinGW
+ then "./Configure mingw${toString hostPlatform.parsed.cpu.bits}"
+ else if hostPlatform.isLinux
+ then "./Configure linux-generic${toString hostPlatform.parsed.cpu.bits}"
+ else
+ throw "Not sure what configuration to use for ${hostPlatform.config}"
+ );
+
+ # TODO(@Ericson2314): Make unconditional on mass rebuild
+ ${if buildPlatform != hostPlatform then "configurePlatforms" else null} = [];
configureFlags = [
"shared"
@@ -49,7 +57,7 @@ let
"-DHAVE_CRYPTODEV"
"-DUSE_CRYPTODEV_DIGESTS"
] ++ stdenv.lib.optional enableSSL2 "enable-ssl2"
- ++ stdenv.lib.optional (versionAtLeast version "1.1.0" && stdenv.isAarch64) "no-afalgeng";
+ ++ stdenv.lib.optional (versionAtLeast version "1.1.0" && hostPlatform.isAarch64) "no-afalgeng";
makeFlags = [ "MANDIR=$(man)/share/man" ];
@@ -83,18 +91,6 @@ let
fi
'';
- crossAttrs = {
- # upstream patch: https://rt.openssl.org/Ticket/Display.html?id=2558
- postPatch = ''
- sed -i -e 's/[$][(]CROSS_COMPILE[)]windres/$(WINDRES)/' Makefile.shared
- '';
- preConfigure=''
- # It's configure does not like --build or --host
- export configureFlags="${concatStringsSep " " (configureFlags ++ [ opensslCrossSystem ])}"
- '';
- configureScript = "./Configure";
- };
-
meta = {
homepage = https://www.openssl.org/;
description = "A cryptographic library that implements the SSL and TLS protocols";
@@ -114,6 +110,13 @@ in {
openssl_1_1_0 = common {
version = "1.1.0g";
sha256 = "1bvka2wf33w2vxv7yw578nnjqyhz2b3chvfb0l4k2ffscw950kfy";
+ patches = [
+ (fetchpatch {
+ name = "CVE-2017-3738.patch";
+ url = "https://github.com/openssl/openssl/commit/563066.patch";
+ sha256 = "0ni9fwpxf8raw8b58pfa15akbqmxx4q64v0ldsm4b9dqhbxf8mkz";
+ })
+ ];
};
}
diff --git a/pkgs/development/libraries/openwsman/default.nix b/pkgs/development/libraries/openwsman/default.nix
index df2c23266c5..1aa0f268457 100644
--- a/pkgs/development/libraries/openwsman/default.nix
+++ b/pkgs/development/libraries/openwsman/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
homepage = https://openwsman.github.io;
license = licenses.bsd3;
maintainers = with maintainers; [ deepfire ];
- platforms = platforms.unix;
+ platforms = platforms.linux; # PAM is not available on Darwin
inherit version;
};
}
diff --git a/pkgs/development/libraries/oracle-instantclient/default.nix b/pkgs/development/libraries/oracle-instantclient/default.nix
index d0085752623..1c629c13779 100644
--- a/pkgs/development/libraries/oracle-instantclient/default.nix
+++ b/pkgs/development/libraries/oracle-instantclient/default.nix
@@ -4,10 +4,12 @@
assert odbcSupport -> unixODBC != null;
-let optional = stdenv.lib.optional;
- optionalString = stdenv.lib.optionalString;
- requireSource = version: part: hash: (requireFile rec {
- name = "oracle-instantclient12.1-${part}-${version}.x86_64.rpm";
+with stdenv.lib;
+
+let
+ baseVersion = "12.2";
+ requireSource = version: rel: part: hash: (requireFile rec {
+ name = "oracle-instantclient${baseVersion}-${part}-${version}-${rel}.x86_64.rpm";
message = ''
This Nix expression requires that ${name} already
be part of the store. Download the file
@@ -24,13 +26,13 @@ let optional = stdenv.lib.optional;
sha256 = hash;
});
in stdenv.mkDerivation rec {
- version = "12.1.0.2.0-1";
+ version = "${baseVersion}.0.1.0";
name = "oracle-instantclient-${version}";
- srcBase = (requireSource version "basic" "f0e51e247cc3f210b950fd939ab1f696de9ca678d1eb179ba49ac73acb9a20ed");
- srcDevel = (requireSource version "devel" "13b638882f07d6cfc06c85dc6b9eb5cac37064d3d594194b6b09d33483a08296");
- srcSqlplus = (requireSource version "sqlplus" "16d87w1lii0ag47c8srnr7v4wfm9q4hy6gka8m3v6gp9cc065vam");
- srcOdbc = optionalString odbcSupport (requireSource version "odbc" "d3aa1a4957a2f15ced05921dab551ba823aa7925d8fcb58d5b3a7f624e4df063");
+ srcBase = (requireSource version "1" "basic" "43c4bfa938af741ae0f9964a656f36a0700849f5780a2887c8e9f1be14fe8b66");
+ srcDevel = (requireSource version "1" "devel" "4c7ad8d977f9f908e47c5e71ce56c2a40c7dc83cec8a5c106b9ff06d45bb3442");
+ srcSqlplus = (requireSource version "1" "sqlplus" "303e82820a10f78e401e2b07d4eebf98b25029454d79f06c46e5f9a302ce5552");
+ srcOdbc = optionalString odbcSupport (requireSource version "2" "odbc" "e870c84d2d4be6f77c0760083b82b7ffbb15a4bf5c93c4e6c84f36d6ed4dfdf1");
buildInputs = [ glibc patchelf rpmextract ] ++
optional odbcSupport unixODBC;
@@ -41,15 +43,13 @@ in stdenv.mkDerivation rec {
${rpmextract}/bin/rpmextract "${srcBase}"
${rpmextract}/bin/rpmextract "${srcDevel}"
${rpmextract}/bin/rpmextract "${srcSqlplus}"
- ${optionalString odbcSupport ''
- ${rpmextract}/bin/rpmextract "${srcOdbc}"
- ''}
-
+ '' + optionalString odbcSupport ''${rpmextract}/bin/rpmextract ${srcOdbc}
+ '' + ''
mkdir -p "$out/"{bin,include,lib,"share/${name}/demo/"}
- mv "usr/share/oracle/12.1/client64/demo/"* "$out/share/${name}/demo/"
- mv "usr/include/oracle/12.1/client64/"* "$out/include/"
- mv "usr/lib/oracle/12.1/client64/lib/"* "$out/lib/"
- mv "usr/lib/oracle/12.1/client64/bin/"* "$out/bin/"
+ mv "usr/share/oracle/${baseVersion}/client64/demo/"* "$out/share/${name}/demo/"
+ mv "usr/include/oracle/${baseVersion}/client64/"* "$out/include/"
+ mv "usr/lib/oracle/${baseVersion}/client64/lib/"* "$out/lib/"
+ mv "usr/lib/oracle/${baseVersion}/client64/bin/"* "$out/bin/"
ln -s "$out/bin/sqlplus" "$out/bin/sqlplus64"
for lib in $out/lib/lib*.so; do
@@ -84,7 +84,7 @@ in stdenv.mkDerivation rec {
command line SQL client.
'';
license = licenses.unfree;
- platforms = platforms.linux;
+ platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ pesterhazy ];
};
}
diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix
index e6055151301..b34c9ff31f2 100644
--- a/pkgs/development/libraries/pcre/default.nix
+++ b/pkgs/development/libraries/pcre/default.nix
@@ -33,6 +33,9 @@ in stdenv.mkDerivation rec {
buildInputs = optional (hostPlatform.libc == "msvcrt") windows.mingw_w64_pthreads;
+ # https://bugs.exim.org/show_bug.cgi?id=2173
+ patches = [ ./stacksize-detection.patch ];
+
doCheck = !(with hostPlatform; isCygwin || isFreeBSD) && hostPlatform == buildPlatform;
# XXX: test failure on Cygwin
# we are running out of stack on both freeBSDs on Hydra
diff --git a/pkgs/development/libraries/pcre/stacksize-detection.patch b/pkgs/development/libraries/pcre/stacksize-detection.patch
new file mode 100644
index 00000000000..4bc97069b1e
--- /dev/null
+++ b/pkgs/development/libraries/pcre/stacksize-detection.patch
@@ -0,0 +1,16 @@
+diff --git a/pcre_exec.c b/pcre_exec.c
+--- a/pcre_exec.c
++++ b/pcre_exec.c
+@@ -509,6 +509,12 @@
+ (e.g. stopped by repeated call or recursion limit)
+ */
+
++#ifdef __GNUC__
++static int
++match(REGISTER PCRE_PUCHAR eptr, REGISTER const pcre_uchar *ecode,
++ PCRE_PUCHAR mstart, int offset_top, match_data *md, eptrblock *eptrb,
++ unsigned int rdepth) __attribute__((noinline,noclone));
++#endif
+ static int
+ match(REGISTER PCRE_PUCHAR eptr, REGISTER const pcre_uchar *ecode,
+ PCRE_PUCHAR mstart, int offset_top, match_data *md, eptrblock *eptrb,
diff --git a/pkgs/development/libraries/pcre2/default.nix b/pkgs/development/libraries/pcre2/default.nix
index dd562d2e0f1..9603e45a8b4 100644
--- a/pkgs/development/libraries/pcre2/default.nix
+++ b/pkgs/development/libraries/pcre2/default.nix
@@ -20,21 +20,21 @@ stdenv.mkDerivation rec {
url = "https://vcs.pcre.org/pcre2/code/trunk/src/pcre2_ucd.c?view=patch&r1=316&r2=670&sortby=date";
sha256 = "10yzglvbn7h06hg7zffr5zh378i5jihvx7d5gggkynws79vgwvfr";
stripLen = 2;
- addPrefixes = true;
+ extraPrefix = "";
})
(fetchpatch {
name = "CVE-2017-7186-part2.patch";
url = "https://vcs.pcre.org/pcre2/code/trunk/src/pcre2_internal.h?view=patch&r1=600&r2=670&sortby=date";
sha256 = "1bggk7vd5hg0bjg96lj4h1lacmr6grq68dm6iz1n7vg3zf7virjn";
stripLen = 2;
- addPrefixes = true;
+ extraPrefix = "";
})
(fetchpatch {
name = "CVE-2017-8786.patch";
url = "https://vcs.pcre.org/pcre2/code/trunk/src/pcre2test.c?r1=692&r2=697&view=patch";
sha256 = "1c629nzrk4il2rfclwyc1a373q58m4q9ys9wr91zhl4skfk7x19b";
stripLen = 2;
- addPrefixes = true;
+ extraPrefix = "";
})
];
diff --git a/pkgs/development/libraries/physfs/default.nix b/pkgs/development/libraries/physfs/default.nix
index 43bcef0f2d3..e29af17f35d 100644
--- a/pkgs/development/libraries/physfs/default.nix
+++ b/pkgs/development/libraries/physfs/default.nix
@@ -1,23 +1,41 @@
-{stdenv, fetchurl, cmake}:
+{ stdenv, fetchurl, cmake, doxygen
+, zlib }:
-stdenv.mkDerivation rec {
- name = "physfs-2.0.3";
+let
+ generic = version: sha256:
+ stdenv.mkDerivation rec {
+ name = "physfs-${version}";
- src = fetchurl {
- url = "${meta.homepage}/downloads/${name}.tar.bz2";
- sha256 = "0sbbyqzqhyf0g68fcvvv20n3928j0x6ik1njmhn1yigvq2bj11na";
+ src = fetchurl {
+ url = "${meta.homepage}/downloads/${name}.tar.bz2";
+ inherit sha256;
+ };
+
+ nativeBuildInputs = [ cmake doxygen ];
+
+ buildInputs = [ zlib ];
+
+ enableParallelBuilding = true;
+
+ patchPhase = ''
+ sed s,-Werror,, -i CMakeLists.txt
+ '';
+
+ doInstallCheck = true;
+
+ installCheckPhase = ''
+ ./test_physfs --version
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://icculus.org/physfs/;
+ description = "Library to provide abstract access to various archives";
+ license = licenses.free;
+ platforms = platforms.linux;
+ };
};
- nativeBuildInputs = [ cmake ];
-
- patchPhase = ''
- sed s,-Werror,, -i CMakeLists.txt
- '';
-
- meta = {
- homepage = http://icculus.org/physfs/;
- description = "Library to provide abstract access to various archives";
- license = stdenv.lib.licenses.free;
- platforms = stdenv.lib.platforms.linux;
- };
+in {
+ physfs_2 = generic "2.0.3" "0sbbyqzqhyf0g68fcvvv20n3928j0x6ik1njmhn1yigvq2bj11na";
+ physfs = generic "3.0.1" "1wgj2zqpnfbnyyi1i7bq5pshcc9n5cvwlpzp8im67nb8662ryyxp";
}
diff --git a/pkgs/development/libraries/png++/default.nix b/pkgs/development/libraries/png++/default.nix
index 6ca4734a4f7..ef4b3ea7e01 100644
--- a/pkgs/development/libraries/png++/default.nix
+++ b/pkgs/development/libraries/png++/default.nix
@@ -21,13 +21,17 @@ stdenv.mkDerivation rec {
postCheck = "cat test/test.log";
- buildInputs = [ ]
- ++ stdenv.lib.optional docSupport doxygen;
+ buildInputs = stdenv.lib.optional docSupport doxygen;
propagatedBuildInputs = [ libpng ];
- makeFlags = [ "PREFIX=\${out}" ]
- ++ stdenv.lib.optional docSupport "docs";
+ preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
+ substituteInPlace error.hpp --replace "#if (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE" "#if (__clang__ || _POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE"
+ '' + ''
+ sed "s|\(PNGPP := .\)|PREFIX := ''${out}\n\\1|" -i Makefile
+ '';
+
+ makeFlags = stdenv.lib.optional docSupport "docs";
enableParallelBuilding = true;
@@ -35,7 +39,7 @@ stdenv.mkDerivation rec {
homepage = http://www.nongnu.org/pngpp/;
description = "C++ wrapper for libpng library";
license = licenses.bsd3;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = [ maintainers.ramkromberg ];
};
}
diff --git a/pkgs/development/libraries/poco/default.nix b/pkgs/development/libraries/poco/default.nix
index 0f971cff64d..40755913737 100644
--- a/pkgs/development/libraries/poco/default.nix
+++ b/pkgs/development/libraries/poco/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, pkgconfig, zlib, pcre, expat, sqlite, openssl, unixODBC, libmysql }:
+{ stdenv, fetchurl, cmake, pkgconfig, zlib, pcre, expat, sqlite, openssl, unixODBC, mysql }:
stdenv.mkDerivation rec {
name = "poco-${version}";
@@ -12,10 +12,9 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig ];
- buildInputs = [ zlib pcre expat sqlite openssl unixODBC libmysql ];
+ buildInputs = [ zlib pcre expat sqlite openssl unixODBC mysql.connector-c ];
cmakeFlags = [
- "-DMYSQL_INCLUDE_DIR=${libmysql.dev}/include/mysql"
"-DPOCO_UNBUNDLED=ON"
];
diff --git a/pkgs/development/libraries/psol/default.nix b/pkgs/development/libraries/psol/default.nix
index 5c78c1a288f..dd6037e6832 100644
--- a/pkgs/development/libraries/psol/default.nix
+++ b/pkgs/development/libraries/psol/default.nix
@@ -1,5 +1,5 @@
{ callPackage }:
callPackage ./generic.nix {} {
- version = "1.11.33.4";
- sha256 = "1jq2llp0i4666rwqnx1hs4pjlpblxivvs1jkkjzlmdbsv28jzjq8";
+ version = "1.13.35.1"; # Latest beta, 2017-11-08
+ sha256 = "126823gpr3rdqakwixmr887rbvwhksr3xg14jnyzlp84q4hg1p0n";
}
diff --git a/pkgs/development/libraries/psol/generic.nix b/pkgs/development/libraries/psol/generic.nix
index 3e82bb4975d..c61926fe13f 100644
--- a/pkgs/development/libraries/psol/generic.nix
+++ b/pkgs/development/libraries/psol/generic.nix
@@ -3,7 +3,7 @@
{ inherit version; } // fetchzip {
inherit sha256;
name = "psol-${version}";
- url = "https://dl.google.com/dl/page-speed/psol/${version}.tar.gz";
+ url = "https://dl.google.com/dl/page-speed/psol/${version}-x64.tar.gz";
meta = {
description = "PageSpeed Optimization Libraries";
diff --git a/pkgs/development/libraries/qca-qt5/default.nix b/pkgs/development/libraries/qca-qt5/default.nix
index 9433eb87109..0ea58e6c434 100644
--- a/pkgs/development/libraries/qca-qt5/default.nix
+++ b/pkgs/development/libraries/qca-qt5/default.nix
@@ -11,6 +11,12 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl qtbase ];
nativeBuildInputs = [ cmake pkgconfig ];
+ # tells CMake to use this CA bundle file if it is accessible
+ preConfigure = ''export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt'';
+
+ # tricks CMake into using this CA bundle file if it is not accessible (in a sandbox)
+ cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ];
+
meta = with stdenv.lib; {
description = "Qt 5 Cryptographic Architecture";
homepage = http://delta.affinix.com/qca;
diff --git a/pkgs/development/libraries/qca2/default.nix b/pkgs/development/libraries/qca2/default.nix
index 2265d0df394..4976399a66a 100644
--- a/pkgs/development/libraries/qca2/default.nix
+++ b/pkgs/development/libraries/qca2/default.nix
@@ -14,6 +14,12 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
+ # tells CMake to use this CA bundle file if it is accessible
+ preConfigure = ''export QC_CERTSTORE_PATH=/etc/ssl/certs/ca-certificates.crt'';
+
+ # tricks CMake into using this CA bundle file if it is not accessible (in a sandbox)
+ cmakeFlags = [ "-Dqca_CERTSTORE=/etc/ssl/certs/ca-certificates.crt" ];
+
meta = with stdenv.lib; {
description = "Qt Cryptographic Architecture";
license = "LGPL";
diff --git a/pkgs/development/libraries/qmltermwidget/default.nix b/pkgs/development/libraries/qmltermwidget/default.nix
index 2057aee3e99..79ed37dd2a9 100644
--- a/pkgs/development/libraries/qmltermwidget/default.nix
+++ b/pkgs/development/libraries/qmltermwidget/default.nix
@@ -1,12 +1,13 @@
-{ stdenv, fetchgit, qtbase, qtquick1, qmake, qtmultimedia }:
+{ stdenv, fetchFromGitHub, qtbase, qtquick1, qmake, qtmultimedia }:
stdenv.mkDerivation rec {
version = "0.1.0";
name = "qmltermwidget-${version}";
- src = fetchgit {
- url = "https://github.com/Swordfish90/qmltermwidget.git";
- rev = "refs/tags/v${version}";
+ src = fetchFromGitHub {
+ repo = "qmltermwidget";
+ owner = "Swordfish90";
+ rev = "v${version}";
sha256 = "0ca500mzcqglkj0i6km0z512y3a025dbm24605xyv18l6y0l2ny3";
};
diff --git a/pkgs/development/libraries/qt-3/default.nix b/pkgs/development/libraries/qt-3/default.nix
index 6d92de001cb..1bc4fd1085e 100644
--- a/pkgs/development/libraries/qt-3/default.nix
+++ b/pkgs/development/libraries/qt-3/default.nix
@@ -49,7 +49,7 @@ stdenv.mkDerivation {
-I${randrproto}/include" else "-no-xrandr"}
${if xineramaSupport then "-xinerama -L${libXinerama.out}/lib -I${libXinerama.dev}/include" else "-no-xinerama"}
${if cursorSupport then "-L${libXcursor.out}/lib -I${libXcursor.dev}/include" else ""}
- ${if mysqlSupport then "-qt-sql-mysql -L${stdenv.lib.getLib mysql.client}/lib/mysql -I${mysql.client}/include/mysql" else ""}
+ ${if mysqlSupport then "-qt-sql-mysql -L${mysql.connector-c}/lib/mysql -I${mysql.connector-c}/include/mysql" else ""}
${if xftSupport then "-xft
-L${libXft.out}/lib -I${libXft.dev}/include
-L${libXft.freetype.out}/lib -I${libXft.freetype.dev}/include
diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix
index 32691faa689..488306fc1ce 100644
--- a/pkgs/development/libraries/qt-4.x/4.8/default.nix
+++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix
@@ -160,7 +160,7 @@ stdenv.mkDerivation rec {
buildInputs =
[ cups # Qt dlopen's libcups instead of linking to it
postgresql sqlite libjpeg libmng libtiff icu ]
- ++ optionals (mysql != null) [ mysql.lib ]
+ ++ optionals (mysql != null) [ mysql.connector-c ]
++ optionals gtkStyle [ gtk2 gdk_pixbuf ]
++ optionals stdenv.isDarwin [ cf-private ApplicationServices OpenGL Cocoa AGL libcxx libobjc ];
diff --git a/pkgs/development/libraries/qt-5/5.10/default.nix b/pkgs/development/libraries/qt-5/5.10/default.nix
new file mode 100644
index 00000000000..cf66e60d569
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/default.nix
@@ -0,0 +1,124 @@
+/*
+
+# Updates
+
+Before a major version update, make a copy of this directory. (We like to
+keep the old version around for a short time after major updates.) Add a
+top-level attribute to `top-level/all-packages.nix`.
+
+1. Update the URL in `pkgs/development/libraries/qt-5/$VERSION/fetch.sh`.
+2. From the top of the Nixpkgs tree, run
+ `./maintainers/scripts/fetch-kde-qt.sh > pkgs/development/libraries/qt-5/$VERSION/srcs.nix`.
+3. Update `qtCompatVersion` below if the minor version number changes.
+4. Check that the new packages build correctly.
+5. Commit the changes and open a pull request.
+
+*/
+
+{
+ newScope,
+ stdenv, fetchurl, makeSetupHook, makeWrapper,
+ bison, cups ? null, harfbuzz, mesa, perl,
+ gstreamer, gst-plugins-base, gtk3, dconf,
+
+ # options
+ developerBuild ? false,
+ decryptSslTraffic ? false,
+ debug ? false,
+}:
+
+with stdenv.lib;
+
+let
+
+ qtCompatVersion = "5.10";
+
+ mirror = "http://download.qt.io";
+ srcs = import ./srcs.nix { inherit fetchurl; inherit mirror; };
+
+ patches = {
+ qtbase = [ ./qtbase.patch ] ++ optional stdenv.isDarwin ./qtbase-darwin.patch;
+ qtdeclarative = [ ./qtdeclarative.patch ];
+ qtscript = [ ./qtscript.patch ];
+ qtserialport = [ ./qtserialport.patch ];
+ qttools = [ ./qttools.patch ];
+ qtwebengine = optional stdenv.needsPax ./qtwebengine-paxmark-mksnapshot.patch;
+ qtwebkit = [ ./qtwebkit.patch ];
+ };
+
+ mkDerivation =
+ import ../mkDerivation.nix
+ { inherit stdenv; inherit (stdenv) lib; }
+ { inherit debug; };
+
+ qtModule =
+ import ../qtModule.nix
+ { inherit mkDerivation perl; inherit (stdenv) lib; }
+ { inherit self srcs patches; };
+
+ addPackages = self: with self;
+ let
+ callPackage = self.newScope { inherit qtCompatVersion qtModule srcs; };
+ in {
+
+ inherit mkDerivation;
+
+ qtbase = callPackage ../modules/qtbase.nix {
+ inherit (srcs.qtbase) src version;
+ patches = patches.qtbase;
+ inherit bison cups harfbuzz mesa;
+ withGtk3 = true; inherit dconf gtk3;
+ inherit developerBuild decryptSslTraffic;
+ };
+
+ qtcharts = callPackage ../modules/qtcharts.nix {};
+ qtconnectivity = callPackage ../modules/qtconnectivity.nix {};
+ qtdeclarative = callPackage ../modules/qtdeclarative.nix {};
+ qtdoc = callPackage ../modules/qtdoc.nix {};
+ qtgraphicaleffects = callPackage ../modules/qtgraphicaleffects.nix {};
+ qtimageformats = callPackage ../modules/qtimageformats.nix {};
+ qtlocation = callPackage ../modules/qtlocation.nix {};
+ qtmacextras = callPackage ../modules/qtmacextras.nix {};
+ qtmultimedia = callPackage ../modules/qtmultimedia.nix {
+ inherit gstreamer gst-plugins-base;
+ };
+ qtquick1 = null;
+ qtquickcontrols = callPackage ../modules/qtquickcontrols.nix {};
+ qtquickcontrols2 = callPackage ../modules/qtquickcontrols2.nix {};
+ qtscript = callPackage ../modules/qtscript.nix {};
+ qtsensors = callPackage ../modules/qtsensors.nix {};
+ qtserialport = callPackage ../modules/qtserialport.nix {};
+ qtsvg = callPackage ../modules/qtsvg.nix {};
+ qttools = callPackage ../modules/qttools.nix {};
+ qttranslations = callPackage ../modules/qttranslations.nix {};
+ qtvirtualkeyboard = callPackage ../modules/qtvirtualkeyboard.nix {};
+ qtwayland = callPackage ../modules/qtwayland.nix {};
+ qtwebchannel = callPackage ../modules/qtwebchannel.nix {};
+ qtwebengine = callPackage ../modules/qtwebengine.nix {};
+ qtwebkit = callPackage ../modules/qtwebkit.nix {};
+ qtwebsockets = callPackage ../modules/qtwebsockets.nix {};
+ qtx11extras = callPackage ../modules/qtx11extras.nix {};
+ qtxmlpatterns = callPackage ../modules/qtxmlpatterns.nix {};
+
+ env = callPackage ../qt-env.nix {};
+ full = env "qt-${qtbase.version}" ([
+ qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
+ qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
+ qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
+ qtx11extras qtxmlpatterns
+ ] ++ optional (!stdenv.isDarwin) qtwayland
+ ++ optional (stdenv.isDarwin) qtmacextras);
+
+ qmake = makeSetupHook {
+ deps = [ self.qtbase.dev ];
+ substitutions = {
+ inherit (stdenv) isDarwin;
+ qtbase_dev = self.qtbase.dev;
+ fix_qt_builtin_paths = ../hooks/fix-qt-builtin-paths.sh;
+ };
+ } ../hooks/qmake-hook.sh;
+ };
+
+ self = makeScope newScope addPackages;
+
+in self
diff --git a/pkgs/development/libraries/qt-5/5.10/fetch.sh b/pkgs/development/libraries/qt-5/5.10/fetch.sh
new file mode 100644
index 00000000000..849e76d616d
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/fetch.sh
@@ -0,0 +1,2 @@
+WGET_ARGS=( http://download.qt.io/official_releases/qt/5.10/5.10.0/submodules/ \
+ -A '*.tar.xz' )
diff --git a/pkgs/development/libraries/qt-5/5.10/qtbase-darwin.patch b/pkgs/development/libraries/qt-5/5.10/qtbase-darwin.patch
new file mode 100644
index 00000000000..e85a284f3bb
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/qtbase-darwin.patch
@@ -0,0 +1,57 @@
+diff --git a/src/plugins/bearer/corewlan/qcorewlanengine.mm b/src/plugins/bearer/corewlan/qcorewlanengine.mm
+index 341d3bccf2..3368234c26 100644
+--- a/src/plugins/bearer/corewlan/qcorewlanengine.mm
++++ b/src/plugins/bearer/corewlan/qcorewlanengine.mm
+@@ -287,7 +287,7 @@ void QScanThread::getUserConfigurations()
+ QMacAutoReleasePool pool;
+ userProfiles.clear();
+
+- NSArray *wifiInterfaces = [CWWiFiClient interfaceNames];
++ NSArray *wifiInterfaces = [CWWiFiClient interfaceNames];
+ for (NSString *ifName in wifiInterfaces) {
+
+ CWInterface *wifiInterface = [[CWWiFiClient sharedWiFiClient] interfaceWithName:ifName];
+@@ -602,7 +602,7 @@ void QCoreWlanEngine::doRequestUpdate()
+
+ QMacAutoReleasePool pool;
+
+- NSArray *wifiInterfaces = [CWWiFiClient interfaceNames];
++ NSArray *wifiInterfaces = [CWWiFiClient interfaceNames];
+ for (NSString *ifName in wifiInterfaces) {
+ scanThread->interfaceName = QString::fromNSString(ifName);
+ scanThread->start();
+diff --git a/src/plugins/platforms/cocoa/qcocoawindow.mm b/src/plugins/platforms/cocoa/qcocoawindow.mm
+index d1f19f2..1ac2cf1 100644
+--- a/src/plugins/platforms/cocoa/qcocoawindow.mm
++++ b/src/plugins/platforms/cocoa/qcocoawindow.mm
+@@ -1699,7 +1699,7 @@ void QCocoaWindow::applyContentBorderThickness(NSWindow *window)
+
+ if (!m_drawContentBorderGradient) {
+ window.styleMask = window.styleMask & ~NSTexturedBackgroundWindowMask;
+- [window.contentView.superview setNeedsDisplay:YES];
++ [[window.contentView superview] setNeedsDisplay:YES];
+ window.titlebarAppearsTransparent = NO;
+ return;
+ }
+diff --git a/src/plugins/platforms/cocoa/qnswindow.mm b/src/plugins/platforms/cocoa/qnswindow.mm
+index e846fa0..4171cd4 100644
+--- a/src/plugins/platforms/cocoa/qnswindow.mm
++++ b/src/plugins/platforms/cocoa/qnswindow.mm
+@@ -224,7 +224,7 @@ static bool isMouseEvent(NSEvent *ev)
+ if (pw->frameStrutEventsEnabled() && isMouseEvent(theEvent)) {
+ NSPoint loc = [theEvent locationInWindow];
+ NSRect windowFrame = [self convertRectFromScreen:self.frame];
+- NSRect contentFrame = self.contentView.frame;
++ NSRect contentFrame = [self.contentView frame];
+ if (NSMouseInRect(loc, windowFrame, NO) && !NSMouseInRect(loc, contentFrame, NO))
+ [qnsview_cast(pw->view()) handleFrameStrutMouseEvent:theEvent];
+ }
+@@ -253,7 +253,7 @@ static bool isMouseEvent(NSEvent *ev)
+ + (void)applicationActivationChanged:(NSNotification*)notification
+ {
+ const id sender = self;
+- NSEnumerator *windowEnumerator = nullptr;
++ NSEnumerator *windowEnumerator = nullptr;
+ NSApplication *application = [NSApplication sharedApplication];
+
+ #if QT_MACOS_PLATFORM_SDK_EQUAL_OR_ABOVE(__MAC_10_12)
diff --git a/pkgs/development/libraries/qt-5/5.10/qtbase.patch b/pkgs/development/libraries/qt-5/5.10/qtbase.patch
new file mode 100644
index 00000000000..b79ce9fc356
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/qtbase.patch
@@ -0,0 +1,1119 @@
+diff --git a/mkspecs/common/mac.conf b/mkspecs/common/mac.conf
+index 5208379f9a..92fe29a0ac 100644
+--- a/mkspecs/common/mac.conf
++++ b/mkspecs/common/mac.conf
+@@ -23,7 +23,7 @@ QMAKE_INCDIR_OPENGL = \
+
+ QMAKE_FIX_RPATH = install_name_tool -id
+
+-QMAKE_LFLAGS_RPATH = -Wl,-rpath,
++QMAKE_LFLAGS_RPATH =
+ QMAKE_LFLAGS_GCSECTIONS = -Wl,-dead_strip
+
+ QMAKE_LFLAGS_REL_RPATH =
+diff --git a/mkspecs/features/create_cmake.prf b/mkspecs/features/create_cmake.prf
+index bb5083c925..77034f9bb6 100644
+--- a/mkspecs/features/create_cmake.prf
++++ b/mkspecs/features/create_cmake.prf
+@@ -21,7 +21,7 @@ load(cmake_functions)
+ # at cmake time whether package has been found via a symlink, and correct
+ # that to an absolute path. This is only done for installations to
+ # the /usr or / prefix.
+-CMAKE_INSTALL_LIBS_DIR = $$cmakeTargetPath($$[QT_INSTALL_LIBS])
++CMAKE_INSTALL_LIBS_DIR = $$cmakeTargetPath($$NIX_OUTPUT_OUT/lib/)
+ contains(CMAKE_INSTALL_LIBS_DIR, ^(/usr)?/lib(64)?.*): CMAKE_USR_MOVE_WORKAROUND = $$CMAKE_INSTALL_LIBS_DIR
+
+ CMAKE_OUT_DIR = $$MODULE_BASE_OUTDIR/lib/cmake
+@@ -47,47 +47,22 @@ split_incpath {
+ $$cmake_extra_source_includes.output
+ }
+
+-CMAKE_INCLUDE_DIR = $$cmakeRelativePath($$[QT_INSTALL_HEADERS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_INCLUDE_DIR, "^\\.\\./.*") {
+- CMAKE_INCLUDE_DIR = $$[QT_INSTALL_HEADERS]/
+- CMAKE_INCLUDE_DIR_IS_ABSOLUTE = True
+-}
++CMAKE_INCLUDE_DIR = $$NIX_OUTPUT_DEV/include/
++CMAKE_INCLUDE_DIR_IS_ABSOLUTE = True
+
+ !exists($$first(QT.$${MODULE}_private.includes)): CMAKE_NO_PRIVATE_INCLUDES = true
+
+-CMAKE_LIB_DIR = $$cmakeRelativePath($$[QT_INSTALL_LIBS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_LIB_DIR,"^\\.\\./.*") {
+- CMAKE_LIB_DIR = $$[QT_INSTALL_LIBS]/
+- CMAKE_LIB_DIR_IS_ABSOLUTE = True
+-} else {
+- CMAKE_RELATIVE_INSTALL_LIBS_DIR = $$cmakeRelativePath($$[QT_INSTALL_PREFIX], $$[QT_INSTALL_LIBS])
+- # We need to go up another two levels because the CMake files are
+- # installed in $${CMAKE_LIB_DIR}/cmake/Qt5$${CMAKE_MODULE_NAME}
+- CMAKE_RELATIVE_INSTALL_DIR = "$${CMAKE_RELATIVE_INSTALL_LIBS_DIR}../../"
+-}
++CMAKE_LIB_DIR = $$NIX_OUTPUT_OUT/lib/
++CMAKE_LIB_DIR_IS_ABSOLUTE = True
+
+-CMAKE_BIN_DIR = $$cmakeRelativePath($$[QT_HOST_BINS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_BIN_DIR, "^\\.\\./.*") {
+- CMAKE_BIN_DIR = $$[QT_HOST_BINS]/
+- CMAKE_BIN_DIR_IS_ABSOLUTE = True
+-}
++CMAKE_BIN_DIR = $$NIX_OUTPUT_BIN/bin/
++CMAKE_BIN_DIR_IS_ABSOLUTE = True
+
+-CMAKE_PLUGIN_DIR = $$cmakeRelativePath($$[QT_INSTALL_PLUGINS], $$[QT_INSTALL_PREFIX])
+-contains(CMAKE_PLUGIN_DIR, "^\\.\\./.*") {
+- CMAKE_PLUGIN_DIR = $$[QT_INSTALL_PLUGINS]/
+- CMAKE_PLUGIN_DIR_IS_ABSOLUTE = True
+-}
++CMAKE_PLUGIN_DIR = $$NIX_OUTPUT_PLUGIN/
++CMAKE_PLUGIN_DIR_IS_ABSOLUTE = True
+
+-win32:!static:!staticlib {
+- CMAKE_DLL_DIR = $$cmakeRelativePath($$[QT_INSTALL_BINS], $$[QT_INSTALL_PREFIX])
+- contains(CMAKE_DLL_DIR, "^\\.\\./.*") {
+- CMAKE_DLL_DIR = $$[QT_INSTALL_BINS]/
+- CMAKE_DLL_DIR_IS_ABSOLUTE = True
+- }
+-} else {
+- CMAKE_DLL_DIR = $$CMAKE_LIB_DIR
+- CMAKE_DLL_DIR_IS_ABSOLUTE = $$CMAKE_LIB_DIR_IS_ABSOLUTE
+-}
++CMAKE_DLL_DIR = $$NIX_OUTPUT_OUT/lib/
++CMAKE_DLL_DIR_IS_ABSOLUTE = True
+
+ static|staticlib:CMAKE_STATIC_TYPE = true
+
+@@ -167,7 +142,7 @@ contains(CONFIG, plugin) {
+ cmake_target_file
+
+ cmake_qt5_plugin_file.files = $$cmake_target_file.output
+- cmake_qt5_plugin_file.path = $$[QT_INSTALL_LIBS]/cmake/Qt5$${CMAKE_MODULE_NAME}
++ cmake_qt5_plugin_file.path = $$NIX_OUTPUT_OUT/lib/cmake/Qt5$${CMAKE_MODULE_NAME}
+ INSTALLS += cmake_qt5_plugin_file
+
+ return()
+@@ -314,7 +289,7 @@ exists($$cmake_macros_file.input) {
+ cmake_qt5_module_files.files += $$cmake_macros_file.output
+ }
+
+-cmake_qt5_module_files.path = $$[QT_INSTALL_LIBS]/cmake/Qt5$${CMAKE_MODULE_NAME}
++cmake_qt5_module_files.path = $$NIX_OUTPUT_OUT/lib/cmake/Qt5$${CMAKE_MODULE_NAME}
+
+ # We are generating cmake files. Most developers of Qt are not aware of cmake,
+ # so we require automatic tests to be available. The only module which should
+diff --git a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
+index 55c74aad66..0bbc8718eb 100644
+--- a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
++++ b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in
+@@ -9,30 +9,6 @@ if (CMAKE_VERSION VERSION_LESS 3.0.0)
+ endif()
+ !!ENDIF
+
+-!!IF !isEmpty(CMAKE_USR_MOVE_WORKAROUND)
+-!!IF !isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+-set(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"$$[QT_INSTALL_PREFIX]\")
+-!!ELSE
+-get_filename_component(_IMPORT_PREFIX \"${CMAKE_CURRENT_LIST_FILE}\" PATH)
+-# Use original install prefix when loaded through a
+-# cross-prefix symbolic link such as /lib -> /usr/lib.
+-get_filename_component(_realCurr \"${_IMPORT_PREFIX}\" REALPATH)
+-get_filename_component(_realOrig \"$$CMAKE_INSTALL_LIBS_DIR/cmake/Qt5$${CMAKE_MODULE_NAME}\" REALPATH)
+-if(_realCurr STREQUAL _realOrig)
+- get_filename_component(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"$$CMAKE_INSTALL_LIBS_DIR/$${CMAKE_RELATIVE_INSTALL_LIBS_DIR}\" ABSOLUTE)
+-else()
+- get_filename_component(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"${CMAKE_CURRENT_LIST_DIR}/$${CMAKE_RELATIVE_INSTALL_DIR}\" ABSOLUTE)
+-endif()
+-unset(_realOrig)
+-unset(_realCurr)
+-unset(_IMPORT_PREFIX)
+-!!ENDIF
+-!!ELIF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+-get_filename_component(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"${CMAKE_CURRENT_LIST_DIR}/$${CMAKE_RELATIVE_INSTALL_DIR}\" ABSOLUTE)
+-!!ELSE
+-set(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"$$[QT_INSTALL_PREFIX]\")
+-!!ENDIF
+-
+ !!IF !equals(TEMPLATE, aux)
+ # For backwards compatibility only. Use Qt5$${CMAKE_MODULE_NAME}_VERSION instead.
+ set(Qt5$${CMAKE_MODULE_NAME}_VERSION_STRING "$$eval(QT.$${MODULE}.VERSION)")
+@@ -58,11 +34,7 @@ endmacro()
+ macro(_populate_$${CMAKE_MODULE_NAME}_target_properties Configuration LIB_LOCATION IMPLIB_LOCATION)
+ set_property(TARGET Qt5::$${CMAKE_MODULE_NAME} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
+
+-!!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_DLL_DIR}${LIB_LOCATION}\")
+-!!ELSE
+ set(imported_location \"$${CMAKE_DLL_DIR}${LIB_LOCATION}\")
+-!!ENDIF
+ _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_location})
+ set_target_properties(Qt5::$${CMAKE_MODULE_NAME} PROPERTIES
+ \"INTERFACE_LINK_LIBRARIES\" \"${_Qt5$${CMAKE_MODULE_NAME}_LIB_DEPENDENCIES}\"
+@@ -75,11 +47,7 @@ macro(_populate_$${CMAKE_MODULE_NAME}_target_properties Configuration LIB_LOCATI
+ )
+
+ !!IF !isEmpty(CMAKE_WINDOWS_BUILD)
+-!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+- set(imported_implib \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
+-!!ELSE
+ set(imported_implib \"IMPORTED_IMPLIB_${Configuration}\" \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
+-!!ENDIF
+ _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_implib})
+ if(NOT \"${IMPLIB_LOCATION}\" STREQUAL \"\")
+ set_target_properties(Qt5::$${CMAKE_MODULE_NAME} PROPERTIES
+@@ -95,24 +63,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME})
+ !!IF !no_module_headers
+ !!IF !isEmpty(CMAKE_BUILD_IS_FRAMEWORK)
+ set(_Qt5$${CMAKE_MODULE_NAME}_OWN_INCLUDE_DIRS
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework\"
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Headers\"
++ \"$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework\"
++ \"$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Headers\"
+ )
+ !!IF isEmpty(CMAKE_NO_PRIVATE_INCLUDES)
+ set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Versions/$$section(VERSION, ., 0, 0)/Headers/$$VERSION/\"
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Versions/$$section(VERSION, ., 0, 0)/Headers/$$VERSION/$${MODULE_INCNAME}\"
+- )
+-!!ELSE
+- set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\")
+-!!ENDIF
+-!!ELSE
+-!!IF isEmpty(CMAKE_INCLUDE_DIR_IS_ABSOLUTE)
+- set(_Qt5$${CMAKE_MODULE_NAME}_OWN_INCLUDE_DIRS \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$$CMAKE_INCLUDE_DIR\" \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}\")
+-!!IF isEmpty(CMAKE_NO_PRIVATE_INCLUDES)
+- set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}/$$VERSION\"
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}/$$VERSION/$${MODULE_INCNAME}\"
++ \"$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Versions/$$section(VERSION, ., 0, 0)/Headers/$$VERSION/\"
++ \"$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Versions/$$section(VERSION, ., 0, 0)/Headers/$$VERSION/$${MODULE_INCNAME}\"
+ )
+ !!ELSE
+ set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\")
+@@ -128,7 +85,6 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME})
+ set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\")
+ !!ENDIF
+ !!ENDIF
+-!!ENDIF
+ !!IF !isEmpty(CMAKE_ADD_SOURCE_INCLUDE_DIRS)
+ include(\"${CMAKE_CURRENT_LIST_DIR}/ExtraSourceIncludes.cmake\" OPTIONAL)
+ !!ENDIF
+@@ -280,25 +236,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME})
+ !!IF !isEmpty(CMAKE_FIND_OTHER_LIBRARY_BUILD)
+ !!IF isEmpty(CMAKE_DEBUG_TYPE)
+ !!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD)
+-!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+- if (EXISTS \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" )
+-!!ELSE // CMAKE_LIB_DIR_IS_ABSOLUTE
+ if (EXISTS \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" )
+-!!ENDIF // CMAKE_LIB_DIR_IS_ABSOLUTE
+ _populate_$${CMAKE_MODULE_NAME}_target_properties(DEBUG \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" \"\" )
+ !!ELSE // CMAKE_STATIC_WINDOWS_BUILD
+ if (EXISTS
+-!!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE)
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_DLL_DIR}$${CMAKE_LIB_FILE_LOCATION_DEBUG}\"
+-!!ELSE
+ \"$${CMAKE_LIB_FILE_LOCATION_DEBUG}\"
+-!!ENDIF
+ AND EXISTS
+-!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" )
+-!!ELSE
+ \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" )
+-!!ENDIF
+ _populate_$${CMAKE_MODULE_NAME}_target_properties(DEBUG \"$${CMAKE_LIB_FILE_LOCATION_DEBUG}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" )
+ !!ENDIF // CMAKE_STATIC_WINDOWS_BUILD
+ endif()
+@@ -317,25 +261,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME})
+ !!IF !isEmpty(CMAKE_FIND_OTHER_LIBRARY_BUILD)
+ !!IF isEmpty(CMAKE_RELEASE_TYPE)
+ !!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD)
+-!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+- if (EXISTS \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" )
+-!!ELSE // CMAKE_LIB_DIR_IS_ABSOLUTE
+ if (EXISTS \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" )
+-!!ENDIF // CMAKE_LIB_DIR_IS_ABSOLUTE
+ _populate_$${CMAKE_MODULE_NAME}_target_properties(RELEASE \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" \"\" )
+ !!ELSE // CMAKE_STATIC_WINDOWS_BUILD
+ if (EXISTS
+-!!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE)
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_DLL_DIR}$${CMAKE_LIB_FILE_LOCATION_RELEASE}\"
+-!!ELSE
+ \"$${CMAKE_LIB_FILE_LOCATION_RELEASE}\"
+-!!ENDIF
+ AND EXISTS
+-!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" )
+-!!ELSE
+ \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" )
+-!!ENDIF
+ _populate_$${CMAKE_MODULE_NAME}_target_properties(RELEASE \"$${CMAKE_LIB_FILE_LOCATION_RELEASE}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" )
+ !!ENDIF // CMAKE_STATIC_WINDOWS_BUILD
+ endif()
+@@ -354,11 +286,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME})
+ macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION)
+ set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
+
+-!!IF isEmpty(CMAKE_PLUGIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
+-!!ELSE
+ set(imported_location \"$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\")
+-!!ENDIF
+ _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_location})
+ set_target_properties(Qt5::${Plugin} PROPERTIES
+ \"IMPORTED_LOCATION_${Configuration}\" ${imported_location}
+diff --git a/mkspecs/features/mac/default_post.prf b/mkspecs/features/mac/default_post.prf
+index e645ba5803..a0e5c68b7e 100644
+--- a/mkspecs/features/mac/default_post.prf
++++ b/mkspecs/features/mac/default_post.prf
+@@ -24,166 +24,3 @@ qt {
+ }
+ }
+ }
+-
+-# Add the same default rpaths as Xcode does for new projects.
+-# This is especially important for iOS/tvOS/watchOS where no other option is possible.
+-!no_default_rpath {
+- QMAKE_RPATHDIR += @executable_path/Frameworks
+- equals(TEMPLATE, lib):!plugin:lib_bundle: QMAKE_RPATHDIR += @loader_path/Frameworks
+-}
+-
+-# Don't pass -headerpad_max_install_names when using Bitcode.
+-# In that case the linker emits a warning stating that the flag is ignored when
+-# used with bitcode, for reasons that cannot be determined (rdar://problem/20748962).
+-# Using this flag is also unnecessary in practice on UIKit platforms since they
+-# are sandboxed, and only UIKit platforms support bitcode to begin with.
+-!bitcode: QMAKE_LFLAGS += $$QMAKE_LFLAGS_HEADERPAD
+-
+-app_extension_api_only {
+- QMAKE_CFLAGS += $$QMAKE_CFLAGS_APPLICATION_EXTENSION
+- QMAKE_CXXFLAGS += $$QMAKE_CFLAGS_APPLICATION_EXTENSION
+- QMAKE_CXXFLAGS_PRECOMPILE += $$QMAKE_CFLAGS_APPLICATION_EXTENSION
+- QMAKE_LFLAGS += $$QMAKE_CFLAGS_APPLICATION_EXTENSION
+-}
+-
+-macx-xcode {
+- !isEmpty(QMAKE_XCODE_DEBUG_INFORMATION_FORMAT) {
+- debug_information_format.name = DEBUG_INFORMATION_FORMAT
+- debug_information_format.value = $$QMAKE_XCODE_DEBUG_INFORMATION_FORMAT
+- debug_information_format.build = debug
+- QMAKE_MAC_XCODE_SETTINGS += debug_information_format
+- }
+-
+- QMAKE_XCODE_ARCHS =
+-
+- arch_device.name = "ARCHS[sdk=$${device.sdk}*]"
+- arch_device.value = $$QMAKE_APPLE_DEVICE_ARCHS
+- QMAKE_XCODE_ARCHS += $$QMAKE_APPLE_DEVICE_ARCHS
+- QMAKE_MAC_XCODE_SETTINGS += arch_device
+-
+- simulator {
+- arch_simulator.name = "ARCHS[sdk=$${simulator.sdk}*]"
+- arch_simulator.value = $$QMAKE_APPLE_SIMULATOR_ARCHS
+- QMAKE_XCODE_ARCHS += $$QMAKE_APPLE_SIMULATOR_ARCHS
+- QMAKE_MAC_XCODE_SETTINGS += arch_simulator
+- }
+-
+- only_active_arch.name = ONLY_ACTIVE_ARCH
+- only_active_arch.value = YES
+- only_active_arch.build = debug
+- QMAKE_MAC_XCODE_SETTINGS += only_active_arch
+-} else {
+- device|!simulator: VALID_DEVICE_ARCHS = $$QMAKE_APPLE_DEVICE_ARCHS
+- simulator: VALID_SIMULATOR_ARCHS = $$QMAKE_APPLE_SIMULATOR_ARCHS
+- VALID_ARCHS = $$VALID_DEVICE_ARCHS $$VALID_SIMULATOR_ARCHS
+-
+- isEmpty(VALID_ARCHS): \
+- error("QMAKE_APPLE_DEVICE_ARCHS or QMAKE_APPLE_SIMULATOR_ARCHS must contain at least one architecture")
+-
+- single_arch: VALID_ARCHS = $$first(VALID_ARCHS)
+-
+- ACTIVE_ARCHS = $(filter $(EXPORT_VALID_ARCHS), $(ARCHS))
+- ARCH_ARGS = $(foreach arch, $(if $(EXPORT_ACTIVE_ARCHS), $(EXPORT_ACTIVE_ARCHS), $(EXPORT_VALID_ARCHS)), -arch $(arch))
+-
+- QMAKE_EXTRA_VARIABLES += VALID_ARCHS ACTIVE_ARCHS ARCH_ARGS
+-
+- arch_flags = $(EXPORT_ARCH_ARGS)
+-
+- QMAKE_CFLAGS += $$arch_flags
+- QMAKE_CXXFLAGS += $$arch_flags
+- QMAKE_LFLAGS += $$arch_flags
+-
+- QMAKE_PCH_ARCHS = $$VALID_ARCHS
+-
+- macos: deployment_target = $$QMAKE_MACOSX_DEPLOYMENT_TARGET
+- ios: deployment_target = $$QMAKE_IOS_DEPLOYMENT_TARGET
+- tvos: deployment_target = $$QMAKE_TVOS_DEPLOYMENT_TARGET
+- watchos: deployment_target = $$QMAKE_WATCHOS_DEPLOYMENT_TARGET
+-
+- # If we're doing a simulator and device build, device and simulator
+- # architectures use different paths and flags for the sysroot and
+- # deployment target switch, so we must multiplex them across multiple
+- # architectures using -Xarch. Otherwise we fall back to the simple path.
+- # This is not strictly necessary, but results in cleaner command lines
+- # and makes it easier for people to override EXPORT_VALID_ARCHS to limit
+- # individual rules to a different set of architecture(s) from the overall
+- # build (such as machtest in QtCore).
+- simulator:device {
+- QMAKE_XARCH_CFLAGS =
+- QMAKE_XARCH_LFLAGS =
+- QMAKE_EXTRA_VARIABLES += QMAKE_XARCH_CFLAGS QMAKE_XARCH_LFLAGS
+-
+- for (arch, VALID_ARCHS) {
+- contains(VALID_SIMULATOR_ARCHS, $$arch) {
+- sdk = $$simulator.sdk
+- version_identifier = $$simulator.deployment_identifier
+- } else {
+- sdk = $$device.sdk
+- version_identifier = $$device.deployment_identifier
+- }
+-
+- version_min_flags = \
+- -Xarch_$${arch} \
+- -m$${version_identifier}-version-min=$$deployment_target
+- QMAKE_XARCH_CFLAGS_$${arch} = $$version_min_flags \
+- -Xarch_$${arch} \
+- -isysroot$$xcodeSDKInfo(Path, $$sdk)
+- QMAKE_XARCH_LFLAGS_$${arch} = $$version_min_flags \
+- -Xarch_$${arch} \
+- -Wl,-syslibroot,$$xcodeSDKInfo(Path, $$sdk)
+-
+- QMAKE_XARCH_CFLAGS += $(EXPORT_QMAKE_XARCH_CFLAGS_$${arch})
+- QMAKE_XARCH_LFLAGS += $(EXPORT_QMAKE_XARCH_LFLAGS_$${arch})
+-
+- QMAKE_EXTRA_VARIABLES += \
+- QMAKE_XARCH_CFLAGS_$${arch} \
+- QMAKE_XARCH_LFLAGS_$${arch}
+- }
+-
+- QMAKE_CFLAGS += $(EXPORT_QMAKE_XARCH_CFLAGS)
+- QMAKE_CXXFLAGS += $(EXPORT_QMAKE_XARCH_CFLAGS)
+- QMAKE_LFLAGS += $(EXPORT_QMAKE_XARCH_LFLAGS)
+- } else {
+- simulator: \
+- version_identifier = $$simulator.deployment_identifier
+- else: \
+- version_identifier = $$device.deployment_identifier
+- version_min_flag = -m$${version_identifier}-version-min=$$deployment_target
+- QMAKE_CFLAGS += -isysroot $$QMAKE_MAC_SDK_PATH $$version_min_flag
+- QMAKE_CXXFLAGS += -isysroot $$QMAKE_MAC_SDK_PATH $$version_min_flag
+- QMAKE_LFLAGS += -Wl,-syslibroot,$$QMAKE_MAC_SDK_PATH $$version_min_flag
+- }
+-
+- # Enable precompiled headers for multiple architectures
+- QMAKE_CFLAGS_USE_PRECOMPILE =
+- for (arch, VALID_ARCHS) {
+- icc_pch_style: \
+- use_flag = "-pch-use "
+- else: \
+- use_flag = -include
+-
+- # Only use Xarch with multi-arch, as the option confuses ccache
+- count(VALID_ARCHS, 1, greaterThan): \
+- QMAKE_CFLAGS_USE_PRECOMPILE += \
+- -Xarch_$${arch}
+-
+- QMAKE_CFLAGS_USE_PRECOMPILE += \
+- $${use_flag}${QMAKE_PCH_OUTPUT_$${arch}}
+- }
+- icc_pch_style {
+- QMAKE_CXXFLAGS_USE_PRECOMPILE = $$QMAKE_CFLAGS_USE_PRECOMPILE -include ${QMAKE_PCH_INPUT}
+- QMAKE_CFLAGS_USE_PRECOMPILE =
+- } else {
+- QMAKE_CXXFLAGS_USE_PRECOMPILE = $$QMAKE_CFLAGS_USE_PRECOMPILE
+- QMAKE_OBJCFLAGS_USE_PRECOMPILE = $$QMAKE_CFLAGS_USE_PRECOMPILE
+- QMAKE_OBJCXXFLAGS_USE_PRECOMPILE = $$QMAKE_CFLAGS_USE_PRECOMPILE
+- }
+-
+- QMAKE_PCH_OUTPUT_EXT = _${QMAKE_PCH_ARCH}$${QMAKE_PCH_OUTPUT_EXT}
+-}
+-
+-cache(QMAKE_XCODE_DEVELOPER_PATH, stash)
+-!isEmpty(QMAKE_XCODE_VERSION): \
+- cache(QMAKE_XCODE_VERSION, stash)
+-
+-QMAKE_XCODE_LIBRARY_SUFFIX = $$qtPlatformTargetSuffix()
+diff --git a/mkspecs/features/mac/default_pre.prf b/mkspecs/features/mac/default_pre.prf
+index 44636f2288..3b01424e67 100644
+--- a/mkspecs/features/mac/default_pre.prf
++++ b/mkspecs/features/mac/default_pre.prf
+@@ -1,56 +1,2 @@
+ CONFIG = asset_catalogs rez $$CONFIG
+ load(default_pre)
+-
+-isEmpty(QMAKE_XCODE_DEVELOPER_PATH) {
+- # Get path of Xcode's Developer directory
+- QMAKE_XCODE_DEVELOPER_PATH = $$system("/usr/bin/xcode-select --print-path 2>/dev/null")
+- isEmpty(QMAKE_XCODE_DEVELOPER_PATH): \
+- error("Xcode path is not set. Please use xcode-select to choose Xcode installation path.")
+-
+- # Make sure Xcode path is valid
+- !exists($$QMAKE_XCODE_DEVELOPER_PATH): \
+- error("Xcode is not installed in $${QMAKE_XCODE_DEVELOPER_PATH}. Please use xcode-select to choose Xcode installation path.")
+-}
+-
+-isEmpty(QMAKE_XCODEBUILD_PATH): \
+- QMAKE_XCODEBUILD_PATH = $$system("/usr/bin/xcrun -find xcodebuild 2>/dev/null")
+-
+-!isEmpty(QMAKE_XCODEBUILD_PATH) {
+- # Make sure Xcode is set up properly
+- !system("/usr/bin/xcrun xcodebuild -license check 2>/dev/null"): \
+- error("Xcode not set up properly. You need to confirm the license agreement by running 'sudo xcrun xcodebuild -license accept'.")
+-
+- isEmpty(QMAKE_XCODE_VERSION) {
+- # Extract Xcode version using xcodebuild
+- xcode_version = $$system("/usr/bin/xcrun xcodebuild -version")
+- QMAKE_XCODE_VERSION = $$member(xcode_version, 1)
+- isEmpty(QMAKE_XCODE_VERSION): error("Could not resolve Xcode version.")
+- unset(xcode_version)
+- }
+-}
+-
+-isEmpty(QMAKE_TARGET_BUNDLE_PREFIX) {
+- QMAKE_XCODE_PREFERENCES_FILE = $$(HOME)/Library/Preferences/com.apple.dt.Xcode.plist
+- exists($$QMAKE_XCODE_PREFERENCES_FILE): \
+- QMAKE_TARGET_BUNDLE_PREFIX = $$system("/usr/libexec/PlistBuddy -c 'print IDETemplateOptions:bundleIdentifierPrefix' $$QMAKE_XCODE_PREFERENCES_FILE 2>/dev/null")
+-
+- !isEmpty(_QMAKE_CACHE_):!isEmpty(QMAKE_TARGET_BUNDLE_PREFIX): \
+- cache(QMAKE_TARGET_BUNDLE_PREFIX)
+-}
+-
+-QMAKE_ASSET_CATALOGS_APP_ICON = AppIcon
+-
+-# Make the default debug info format for static debug builds
+-# DWARF instead of DWARF with dSYM. This cuts down build times
+-# for application debug builds significantly, as Xcode doesn't
+-# have to pull out all the DWARF info from the Qt static libs
+-# and put it into a dSYM file. We don't need that dSYM file in
+-# the first place, since the information is available in the
+-# object files inside the archives (static libraries).
+-macx-xcode:qtConfig(static): \
+- QMAKE_XCODE_DEBUG_INFORMATION_FORMAT = dwarf
+-
+-# This variable is used by the xcode_dynamic_library_suffix
+-# feature, which allows Xcode to choose the Qt libraries to link to
+-# at build time, depending on the current Xcode SDK and configuration.
+-QMAKE_XCODE_LIBRARY_SUFFIX_SETTING = QT_LIBRARY_SUFFIX
+diff --git a/mkspecs/features/mac/sdk.prf b/mkspecs/features/mac/sdk.prf
+index 3f6dc076ca..e69de29bb2 100644
+--- a/mkspecs/features/mac/sdk.prf
++++ b/mkspecs/features/mac/sdk.prf
+@@ -1,58 +0,0 @@
+-
+-isEmpty(QMAKE_MAC_SDK): \
+- error("QMAKE_MAC_SDK must be set when using CONFIG += sdk.")
+-
+-contains(QMAKE_MAC_SDK, .*/.*): \
+- error("QMAKE_MAC_SDK can only contain short-form SDK names (eg. macosx, iphoneos)")
+-
+-defineReplace(xcodeSDKInfo) {
+- info = $$1
+- equals(info, "Path"): \
+- info = --show-sdk-path
+- equals(info, "PlatformPath"): \
+- info = --show-sdk-platform-path
+- equals(info, "SDKVersion"): \
+- info = --show-sdk-version
+- sdk = $$2
+- isEmpty(sdk): \
+- sdk = $$QMAKE_MAC_SDK
+-
+- isEmpty(QMAKE_MAC_SDK.$${sdk}.$${info}) {
+- QMAKE_MAC_SDK.$${sdk}.$${info} = $$system("/usr/bin/xcrun --sdk $$sdk $$info 2>/dev/null")
+- # --show-sdk-platform-path won't work for Command Line Tools; this is fine
+- # only used by the XCTest backend to testlib
+- isEmpty(QMAKE_MAC_SDK.$${sdk}.$${info}):if(!isEmpty(QMAKE_XCODEBUILD_PATH)|!equals(info, "--show-sdk-platform-path")): \
+- error("Could not resolve SDK $$info for \'$$sdk\'")
+- cache(QMAKE_MAC_SDK.$${sdk}.$${info}, set stash, QMAKE_MAC_SDK.$${sdk}.$${info})
+- }
+-
+- return($$eval(QMAKE_MAC_SDK.$${sdk}.$${info}))
+-}
+-
+-QMAKE_MAC_SDK_PATH = $$xcodeSDKInfo(Path)
+-QMAKE_MAC_SDK_PLATFORM_PATH = $$xcodeSDKInfo(PlatformPath)
+-QMAKE_MAC_SDK_VERSION = $$xcodeSDKInfo(SDKVersion)
+-
+-sysrootified =
+-for(val, QMAKE_INCDIR_OPENGL): sysrootified += $${QMAKE_MAC_SDK_PATH}$$val
+-QMAKE_INCDIR_OPENGL = $$sysrootified
+-
+-QMAKESPEC_NAME = $$basename(QMAKESPEC)
+-
+-# Resolve SDK version of various tools
+-for(tool, $$list(QMAKE_CC QMAKE_CXX QMAKE_FIX_RPATH QMAKE_AR QMAKE_RANLIB QMAKE_LINK QMAKE_LINK_SHLIB QMAKE_ACTOOL)) {
+- tool_variable = QMAKE_MAC_SDK.$${QMAKESPEC_NAME}.$${QMAKE_MAC_SDK}.$${tool}
+- !isEmpty($$tool_variable) {
+- $$tool = $$eval($$tool_variable)
+- next()
+- }
+-
+- value = $$eval($$tool)
+- isEmpty(value): next()
+-
+- sysrooted = $$system("/usr/bin/xcrun -sdk $$QMAKE_MAC_SDK -find $$first(value) 2>/dev/null")
+- isEmpty(sysrooted): next()
+-
+- $$tool = $$sysrooted $$member(value, 1, -1)
+- cache($$tool_variable, set stash, $$tool)
+-}
+diff --git a/mkspecs/features/qml_module.prf b/mkspecs/features/qml_module.prf
+index 4db0040dc5..65d6da1f4d 100644
+--- a/mkspecs/features/qml_module.prf
++++ b/mkspecs/features/qml_module.prf
+@@ -23,13 +23,8 @@ for(qmlf, AUX_QML_FILES): fq_aux_qml_files += $$absolute_path($$qmlf, $$_PRO_FIL
+
+ load(qt_build_paths)
+
+-qml1_target {
+- DESTDIR = $$MODULE_BASE_OUTDIR/imports/$$TARGETPATH
+- instbase = $$[QT_INSTALL_IMPORTS]
+-} else {
+- DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH
+- instbase = $$[QT_INSTALL_QML]
+-}
++DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH
++instbase = $$NIX_OUTPUT_QML
+
+ !qml1_target:static: CONFIG += builtin_resources
+
+diff --git a/mkspecs/features/qml_plugin.prf b/mkspecs/features/qml_plugin.prf
+index d49f4c49c1..097dcd7d39 100644
+--- a/mkspecs/features/qml_plugin.prf
++++ b/mkspecs/features/qml_plugin.prf
+@@ -48,13 +48,8 @@ exists($$QMLTYPEFILE): AUX_QML_FILES += $$QMLTYPEFILE
+
+ load(qt_build_paths)
+
+-qml1_target {
+- DESTDIR = $$MODULE_BASE_OUTDIR/imports/$$TARGETPATH
+- instbase = $$[QT_INSTALL_IMPORTS]
+-} else {
+- DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH
+- instbase = $$[QT_INSTALL_QML]
+-}
++DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH
++instbase = $$NIX_OUTPUT_QML
+
+ target.path = $$instbase/$$TARGETPATH
+ INSTALLS += target
+diff --git a/mkspecs/features/qt_app.prf b/mkspecs/features/qt_app.prf
+index 883f8ca215..81db8eb2d4 100644
+--- a/mkspecs/features/qt_app.prf
++++ b/mkspecs/features/qt_app.prf
+@@ -33,7 +33,7 @@ host_build:force_bootstrap {
+ target.path = $$[QT_HOST_BINS]
+ } else {
+ !build_pass:qtConfig(debug_and_release): CONFIG += release
+- target.path = $$[QT_INSTALL_BINS]
++ target.path = $$NIX_OUTPUT_BIN/bin
+ CONFIG += relative_qt_rpath # Qt's tools and apps should be relocatable
+ }
+ INSTALLS += target
+diff --git a/mkspecs/features/qt_build_paths.prf b/mkspecs/features/qt_build_paths.prf
+index 1848f00e90..2af93675c5 100644
+--- a/mkspecs/features/qt_build_paths.prf
++++ b/mkspecs/features/qt_build_paths.prf
+@@ -23,6 +23,6 @@ exists($$MODULE_BASE_INDIR/.git): \
+ !force_independent {
+ # If the module is not built independently, everything ends up in qtbase.
+ # This is the case in non-prefix builds, except for selected modules.
+- MODULE_BASE_OUTDIR = $$[QT_HOST_PREFIX]
+- MODULE_QMAKE_OUTDIR = $$[QT_HOST_PREFIX]
++ MODULE_BASE_OUTDIR = $$NIX_OUTPUT_OUT
++ MODULE_QMAKE_OUTDIR = $$NIX_OUTPUT_OUT
+ }
+diff --git a/mkspecs/features/qt_common.prf b/mkspecs/features/qt_common.prf
+index f4ae5bde80..6d4c6d223f 100644
+--- a/mkspecs/features/qt_common.prf
++++ b/mkspecs/features/qt_common.prf
+@@ -32,8 +32,8 @@ contains(TEMPLATE, .*lib) {
+ qqt_libdir = \$\$\$\$[QT_HOST_LIBS]
+ qt_libdir = $$[QT_HOST_LIBS]
+ } else {
+- qqt_libdir = \$\$\$\$[QT_INSTALL_LIBS]
+- qt_libdir = $$[QT_INSTALL_LIBS]
++ qqt_libdir = \$\$\$\$NIX_OUTPUT_OUT/lib
++ qt_libdir = $$NIX_OUTPUT_OUT/lib
+ }
+ contains(QMAKE_DEFAULT_LIBDIRS, $$qt_libdir) {
+ lib_replace.match = "[^ ']*$$rplbase/lib"
+diff --git a/mkspecs/features/qt_docs.prf b/mkspecs/features/qt_docs.prf
+index 72dde61a40..f891a2baed 100644
+--- a/mkspecs/features/qt_docs.prf
++++ b/mkspecs/features/qt_docs.prf
+@@ -45,7 +45,7 @@ QMAKE_DOCS_OUTPUTDIR = $$QMAKE_DOCS_BASE_OUTDIR/$$QMAKE_DOCS_TARGETDIR
+
+ QDOC += -outputdir $$shell_quote($$QMAKE_DOCS_OUTPUTDIR)
+ !build_online_docs: \
+- QDOC += -installdir $$shell_quote($$[QT_INSTALL_DOCS])
++ QDOC += -installdir $$shell_quote($$NIX_OUTPUT_DOC)
+ PREP_DOC_INDEXES =
+ DOC_INDEXES =
+ !isEmpty(QTREPOS) {
+@@ -64,8 +64,8 @@ DOC_INDEXES =
+ DOC_INDEXES += -indexdir $$shell_quote($$qrep/doc)
+ } else {
+ prepare_docs: \
+- PREP_DOC_INDEXES += -indexdir $$shell_quote($$[QT_INSTALL_DOCS/get])
+- DOC_INDEXES += -indexdir $$shell_quote($$[QT_INSTALL_DOCS/get])
++ PREP_DOC_INDEXES += -indexdir $$shell_quote($$NIX_OUTPUT_DOC)
++ DOC_INDEXES += -indexdir $$shell_quote($$NIX_OUTPUT_DOC)
+ }
+
+ qtattributionsscanner.target = qtattributionsscanner
+@@ -88,12 +88,12 @@ prepare_docs {
+ qch_docs.commands = $$QHELPGENERATOR $$shell_quote($$QMAKE_DOCS_OUTPUTDIR/$${QMAKE_DOCS_TARGET}.qhp) -o $$shell_quote($$QMAKE_DOCS_BASE_OUTDIR/$${QMAKE_DOCS_TARGET}.qch)
+
+ inst_html_docs.files = $$QMAKE_DOCS_OUTPUTDIR
+- inst_html_docs.path = $$[QT_INSTALL_DOCS]
++ inst_html_docs.path = $$NIX_OUTPUT_DOC
+ inst_html_docs.CONFIG += no_check_exist directory no_default_install no_build
+ INSTALLS += inst_html_docs
+
+ inst_qch_docs.files = $$QMAKE_DOCS_BASE_OUTDIR/$${QMAKE_DOCS_TARGET}.qch
+- inst_qch_docs.path = $$[QT_INSTALL_DOCS]
++ inst_qch_docs.path = $$NIX_OUTPUT_DOC
+ inst_qch_docs.CONFIG += no_check_exist no_default_install no_build
+ INSTALLS += inst_qch_docs
+
+diff --git a/mkspecs/features/qt_example_installs.prf b/mkspecs/features/qt_example_installs.prf
+index 668669e4cd..eb4840a0aa 100644
+--- a/mkspecs/features/qt_example_installs.prf
++++ b/mkspecs/features/qt_example_installs.prf
+@@ -82,7 +82,7 @@ sourcefiles += \
+ $$SOURCES $$HEADERS $$FORMS $$RESOURCES $$TRANSLATIONS \
+ $$DBUS_ADAPTORS $$DBUS_INTERFACES
+ addInstallFiles(sources.files, $$sourcefiles)
+-sources.path = $$[QT_INSTALL_EXAMPLES]/$$probase
++sources.path = $$NIX_OUTPUT_DEV/share/examples/$$probase
+ INSTALLS += sources
+
+ check_examples {
+diff --git a/mkspecs/features/qt_functions.prf b/mkspecs/features/qt_functions.prf
+index 1903e509c8..ae7b585989 100644
+--- a/mkspecs/features/qt_functions.prf
++++ b/mkspecs/features/qt_functions.prf
+@@ -69,7 +69,7 @@ defineTest(qtHaveModule) {
+ defineTest(qtPrepareTool) {
+ cmd = $$eval(QT_TOOL.$${2}.binary)
+ isEmpty(cmd) {
+- cmd = $$[QT_HOST_BINS]/$$2
++ cmd = $$system("command -v $$2")
+ exists($${cmd}.pl) {
+ $${1}_EXE = $${cmd}.pl
+ cmd = perl -w $$system_path($${cmd}.pl)
+diff --git a/mkspecs/features/qt_installs.prf b/mkspecs/features/qt_installs.prf
+index 90d84cc535..387481bfc6 100644
+--- a/mkspecs/features/qt_installs.prf
++++ b/mkspecs/features/qt_installs.prf
+@@ -12,16 +12,10 @@
+ #library
+ !qt_no_install_library {
+ win32 {
+- host_build: \
+- dlltarget.path = $$[QT_HOST_BINS]
+- else: \
+- dlltarget.path = $$[QT_INSTALL_BINS]
++ dlltarget.path = $$NIX_OUTPUT_BIN/bin
+ INSTALLS += dlltarget
+ }
+- host_build: \
+- target.path = $$[QT_HOST_LIBS]
+- else: \
+- target.path = $$[QT_INSTALL_LIBS]
++ target.path = $$NIX_OUTPUT_OUT/lib
+ !static: target.CONFIG = no_dll
+ INSTALLS += target
+ }
+@@ -29,33 +23,33 @@
+ #headers
+ qt_install_headers {
+ class_headers.files = $$SYNCQT.HEADER_CLASSES
+- class_headers.path = $$[QT_INSTALL_HEADERS]/$$MODULE_INCNAME
++ class_headers.path = $$NIX_OUTPUT_DEV/include/$$MODULE_INCNAME
+ INSTALLS += class_headers
+
+ targ_headers.files = $$SYNCQT.HEADER_FILES $$SYNCQT.INJECTED_HEADER_FILES
+- targ_headers.path = $$[QT_INSTALL_HEADERS]/$$MODULE_INCNAME
++ targ_headers.path = $$NIX_OUTPUT_DEV/include/$$MODULE_INCNAME
+ INSTALLS += targ_headers
+
+ private_headers.files = $$SYNCQT.PRIVATE_HEADER_FILES $$SYNCQT.INJECTED_PRIVATE_HEADER_FILES
+- private_headers.path = $$[QT_INSTALL_HEADERS]/$$MODULE_INCNAME/$$VERSION/$$MODULE_INCNAME/private
++ private_headers.path = $$NIX_OUTPUT_DEV/include/$$MODULE_INCNAME/$$VERSION/$$MODULE_INCNAME/private
+ INSTALLS += private_headers
+
+ qpa_headers.files = $$SYNCQT.QPA_HEADER_FILES
+- qpa_headers.path = $$[QT_INSTALL_HEADERS]/$$MODULE_INCNAME/$$VERSION/$$MODULE_INCNAME/qpa
++ qpa_headers.path = $$NIX_OUTPUT_DEV/include/$$MODULE_INCNAME/$$VERSION/$$MODULE_INCNAME/qpa
+ INSTALLS += qpa_headers
+ }
+
+ #module
+ qt_install_module {
+ !isEmpty(MODULE_PRI) {
+- pritarget.path = $$[QT_HOST_DATA]/mkspecs/modules
++ pritarget.path = $$NIX_OUTPUT_DEV/mkspecs/modules
+ pritarget.files = $$MODULE_PRI
+ INSTALLS += pritarget
+ } else: isEmpty(MODULE_PRIVATE_PRI) {
+ warning("Project $$basename(_PRO_FILE_) is a module, but has not defined MODULE_PRI, which is required for Qt to expose the module to other projects.")
+ }
+ !isEmpty(MODULE_PRIVATE_PRI) {
+- privpritarget.path = $$[QT_HOST_DATA]/mkspecs/modules
++ privpritarget.path = $$NIX_OUTPUT_DEV/mkspecs/modules
+ privpritarget.files = $$MODULE_PRIVATE_PRI
+ INSTALLS += privpritarget
+ }
+diff --git a/mkspecs/features/qt_plugin.prf b/mkspecs/features/qt_plugin.prf
+index 62e1b69fde..abd63123f9 100644
+--- a/mkspecs/features/qt_plugin.prf
++++ b/mkspecs/features/qt_plugin.prf
+@@ -88,7 +88,7 @@ CONFIG(static, static|shared)|prefix_build {
+ }
+ }
+
+-target.path = $$[QT_INSTALL_PLUGINS]/$$PLUGIN_TYPE
++target.path = $$NIX_OUTPUT_PLUGIN/$$PLUGIN_TYPE
+ INSTALLS += target
+
+ TARGET = $$qt5LibraryTarget($$TARGET)
+diff --git a/src/corelib/Qt5CoreConfigExtras.cmake.in b/src/corelib/Qt5CoreConfigExtras.cmake.in
+index 545b9a3d1e..6ac0cdefe4 100644
+--- a/src/corelib/Qt5CoreConfigExtras.cmake.in
++++ b/src/corelib/Qt5CoreConfigExtras.cmake.in
+@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::qmake)
+ add_executable(Qt5::qmake IMPORTED)
+
+ !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\")
++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\")
+ !!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\")
+ !!ENDIF
+@@ -18,7 +18,7 @@ if (NOT TARGET Qt5::moc)
+ add_executable(Qt5::moc IMPORTED)
+
+ !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\")
++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\")
+ !!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\")
+ !!ENDIF
+@@ -35,7 +35,7 @@ if (NOT TARGET Qt5::rcc)
+ add_executable(Qt5::rcc IMPORTED)
+
+ !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\")
++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\")
+ !!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\")
+ !!ENDIF
+@@ -133,7 +133,7 @@ if (NOT TARGET Qt5::WinMain)
+ !!IF !isEmpty(CMAKE_RELEASE_TYPE)
+ set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
+ !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\")
++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\")
+ !!ELSE
+ set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\")
+ !!ENDIF
+@@ -147,7 +147,7 @@ if (NOT TARGET Qt5::WinMain)
+ set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG)
+
+ !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\")
++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\")
+ !!ELSE
+ set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\")
+ !!ENDIF
+diff --git a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
+index c357237d0e..6f0c75de3c 100644
+--- a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
++++ b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in
+@@ -1,6 +1,6 @@
+
+ !!IF isEmpty(CMAKE_HOST_DATA_DIR_IS_ABSOLUTE)
+-set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\")
++set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\")
+ !!ELSE
+ set(_qt5_corelib_extra_includes \"$${CMAKE_HOST_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\")
+ !!ENDIF
+diff --git a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
+index 706304cf34..546420f6ad 100644
+--- a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
++++ b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in
+@@ -1,6 +1,6 @@
+
+ !!IF isEmpty(CMAKE_INSTALL_DATA_DIR_IS_ABSOLUTE)
+-set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\")
++set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\")
+ !!ELSE
+ set(_qt5_corelib_extra_includes \"$${CMAKE_INSTALL_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\")
+ !!ENDIF
+diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp
+index 609e52d9d2..f0f29ce61f 100644
+--- a/src/corelib/kernel/qcoreapplication.cpp
++++ b/src/corelib/kernel/qcoreapplication.cpp
+@@ -2580,6 +2580,15 @@ QStringList QCoreApplication::libraryPaths()
+ QStringList *app_libpaths = new QStringList;
+ coreappdata()->app_libpaths.reset(app_libpaths);
+
++ // Add library paths derived from PATH
++ const QStringList paths = QFile::decodeName(qgetenv("PATH")).split(':');
++ const QString plugindir = QStringLiteral("../" NIXPKGS_QT_PLUGIN_PREFIX);
++ for (const QString &path: paths) {
++ if (!path.isEmpty()) {
++ app_libpaths->append(QDir::cleanPath(path + QDir::separator() + plugindir));
++ }
++ }
++
+ const QByteArray libPathEnv = qgetenv("QT_PLUGIN_PATH");
+ if (!libPathEnv.isEmpty()) {
+ QStringList paths = QFile::decodeName(libPathEnv).split(QDir::listSeparator(), QString::SkipEmptyParts);
+diff --git a/src/corelib/tools/qtimezoneprivate_tz.cpp b/src/corelib/tools/qtimezoneprivate_tz.cpp
+index bcc1285472..a77eb472a3 100644
+--- a/src/corelib/tools/qtimezoneprivate_tz.cpp
++++ b/src/corelib/tools/qtimezoneprivate_tz.cpp
+@@ -70,7 +70,11 @@ typedef QHash QTzTimeZoneHash;
+ // Parse zone.tab table, assume lists all installed zones, if not will need to read directories
+ static QTzTimeZoneHash loadTzTimeZones()
+ {
+- QString path = QStringLiteral("/usr/share/zoneinfo/zone.tab");
++ // Try TZDIR first, in case we're running on NixOS.
++ QString path = QFile::decodeName(qgetenv("TZDIR")) + QStringLiteral("/zone.tab");
++ // Fallback to traditional paths in case we are not on NixOS.
++ if (!QFile::exists(path))
++ path = QStringLiteral("/usr/share/zoneinfo/zone.tab");
+ if (!QFile::exists(path))
+ path = QStringLiteral("/usr/lib/zoneinfo/zone.tab");
+
+@@ -644,12 +648,16 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId)
+ if (!tzif.open(QIODevice::ReadOnly))
+ return;
+ } else {
+- // Open named tz, try modern path first, if fails try legacy path
+- tzif.setFileName(QLatin1String("/usr/share/zoneinfo/") + QString::fromLocal8Bit(ianaId));
++ // Try TZDIR first, in case we're running on NixOS
++ tzif.setFileName(QFile::decodeName(qgetenv("TZDIR")) + QStringLiteral("/") + QString::fromLocal8Bit(ianaId));
+ if (!tzif.open(QIODevice::ReadOnly)) {
+- tzif.setFileName(QLatin1String("/usr/lib/zoneinfo/") + QString::fromLocal8Bit(ianaId));
+- if (!tzif.open(QIODevice::ReadOnly))
+- return;
++ // Open named tz, try modern path first, if fails try legacy path
++ tzif.setFileName(QLatin1String("/usr/share/zoneinfo/") + QString::fromLocal8Bit(ianaId));
++ if (!tzif.open(QIODevice::ReadOnly)) {
++ tzif.setFileName(QLatin1String("/usr/lib/zoneinfo/") + QString::fromLocal8Bit(ianaId));
++ if (!tzif.open(QIODevice::ReadOnly))
++ return;
++ }
+ }
+ }
+
+diff --git a/src/dbus/Qt5DBusConfigExtras.cmake.in b/src/dbus/Qt5DBusConfigExtras.cmake.in
+index 1d947159e2..b36865fc48 100644
+--- a/src/dbus/Qt5DBusConfigExtras.cmake.in
++++ b/src/dbus/Qt5DBusConfigExtras.cmake.in
+@@ -2,11 +2,7 @@
+ if (NOT TARGET Qt5::qdbuscpp2xml)
+ add_executable(Qt5::qdbuscpp2xml IMPORTED)
+
+-!!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5DBus_install_prefix}/$${CMAKE_BIN_DIR}qdbuscpp2xml$$CMAKE_BIN_SUFFIX\")
+-!!ELSE
+- set(imported_location \"$${CMAKE_BIN_DIR}qdbuscpp2xml$$CMAKE_BIN_SUFFIX\")
+-!!ENDIF
++ set(imported_location \"$$NIX_OUTPUT_DEV/bin/qdbuscpp2xml$$CMAKE_BIN_SUFFIX\")
+ _qt5_DBus_check_file_exists(${imported_location})
+
+ set_target_properties(Qt5::qdbuscpp2xml PROPERTIES
+@@ -17,11 +13,7 @@ endif()
+ if (NOT TARGET Qt5::qdbusxml2cpp)
+ add_executable(Qt5::qdbusxml2cpp IMPORTED)
+
+-!!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5DBus_install_prefix}/$${CMAKE_BIN_DIR}qdbusxml2cpp$$CMAKE_BIN_SUFFIX\")
+-!!ELSE
+- set(imported_location \"$${CMAKE_BIN_DIR}qdbusxml2cpp$$CMAKE_BIN_SUFFIX\")
+-!!ENDIF
++ set(imported_location \"$$NIX_OUTPUT_DEV/bin/qdbusxml2cpp$$CMAKE_BIN_SUFFIX\")
+ _qt5_DBus_check_file_exists(${imported_location})
+
+ set_target_properties(Qt5::qdbusxml2cpp PROPERTIES
+diff --git a/src/gui/Qt5GuiConfigExtras.cmake.in b/src/gui/Qt5GuiConfigExtras.cmake.in
+index 07869efd7d..fb4183bada 100644
+--- a/src/gui/Qt5GuiConfigExtras.cmake.in
++++ b/src/gui/Qt5GuiConfigExtras.cmake.in
+@@ -2,7 +2,7 @@
+ !!IF !isEmpty(CMAKE_ANGLE_EGL_DLL_RELEASE)
+
+ !!IF isEmpty(CMAKE_INCLUDE_DIR_IS_ABSOLUTE)
+-set(Qt5Gui_EGL_INCLUDE_DIRS \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$$CMAKE_INCLUDE_DIR/QtANGLE\")
++set(Qt5Gui_EGL_INCLUDE_DIRS \"$$NIX_OUTPUT_DEV/$$CMAKE_INCLUDE_DIR/QtANGLE\")
+ !!ELSE
+ set(Qt5Gui_EGL_INCLUDE_DIRS \"$$CMAKE_INCLUDE_DIR/QtANGLE\")
+ !!ENDIF
+@@ -17,13 +17,13 @@ macro(_populate_qt5gui_gl_target_properties TargetName Configuration LIB_LOCATIO
+ set_property(TARGET Qt5::${TargetName} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration})
+
+ !!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Gui_install_prefix}/$${CMAKE_DLL_DIR}${LIB_LOCATION}\")
++ set(imported_location \"$$NIX_OUTPUT_OUT/$${CMAKE_DLL_DIR}${LIB_LOCATION}\")
+ !!ELSE
+ set(imported_location \"$${CMAKE_DLL_DIR}${LIB_LOCATION}\")
+ !!ENDIF
+
+ !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
+- set(imported_implib \"${_qt5Gui_install_prefix}/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
++ set(imported_implib \"$$NIX_OUTPUT_OUT/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
+ !!ELSE
+ set(imported_implib \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
+ !!ENDIF
+diff --git a/src/network/kernel/qdnslookup_unix.cpp b/src/network/kernel/qdnslookup_unix.cpp
+index 1da00813ce..0bf877afcb 100644
+--- a/src/network/kernel/qdnslookup_unix.cpp
++++ b/src/network/kernel/qdnslookup_unix.cpp
+@@ -92,7 +92,7 @@ static bool resolveLibraryInternal()
+ if (!lib.load())
+ #endif
+ {
+- lib.setFileName(QLatin1String("resolv"));
++ lib.setFileName(QLatin1String(NIXPKGS_LIBRESOLV));
+ if (!lib.load())
+ return false;
+ }
+diff --git a/src/network/kernel/qhostinfo_unix.cpp b/src/network/kernel/qhostinfo_unix.cpp
+index 8d2cffc304..9730fb33f2 100644
+--- a/src/network/kernel/qhostinfo_unix.cpp
++++ b/src/network/kernel/qhostinfo_unix.cpp
+@@ -98,7 +98,7 @@ static bool resolveLibraryInternal()
+ if (!lib.load())
+ #endif
+ {
+- lib.setFileName(QLatin1String("resolv"));
++ lib.setFileName(QLatin1String(NIXPKGS_LIBRESOLV));
+ if (!lib.load())
+ return false;
+ }
+diff --git a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
+index b5a0a5bbeb..6c20305f4d 100644
+--- a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
++++ b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
+@@ -265,12 +265,9 @@ void TableGenerator::initPossibleLocations()
+ m_possibleLocations.reserve(7);
+ if (qEnvironmentVariableIsSet("QTCOMPOSE"))
+ m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE")));
+- m_possibleLocations.append(QStringLiteral("/usr/share/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/local/share/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/lib/X11/locale"));
+- m_possibleLocations.append(QStringLiteral("/usr/local/lib/X11/locale"));
+ m_possibleLocations.append(QStringLiteral(X11_PREFIX "/share/X11/locale"));
+ m_possibleLocations.append(QStringLiteral(X11_PREFIX "/lib/X11/locale"));
++ m_possibleLocations.append(QLatin1String(NIXPKGS_QTCOMPOSE));
+ }
+
+ QString TableGenerator::findComposeFile()
+diff --git a/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp b/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
+index 3bc8590d36..2a78fde518 100644
+--- a/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
++++ b/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
+@@ -580,7 +580,14 @@ QFunctionPointer QGLXContext::getProcAddress(const char *procName)
+ #if QT_CONFIG(library)
+ extern const QString qt_gl_library_name();
+ // QLibrary lib(qt_gl_library_name());
++ // Check system library paths first
+ QLibrary lib(QLatin1String("GL"));
++#ifdef NIXPKGS_MESA_GL
++ if (!lib.load()) {
++ // Fallback to Mesa driver
++ lib.setFileName(QLatin1String(NIXPKGS_MESA_GL));
++ }
++#endif // NIXPKGS_MESA_GL
+ glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB");
+ #endif
+ }
+diff --git a/src/plugins/platforms/xcb/qxcbcursor.cpp b/src/plugins/platforms/xcb/qxcbcursor.cpp
+index da63360333..95e34e2e50 100644
+--- a/src/plugins/platforms/xcb/qxcbcursor.cpp
++++ b/src/plugins/platforms/xcb/qxcbcursor.cpp
+@@ -311,10 +311,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen)
+ #if QT_CONFIG(xcb_xlib) && QT_CONFIG(library)
+ static bool function_ptrs_not_initialized = true;
+ if (function_ptrs_not_initialized) {
+- QLibrary xcursorLib(QLatin1String("Xcursor"), 1);
++ QLibrary xcursorLib(QLatin1String(NIXPKGS_LIBXCURSOR), 1);
+ bool xcursorFound = xcursorLib.load();
+ if (!xcursorFound) { // try without the version number
+- xcursorLib.setFileName(QLatin1String("Xcursor"));
++ xcursorLib.setFileName(QLatin1String(NIXPKGS_LIBXCURSOR));
+ xcursorFound = xcursorLib.load();
+ }
+ if (xcursorFound) {
+diff --git a/src/plugins/platformthemes/gtk3/main.cpp b/src/plugins/platformthemes/gtk3/main.cpp
+index c4cd66c33b..b6f2691587 100644
+--- a/src/plugins/platformthemes/gtk3/main.cpp
++++ b/src/plugins/platformthemes/gtk3/main.cpp
+@@ -39,6 +39,7 @@
+
+ #include
+ #include "qgtk3theme.h"
++#include
+
+ QT_BEGIN_NAMESPACE
+
+@@ -54,8 +55,22 @@ public:
+ QPlatformTheme *QGtk3ThemePlugin::create(const QString &key, const QStringList ¶ms)
+ {
+ Q_UNUSED(params);
+- if (!key.compare(QLatin1String(QGtk3Theme::name), Qt::CaseInsensitive))
++ if (!key.compare(QLatin1String(QGtk3Theme::name), Qt::CaseInsensitive)) {
++
++#ifdef NIXPKGS_QGTK3_XDG_DATA_DIRS
++ QStringList XDG_DATA_DIRS = QFile::decodeName(qgetenv("XDG_DATA_DIRS")).split(':');
++ XDG_DATA_DIRS << QLatin1String(NIXPKGS_QGTK3_XDG_DATA_DIRS);
++ qputenv("XDG_DATA_DIRS", QFile::encodeName(XDG_DATA_DIRS.join(':')));
++#endif
++
++#ifdef NIXPKGS_QGTK3_GIO_EXTRA_MODULES
++ QStringList GIO_EXTRA_MODULES = QFile::decodeName(qgetenv("GIO_EXTRA_MODULES")).split(':');
++ GIO_EXTRA_MODULES << QLatin1String(NIXPKGS_QGTK3_GIO_EXTRA_MODULES);
++ qputenv("GIO_EXTRA_MODULES", QFile::encodeName(GIO_EXTRA_MODULES.join(':')));
++#endif
++
+ return new QGtk3Theme;
++ }
+
+ return 0;
+ }
+diff --git a/src/testlib/qtestassert.h b/src/testlib/qtestassert.h
+index 6498ea84ef..d821ced7fc 100644
+--- a/src/testlib/qtestassert.h
++++ b/src/testlib/qtestassert.h
+@@ -44,10 +44,13 @@
+
+ QT_BEGIN_NAMESPACE
+
+-
++#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
++#define QTEST_ASSERT(cond) do { } while ((false) && (cond))
++#define QTEST_ASSERT_X(cond, where, what) do { } while ((false) && (cond))
++#else
+ #define QTEST_ASSERT(cond) do { if (!(cond)) qt_assert(#cond,__FILE__,__LINE__); } while (false)
+-
+ #define QTEST_ASSERT_X(cond, where, what) do { if (!(cond)) qt_assert_x(where, what,__FILE__,__LINE__); } while (false)
++#endif
+
+ QT_END_NAMESPACE
+
+diff --git a/src/widgets/Qt5WidgetsConfigExtras.cmake.in b/src/widgets/Qt5WidgetsConfigExtras.cmake.in
+index 99d87e2e46..a4eab2aa72 100644
+--- a/src/widgets/Qt5WidgetsConfigExtras.cmake.in
++++ b/src/widgets/Qt5WidgetsConfigExtras.cmake.in
+@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::uic)
+ add_executable(Qt5::uic IMPORTED)
+
+ !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Widgets_install_prefix}/$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\")
++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\")
+ !!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\")
+ !!ENDIF
diff --git a/pkgs/development/libraries/qt-5/5.10/qtdeclarative.patch b/pkgs/development/libraries/qt-5/5.10/qtdeclarative.patch
new file mode 100644
index 00000000000..01a975c14ec
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/qtdeclarative.patch
@@ -0,0 +1,33 @@
+diff --git a/src/qml/qml/qqmlimport.cpp b/src/qml/qml/qqmlimport.cpp
+index a7cafa1a9..e17ffd35b 100644
+--- a/src/qml/qml/qqmlimport.cpp
++++ b/src/qml/qml/qqmlimport.cpp
+@@ -1737,6 +1737,15 @@ QQmlImportDatabase::QQmlImportDatabase(QQmlEngine *e)
+ QString installImportsPath = QLibraryInfo::location(QLibraryInfo::Qml2ImportsPath);
+ addImportPath(installImportsPath);
+
++ // Add import paths derived from PATH
++ const QStringList paths = QFile::decodeName(qgetenv("PATH")).split(':');
++ const QString qmldir = QStringLiteral("../" NIXPKGS_QML2_IMPORT_PREFIX);
++ for (const QString &path: paths) {
++ if (!path.isEmpty()) {
++ addImportPath(QDir::cleanPath(path + QDir::separator() + qmldir));
++ }
++ }
++
+ // env import paths
+ if (Q_UNLIKELY(!qEnvironmentVariableIsEmpty("QML2_IMPORT_PATH"))) {
+ const QString envImportPath = qEnvironmentVariable("QML2_IMPORT_PATH");
+diff --git a/tools/qmlcachegen/qmlcache.prf b/tools/qmlcachegen/qmlcache.prf
+index 330da358b..cdf570205 100644
+--- a/tools/qmlcachegen/qmlcache.prf
++++ b/tools/qmlcachegen/qmlcache.prf
+@@ -44,7 +44,7 @@ defineReplace(qmlCacheOutputFileName) {
+ }
+
+ qmlcacheinst.base = $$QMLCACHE_DESTDIR
+-qmlcacheinst.path = $$[QT_INSTALL_QML]/$$TARGETPATH
++qmlcacheinst.path = $$NIX_OUTPUT_QML/$$TARGETPATH
+ qmlcacheinst.CONFIG = no_check_exist
+
+ qmlcachegen.input = CACHEGEN_FILES
diff --git a/pkgs/development/libraries/qt-5/5.10/qtscript.patch b/pkgs/development/libraries/qt-5/5.10/qtscript.patch
new file mode 100644
index 00000000000..5508dec1280
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/qtscript.patch
@@ -0,0 +1,13 @@
+diff --git a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
+index 1f6d25e..087c3fb 100644
+--- a/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
++++ b/src/3rdparty/javascriptcore/JavaScriptCore/wtf/Threading.h
+@@ -81,7 +81,7 @@
+ #include
+ #elif PLATFORM(GTK)
+ #include
+-typedef struct _GMutex GMutex;
++typedef union _GMutex GMutex;
+ typedef struct _GCond GCond;
+ #endif
+
diff --git a/pkgs/development/libraries/qt-5/5.10/qtserialport.patch b/pkgs/development/libraries/qt-5/5.10/qtserialport.patch
new file mode 100644
index 00000000000..f25524e80bc
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/qtserialport.patch
@@ -0,0 +1,22 @@
+diff --git a/src/serialport/qtudev_p.h b/src/serialport/qtudev_p.h
+index af2dab2..8e17f64 100644
+--- a/src/serialport/qtudev_p.h
++++ b/src/serialport/qtudev_p.h
+@@ -111,9 +111,17 @@ inline QFunctionPointer resolveSymbol(QLibrary *udevLibrary, const char *symbolN
+ inline bool resolveSymbols(QLibrary *udevLibrary)
+ {
+ if (!udevLibrary->isLoaded()) {
++#ifdef NIXPKGS_LIBUDEV
++ udevLibrary->setFileNameAndVersion(QLatin1String(NIXPKGS_LIBUDEV), 1);
++#else
+ udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 1);
++#endif
+ if (!udevLibrary->load()) {
++#ifdef NIXPKGS_LIBUDEV
++ udevLibrary->setFileNameAndVersion(QLatin1String(NIXPKGS_LIBUDEV), 0);
++#else
+ udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 0);
++#endif
+ if (!udevLibrary->load()) {
+ qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0);
+ return false;
diff --git a/pkgs/development/libraries/qt-5/5.10/qttools.patch b/pkgs/development/libraries/qt-5/5.10/qttools.patch
new file mode 100644
index 00000000000..fbba439ef7a
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/qttools.patch
@@ -0,0 +1,71 @@
+diff --git a/src/assistant/help/Qt5HelpConfigExtras.cmake.in b/src/assistant/help/Qt5HelpConfigExtras.cmake.in
+index 3b97923a..63336bd5 100644
+--- a/src/assistant/help/Qt5HelpConfigExtras.cmake.in
++++ b/src/assistant/help/Qt5HelpConfigExtras.cmake.in
+@@ -2,11 +2,10 @@
+ if (NOT TARGET Qt5::qcollectiongenerator)
+ add_executable(Qt5::qcollectiongenerator IMPORTED)
+
+-!!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Help_install_prefix}/$${CMAKE_BIN_DIR}qcollectiongenerator$$CMAKE_BIN_SUFFIX\")
+-!!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}qcollectiongenerator$$CMAKE_BIN_SUFFIX\")
+-!!ENDIF
++ if(NOT EXISTS \"${imported_location}\")
++ set(imported_location \"$${CMAKE_BIN_DIR}qcollectiongenerator$$CMAKE_BIN_SUFFIX\")
++ endif()
+ _qt5_Help_check_file_exists(${imported_location})
+
+ set_target_properties(Qt5::qcollectiongenerator PROPERTIES
+@@ -17,11 +16,7 @@ endif()
+ if (NOT TARGET Qt5::qhelpgenerator)
+ add_executable(Qt5::qhelpgenerator IMPORTED)
+
+-!!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5Help_install_prefix}/$${CMAKE_BIN_DIR}qhelpgenerator$$CMAKE_BIN_SUFFIX\")
+-!!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}qhelpgenerator$$CMAKE_BIN_SUFFIX\")
+-!!ENDIF
+ _qt5_Help_check_file_exists(${imported_location})
+
+ set_target_properties(Qt5::qhelpgenerator PROPERTIES
+diff --git a/src/linguist/Qt5LinguistToolsConfig.cmake.in b/src/linguist/Qt5LinguistToolsConfig.cmake.in
+index 4318b16f..d60db4ff 100644
+--- a/src/linguist/Qt5LinguistToolsConfig.cmake.in
++++ b/src/linguist/Qt5LinguistToolsConfig.cmake.in
+@@ -44,11 +44,7 @@ endmacro()
+ if (NOT TARGET Qt5::lrelease)
+ add_executable(Qt5::lrelease IMPORTED)
+
+-!!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5_linguisttools_install_prefix}/$${CMAKE_BIN_DIR}lrelease$$CMAKE_BIN_SUFFIX\")
+-!!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}lrelease$$CMAKE_BIN_SUFFIX\")
+-!!ENDIF
+ _qt5_LinguistTools_check_file_exists(${imported_location})
+
+ set_target_properties(Qt5::lrelease PROPERTIES
+@@ -59,11 +55,7 @@ endif()
+ if (NOT TARGET Qt5::lupdate)
+ add_executable(Qt5::lupdate IMPORTED)
+
+-!!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5_linguisttools_install_prefix}/$${CMAKE_BIN_DIR}lupdate$$CMAKE_BIN_SUFFIX\")
+-!!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}lupdate$$CMAKE_BIN_SUFFIX\")
+-!!ENDIF
+ _qt5_LinguistTools_check_file_exists(${imported_location})
+
+ set_target_properties(Qt5::lupdate PROPERTIES
+@@ -74,11 +66,7 @@ endif()
+ if (NOT TARGET Qt5::lconvert)
+ add_executable(Qt5::lconvert IMPORTED)
+
+-!!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE)
+- set(imported_location \"${_qt5_linguisttools_install_prefix}/$${CMAKE_BIN_DIR}lconvert$$CMAKE_BIN_SUFFIX\")
+-!!ELSE
+ set(imported_location \"$${CMAKE_BIN_DIR}lconvert$$CMAKE_BIN_SUFFIX\")
+-!!ENDIF
+ _qt5_LinguistTools_check_file_exists(${imported_location})
+
+ set_target_properties(Qt5::lconvert PROPERTIES
diff --git a/pkgs/development/libraries/qt-5/5.10/qtwebengine-paxmark-mksnapshot.patch b/pkgs/development/libraries/qt-5/5.10/qtwebengine-paxmark-mksnapshot.patch
new file mode 100644
index 00000000000..e1621b005c6
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/qtwebengine-paxmark-mksnapshot.patch
@@ -0,0 +1,48 @@
+diff --git a/src/3rdparty/chromium/v8/src/v8.gyp b/chromium/v8/src/v8.gyp
+index e7e19f5059..934448c7d8 100644
+--- a/src/3rdparty/chromium/v8/src/v8.gyp
++++ b/src/3rdparty/chromium/v8/src/v8.gyp
+@@ -35,6 +35,7 @@
+ 'v8_extra_library_files%': [],
+ 'v8_experimental_extra_library_files%': [],
+ 'mksnapshot_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot<(EXECUTABLE_SUFFIX)',
++ 'mksnapshot_u_exec': '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)mksnapshot_u<(EXECUTABLE_SUFFIX)',
+ 'v8_os_page_size%': 0,
+ },
+ 'includes': ['../gypfiles/toolchain.gypi', '../gypfiles/features.gypi', 'inspector/inspector.gypi'],
+@@ -2576,7 +2577,7 @@
+ ]
+ },
+ {
+- 'target_name': 'mksnapshot',
++ 'target_name': 'mksnapshot_u',
+ 'type': 'executable',
+ 'dependencies': [
+ 'v8_base',
+@@ -2606,5 +2607,26 @@
+ }],
+ ],
+ },
++ {
++ 'target_name': 'mksnapshot',
++ 'type': 'executable',
++ 'dependencies': ['mksnapshot_u'],
++ 'actions': [
++ {
++ 'action_name': 'paxmark_m_mksnapshot',
++ 'inputs': [
++ '<(mksnapshot_u_exec)',
++ ],
++ 'outputs': [
++ '<(mksnapshot_exec)',
++ ],
++ 'action': [
++ 'sh',
++ '-c',
++ 'cp <(mksnapshot_u_exec) <(mksnapshot_exec) && paxctl -czexm <(mksnapshot_exec)',
++ ],
++ },
++ ],
++ },
+ ],
+ }
diff --git a/pkgs/development/libraries/qt-5/5.10/qtwebkit.patch b/pkgs/development/libraries/qt-5/5.10/qtwebkit.patch
new file mode 100644
index 00000000000..c78cb58f564
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/qtwebkit.patch
@@ -0,0 +1,77 @@
+diff --git a/Source/WTF/WTF.pri b/Source/WTF/WTF.pri
+index 69e4cd1f3..3f729a75e 100644
+--- a/Source/WTF/WTF.pri
++++ b/Source/WTF/WTF.pri
+@@ -12,7 +12,7 @@ mac {
+ # Mac OS does ship libicu but not the associated header files.
+ # Therefore WebKit provides adequate header files.
+ INCLUDEPATH = $${ROOT_WEBKIT_DIR}/Source/WTF/icu $$INCLUDEPATH
+- LIBS += -licucore
++ LIBS += /usr/lib/libicucore.dylib
+ } else:!use?(wchar_unicode): {
+ win32 {
+ CONFIG(static, static|shared) {
+diff --git a/Source/WebCore/plugins/qt/PluginPackageQt.cpp b/Source/WebCore/plugins/qt/PluginPackageQt.cpp
+index a923d49aa..46772a4bb 100644
+--- a/Source/WebCore/plugins/qt/PluginPackageQt.cpp
++++ b/Source/WebCore/plugins/qt/PluginPackageQt.cpp
+@@ -136,7 +136,11 @@ static void initializeGtk(QLibrary* module = 0)
+ }
+ }
+
++#ifdef NIXPKGS_LIBGTK2
++ QLibrary library(QLatin1String(NIXPKGS_LIBGTK2), 0);
++#else
+ QLibrary library(QLatin1String("libgtk-x11-2.0"), 0);
++#endif
+ if (library.load()) {
+ typedef void *(*gtk_init_check_ptr)(int*, char***);
+ gtk_init_check_ptr gtkInitCheck = (gtk_init_check_ptr)library.resolve("gtk_init_check");
+diff --git a/Source/WebCore/plugins/qt/PluginViewQt.cpp b/Source/WebCore/plugins/qt/PluginViewQt.cpp
+index de06a2fea..86fe39ef1 100644
+--- a/Source/WebCore/plugins/qt/PluginViewQt.cpp
++++ b/Source/WebCore/plugins/qt/PluginViewQt.cpp
+@@ -697,7 +697,11 @@ static Display *getPluginDisplay()
+ // support gdk based plugins (like flash) that use a different X connection.
+ // The code below has the same effect as this one:
+ // Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default());
++#ifdef NIXPKGS_LIBGDK2
++ QLibrary library(QLatin1String(NIXPKGS_LIBGDK2), 0);
++#else
+ QLibrary library(QLatin1String("libgdk-x11-2.0"), 0);
++#endif
+ if (!library.load())
+ return 0;
+
+diff --git a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
+index 8de65216b..38f5c05e5 100644
+--- a/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
++++ b/Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp
+@@ -53,7 +53,11 @@ static void messageHandler(QtMsgType type, const QMessageLogContext&, const QStr
+
+ static bool initializeGtk()
+ {
++#ifdef NIXPKGS_LIBGTK2
++ QLibrary gtkLibrary(QLatin1String(NIXPKGS_LIBGTK2), 0);
++#else
+ QLibrary gtkLibrary(QLatin1String("libgtk-x11-2.0"), 0);
++#endif
+ if (!gtkLibrary.load())
+ return false;
+ typedef void* (*gtk_init_ptr)(void*, void*);
+diff --git a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
+index d734ff684..0f6ff63d1 100644
+--- a/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
++++ b/Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp
+@@ -64,7 +64,11 @@ static Display* getPluginDisplay()
+ // The code below has the same effect as this one:
+ // Display *gdkDisplay = gdk_x11_display_get_xdisplay(gdk_display_get_default());
+
++#ifdef NIXPKGS_LIBGDK2
++ QLibrary library(QLatin1String(NIXPKGS_LIBGDK2), 0);
++#else
+ QLibrary library(QLatin1String("libgdk-x11-2.0"), 0);
++#endif
+ if (!library.load())
+ return 0;
+
diff --git a/pkgs/development/libraries/qt-5/5.10/srcs.nix b/pkgs/development/libraries/qt-5/5.10/srcs.nix
new file mode 100644
index 00000000000..5369169aa67
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.10/srcs.nix
@@ -0,0 +1,341 @@
+# DO NOT EDIT! This file is generated automatically by fetch-kde-qt.sh
+{ fetchurl, mirror }:
+
+{
+ qt3d = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qt3d-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1arlplfpqdk0qki7bs1pp16y9cwa0awn071p551jg4y74xr7wi8j";
+ name = "qt3d-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtactiveqt = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtactiveqt-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0x6nbi5hlbr1pncbd8zzkwmqi04gcy64q3bjy5w45rg6zws41mzr";
+ name = "qtactiveqt-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtandroidextras = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtandroidextras-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1ifb49px86abaf4znmlis9wyyxq132nlgj3fyqppbx1sranikygk";
+ name = "qtandroidextras-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtbase = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtbase-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0qpp56cbw1sfz5ayhj2mskb07cl6jd1ijayg29y624qa6b6phmgx";
+ name = "qtbase-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtcanvas3d = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtcanvas3d-everywhere-src-5.10.0.tar.xz";
+ sha256 = "11r98mdxy833kcnywlsjrfaqhax7m3b6yhb56072qvr30rpn52fj";
+ name = "qtcanvas3d-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtcharts = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtcharts-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1vri3f7wyg84w6j84452g8h2p7sk7k01r0xszpn4klv7hi52rkhj";
+ name = "qtcharts-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtconnectivity = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtconnectivity-everywhere-src-5.10.0.tar.xz";
+ sha256 = "19k9n6gzrbg0sbgyhhcl5gv0d4b2gjwmz5966gn6b424fblf4grf";
+ name = "qtconnectivity-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtdatavis3d = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtdatavis3d-everywhere-src-5.10.0.tar.xz";
+ sha256 = "06363x449k7wkqrd7c0y6b5vqlpwssnkl0g5s1bhp8lkl3bw81lj";
+ name = "qtdatavis3d-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtdeclarative = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtdeclarative-everywhere-src-5.10.0.tar.xz";
+ sha256 = "07kicxzbwiqwkg1x2k6447rwzvzn31cv1yyggc1m8r84lny4vjsw";
+ name = "qtdeclarative-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtdoc = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtdoc-everywhere-src-5.10.0.tar.xz";
+ sha256 = "01z4ikqrnnx9mzf5pvk4i2lqks4xai32fs9qqbqnsp0qrrcb1jfn";
+ name = "qtdoc-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtgamepad = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtgamepad-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1rl77rsfgs69cdv75nfjp9w66mndwi211wix5cwl46d7i3wm0xak";
+ name = "qtgamepad-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtgraphicaleffects = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtgraphicaleffects-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0c2y0ixxncn5xslpxciigq1gfaxd3n7wkcf14k4iy5i15w8nkfcp";
+ name = "qtgraphicaleffects-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtimageformats = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtimageformats-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1z7lnw85apzf6ph3dgnbb6py17qzpgww92kz31n6vbv5z62bigwi";
+ name = "qtimageformats-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtlocation = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtlocation-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1iw5m9v5p6l6mivjvj7g1macpqf2n21mg4wg0hza36dwrz3wwkfq";
+ name = "qtlocation-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtmacextras = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtmacextras-everywhere-src-5.10.0.tar.xz";
+ sha256 = "08n8na36j9c15hvicqfs7h915m2av5xd5v0azf7660z0q9lk9zb3";
+ name = "qtmacextras-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtmultimedia = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtmultimedia-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0vw0i5jgn4q63g5ijwwrb6835qdaxcw7sfcjffbqfbdwqgyk70q0";
+ name = "qtmultimedia-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtnetworkauth = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtnetworkauth-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1lnqi1qpy9j5pi2lcmdihf81lspxv6hgdg5jmbqqdqxwzblgpnpc";
+ name = "qtnetworkauth-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtpurchasing = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtpurchasing-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0mkxslc8qc6sclpngllby3bb86qq5csrsz0xrc14nwmbkhwksxwc";
+ name = "qtpurchasing-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtquickcontrols = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtquickcontrols-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0ab19raip9828br21qqaglr4y0kqmxix882r13sfxlnm4ivyycx1";
+ name = "qtquickcontrols-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtquickcontrols2 = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtquickcontrols2-everywhere-src-5.10.0.tar.xz";
+ sha256 = "18d1b5aivaqgs1px61glkyclkky60xd7yzy1vwa1f89sg8j711w1";
+ name = "qtquickcontrols2-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtremoteobjects = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtremoteobjects-everywhere-src-5.10.0.tar.xz";
+ sha256 = "01bf1ykqxb4d8wz58vxy15yj4jsaqhi258k05dhy7ygdvfgscdnz";
+ name = "qtremoteobjects-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtscript = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtscript-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1z6a14x9yj0p2znc0vny8y4zkdvm5fp42rnisnf9rynakkqg5wkc";
+ name = "qtscript-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtscxml = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtscxml-everywhere-src-5.10.0.tar.xz";
+ sha256 = "142qysd5s706r62gap62s89xm7334i1ys29dqsp09av9n7b1kfsb";
+ name = "qtscxml-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtsensors = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtsensors-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0w9rzqc0hva4521i5j298lrsvys3jqddmqd80cxj9nsvnapwb66d";
+ name = "qtsensors-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtserialbus = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtserialbus-everywhere-src-5.10.0.tar.xz";
+ sha256 = "06rr0191zy5yxqzxiv0c6dvshncjg8kdc33lszk41pajv624fn9z";
+ name = "qtserialbus-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtserialport = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtserialport-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0mqlhdp20jl6agv58mszznsikmi1dflhalkpfbgpiafjzzczx075";
+ name = "qtserialport-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtspeech = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtspeech-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1hashidb33f1215f0azjby1lh8iw7v2bvxp08mqvdk02jld9w5br";
+ name = "qtspeech-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtsvg = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtsvg-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1c77wnpzjz4wwic5if876y5v1n44v2g2nhjmcs25cc8awz5afaja";
+ name = "qtsvg-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qttools = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qttools-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0cpybii2yznk6gwaa2cz83rk3cpzzm6l4wvn4n2xwdbrgdsdrx8z";
+ name = "qttools-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qttranslations = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qttranslations-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1gmrisf08nsrni7fyjlz5ggfgfzzkjpq3g7l2hc6vq5g04vbskgc";
+ name = "qttranslations-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtvirtualkeyboard = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtvirtualkeyboard-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0mqb9sgvq7djd2lz4q4p6p9f0c23cfhk447zx4axvv1mldjxsb9c";
+ name = "qtvirtualkeyboard-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtwayland = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtwayland-everywhere-src-5.10.0.tar.xz";
+ sha256 = "14sb0227rzqzf5z8dz8b9nzkk5rwq6hrfxifz603iy4mdijzjmsn";
+ name = "qtwayland-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtwebchannel = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtwebchannel-everywhere-src-5.10.0.tar.xz";
+ sha256 = "18rml5xyb9chz8wrfamsgx4z32kkjbk1rc47ynvhn49mcbf2897j";
+ name = "qtwebchannel-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtwebengine = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtwebengine-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1yb7jpydxg0dwdrx0iv7i5dq4wb9ld1iff8zpjdj8yl4xy4mkgx8";
+ name = "qtwebengine-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtwebglplugin = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtwebglplugin-everywhere-src-5.10.0.tar.xz";
+ sha256 = "0hgwb5lll3275knnj3ms04y1n0i6gph9kac2246ixmcq8sc7a2k7";
+ name = "qtwebglplugin-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtwebsockets = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtwebsockets-everywhere-src-5.10.0.tar.xz";
+ sha256 = "00wlyhw7h2axyhinksfm912jfa3n73szxdccz5dlir8742i0zaqp";
+ name = "qtwebsockets-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtwebview = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtwebview-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1955fkc7a22d7a0y2n7kz7r1md56v2s5qvyb3h68szs60zjnk3xa";
+ name = "qtwebview-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtwinextras = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtwinextras-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1mx5qihmh3awqcr9k3z2chxz8273bi5ha90v7f4fqr2vk3g6w4yd";
+ name = "qtwinextras-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtx11extras = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtx11extras-everywhere-src-5.10.0.tar.xz";
+ sha256 = "11jp0a40jqwcdq7isyip4f4mq2d58c9fx1kvg9g71m92n52ffyfb";
+ name = "qtx11extras-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtxmlpatterns = {
+ version = "5.10.0";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.10/5.10.0/submodules/qtxmlpatterns-everywhere-src-5.10.0.tar.xz";
+ sha256 = "1hq3sbimbhaiw570d2cd84jhki0n2jw2x2s7iq92m53y4akbr2mh";
+ name = "qtxmlpatterns-everywhere-src-5.10.0.tar.xz";
+ };
+ };
+ qtwebkit = {
+ version = "5.9.1";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.9/5.9.1/submodules/qtwebkit-opensource-src-5.9.1.tar.xz";
+ sha256 = "1ksjn1vjbfhdm4y4rg08ag4krk87ahp7qcdcpwll42l0rnz61998";
+ name = "qtwebkit-opensource-src-5.9.1.tar.xz";
+ };
+ };
+ qtwebkit-examples = {
+ version = "5.9.1";
+ src = fetchurl {
+ url = "${mirror}/official_releases/qt/5.9/5.9.1/submodules/qtwebkit-examples-opensource-src-5.9.1.tar.xz";
+ sha256 = "1l2l7ycgqql6rf4gx6sjhsqjapdhvy6vxaxssax3l938nkk4vkp4";
+ name = "qtwebkit-examples-opensource-src-5.9.1.tar.xz";
+ };
+ };
+}
diff --git a/pkgs/development/libraries/qt-5/5.6/default.nix b/pkgs/development/libraries/qt-5/5.6/default.nix
index 7930bd909aa..1200884a30c 100644
--- a/pkgs/development/libraries/qt-5/5.6/default.nix
+++ b/pkgs/development/libraries/qt-5/5.6/default.nix
@@ -33,7 +33,7 @@ existing packages here and modify it as necessary.
# options
developerBuild ? false,
decryptSslTraffic ? false,
- debug ? null,
+ debug ? false,
}:
with stdenv.lib;
@@ -51,8 +51,8 @@ let
qtscript = [ ./qtscript.patch ];
qtserialport = [ ./qtserialport.patch ];
qttools = [ ./qttools.patch ];
- qtwebengine =
- optional stdenv.needsPax ./qtwebengine-paxmark-mksnapshot.patch;
+ qtwebengine = [ ./qtwebengine-seccomp.patch ]
+ ++ optional stdenv.needsPax ./qtwebengine-paxmark-mksnapshot.patch;
qtwebkit = [ ./qtwebkit.patch ];
};
diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase.patch b/pkgs/development/libraries/qt-5/5.6/qtbase.patch
index 6bdf774e15d..d8322cbc199 100644
--- a/pkgs/development/libraries/qt-5/5.6/qtbase.patch
+++ b/pkgs/development/libraries/qt-5/5.6/qtbase.patch
@@ -1,5 +1,5 @@
diff --git a/mkspecs/features/create_cmake.prf b/mkspecs/features/create_cmake.prf
-index 11fb52a0b1..a4cca1fdcb 100644
+index 11fb52a0b1..614fdbb046 100644
--- a/mkspecs/features/create_cmake.prf
+++ b/mkspecs/features/create_cmake.prf
@@ -21,7 +21,7 @@ load(cmake_functions)
@@ -35,7 +35,7 @@ index 11fb52a0b1..a4cca1fdcb 100644
- # installed in $${CMAKE_LIB_DIR}/cmake/Qt5$${CMAKE_MODULE_NAME}
- CMAKE_RELATIVE_INSTALL_DIR = "$${CMAKE_RELATIVE_INSTALL_LIBS_DIR}../../"
-}
-+CMAKE_LIB_DIR = $$NIX_OUTPUT_DEV/lib/
++CMAKE_LIB_DIR = $$NIX_OUTPUT_OUT/lib/
+CMAKE_LIB_DIR_IS_ABSOLUTE = True
-CMAKE_BIN_DIR = $$cmakeRelativePath($$[QT_HOST_BINS], $$[QT_INSTALL_PREFIX])
@@ -64,7 +64,7 @@ index 11fb52a0b1..a4cca1fdcb 100644
- CMAKE_DLL_DIR = $$CMAKE_LIB_DIR
- CMAKE_DLL_DIR_IS_ABSOLUTE = $$CMAKE_LIB_DIR_IS_ABSOLUTE
-}
-+CMAKE_DLL_DIR = $$NIX_OUTPUT_DEV/lib/
++CMAKE_DLL_DIR = $$NIX_OUTPUT_OUT/lib/
+CMAKE_DLL_DIR_IS_ABSOLUTE = True
static|staticlib:CMAKE_STATIC_TYPE = true
@@ -628,7 +628,7 @@ index 1d947159e2..b36865fc48 100644
set_target_properties(Qt5::qdbusxml2cpp PROPERTIES
diff --git a/src/gui/Qt5GuiConfigExtras.cmake.in b/src/gui/Qt5GuiConfigExtras.cmake.in
-index 07869efd7d..37b95d1b6b 100644
+index 07869efd7d..fb4183bada 100644
--- a/src/gui/Qt5GuiConfigExtras.cmake.in
+++ b/src/gui/Qt5GuiConfigExtras.cmake.in
@@ -2,7 +2,7 @@
@@ -652,7 +652,7 @@ index 07869efd7d..37b95d1b6b 100644
!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
- set(imported_implib \"${_qt5Gui_install_prefix}/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
-+ set(imported_implib \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
++ set(imported_implib \"$$NIX_OUTPUT_OUT/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
!!ELSE
set(imported_implib \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
!!ENDIF
@@ -758,6 +758,28 @@ index 4646ced954..ff3111f393 100644
xcursorFound = xcursorLib.load();
}
if (xcursorFound) {
+diff --git a/src/testlib/qtestassert.h b/src/testlib/qtestassert.h
+index ca3e02ca06..28dd73d772 100644
+--- a/src/testlib/qtestassert.h
++++ b/src/testlib/qtestassert.h
+@@ -38,10 +38,13 @@
+
+ QT_BEGIN_NAMESPACE
+
+-
+-#define QTEST_ASSERT(cond) do { if (!(cond)) qt_assert(#cond,__FILE__,__LINE__); } while (0)
+-
+-#define QTEST_ASSERT_X(cond, where, what) do { if (!(cond)) qt_assert_x(where, what,__FILE__,__LINE__); } while (0)
++#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
++#define QTEST_ASSERT(cond) do { } while ((false) && (cond))
++#define QTEST_ASSERT_X(cond, where, what) do { } while ((false) && (cond))
++#else
++#define QTEST_ASSERT(cond) do { if (!(cond)) qt_assert(#cond,__FILE__,__LINE__); } while (false)
++#define QTEST_ASSERT_X(cond, where, what) do { if (!(cond)) qt_assert_x(where, what,__FILE__,__LINE__); } while (false)
++#endif
+
+ QT_END_NAMESPACE
+
diff --git a/src/widgets/Qt5WidgetsConfigExtras.cmake.in b/src/widgets/Qt5WidgetsConfigExtras.cmake.in
index 99d87e2e46..a4eab2aa72 100644
--- a/src/widgets/Qt5WidgetsConfigExtras.cmake.in
diff --git a/pkgs/development/libraries/qt-5/5.6/qtwebengine-seccomp.patch b/pkgs/development/libraries/qt-5/5.6/qtwebengine-seccomp.patch
new file mode 100644
index 00000000000..bf6af805982
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/5.6/qtwebengine-seccomp.patch
@@ -0,0 +1,24 @@
+Backported to Qt 5.6 for epoll_pwait fix on newer glibc
+Part of upstream Chromium's 4e8083b4ab953ba298aedfc4e79d464be15e4012
+Review URL: https://codereview.chromium.org/1613883002
+---
+diff --git a/3rdparty/chromium/sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc b/3rdparty/chromium/sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc
+index 10278dc5fc9b..b30b3e6acef6 100644
+--- a/src/3rdparty/chromium/sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc
++++ b/src/3rdparty/chromium/sandbox/linux/seccomp-bpf-helpers/syscall_sets.cc
+@@ -414,6 +414,7 @@ bool SyscallSets::IsAllowedEpoll(int sysno) {
+ case __NR_epoll_create:
+ case __NR_epoll_wait:
+ #endif
++ case __NR_epoll_pwait:
+ case __NR_epoll_create1:
+ case __NR_epoll_ctl:
+ return true;
+@@ -421,7 +422,6 @@ bool SyscallSets::IsAllowedEpoll(int sysno) {
+ #if defined(__x86_64__)
+ case __NR_epoll_ctl_old:
+ #endif
+- case __NR_epoll_pwait:
+ #if defined(__x86_64__)
+ case __NR_epoll_wait_old:
+ #endif
diff --git a/pkgs/development/libraries/qt-5/5.9/default.nix b/pkgs/development/libraries/qt-5/5.9/default.nix
index 0582a9f3f82..9afa818c36e 100644
--- a/pkgs/development/libraries/qt-5/5.9/default.nix
+++ b/pkgs/development/libraries/qt-5/5.9/default.nix
@@ -24,7 +24,7 @@ top-level attribute to `top-level/all-packages.nix`.
# options
developerBuild ? false,
decryptSslTraffic ? false,
- debug ? null,
+ debug ? false,
}:
with stdenv.lib;
@@ -91,6 +91,7 @@ let
qtsvg = callPackage ../modules/qtsvg.nix {};
qttools = callPackage ../modules/qttools.nix {};
qttranslations = callPackage ../modules/qttranslations.nix {};
+ qtvirtualkeyboard = callPackage ../modules/qtvirtualkeyboard.nix {};
qtwayland = callPackage ../modules/qtwayland.nix {};
qtwebchannel = callPackage ../modules/qtwebchannel.nix {};
qtwebengine = callPackage ../modules/qtwebengine.nix {};
@@ -104,7 +105,7 @@ let
qtcharts qtconnectivity qtdeclarative qtdoc qtgraphicaleffects
qtimageformats qtlocation qtmultimedia qtquickcontrols qtscript
qtsensors qtserialport qtsvg qttools qttranslations qtwebsockets
- qtx11extras qtxmlpatterns
+ qtx11extras qtxmlpatterns qtvirtualkeyboard
] ++ optional (!stdenv.isDarwin) qtwayland
++ optional (stdenv.isDarwin) qtmacextras);
diff --git a/pkgs/development/libraries/qt-5/5.9/qtbase.patch b/pkgs/development/libraries/qt-5/5.9/qtbase.patch
index 69e389a5a6d..086ddf4fe3e 100644
--- a/pkgs/development/libraries/qt-5/5.9/qtbase.patch
+++ b/pkgs/development/libraries/qt-5/5.9/qtbase.patch
@@ -12,7 +12,7 @@ index 5208379f9a..92fe29a0ac 100644
QMAKE_LFLAGS_REL_RPATH =
diff --git a/mkspecs/features/create_cmake.prf b/mkspecs/features/create_cmake.prf
-index bb5083c925..da8e2cb386 100644
+index bb5083c925..77034f9bb6 100644
--- a/mkspecs/features/create_cmake.prf
+++ b/mkspecs/features/create_cmake.prf
@@ -21,7 +21,7 @@ load(cmake_functions)
@@ -48,7 +48,7 @@ index bb5083c925..da8e2cb386 100644
- # installed in $${CMAKE_LIB_DIR}/cmake/Qt5$${CMAKE_MODULE_NAME}
- CMAKE_RELATIVE_INSTALL_DIR = "$${CMAKE_RELATIVE_INSTALL_LIBS_DIR}../../"
-}
-+CMAKE_LIB_DIR = $$NIX_OUTPUT_DEV/lib/
++CMAKE_LIB_DIR = $$NIX_OUTPUT_OUT/lib/
+CMAKE_LIB_DIR_IS_ABSOLUTE = True
-CMAKE_BIN_DIR = $$cmakeRelativePath($$[QT_HOST_BINS], $$[QT_INSTALL_PREFIX])
@@ -77,7 +77,7 @@ index bb5083c925..da8e2cb386 100644
- CMAKE_DLL_DIR = $$CMAKE_LIB_DIR
- CMAKE_DLL_DIR_IS_ABSOLUTE = $$CMAKE_LIB_DIR_IS_ABSOLUTE
-}
-+CMAKE_DLL_DIR = $$NIX_OUTPUT_DEV/lib/
++CMAKE_DLL_DIR = $$NIX_OUTPUT_OUT/lib/
+CMAKE_DLL_DIR_IS_ABSOLUTE = True
static|staticlib:CMAKE_STATIC_TYPE = true
@@ -432,13 +432,13 @@ index e645ba5803..a0e5c68b7e 100644
-
-QMAKE_XCODE_LIBRARY_SUFFIX = $$qtPlatformTargetSuffix()
diff --git a/mkspecs/features/mac/default_pre.prf b/mkspecs/features/mac/default_pre.prf
-index 44636f2288..61ed486a76 100644
+index 44636f2288..3b01424e67 100644
--- a/mkspecs/features/mac/default_pre.prf
+++ b/mkspecs/features/mac/default_pre.prf
-@@ -1,56 +1,3 @@
+@@ -1,56 +1,2 @@
CONFIG = asset_catalogs rez $$CONFIG
load(default_pre)
-
+-
-isEmpty(QMAKE_XCODE_DEVELOPER_PATH) {
- # Get path of Xcode's Developer directory
- QMAKE_XCODE_DEVELOPER_PATH = $$system("/usr/bin/xcode-select --print-path 2>/dev/null")
@@ -493,11 +493,11 @@ index 44636f2288..61ed486a76 100644
-# at build time, depending on the current Xcode SDK and configuration.
-QMAKE_XCODE_LIBRARY_SUFFIX_SETTING = QT_LIBRARY_SUFFIX
diff --git a/mkspecs/features/mac/sdk.prf b/mkspecs/features/mac/sdk.prf
-index 3f6dc076ca..8b13789179 100644
+index 3f6dc076ca..e69de29bb2 100644
--- a/mkspecs/features/mac/sdk.prf
+++ b/mkspecs/features/mac/sdk.prf
-@@ -1,58 +1 @@
-
+@@ -1,58 +0,0 @@
+-
-isEmpty(QMAKE_MAC_SDK): \
- error("QMAKE_MAC_SDK must be set when using CONFIG += sdk.")
-
@@ -676,30 +676,18 @@ index 72dde61a40..f891a2baed 100644
INSTALLS += inst_qch_docs
diff --git a/mkspecs/features/qt_example_installs.prf b/mkspecs/features/qt_example_installs.prf
-index 668669e4cd..30f7fbac41 100644
+index 668669e4cd..eb4840a0aa 100644
--- a/mkspecs/features/qt_example_installs.prf
+++ b/mkspecs/features/qt_example_installs.prf
-@@ -77,13 +77,13 @@ for(extra, extras): \
- # Just for Qt Creator
- OTHER_FILES += $$sourcefiles
-
--sourcefiles += \
-- $$_PRO_FILE_ $$RC_FILE $$DEF_FILE \
-- $$SOURCES $$HEADERS $$FORMS $$RESOURCES $$TRANSLATIONS \
-- $$DBUS_ADAPTORS $$DBUS_INTERFACES
--addInstallFiles(sources.files, $$sourcefiles)
+@@ -82,7 +82,7 @@ sourcefiles += \
+ $$SOURCES $$HEADERS $$FORMS $$RESOURCES $$TRANSLATIONS \
+ $$DBUS_ADAPTORS $$DBUS_INTERFACES
+ addInstallFiles(sources.files, $$sourcefiles)
-sources.path = $$[QT_INSTALL_EXAMPLES]/$$probase
--INSTALLS += sources
-+ sourcefiles += \
-+ $$_PRO_FILE_ $$RC_FILE $$DEF_FILE \
-+ $$SOURCES $$HEADERS $$FORMS $$RESOURCES $$TRANSLATIONS \
-+ $$DBUS_ADAPTORS $$DBUS_INTERFACES
-+ addInstallFiles(sources.files, $$sourcefiles)
-+ sources.path = $$NIX_OUTPUT_DEV/share/examples/$$probase
-+ INSTALLS += sources
++sources.path = $$NIX_OUTPUT_DEV/share/examples/$$probase
+ INSTALLS += sources
check_examples {
- srcfiles = $$sources.files
diff --git a/mkspecs/features/qt_functions.prf b/mkspecs/features/qt_functions.prf
index 1903e509c8..ae7b585989 100644
--- a/mkspecs/features/qt_functions.prf
@@ -952,7 +940,7 @@ index 1d947159e2..b36865fc48 100644
set_target_properties(Qt5::qdbusxml2cpp PROPERTIES
diff --git a/src/gui/Qt5GuiConfigExtras.cmake.in b/src/gui/Qt5GuiConfigExtras.cmake.in
-index 07869efd7d..37b95d1b6b 100644
+index 07869efd7d..fb4183bada 100644
--- a/src/gui/Qt5GuiConfigExtras.cmake.in
+++ b/src/gui/Qt5GuiConfigExtras.cmake.in
@@ -2,7 +2,7 @@
@@ -976,7 +964,7 @@ index 07869efd7d..37b95d1b6b 100644
!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE)
- set(imported_implib \"${_qt5Gui_install_prefix}/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
-+ set(imported_implib \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
++ set(imported_implib \"$$NIX_OUTPUT_OUT/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
!!ELSE
set(imported_implib \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\")
!!ENDIF
@@ -1028,28 +1016,6 @@ index c92d8fc3f8..6008063bcf 100644
{
// specific curves requested, but not possible to set -> error
sslContext->errorStr = msgErrorSettingEllipticCurves(QSslSocket::tr("OpenSSL version too old, need at least v1.0.2"));
-diff --git a/src/plugins/bearer/corewlan/qcorewlanengine.mm b/src/plugins/bearer/corewlan/qcorewlanengine.mm
-index 341d3bccf2..3368234c26 100644
---- a/src/plugins/bearer/corewlan/qcorewlanengine.mm
-+++ b/src/plugins/bearer/corewlan/qcorewlanengine.mm
-@@ -287,7 +287,7 @@ void QScanThread::getUserConfigurations()
- QMacAutoReleasePool pool;
- userProfiles.clear();
-
-- NSArray *wifiInterfaces = [CWWiFiClient interfaceNames];
-+ NSArray *wifiInterfaces = [CWWiFiClient interfaceNames];
- for (NSString *ifName in wifiInterfaces) {
-
- CWInterface *wifiInterface = [[CWWiFiClient sharedWiFiClient] interfaceWithName:ifName];
-@@ -602,7 +602,7 @@ void QCoreWlanEngine::doRequestUpdate()
-
- QMacAutoReleasePool pool;
-
-- NSArray *wifiInterfaces = [CWWiFiClient interfaceNames];
-+ NSArray *wifiInterfaces = [CWWiFiClient interfaceNames];
- for (NSString *ifName in wifiInterfaces) {
- scanThread->interfaceName = QString::fromNSString(ifName);
- scanThread->start();
diff --git a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
index b5a0a5bbeb..6c20305f4d 100644
--- a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp
@@ -1068,19 +1034,6 @@ index b5a0a5bbeb..6c20305f4d 100644
}
QString TableGenerator::findComposeFile()
-diff --git a/src/plugins/platforms/cocoa/qcocoawindow.mm b/src/plugins/platforms/cocoa/qcocoawindow.mm
-index 5cd4beb4f0..84919e6d6a 100644
---- a/src/plugins/platforms/cocoa/qcocoawindow.mm
-+++ b/src/plugins/platforms/cocoa/qcocoawindow.mm
-@@ -320,7 +320,7 @@ static void qt_closePopups()
- + (void)applicationActivationChanged:(NSNotification*)notification
- {
- const id sender = self;
-- NSEnumerator *windowEnumerator = nullptr;
-+ NSEnumerator *windowEnumerator = nullptr;
- NSApplication *application = [NSApplication sharedApplication];
-
- #if QT_MACOS_PLATFORM_SDK_EQUAL_OR_ABOVE(__MAC_10_12)
diff --git a/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp b/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
index e2e573f0e1..1c8289f81e 100644
--- a/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp
@@ -1153,6 +1106,26 @@ index c4cd66c33b..b6f2691587 100644
return 0;
}
+diff --git a/src/testlib/qtestassert.h b/src/testlib/qtestassert.h
+index 6498ea84ef..d821ced7fc 100644
+--- a/src/testlib/qtestassert.h
++++ b/src/testlib/qtestassert.h
+@@ -44,10 +44,13 @@
+
+ QT_BEGIN_NAMESPACE
+
+-
++#if defined(QT_NO_DEBUG) && !defined(QT_FORCE_ASSERTS)
++#define QTEST_ASSERT(cond) do { } while ((false) && (cond))
++#define QTEST_ASSERT_X(cond, where, what) do { } while ((false) && (cond))
++#else
+ #define QTEST_ASSERT(cond) do { if (!(cond)) qt_assert(#cond,__FILE__,__LINE__); } while (false)
+-
+ #define QTEST_ASSERT_X(cond, where, what) do { if (!(cond)) qt_assert_x(where, what,__FILE__,__LINE__); } while (false)
++#endif
+
+ QT_END_NAMESPACE
+
diff --git a/src/widgets/Qt5WidgetsConfigExtras.cmake.in b/src/widgets/Qt5WidgetsConfigExtras.cmake.in
index 99d87e2e46..a4eab2aa72 100644
--- a/src/widgets/Qt5WidgetsConfigExtras.cmake.in
diff --git a/pkgs/development/libraries/qt-5/hooks/fix-qt-module-paths.sh b/pkgs/development/libraries/qt-5/hooks/fix-qt-module-paths.sh
index 916981b5299..33682f6f3c6 100644
--- a/pkgs/development/libraries/qt-5/hooks/fix-qt-module-paths.sh
+++ b/pkgs/development/libraries/qt-5/hooks/fix-qt-module-paths.sh
@@ -15,8 +15,8 @@ fixQtModulePaths () {
if grep -q '\$\$QT_MODULE_' "${pr:?}"; then
echo "fixQtModulePaths: Fixing module paths in \`${pr:?}'..."
sed -i "${pr:?}" \
- -e "s|\\\$\\\$QT_MODULE_LIB_BASE|$dev/lib|g" \
- -e "s|\\\$\\\$QT_MODULE_HOST_LIB_BASE|$dev/lib|g" \
+ -e "s|\\\$\\\$QT_MODULE_LIB_BASE|$lib/lib|g" \
+ -e "s|\\\$\\\$QT_MODULE_HOST_LIB_BASE|$lib/lib|g" \
-e "s|\\\$\\\$QT_MODULE_INCLUDE_BASE|$dev/include|g" \
-e "s|\\\$\\\$QT_MODULE_BIN_BASE|$dev/bin|g"
fi
@@ -27,13 +27,6 @@ fixQtModulePaths () {
echo "fixQtModulePaths: Warning: \`$dir' does not exist"
fi
- if [ "z$dev" != "z$lib" ]; then
- if [ -d "$lib/lib" ]; then
- mkdir -p "$dev/lib"
- lndir -silent "$lib/lib" "$dev/lib"
- fi
- fi
-
if [ "z$bin" != "z$dev" ]; then
if [ -d "$bin/bin" ]; then
mkdir -p "$dev/bin"
diff --git a/pkgs/development/libraries/qt-5/hooks/fix-qt-static-libs.sh b/pkgs/development/libraries/qt-5/hooks/fix-qt-static-libs.sh
deleted file mode 100644
index 2a20e77e7ba..00000000000
--- a/pkgs/development/libraries/qt-5/hooks/fix-qt-static-libs.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-# fixQtStaticLibs
-#
-# Usage: fixQtStaticLibs _lib_ _dev_
-#
-# Find static Qt libraries in output _lib_ and move them to the corresponding
-# path in output _dev_. Any QMake library definitions (*.prl files) are also
-# moved and library paths are patched.
-#
-fixQtStaticLibs() {
- local lib="$1"
- local dev="$2"
-
- pushd "$lib"
- if [ -d "lib" ]; then
- find lib \( -name '*.a' -o -name '*.la' -o -name '*.prl' \) -print0 | \
- while read -r -d $'\0' file; do
- mkdir -p "$dev/$(dirname "$file")"
- mv "$lib/$file" "$dev/$file"
- done
- fi
- popd
-
- if [ -d "$dev" ]; then
- find "$dev" -name '*.prl' | while read prl; do
- echo "fixQtStaticLibs: Fixing built-in paths in \`$prl'..."
- sed -i "$prl" \
- -e '/^QMAKE_PRL_BUILD_DIR =/d' \
- -e '/^QMAKE_PRO_INPUT =/d' \
- -e "s|-L\\\$\\\$NIX_OUTPUT_OUT/lib|-L$lib/lib -L$dev/lib|g"
- done
- fi
-}
diff --git a/pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh b/pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh
index 8ec7eeda8ae..3a558153988 100644
--- a/pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh
+++ b/pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh
@@ -4,7 +4,6 @@ qtDocPrefix=@qtDocPrefix@
. @fix_qt_builtin_paths@
. @fix_qt_module_paths@
-. @fix_qt_static_libs@
providesQtRuntime() {
[ -d "$1/$qtPluginPrefix" ] || [ -d "$1/$qtQmlPrefix" ]
@@ -42,11 +41,7 @@ qtEnvHook() {
propagatedUserEnvPkgs+=" $1"
fi
}
-if [ "$crossConfig" ]; then
- crossEnvHooks+=(qtEnvHook)
-else
- envHooks+=(qtEnvHook)
-fi
+envHostTargetHooks+=(qtEnvHook)
postPatchMkspecs() {
local bin="${!outputBin}"
@@ -67,12 +62,3 @@ postPatchMkspecs() {
if [ -z "$dontPatchMkspecs" ]; then
postPhases="${postPhases}${postPhases:+ }postPatchMkspecs"
fi
-
-postMoveQtStaticLibs() {
- if [ "z${!outputLib}" != "z${!outputDev}" ]; then
- fixQtStaticLibs "${!outputLib}" "${!outputDev}"
- fi
-}
-if [ -z "$dontMoveQtStaticLibs" ]; then
- postPhases="${postPhases}${postPhases:+ }postMoveQtStaticLibs"
-fi
diff --git a/pkgs/development/libraries/qt-5/mkDerivation.nix b/pkgs/development/libraries/qt-5/mkDerivation.nix
index 385ebeacd8f..739c9b4a160 100644
--- a/pkgs/development/libraries/qt-5/mkDerivation.nix
+++ b/pkgs/development/libraries/qt-5/mkDerivation.nix
@@ -11,15 +11,18 @@ let
qmakeFlags =
(args.qmakeFlags or [])
- ++ optional (debug != null)
- (if debug then "CONFIG+=debug" else "CONFIG+=release");
+ ++ [ ("CONFIG+=" + (if debug then "debug" else "release")) ];
+
+ NIX_CFLAGS_COMPILE =
+ optional (!debug) "-DQT_NO_DEBUG"
+ ++ lib.toList (args.NIX_CFLAGS_COMPILE or []);
cmakeFlags =
(args.cmakeFlags or [])
- ++ [ "-DBUILD_TESTING=OFF" ]
- ++ optional (debug != null)
- (if debug then "-DCMAKE_BUILD_TYPE=Debug"
- else "-DCMAKE_BUILD_TYPE=Release");
+ ++ [
+ "-DBUILD_TESTING=OFF"
+ ("-DCMAKE_BUILD_TYPE=" + (if debug then "Debug" else "Release"))
+ ];
enableParallelBuilding = args.enableParallelBuilding or true;
diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix
index 172b20bc51b..aa4449504bb 100644
--- a/pkgs/development/libraries/qt-5/modules/qtbase.nix
+++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix
@@ -80,7 +80,7 @@ stdenv.mkDerivation {
)
++ lib.optional developerBuild gdb
++ lib.optional (cups != null) cups
- ++ lib.optional (mysql != null) mysql.lib
+ ++ lib.optional (mysql != null) mysql.connector-c
++ lib.optional (postgresql != null) postgresql;
nativeBuildInputs =
@@ -93,11 +93,9 @@ stdenv.mkDerivation {
inherit patches;
- fix_qt_static_libs = ../hooks/fix-qt-static-libs.sh;
fix_qt_builtin_paths = ../hooks/fix-qt-builtin-paths.sh;
fix_qt_module_paths = ../hooks/fix-qt-module-paths.sh;
preHook = ''
- . "$fix_qt_static_libs"
. "$fix_qt_builtin_paths"
. "$fix_qt_module_paths"
. ${../hooks/move-qt-dev-tools.sh}
@@ -363,11 +361,6 @@ stdenv.mkDerivation {
fixQtBuiltinPaths "''${!outputDev}" '*.pr?'
''
- # Move static libraries and QMake library definitions into $dev.
- + ''
- fixQtStaticLibs "''${!outputLib}" "''${!outputDev}"
- ''
-
# Move development tools to $dev
+ ''
moveQtDevTools
diff --git a/pkgs/development/libraries/qt-5/modules/qtvirtualkeyboard.nix b/pkgs/development/libraries/qt-5/modules/qtvirtualkeyboard.nix
new file mode 100644
index 00000000000..2ba720c8eed
--- /dev/null
+++ b/pkgs/development/libraries/qt-5/modules/qtvirtualkeyboard.nix
@@ -0,0 +1,6 @@
+{ qtModule, qtbase, qtdeclarative, qtsvg, hunspell }:
+
+qtModule {
+ name = "qtvirtualkeyboard";
+ qtInputs = [ qtbase qtdeclarative qtsvg hunspell ];
+}
diff --git a/pkgs/development/libraries/qtstyleplugin-kvantum-qt4/default.nix b/pkgs/development/libraries/qtstyleplugin-kvantum-qt4/default.nix
new file mode 100644
index 00000000000..2f0e39eb5c9
--- /dev/null
+++ b/pkgs/development/libraries/qtstyleplugin-kvantum-qt4/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, fetchFromGitHub, qmake4Hook , qt4, libX11, libXext }:
+
+stdenv.mkDerivation rec {
+ name = "qtstyleplugin-kvantum-qt4-${version}";
+ version = "0.10.4";
+
+ src = fetchFromGitHub {
+ owner = "tsujan";
+ repo = "Kvantum";
+ rev = "0527bb03f2252269fd382e11181a34ca72c96b4b";
+ sha256 = "0ky44s1fgqxraywagx1mv07yz76ppgiz3prq447db78wkwqg2d8p";
+ };
+
+ nativeBuildInputs = [ qmake4Hook ];
+ buildInputs = [ qt4 libX11 libXext ];
+
+ postUnpack = "sourceRoot=\${sourceRoot}/Kvantum";
+
+ buildPhase = ''
+ qmake kvantum.pro
+ make
+ '';
+
+ installPhase = ''
+ mkdir $TMP/kvantum
+ make INSTALL_ROOT="$TMP/kvantum" install
+ mv $TMP/kvantum/usr/ $out
+ mv $TMP/kvantum/${qt4}/lib $out
+ '';
+
+ meta = with stdenv.lib; {
+ description = "SVG-based Qt4 theme engine";
+ homepage = "https://github.com/tsujan/Kvantum";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.bugworm ];
+ };
+}
diff --git a/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix b/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
new file mode 100644
index 00000000000..5085d9bf5ef
--- /dev/null
+++ b/pkgs/development/libraries/qtstyleplugin-kvantum/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, qmake, qtbase, qtsvg, qtx11extras, libX11, libXext, qttools }:
+
+stdenv.mkDerivation rec {
+ name = "qtstyleplugin-kvantum-${version}";
+ version = "0.10.4";
+
+ src = fetchFromGitHub {
+ owner = "tsujan";
+ repo = "Kvantum";
+ rev = "0527bb03f2252269fd382e11181a34ca72c96b4b";
+ sha256 = "0ky44s1fgqxraywagx1mv07yz76ppgiz3prq447db78wkwqg2d8p";
+ };
+
+ nativeBuildInputs = [ qmake qttools ];
+ buildInputs = [ qtbase qtsvg qtx11extras libX11 libXext ];
+
+ postUnpack = "sourceRoot=\${sourceRoot}/Kvantum";
+
+ postInstall= ''
+ mkdir -p $out/$qtPluginPrefix/styles
+ mv $NIX_QT5_TMP/$qtPluginPrefix/styles/libkvantum.so $out/$qtPluginPrefix/styles/libkvantum.so
+ '';
+
+ meta = with stdenv.lib; {
+ description = "SVG-based Qt5 theme engine plus a config tool and extra themes";
+ homepage = "https://github.com/tsujan/Kvantum";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.bugworm ];
+ };
+}
diff --git a/pkgs/development/libraries/rabbitmq-c/default.nix b/pkgs/development/libraries/rabbitmq-c/default.nix
index 0ab9cd1df04..13c0198ba50 100644
--- a/pkgs/development/libraries/rabbitmq-c/default.nix
+++ b/pkgs/development/libraries/rabbitmq-c/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "rabbitmq-c-${version}";
- version = "0.7.1";
+ version = "0.8.0";
src = fetchFromGitHub {
owner = "alanxz";
repo = "rabbitmq-c";
rev = "v${version}";
- sha256 = "084zlir59zc505nxd4m2g9d355m9a8y94gbjaqmjz9kym8lpayd1";
+ sha256 = "0vjh1q3hyzrq1iiddy28vvwpwwn4px00mjc2hqp4zgfpis2xlqbj";
};
buildInputs = [ cmake openssl popt xmlto ];
diff --git a/pkgs/development/libraries/readline/6.3.nix b/pkgs/development/libraries/readline/6.3.nix
index 1183f46b8db..75c25e12d66 100644
--- a/pkgs/development/libraries/readline/6.3.nix
+++ b/pkgs/development/libraries/readline/6.3.nix
@@ -16,6 +16,12 @@ stdenv.mkDerivation rec {
patchFlags = "-p0";
+ configureFlags =
+ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform)
+ [ # This test requires running host code
+ "bash_cv_wcwidth_broken=no"
+ ];
+
patches =
[ ./link-against-ncurses.patch
./no-arch_only-6.3.patch
diff --git a/pkgs/development/libraries/rep-gtk/setup-hook.sh b/pkgs/development/libraries/rep-gtk/setup-hook.sh
index 420d63d6c51..4d875b69330 100644
--- a/pkgs/development/libraries/rep-gtk/setup-hook.sh
+++ b/pkgs/development/libraries/rep-gtk/setup-hook.sh
@@ -2,4 +2,4 @@ addRepDLLoadPath () {
addToSearchPath REP_DL_LOAD_PATH $1/lib/rep
}
-envHooks+=(addRepDLLoadPath)
+addEnvHooks "$hostOffset" addRepDLLoadPath
diff --git a/pkgs/development/libraries/rote/default.nix b/pkgs/development/libraries/rote/default.nix
index 524afd7cf4d..195db9a1685 100644
--- a/pkgs/development/libraries/rote/default.nix
+++ b/pkgs/development/libraries/rote/default.nix
@@ -26,6 +26,5 @@ stdenv.mkDerivation rec {
homepage = http://rote.sourceforge.net/;
license = licenses.lgpl21;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/libraries/science/math/arpack/default.nix b/pkgs/development/libraries/science/math/arpack/default.nix
index fe90d41ccb2..77cb7cf1f2b 100644
--- a/pkgs/development/libraries/science/math/arpack/default.nix
+++ b/pkgs/development/libraries/science/math/arpack/default.nix
@@ -4,22 +4,24 @@
with stdenv.lib;
let
- version = "3.3.0";
+ version = "3.5.0";
in
stdenv.mkDerivation {
name = "arpack-${version}";
src = fetchurl {
url = "https://github.com/opencollab/arpack-ng/archive/${version}.tar.gz";
- sha256 = "1cz53wqzcf6czmcpfb3vb61xi0rn5bwhinczl65hpmbrglg82ndd";
+ sha256 = "0f8jx3fifmj9qdp289zr7r651y1q48k1jya859rqxq62mvis7xsh";
};
nativeBuildInputs = [ autoconf automake gettext libtool ];
buildInputs = [ gfortran openblas ];
+ doCheck = true;
+
BLAS_LIBS = "-L${openblas}/lib -lopenblas";
- FFLAGS = optional openblas.blas64 "-fdefault-integer-8";
+ INTERFACE64 = optional openblas.blas64 "1";
preConfigure = ''
./bootstrap
diff --git a/pkgs/development/libraries/science/math/nccl/default.nix b/pkgs/development/libraries/science/math/nccl/default.nix
new file mode 100644
index 00000000000..c4deccff5b7
--- /dev/null
+++ b/pkgs/development/libraries/science/math/nccl/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchFromGitHub
+, gcc5, eject, cudatoolkit
+}:
+
+stdenv.mkDerivation rec {
+ name = "cudatoolkit-${cudatoolkit.majorVersion}-nccl-${version}";
+ version = "1.3.4-1";
+
+ src = fetchFromGitHub {
+ owner = "NVIDIA";
+ repo = "nccl";
+ rev = "v${version}";
+ sha256 = "0fvnrfn572lc6i2a3xyhbifm53ivcrr46z6cqr3b0bwb1iq79m7q";
+ };
+
+ nativeBuildInputs = [
+ gcc5
+ eject
+ ];
+
+ propagatedBuildInputs = [
+ cudatoolkit
+ ];
+
+ makeFlags = [
+ "PREFIX=$(out)"
+ "CUDA_HOME=${cudatoolkit}"
+ "CUDA_LIB=${cudatoolkit.lib}/lib"
+ ];
+
+ meta = with stdenv.lib; {
+ description = ''
+ NVIDIA Collective Communications Library.
+ Multi-GPU and multi-node collective communication primitives.
+ '';
+ homepage = https://developer.nvidia.com/nccl;
+ license = licenses.bsd3;
+ platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ hyphon81 ];
+ };
+}
diff --git a/pkgs/development/libraries/science/math/openblas/default.nix b/pkgs/development/libraries/science/math/openblas/default.nix
index 82f51bffa8e..42eaf71942e 100644
--- a/pkgs/development/libraries/science/math/openblas/default.nix
+++ b/pkgs/development/libraries/science/math/openblas/default.nix
@@ -12,6 +12,14 @@ let blas64_ = blas64; in
let
# To add support for a new platform, add an element to this set.
configs = {
+ armv6l-linux = {
+ BINARY = "32";
+ TARGET = "ARMV6";
+ DYNAMIC_ARCH = "0";
+ CC = "gcc";
+ USE_OPENMP = "1";
+ };
+
armv7l-linux = {
BINARY = "32";
TARGET = "ARMV7";
diff --git a/pkgs/development/libraries/shibboleth-sp/default.nix b/pkgs/development/libraries/shibboleth-sp/default.nix
index 219cda38bc2..74f861297d1 100644
--- a/pkgs/development/libraries/shibboleth-sp/default.nix
+++ b/pkgs/development/libraries/shibboleth-sp/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "shibboleth-sp-${version}";
- version = "2.6.0";
+ version = "2.6.1";
src = fetchgit {
url = "https://git.shibboleth.net/git/cpp-sp.git";
- rev = "9ebba5c3a16d03769f436e383e4c4cdaa33f5509";
- sha256 = "1b5r4nd098lnjwr2g13f04ycqv5fvbrhpwg6fsdk8xy9cigvfzxj";
+ rev = version;
+ sha256 = "01q13p7gc0janjfml6zs46na8qnval8hc833fk2wrnmi4w9xw4fd";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
diff --git a/pkgs/development/libraries/slib/setup-hook.sh b/pkgs/development/libraries/slib/setup-hook.sh
index 62b72d6dc0a..3c7e91e8188 100644
--- a/pkgs/development/libraries/slib/setup-hook.sh
+++ b/pkgs/development/libraries/slib/setup-hook.sh
@@ -10,4 +10,4 @@ addSlibPath () {
fi
}
-envHooks+=(addSlibPath)
+addEnvHooks "$hostOffset" addSlibPath
diff --git a/pkgs/development/libraries/smpeg2/default.nix b/pkgs/development/libraries/smpeg2/default.nix
index 10386a7b33e..3207bdb3a7f 100644
--- a/pkgs/development/libraries/smpeg2/default.nix
+++ b/pkgs/development/libraries/smpeg2/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchsvn, autoconf, automake, libtool, m4, pkgconfig, makeWrapper, SDL2 }:
+{ stdenv, darwin, fetchsvn, autoconf, automake, libtool, m4, pkgconfig, makeWrapper, SDL2 }:
stdenv.mkDerivation rec {
name = "smpeg2-svn${version}";
@@ -17,7 +17,8 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoconf automake pkgconfig makeWrapper ];
- buildInputs = [ SDL2 ];
+ buildInputs = [ SDL2 ]
+ ++ stdenv.lib.optional stdenv.isDarwin darwin.libobjc;
preConfigure = ''
sh autogen.sh
@@ -37,7 +38,7 @@ stdenv.mkDerivation rec {
homepage = http://icculus.org/smpeg/;
description = "SDL2 MPEG Player Library";
license = licenses.lgpl2;
- platforms = platforms.linux;
+ platforms = platforms.unix;
maintainers = with maintainers; [ orivej ];
};
}
diff --git a/pkgs/development/libraries/speex/default.nix b/pkgs/development/libraries/speex/default.nix
index 602359965f1..173b460a0ab 100644
--- a/pkgs/development/libraries/speex/default.nix
+++ b/pkgs/development/libraries/speex/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
];
meta = with stdenv.lib; {
- homepage = http://www.speex.org/;
+ homepage = https://www.speex.org/;
description = "An Open Source/Free Software patent-free audio compression format designed for speech";
license = licenses.bsd3;
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/taglib/default.nix b/pkgs/development/libraries/taglib/default.nix
index e4d7b426854..67db6e5097d 100644
--- a/pkgs/development/libraries/taglib/default.nix
+++ b/pkgs/development/libraries/taglib/default.nix
@@ -1,4 +1,4 @@
-{stdenv, fetchurl, zlib, cmake}:
+{stdenv, fetchurl, zlib, cmake, fetchpatch}:
stdenv.mkDerivation rec {
name = "taglib-1.11.1";
@@ -8,6 +8,15 @@ stdenv.mkDerivation rec {
sha256 = "0ssjcdjv4qf9liph5ry1kngam1y7zp8fzr9xv4wzzrma22kabldn";
};
+ patches = [
+ (fetchpatch {
+ # https://github.com/taglib/taglib/issues/829
+ name = "CVE-2017-12678.patch";
+ url = "https://github.com/taglib/taglib/commit/eb9ded1206f18.patch";
+ sha256 = "1bvpxsvmlpi3by7myzss9kkpdkv405612n8ff68mw1ambj8h1m90";
+ })
+ ];
+
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ];
diff --git a/pkgs/development/libraries/talloc/default.nix b/pkgs/development/libraries/talloc/default.nix
index 1e7448b6605..8b06e3f2e09 100644
--- a/pkgs/development/libraries/talloc/default.nix
+++ b/pkgs/development/libraries/talloc/default.nix
@@ -3,11 +3,11 @@
}:
stdenv.mkDerivation rec {
- name = "talloc-2.1.8";
+ name = "talloc-2.1.11";
src = fetchurl {
url = "mirror://samba/talloc/${name}.tar.gz";
- sha256 = "0c3ihyb0jd8mhvi7gg2mr5w1zl2habx6jlkbyxzyckad2q8lkl92";
+ sha256 = "1lzfxv2zjxap5snf9ydl1bqgjpz0kgkq7n644f8rkbx0arav77k3";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/libraries/theft/default.nix b/pkgs/development/libraries/theft/default.nix
index a0110c5f22b..2a1180533ce 100644
--- a/pkgs/development/libraries/theft/default.nix
+++ b/pkgs/development/libraries/theft/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
meta = {
description = "A C library for property-based testing";
platforms = stdenv.lib.platforms.linux;
- homepage = "http://github.com/silentbicycle/theft/";
+ homepage = "https://github.com/silentbicycle/theft/";
license = stdenv.lib.licenses.isc;
maintainers = [ stdenv.lib.maintainers.kquick ];
};
diff --git a/pkgs/development/libraries/tntdb/default.nix b/pkgs/development/libraries/tntdb/default.nix
index d11a5c344c9..75a494cfbde 100644
--- a/pkgs/development/libraries/tntdb/default.nix
+++ b/pkgs/development/libraries/tntdb/default.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "0js79dbvkic30bzw1pf26m64vs2ssw2sbj55w1dc0sy69dlv4fh9";
};
- buildInputs = [ cxxtools postgresql mysql sqlite zlib openssl ];
+ buildInputs = [ cxxtools postgresql mysql.connector-c sqlite zlib openssl ];
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/tremor/default.nix b/pkgs/development/libraries/tremor/default.nix
index fec256e703f..5e08a61cd1b 100644
--- a/pkgs/development/libraries/tremor/default.nix
+++ b/pkgs/development/libraries/tremor/default.nix
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
'';
meta = {
- homepage = http://xiph.org/tremor/;
+ homepage = https://xiph.org/tremor/;
description = "Fixed-point version of the Ogg Vorbis decoder";
license = stdenv.lib.licenses.bsd3;
platforms = stdenv.lib.platforms.unix;
diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix
index 233fdd90254..badcb7e661b 100644
--- a/pkgs/development/libraries/unixODBCDrivers/default.nix
+++ b/pkgs/development/libraries/unixODBCDrivers/default.nix
@@ -37,19 +37,12 @@
};
nativeBuildInputs = [ cmake ];
- buildInputs = [ unixODBC mariadb.lib ];
+ buildInputs = [ unixODBC mariadb.connector-c ];
cmakeFlags = [
- "-DMARIADB_INCLUDE_DIR=${mariadb.lib}/include/mysql"
+ "-DMARIADB_INCLUDE_DIR=${mariadb.connector-c}/include/mariadb"
];
- preConfigure = ''
- sed -i \
- -e 's,mariadb_config,mysql_config,g' \
- -e 's,libmariadbclient,libmysqlclient,g' \
- cmake/FindMariaDB.cmake
- '';
-
passthru = {
fancyName = "MariaDB";
driver = "lib/libmyodbc3-3.51.12.so";
@@ -60,7 +53,6 @@
homepage = https://downloads.mariadb.org/connector-odbc/;
license = licenses.gpl2;
platforms = platforms.linux;
- broken = true;
};
};
diff --git a/pkgs/development/libraries/vaapi-intel/default.nix b/pkgs/development/libraries/vaapi-intel/default.nix
index edb2a8214dd..7bd036cf2e5 100644
--- a/pkgs/development/libraries/vaapi-intel/default.nix
+++ b/pkgs/development/libraries/vaapi-intel/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with stdenv.lib; {
- homepage = http://cgit.freedesktop.org/vaapi/intel-driver/;
+ homepage = https://cgit.freedesktop.org/vaapi/intel-driver/;
license = licenses.mit;
description = "Intel driver for the VAAPI library";
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/vaapi-vdpau/default.nix b/pkgs/development/libraries/vaapi-vdpau/default.nix
index 4522ecc1bb6..f0089110c3c 100644
--- a/pkgs/development/libraries/vaapi-vdpau/default.nix
+++ b/pkgs/development/libraries/vaapi-vdpau/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
meta = {
- homepage = http://cgit.freedesktop.org/vaapi/vdpau-driver/;
+ homepage = https://cgit.freedesktop.org/vaapi/vdpau-driver/;
license = stdenv.lib.licenses.gpl2Plus;
description = "VDPAU driver for the VAAPI library";
platforms = stdenv.lib.platforms.linux;
diff --git a/pkgs/development/libraries/vapoursynth/default.nix b/pkgs/development/libraries/vapoursynth/default.nix
index 6864db12f18..24c4a50d874 100644
--- a/pkgs/development/libraries/vapoursynth/default.nix
+++ b/pkgs/development/libraries/vapoursynth/default.nix
@@ -12,13 +12,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "vapoursynth-${version}";
- version = "R39";
+ version = "R40";
src = fetchFromGitHub {
owner = "vapoursynth";
repo = "vapoursynth";
rev = version;
- sha256 = "0cw7w8xiwhxhwykydy13m44wm9vn9hrsi30z6017ngga9d84fhqy";
+ sha256 = "1ycc3fdhhryp7hap80z3qmh89br31kcswzp8ai3wlc07zfvcrfck";
};
nativeBuildInputs = [ pkgconfig autoreconfHook nasm ];
diff --git a/pkgs/development/libraries/vigra/default.nix b/pkgs/development/libraries/vigra/default.nix
index 324d977c72e..438b4eda454 100644
--- a/pkgs/development/libraries/vigra/default.nix
+++ b/pkgs/development/libraries/vigra/default.nix
@@ -28,7 +28,7 @@ in stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Novel computer vision C++ library with customizable algorithms and data structures";
- homepage = http://hci.iwr.uni-heidelberg.de/vigra;
+ homepage = https://hci.iwr.uni-heidelberg.de/vigra;
license = licenses.mit;
maintainers = [ maintainers.viric ];
platforms = platforms.linux;
diff --git a/pkgs/development/libraries/vmime/default.nix b/pkgs/development/libraries/vmime/default.nix
index 9bef1b27e9c..e0398487abc 100644
--- a/pkgs/development/libraries/vmime/default.nix
+++ b/pkgs/development/libraries/vmime/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
];
meta = {
- homepage = http://www.vmime.org/;
+ homepage = https://www.vmime.org/;
description = "Free mail library for C++";
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [viric];
diff --git a/pkgs/development/libraries/vmmlib/default.nix b/pkgs/development/libraries/vmmlib/default.nix
index ccdf2b05e7e..18b9278539f 100644
--- a/pkgs/development/libraries/vmmlib/default.nix
+++ b/pkgs/development/libraries/vmmlib/default.nix
@@ -38,7 +38,7 @@ stdenv.mkDerivation rec {
computations and frustum culling classes, and spatial data structures'';
license = licenses.bsd2;
- homepage = http://github.com/VMML/vmmlib/;
+ homepage = https://github.com/VMML/vmmlib/;
maintainers = [ maintainers.adev ];
platforms = platforms.all;
};
diff --git a/pkgs/development/libraries/wayland/default.nix b/pkgs/development/libraries/wayland/default.nix
index 5def37b791c..a5b7a6a99ce 100644
--- a/pkgs/development/libraries/wayland/default.nix
+++ b/pkgs/development/libraries/wayland/default.nix
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
version = "1.14.0";
src = fetchurl {
- url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
+ url = "https://wayland.freedesktop.org/releases/${name}.tar.xz";
sha256 = "1f3sla6h0bw15fz8pjc67jhwj7pwmfdc7qlj42j5k9v116ycm07d";
};
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Reference implementation of the wayland protocol";
- homepage = http://wayland.freedesktop.org/;
+ homepage = https://wayland.freedesktop.org/;
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ codyopel wkennington ];
diff --git a/pkgs/development/libraries/webkitgtk/2.18.nix b/pkgs/development/libraries/webkitgtk/2.18.nix
index 946f032f0f7..d3e3163a8af 100644
--- a/pkgs/development/libraries/webkitgtk/2.18.nix
+++ b/pkgs/development/libraries/webkitgtk/2.18.nix
@@ -15,7 +15,7 @@ assert stdenv.isDarwin -> !enableGtk2Plugins;
with stdenv.lib;
stdenv.mkDerivation rec {
name = "webkitgtk-${version}";
- version = "2.18.3";
+ version = "2.18.6";
meta = {
description = "Web content rendering engine, GTK+ port";
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://webkitgtk.org/releases/${name}.tar.xz";
- sha256 = "17lgn7qwrwqxl1lgmq5icvzmna6aymx4c7al47rp0vvac7hj0m71";
+ sha256 = "0g5cpdijjv5hlrbi4i4dh97yrh5apnyvm90wpr9f84hgyk12r4ck";
};
# see if we can clean this up....
diff --git a/pkgs/development/libraries/websocket++/default.nix b/pkgs/development/libraries/websocket++/default.nix
index fbfc460db96..8a0ec2523b9 100644
--- a/pkgs/development/libraries/websocket++/default.nix
+++ b/pkgs/development/libraries/websocket++/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ cmake ];
meta = with stdenv.lib; {
- homepage = http://www.zaphoyd.com/websocketpp/;
+ homepage = https://www.zaphoyd.com/websocketpp/;
description = "C++/Boost Asio based websocket client/server library";
license = licenses.bsd3;
platforms = platforms.unix;
diff --git a/pkgs/development/libraries/wt/default.nix b/pkgs/development/libraries/wt/default.nix
index 3adf4f1497f..37819c2a98e 100644
--- a/pkgs/development/libraries/wt/default.nix
+++ b/pkgs/development/libraries/wt/default.nix
@@ -1,42 +1,56 @@
-{ stdenv, fetchFromGitHub, cmake, boost, pkgconfig, doxygen, qt48Full, libharu
-, pango, fcgi, firebird, libmysql, postgresql, graphicsmagick, glew, openssl
+{ stdenv, fetchFromGitHub, cmake, boost165, pkgconfig, doxygen, qt48Full, libharu
+, pango, fcgi, firebird, mysql, postgresql, graphicsmagick, glew, openssl
, pcre
}:
-stdenv.mkDerivation rec {
- name = "wt-${version}";
- version = "4.0.0";
+let
+ generic =
+ { version, sha256 }:
+ stdenv.mkDerivation rec {
+ name = "wt-${version}";
- src = fetchFromGitHub {
- owner = "kdeforche";
- repo = "wt";
- rev = version;
- sha256 = "1451xxvnx6mlvxg0jxlr1mfv5v18h2214kijk5kacilqashfc43i";
+ src = fetchFromGitHub {
+ owner = "kdeforche";
+ repo = "wt";
+ rev = version;
+ inherit sha256;
+ };
+
+ enableParallelBuilding = true;
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [
+ cmake boost165 doxygen qt48Full libharu
+ pango fcgi firebird mysql.connector-c postgresql graphicsmagick glew
+ openssl pcre
+ ];
+
+ cmakeFlags = [
+ "-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick"
+ "-DWT_CPP_11_MODE=-std=c++11"
+ "-DGM_PREFIX=${graphicsmagick}"
+ "-DMYSQL_PREFIX=${mysql.connector-c}"
+ "--no-warn-unused-cli"
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = https://www.webtoolkit.eu/wt;
+ description = "C++ library for developing web applications";
+ platforms = platforms.linux;
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ juliendehos willibutz ];
+ };
+ };
+in {
+ wt3 = generic {
+ # with the next version update the version pinning of boost should be omitted
+ version = "3.3.9";
+ sha256 = "1mkflhvzzzxkc5yzvr6nk34j0ldpwxjxb6n7xml59h3j3px3ixjm";
};
- enableParallelBuilding = true;
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [
- cmake boost doxygen qt48Full libharu
- pango fcgi firebird libmysql postgresql graphicsmagick glew
- openssl pcre
- ];
-
- cmakeFlags = [
- "-DWT_WRASTERIMAGE_IMPLEMENTATION=GraphicsMagick"
- "-DWT_CPP_11_MODE=-std=c++11"
- "-DGM_PREFIX=${graphicsmagick}"
- "-DMYSQL_PREFIX=${libmysql.dev}"
- "--no-warn-unused-cli"
- ];
-
- meta = with stdenv.lib; {
- homepage = https://www.webtoolkit.eu/wt;
- description = "C++ library for developing web applications";
- platforms = platforms.linux;
- license = licenses.gpl2;
- maintainers = [ maintainers.juliendehos ];
+ wt4 = generic {
+ # with the next version update the version pinning of boost should be omitted
+ version = "4.0.2";
+ sha256 = "0r729gjd1sy0pcmir2r7ga33mp5cr5b4gvf44852q65hw2577w1x";
};
}
-
diff --git a/pkgs/development/libraries/wxsqlite3/default.nix b/pkgs/development/libraries/wxsqlite3/default.nix
index a0600399784..49f12842533 100644
--- a/pkgs/development/libraries/wxsqlite3/default.nix
+++ b/pkgs/development/libraries/wxsqlite3/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
++ stdenv.lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa darwin.stubs.setfile darwin.stubs.rez darwin.stubs.derez ];
meta = with stdenv.lib; {
- homepage = http://utelle.github.io/wxsqlite3/ ;
+ homepage = https://utelle.github.io/wxsqlite3/ ;
description = "A C++ wrapper around the public domain SQLite 3.x for wxWidgets";
platforms = platforms.unix;
maintainers = with maintainers; [ vrthra ];
diff --git a/pkgs/development/libraries/x265/default.nix b/pkgs/development/libraries/x265/default.nix
index 29d7ddf1fdc..418829e7af8 100644
--- a/pkgs/development/libraries/x265/default.nix
+++ b/pkgs/development/libraries/x265/default.nix
@@ -16,14 +16,14 @@ in
stdenv.mkDerivation rec {
name = "x265-${version}";
- version = "2.5";
+ version = "2.6";
src = fetchurl {
urls = [
"http://get.videolan.org/x265/x265_${version}.tar.gz"
"https://github.com/videolan/x265/archive/${version}.tar.gz"
];
- sha256 = "05rxbnfcc8yl05q3xqkl1kk90k7zn5ih305r46dxnzjaa2djalrf";
+ sha256 = "1gyd94jkwdii9308m07nymsbxrmrcl81c0j8i10zhslr2mj07w0v";
};
enableParallelBuilding = true;
diff --git a/pkgs/development/libraries/xapian/default.nix b/pkgs/development/libraries/xapian/default.nix
index 23fee81e0a5..482c765dcda 100644
--- a/pkgs/development/libraries/xapian/default.nix
+++ b/pkgs/development/libraries/xapian/default.nix
@@ -27,7 +27,7 @@ let
meta = with stdenv.lib; {
description = "Search engine library";
- homepage = http://xapian.org/;
+ homepage = https://xapian.org/;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ chaoflow ];
platforms = platforms.unix;
@@ -36,5 +36,5 @@ let
in {
# xapian-ruby needs 1.2.22 as of 2017-05-06
xapian_1_2_22 = generic "1.2.22" "0zsji22n0s7cdnbgj0kpil05a6bgm5cfv0mvx12d8ydg7z58g6r6";
- xapian_1_4_4 = generic "1.4.4" "1n9j2w2as0flih3hgim7gprfxsx6gimijs91rxsjsi8shjlqbad6";
+ xapian_1_4 = generic "1.4.5" "0axhqrj202hbll9mcx1qdm8gsqj19216w3z02gyjbycxvr9gkdc5";
}
diff --git a/pkgs/development/libraries/xapian/tools/omega/default.nix b/pkgs/development/libraries/xapian/tools/omega/default.nix
index 2923bfc1fc6..09c2171945e 100644
--- a/pkgs/development/libraries/xapian/tools/omega/default.nix
+++ b/pkgs/development/libraries/xapian/tools/omega/default.nix
@@ -6,7 +6,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "http://oligarchy.co.uk/xapian/${version}/xapian-omega-${version}.tar.xz";
- sha256 = "0pl9gs0sbavxykfgrkm8syswqnfynmmqhf8429bv8a5qjh5pkp8l";
+ sha256 = "0zji8ckp4h5xdy2wbir3lvk680w1g1l4h5swmaxsx7ah12lkrjcr";
};
buildInputs = [ xapian perl pcre zlib libmagic ];
diff --git a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix
index 4ccdcb19f81..17f8646b517 100644
--- a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix
+++ b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "XCB cursor library (libxcursor port)";
- homepage = http://cgit.freedesktop.org/xcb/util-cursor;
+ homepage = https://cgit.freedesktop.org/xcb/util-cursor;
license = licenses.mit;
maintainers = with maintainers; [ lovek323 ];
platforms = platforms.linux ++ platforms.darwin;
diff --git a/pkgs/development/libraries/xml-tooling-c/default.nix b/pkgs/development/libraries/xml-tooling-c/default.nix
index f2d7711c9f0..8e1d71fab3f 100644
--- a/pkgs/development/libraries/xml-tooling-c/default.nix
+++ b/pkgs/development/libraries/xml-tooling-c/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "xml-tooling-c-${version}";
- version = "1.6.0";
+ version = "1.6.3";
src = fetchgit {
url = "https://git.shibboleth.net/git/cpp-xmltooling.git";
- rev = "db08101c3854518a59096be95ed6564838381744";
- sha256 = "0rhzvxm4z3pm28kpk34hayhm12bjjms2kygv1z68vnz8ijzgcinq";
+ rev = version;
+ sha256 = "09z2pp3yy3kqx22vwgxyi3s0vlpdv9camw8dpi3q8piff6zxak3q";
};
buildInputs = [ boost curl openssl log4shib xercesc xml-security-c ];
diff --git a/pkgs/development/libraries/xvidcore/default.nix b/pkgs/development/libraries/xvidcore/default.nix
index 057be97ce96..17d7320cb64 100644
--- a/pkgs/development/libraries/xvidcore/default.nix
+++ b/pkgs/development/libraries/xvidcore/default.nix
@@ -3,11 +3,11 @@
with stdenv.lib;
stdenv.mkDerivation rec {
name = "xvidcore-${version}";
- version = "1.3.4";
-
+ version = "1.3.5";
+
src = fetchurl {
url = "http://downloads.xvid.org/downloads/${name}.tar.bz2";
- sha256 = "1xwbmp9wqshc0ckm970zdpi0yvgqxlqg0s8bkz98mnr8p2067bsz";
+ sha256 = "1d0hy1w9sn6491a3vhyf3vmhq4xkn6yd4ralx1191s6qz5wz483w";
};
preConfigure = ''
@@ -35,7 +35,7 @@ stdenv.mkDerivation rec {
postInstall = optionalString (!stdenv.isDarwin) ''
rm $out/lib/*.a
'';
-
+
meta = {
description = "MPEG-4 video codec for PC";
homepage = https://www.xvid.com/;
diff --git a/pkgs/development/libraries/yajl/default.nix b/pkgs/development/libraries/yajl/default.nix
index c6ab03df10a..02e1e96cabd 100644
--- a/pkgs/development/libraries/yajl/default.nix
+++ b/pkgs/development/libraries/yajl/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, cmake, ruby }:
+{ stdenv, fetchurl, cmake }:
stdenv.mkDerivation rec {
name = "yajl-2.1.0";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "0f6yrjc05aa26wfi7lqn2gslm19m6rm81b30ksllpkappvh162ji";
};
- buildInputs = [ cmake ruby ];
+ nativeBuildInputs = [ cmake ];
meta = {
description = "Yet Another JSON Library";
diff --git a/pkgs/development/libraries/zeromq/4.x.nix b/pkgs/development/libraries/zeromq/4.x.nix
index 030246db318..eea0fb727b0 100644
--- a/pkgs/development/libraries/zeromq/4.x.nix
+++ b/pkgs/development/libraries/zeromq/4.x.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "zeromq-${version}";
- version = "4.2.2";
+ version = "4.2.3";
src = fetchFromGitHub {
owner = "zeromq";
repo = "libzmq";
rev = "v${version}";
- sha256 = "09317g4zkalp3k11x6vbidcm4qf02ciml1wxgp3742lrlgcblgxy";
+ sha256 = "1yadf4vz4m49lpwwwscxs6wf4v9dgqgxkwgwpby9lvb4pv8qbmaf";
};
nativeBuildInputs = [ cmake asciidoc ];
diff --git a/pkgs/development/libraries/zimg/default.nix b/pkgs/development/libraries/zimg/default.nix
index b5bb73e3e33..00973350e18 100644
--- a/pkgs/development/libraries/zimg/default.nix
+++ b/pkgs/development/libraries/zimg/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec{
name = "zimg-${version}";
- version = "2.6.1";
+ version = "2.7";
src = fetchFromGitHub {
owner = "sekrit-twc";
repo = "zimg";
rev = "release-${version}";
- sha256 = "08hynzcxz95a4i67k5cn6isafdb6xjgd0x0miyhlnp2xc220zfqj";
+ sha256 = "1jvx3a523mzkc54rrjab9kz66kc6q1snry9ymwmsx7rrd3kv3j6m";
};
nativeBuildInputs = [ autoreconfHook ];
diff --git a/pkgs/development/libraries/zxcvbn-c/default.nix b/pkgs/development/libraries/zxcvbn-c/default.nix
new file mode 100644
index 00000000000..1ba07394348
--- /dev/null
+++ b/pkgs/development/libraries/zxcvbn-c/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub }:
+stdenv.mkDerivation rec {
+ name = "zxcvbn-c-${version}";
+ version = "2.3";
+
+ src = fetchFromGitHub {
+ owner = "tsyrogit";
+ repo = "zxcvbn-c";
+ rev = "v${version}";
+ sha256 = "1m097b4qq1r3kk4b236pc3mpaj22il9fh43ifagad5wy54x8zf7b";
+ };
+
+ installPhase = ''
+ install -D -t $out/lib libzxcvbn.so*
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/tsyrogit/zxcvbn-c;
+ description = "A C/C++ implementation of the zxcvbn password strength estimation";
+ license = licenses.mit;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ xurei ];
+ };
+}
diff --git a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh
index 55b469729f9..a1cfae0e606 100755
--- a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh
+++ b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh
@@ -87,6 +87,33 @@ nix_lisp_run_single_form(){
"$NIX_LISP_EXEC_CODE" "$NIX_LISP_QUIT" $NIX_LISP_NODEBUG)
}
+nix_lisp_build_system(){
+ NIX_LISP_FINAL_PARAMETERS=(
+ "$NIX_LISP_EXEC_CODE" "(progn
+ (asdf:make :$1)
+ (loop for s in (list $(for i in $3; do echo ":$i"; done)) do (asdf:make s)))"
+ "$NIX_LISP_EXEC_CODE" "(progn
+ (setf (asdf/system:component-entry-point (asdf:find-system :$1)) ${2:-nil})
+ #+cffi(setf cffi:*foreign-library-directories*
+ (cffi::explode-path-environment-variable \"NIX_LISP_LD_LIBRARY_PATH\"))
+ #+sbcl(loop
+ with libpath := (uiop:split-string (uiop:getenv \"NIX_LISP_LD_LIBRARY_PATH\")
+ :separator \":\")
+ for l in sb-alien::*shared-objects*
+ for ns := (sb-alien::shared-object-namestring l)
+ do (and (> (length ns) 0) (not (equal (elt ns 0) \"/\"))
+ (let*
+ ((prefix (find-if (lambda (s) (probe-file (format nil \"~a/~a\" s ns))) libpath))
+ (fullpath (and prefix (format nil \"~a/~a\" prefix ns))))
+ (when fullpath
+ (setf
+ (sb-alien::shared-object-namestring l) fullpath
+ (sb-alien::shared-object-pathname l) (probe-file fullpath)))))
+ )
+ (asdf:perform (quote asdf:program-op) :$1)
+ )")
+}
+
eval "$NIX_LISP_PRELAUNCH_HOOK"
[ -z "$NIX_LISP_SKIP_CODE" ] && "$NIX_LISP_COMMAND" $NIX_LISP_EARLY_OPTIONS \
diff --git a/pkgs/development/lisp-modules/clwrapper/setup-hook.sh b/pkgs/development/lisp-modules/clwrapper/setup-hook.sh
index 7ac8c70d59f..8975ada5320 100644
--- a/pkgs/development/lisp-modules/clwrapper/setup-hook.sh
+++ b/pkgs/development/lisp-modules/clwrapper/setup-hook.sh
@@ -15,6 +15,8 @@ setLisp () {
sbcl) NIX_LISP_COMMAND="$j" ;;
ecl) NIX_LISP_COMMAND="$j" ;;
clisp) NIX_LISP_COMMAND="$j" ;;
+ lx86cl) NIX_LISP_COMMAND="$j" ;;
+ lx86cl64) NIX_LISP_COMMAND="$j" ;;
esac
done
fi
@@ -31,7 +33,7 @@ collectNixLispLDLP () {
export NIX_LISP_COMMAND NIX_LISP CL_SOURCE_REGISTRY NIX_LISP_ASDF
-envHooks+=(addASDFPaths setLisp collectNixLispLDLP)
+addEnvHooks "$targetOffset" addASDFPaths setLisp collectNixLispLDLP
mkdir -p "$HOME"/.cache/common-lisp || HOME="$TMP/.temp-$USER-home"
mkdir -p "$HOME"/.cache/common-lisp
diff --git a/pkgs/development/lisp-modules/define-package.nix b/pkgs/development/lisp-modules/define-package.nix
index 0224bf16ab7..b13ddf8357f 100644
--- a/pkgs/development/lisp-modules/define-package.nix
+++ b/pkgs/development/lisp-modules/define-package.nix
@@ -33,7 +33,7 @@ let
test -n "$LD_LIBRARY_PATH" &&
echo "export LD_LIBRARY_PATH=\"\$LD_LIBRARY_PATH\''${LD_LIBRARY_PATH:+:}\"'$LD_LIBRARY_PATH'" >> "$path_config_script"
test -n "$NIX_LISP_LD_LIBRARY_PATH" &&
- echo "export NIX_LISP_LD_LIBRARY_PATH=\"\$NIX_LISP_LD_LIBRARY_PATH\''${NIX_LISP_LD_LIBRARY_PATH:+:}\"'$NIX_LISP_LD_LIBRARY_PATH'" >> "$path_config_script"
+ echo "export NIX_LISP_LD_LIBRARY_PATH=\"\$NIX_LISP_LD_LIBRARY_PATH\''${NIX_LISP_LD_LIBRARY_PATH:+:}\"'$(echo "$NIX_LISP_LD_LIBRARY_PATH" | tr -d '\n' | tr : '\n' | sort | uniq | tr '\n' ':')'" >> "$path_config_script"
echo "fi" >> "$path_config_script"
'';
deployLaunchScript = ''
diff --git a/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix b/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
index fae5818171b..4de4947c073 100644
--- a/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
+++ b/pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
@@ -15,9 +15,8 @@ in
export configureFlags="$configureFlags --with-$NIX_LISP=common-lisp.sh";
'';
postInstall = ''
- "$out/bin/stumpwm-lisp-launcher.sh" --eval '(asdf:make :stumpwm)' \
- --eval '(setf (asdf/system:component-entry-point (asdf:find-system :stumpwm)) (function stumpwm:stumpwm))' \
- --eval '(asdf:perform (quote asdf:program-op) :stumpwm)'
+ export NIX_LISP_PRELAUNCH_HOOK="nix_lisp_build_system stumpwm '(function stumpwm:stumpwm)'"
+ "$out/bin/stumpwm-lisp-launcher.sh"
cp "$out/lib/common-lisp/stumpwm/stumpwm" "$out/bin"
'';
@@ -53,11 +52,11 @@ in
cl-async-ssl = addNativeLibs [pkgs.openssl];
cl-async-test = addNativeLibs [pkgs.openssl];
clsql = x: {
- propagatedBuildInputs = with pkgs; [mysql postgresql sqlite zlib];
+ propagatedBuildInputs = with pkgs; [mysql.connector-c postgresql sqlite zlib];
overrides = y: (x.overrides y) // {
preConfigure = ((x.overrides y).preConfigure or "") + ''
- export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pkgs.lib.getDev pkgs.mysql.client}/include/mysql"
- export NIX_LDFLAGS="$NIX_LDFLAGS -L${pkgs.lib.getLib pkgs.mysql.client}/lib/mysql"
+ export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pkgs.mysql.connector-c}/include/mysql"
+ export NIX_LDFLAGS="$NIX_LDFLAGS -L${pkgs.mysql.connector-c}/lib/mysql"
'';
};
};
@@ -69,12 +68,10 @@ in
export NIX_LISP_ASDF_PATHS="$NIX_LISP_ASDF_PATHS
$out/lib/common-lisp/query-fs"
export HOME=$PWD
- "$out/bin/query-fs-lisp-launcher.sh" --eval '(asdf:make :query-fs)' \
- --eval "(progn $(for i in $linkedSystems; do echo "(asdf:make :$i)"; done) )" \
- --eval '(setf (asdf/system:component-entry-point (asdf:find-system :query-fs))
- (function query-fs:run-fs-with-cmdline-args))' \
- --eval '(asdf:perform (quote asdf:program-op) :query-fs)'
- cp "$out/lib/common-lisp/query-fs/query-fs" "$out/bin/"
+ export NIX_LISP_PRELAUNCH_HOOK="nix_lisp_build_system query-fs \
+ '(function query-fs:run-fs-with-cmdline-args)' '$linkedSystems'"
+ "$out/bin/query-fs-lisp-launcher.sh"
+ cp "$out/lib/common-lisp/query-fs/query-fs" "$out/bin/"
'';
};
};
diff --git a/pkgs/development/lisp-modules/shell.nix b/pkgs/development/lisp-modules/shell.nix
index b29ba53159e..d3cb7b36aee 100644
--- a/pkgs/development/lisp-modules/shell.nix
+++ b/pkgs/development/lisp-modules/shell.nix
@@ -5,11 +5,11 @@ self = rec {
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
gcc stdenv
- openssl fuse libuv mariadb libfixposix libev sqlite
+ openssl fuse libuv mysql.connector-c libfixposix libev sqlite
freetds
lispPackages.quicklisp-to-nix lispPackages.quicklisp-to-nix-system-info
];
CPATH = "${libfixposix}/include";
- LD_LIBRARY_PATH = "${openssl.out}/lib:${fuse}/lib:${libuv}/lib:${libev}/lib:${mariadb}/lib:${postgresql.lib}/lib:${sqlite.out}/lib:${libfixposix}/lib:${freetds}/lib";
+ LD_LIBRARY_PATH = "${openssl.out}/lib:${fuse}/lib:${libuv}/lib:${libev}/lib:${mysql.connector-c}/lib:${postgresql.lib}/lib:${sqlite.out}/lib:${libfixposix}/lib:${freetds}/lib";
};
in stdenv.mkDerivation self
diff --git a/pkgs/development/misc/avr/gcc/avrbinutils-path.patch b/pkgs/development/misc/avr/gcc/avrbinutils-path.patch
new file mode 100644
index 00000000000..f0ec21b7589
--- /dev/null
+++ b/pkgs/development/misc/avr/gcc/avrbinutils-path.patch
@@ -0,0 +1,15 @@
+diff --git a/gcc/gcc-ar.c b/gcc/gcc-ar.c
+index 838ebc2..3ac4ee7 100644
+--- a/gcc/gcc-ar.c
++++ b/gcc/gcc-ar.c
+@@ -118,8 +118,8 @@ setup_prefixes (const char *exec_path)
+ dir_separator, NULL);
+ prefix_from_string (self_libexec_prefix, &target_path);
+
+- /* Add path as a last resort. */
+- prefix_from_env ("PATH", &path);
++ /* Add path to avrbinutils. */
++ prefix_from_string ("@avrbinutils@/bin", &path);
+ }
+
+ int
diff --git a/pkgs/development/misc/avr/gcc/default.nix b/pkgs/development/misc/avr/gcc/default.nix
index f456214f944..0bfa6d1f238 100644
--- a/pkgs/development/misc/avr/gcc/default.nix
+++ b/pkgs/development/misc/avr/gcc/default.nix
@@ -11,6 +11,16 @@ stdenv.mkDerivation {
sha256 = "0fihlcy5hnksdxk0sn6bvgnyq8gfrgs8m794b1jxwd1dxinzg3b0";
};
+ patches = [
+ ./avrbinutils-path.patch
+ ];
+
+ # avrbinutils-path.patch introduces a reference to @avrbinutils@, substitute
+ # it now.
+ postPatch = ''
+ substituteInPlace gcc/gcc-ar.c --subst-var-by avrbinutils ${avrbinutils}
+ '';
+
buildInputs = [ gmp mpfr libmpc zlib avrbinutils ];
nativeBuildInputs = [ texinfo ];
diff --git a/pkgs/development/mobile/flashtool/default.nix b/pkgs/development/mobile/flashtool/default.nix
index 0c1bb5d4d42..be4fc0f7f54 100644
--- a/pkgs/development/mobile/flashtool/default.nix
+++ b/pkgs/development/mobile/flashtool/default.nix
@@ -59,5 +59,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.unfreeRedistributableFirmware;
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = stdenv.lib.platforms.none;
+ broken = true;
};
}
diff --git a/pkgs/development/mobile/titaniumenv/build-app.nix b/pkgs/development/mobile/titaniumenv/build-app.nix
index 0c9c3e3f42c..4079adaef51 100644
--- a/pkgs/development/mobile/titaniumenv/build-app.nix
+++ b/pkgs/development/mobile/titaniumenv/build-app.nix
@@ -1,8 +1,8 @@
-{stdenv, androidsdk, titaniumsdk, titanium, alloy, xcodewrapper, jdk, python, nodejs, which, xcodeBaseDir}:
-{ name, src, target, androidPlatformVersions ? [ "23" ], androidAbiVersions ? [ "armeabi" "armeabi-v7a" ], tiVersion ? null
+{stdenv, androidsdk, titaniumsdk, titanium, alloy, xcodewrapper, jdk, python, nodejs, which, file, xcodeBaseDir}:
+{ name, src, preBuild ? "", target, androidPlatformVersions ? [ "25" ], androidAbiVersions ? [ "armeabi" "armeabi-v7a" ], tiVersion ? null
, release ? false, androidKeyStore ? null, androidKeyAlias ? null, androidKeyStorePassword ? null
-, iosMobileProvisioningProfile ? null, iosCertificateName ? null, iosCertificate ? null, iosCertificatePassword ? null, iosVersion ? "10.2"
-, enableWirelessDistribution ? false, installURL ? null
+, iosMobileProvisioningProfile ? null, iosCertificateName ? null, iosCertificate ? null, iosCertificatePassword ? null, iosVersion ? "11.2"
+, enableWirelessDistribution ? false, iosBuildStore ? false, installURL ? null
}:
assert (release && target == "android") -> androidKeyStore != null && androidKeyAlias != null && androidKeyStorePassword != null;
@@ -19,6 +19,7 @@ let
deleteKeychain = ''
security default-keychain -s login.keychain
security delete-keychain $keychainName
+ rm -f $HOME/lock-keychain
'';
# On macOS, the java executable shows an -unoffical postfix in the version
@@ -47,9 +48,11 @@ stdenv.mkDerivation {
name = stdenv.lib.replaceChars [" "] [""] name;
inherit src;
- buildInputs = [ nodejs titanium alloy jdk python which ] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") xcodewrapper;
+ buildInputs = [ nodejs titanium alloy jdk python which file ] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") xcodewrapper;
buildPhase = ''
+ ${preBuild}
+
export HOME=$TMPDIR
${stdenv.lib.optionalString (tiVersion != null) ''
@@ -77,9 +80,9 @@ stdenv.mkDerivation {
export JAVA_HOME=${javaVersionFixWrapper}
javac -version
''}
-
- titanium config --config-file $TMPDIR/config.json --no-colors android.sdk ${androidsdkComposition}/libexec
-
+
+ titanium config --config-file $TMPDIR/config.json --no-colors android.sdkPath ${androidsdkComposition}/libexec
+
export PATH=$(echo ${androidsdkComposition}/libexec/tools):$(echo ${androidsdkComposition}/libexec/build-tools/android-*):$PATH
${if release then
@@ -129,9 +132,20 @@ stdenv.mkDerivation {
then
ln -s ${titaniumsdk}/modules modules
fi
-
+
+ # Take precautions to prevent concurrent builds blocking the keychain
+ while [ -f $HOME/lock-keychain ]
+ do
+ echo "Keychain locked, waiting for a couple of seconds, or remove $HOME/lock-keychain to unblock..."
+ sleep 3
+ done
+
+ touch $HOME/lock-keychain
+
+ security default-keychain -s $keychainName
+
# Do the actual build
- titanium build --config-file $TMPDIR/config.json --force --no-colors --platform ios --target dist-adhoc --pp-uuid $provisioningId --distribution-name "${iosCertificateName}" --keychain $HOME/Library/Keychains/$keychainName-db --device-family universal --ios-version ${iosVersion} --output-dir $out
+ titanium build --config-file $TMPDIR/config.json --force --no-colors --platform ios --target ${if iosBuildStore then "dist-appstore" else "dist-adhoc"} --pp-uuid $provisioningId --distribution-name "${iosCertificateName}" --keychain $HOME/Library/Keychains/$keychainName-db --device-family universal --ios-version ${iosVersion} --output-dir $out
# Remove our generated keychain
${deleteKeychain}
@@ -184,10 +198,10 @@ stdenv.mkDerivation {
''
cp -av build/iphone/build/* $out
mkdir -p $out/nix-support
- echo "file binary-dist \"$(echo $out/Products/Release-iphoneos/*.ipa)\"" > $out/nix-support/hydra-build-products
+ echo "file binary-dist \"$(echo $out/*.ipa)\"" > $out/nix-support/hydra-build-products
${stdenv.lib.optionalString enableWirelessDistribution ''
- appname=$(basename $out/Products/Release-iphoneos/*.ipa .ipa)
+ appname=$(basename $out/*.ipa .ipa)
bundleId=$(grep '[a-zA-Z0-9.]*' tiapp.xml | sed -e 's|||' -e 's|||' -e 's/ //g')
version=$(grep '[a-zA-Z0-9.]*' tiapp.xml | sed -e 's|||' -e 's|||' -e 's/ //g')
diff --git a/pkgs/development/mobile/titaniumenv/default.nix b/pkgs/development/mobile/titaniumenv/default.nix
index 6ca4c441e64..031fe3b18c6 100644
--- a/pkgs/development/mobile/titaniumenv/default.nix
+++ b/pkgs/development/mobile/titaniumenv/default.nix
@@ -1,4 +1,4 @@
-{pkgs, pkgs_i686, xcodeVersion ? "8.2.1", xcodeBaseDir ? "/Applications/Xcode.app", tiVersion ? "6.0.2.GA"}:
+{pkgs, pkgs_i686, xcodeVersion ? "9.2", xcodeBaseDir ? "/Applications/Xcode.app", tiVersion ? "6.3.1.GA"}:
rec {
androidenv = pkgs.androidenv;
@@ -9,9 +9,7 @@ rec {
} else null;
titaniumsdk = let
- titaniumSdkFile = if tiVersion == "5.1.2.GA" then ./titaniumsdk-5.1.nix
- else if tiVersion == "5.2.3.GA" then ./titaniumsdk-5.2.nix
- else if tiVersion == "6.0.2.GA" then ./titaniumsdk-6.0.nix
+ titaniumSdkFile = if tiVersion == "6.3.1.GA" then ./titaniumsdk-6.3.nix
else throw "Titanium version not supported: "+tiVersion;
in
import titaniumSdkFile {
@@ -19,8 +17,8 @@ rec {
};
buildApp = import ./build-app.nix {
- inherit (pkgs) stdenv python which jdk nodejs;
- inherit (pkgs.nodePackages_4_x) titanium alloy;
+ inherit (pkgs) stdenv python which file jdk nodejs;
+ inherit (pkgs.nodePackages_6_x) alloy titanium;
inherit (androidenv) androidsdk;
inherit (xcodeenv) xcodewrapper;
inherit titaniumsdk xcodeBaseDir;
diff --git a/pkgs/development/mobile/titaniumenv/examples/default.nix b/pkgs/development/mobile/titaniumenv/examples/default.nix
index 3c5d3a018ec..5753c8d7da9 100644
--- a/pkgs/development/mobile/titaniumenv/examples/default.nix
+++ b/pkgs/development/mobile/titaniumenv/examples/default.nix
@@ -1,10 +1,10 @@
{ nixpkgs ?
, systems ? [ "x86_64-linux" "x86_64-darwin" ]
-, xcodeVersion ? "8.2.1"
+, xcodeVersion ? "9.2"
, xcodeBaseDir ? "/Applications/Xcode.app"
-, tiVersion ? "6.0.2.GA"
+, tiVersion ? "6.3.1.GA"
, rename ? false
-, newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? "", iosVersion ? "10.2"
+, newBundleId ? "com.example.kitchensink", iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? "Example", iosCertificatePassword ? "", iosVersion ? "11.2"
, enableWirelessDistribution ? false, installURL ? null
}:
diff --git a/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix b/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix
index 4abf650ebee..5849ee368c1 100644
--- a/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix
+++ b/pkgs/development/mobile/titaniumenv/examples/kitchensink/default.nix
@@ -1,5 +1,5 @@
-{ titaniumenv, fetchgit, target, androidPlatformVersions ? [ "23" ], tiVersion ? "5.1.2.GA", release ? false
-, rename ? false, stdenv ? null, newBundleId ? null, iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? null, iosCertificatePassword ? null, iosVersion ? "8.1"
+{ titaniumenv, fetchgit, target, androidPlatformVersions ? [ "25" "26" ], tiVersion ? "6.3.1.GA", release ? false
+, rename ? false, stdenv ? null, newBundleId ? null, iosMobileProvisioningProfile ? null, iosCertificate ? null, iosCertificateName ? null, iosCertificatePassword ? null, iosVersion ? "11.2"
, enableWirelessDistribution ? false, installURL ? null
}:
@@ -9,9 +9,9 @@ let
src = fetchgit {
url = https://github.com/appcelerator/KitchenSink.git;
rev = "ec9edebf35030f61368000a8a9071dd7a0773884";
- sha256 = "1j41w4nhcbl40x550pjgabqrach80f9dybv7ya32771wnw2000iy";
+ sha256 = "3e020004b73c9c2386f2672fdf9203083295f1524f5e504a07842e062de181c8";
};
-
+
# Rename the bundle id to something else
renamedSrc = stdenv.mkDerivation {
name = "KitchenSink-renamedsrc";
@@ -29,14 +29,17 @@ in
titaniumenv.buildApp {
name = "KitchenSink-${target}-${if release then "release" else "debug"}";
src = if rename then renamedSrc else src;
+ preBuild = ''
+ sed -i -e "s|23|25|" tiapp.xml
+ ''; # Raise minimum android SDK from 23 to 25
inherit tiVersion;
-
+
inherit target androidPlatformVersions release;
-
+
androidKeyStore = ./keystore;
androidKeyAlias = "myfirstapp";
androidKeyStorePassword = "mykeystore";
-
+
inherit iosMobileProvisioningProfile iosCertificate iosCertificateName iosCertificatePassword iosVersion;
inherit enableWirelessDistribution installURL;
}
diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-5.1.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-5.1.nix
deleted file mode 100644
index 670e55e0f30..00000000000
--- a/pkgs/development/mobile/titaniumenv/titaniumsdk-5.1.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{stdenv, fetchurl, unzip, makeWrapper, python, jdk}:
-
-stdenv.mkDerivation {
- name = "mobilesdk-5.1.2.GA";
- src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
- url = http://builds.appcelerator.com/mobile/5_1_X/mobilesdk-5.1.2.v20151216190036-linux.zip;
- sha256 = "013ipqwkfqj60mn09jbbf6a9mc4pjrn0kr0ix906whzb888zz6bv";
- }
- else if stdenv.system == "x86_64-darwin" then fetchurl {
- url = http://builds.appcelerator.com/mobile/5_1_X/mobilesdk-5.1.2.v20151216190036-osx.zip;
- sha256 = "1ylwh7zxa5yfyckzn3a9zc4cmh8gdndgb3jyr61s3j7zb1whn9ww";
- }
- else throw "Platform: ${stdenv.system} not supported!";
-
- buildInputs = [ unzip makeWrapper ];
-
- buildCommand = ''
- mkdir -p $out
- cd $out
- (yes y | unzip $src) || true
-
- # Rename ugly version number
- cd mobilesdk/*
- mv * 5.1.2.GA
- cd *
-
- # Hack to make dx.jar work with new build-tools
- sed -i -e "s|path.join(dir, 'platform-tools', 'lib', 'dx.jar')|path.join(dir, 'build-tools', 'android-6.0', 'lib', 'dx.jar')|" $out/mobilesdk/*/*/node_modules/titanium-sdk/lib/android.js
-
- # Patch some executables
-
- ${if stdenv.system == "i686-linux" then
- ''
- patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux.so.2 android/titanium_prep.linux32
- ''
- else if stdenv.system == "x86_64-linux" then
- ''
- patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 android/titanium_prep.linux64
- ''
- else ""}
- '';
-}
diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-5.2.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-5.2.nix
deleted file mode 100644
index 511e8f0301b..00000000000
--- a/pkgs/development/mobile/titaniumenv/titaniumsdk-5.2.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{stdenv, fetchurl, unzip, makeWrapper, python, jdk}:
-
-stdenv.mkDerivation {
- name = "mobilesdk-5.2.3.GA";
- src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
- url = http://builds.appcelerator.com/mobile/5_2_X/mobilesdk-5.2.3.v20160404160237-linux.zip;
- sha256 = "1acvkj3nrkgf9ch4js0pnjnwq5x6ddc15pkcanshp1zlc41z16gj";
- }
- else if stdenv.system == "x86_64-darwin" then fetchurl {
- url = http://builds.appcelerator.com/mobile/5_2_X/mobilesdk-5.2.3.v20160404160237-osx.zip;
- sha256 = "04l7mrwiy3il2kzxz6sbfmczkqlkcrnwwndfzi8h5dzgh1672b7d";
- }
- else throw "Platform: ${stdenv.system} not supported!";
-
- buildInputs = [ unzip makeWrapper ];
-
- buildCommand = ''
- mkdir -p $out
- cd $out
- (yes y | unzip $src) || true
-
- # Rename ugly version number
- cd mobilesdk/*
- mv * 5.2.3.GA
- cd *
-
- # Hack to make dx.jar work with new build-tools
- #sed -i -e "s|path.join(dir, 'platform-tools', 'lib', 'dx.jar')|path.join(dir, 'build-tools', 'android-6.0', 'lib', 'dx.jar')|" $out/mobilesdk/*/*/node_modules/titanium-sdk/lib/android.js
-
- # Patch some executables
-
- ${if stdenv.system == "i686-linux" then
- ''
- patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux.so.2 android/titanium_prep.linux32
- ''
- else if stdenv.system == "x86_64-linux" then
- ''
- patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 android/titanium_prep.linux64
- ''
- else ""}
- '';
-}
diff --git a/pkgs/development/mobile/titaniumenv/titaniumsdk-6.0.nix b/pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix
similarity index 59%
rename from pkgs/development/mobile/titaniumenv/titaniumsdk-6.0.nix
rename to pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix
index fdaaff39453..53963c100c7 100644
--- a/pkgs/development/mobile/titaniumenv/titaniumsdk-6.0.nix
+++ b/pkgs/development/mobile/titaniumenv/titaniumsdk-6.3.nix
@@ -1,14 +1,14 @@
{stdenv, fetchurl, unzip, makeWrapper, python, jdk}:
stdenv.mkDerivation {
- name = "mobilesdk-6.0.2.GA";
+ name = "mobilesdk-6.3.1.GA";
src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux") then fetchurl {
- url = http://builds.appcelerator.com/mobile/6_0_X/mobilesdk-6.0.2.v20170123140026-linux.zip;
- sha256 = "1yjhr4fgjnxfxzwmgw71yynrfzhsjqj2cirjr5rd14zlp4q9751q";
+ url = http://builds.appcelerator.com/mobile/6_3_X/mobilesdk-6.3.1.v20171101154403-linux.zip;
+ sha256 = "0g8dqqf5ffa7ll3rqm5naywipnv2vvfxcj9fmqg1wnvvxf0rflqj";
}
else if stdenv.system == "x86_64-darwin" then fetchurl {
- url = http://builds.appcelerator.com/mobile/6_0_X/mobilesdk-6.0.2.v20170123140026-osx.zip;
- sha256 = "1ijd1wp56ygy238xpcffy112akim208wbv5zm901dvych83ibw1c";
+ url = http://builds.appcelerator.com/mobile/6_3_X/mobilesdk-6.3.1.v20171101154403-osx.zip;
+ sha256 = "00bm8vv70mg4kd7jvmxd1bfqafv6zdpdx816i0hvf801zwnak4nj";
}
else throw "Platform: ${stdenv.system} not supported!";
@@ -21,9 +21,13 @@ stdenv.mkDerivation {
# Rename ugly version number
cd mobilesdk/*
- mv * 6.0.2.GA
+ mv * 6.3.1.GA
cd *
-
+ ${stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") ''
+ # Fixes a bad archive copying error when generating an IPA file
+ sed -i -e "s|cp -rf|/bin/cp -rf|" iphone/cli/commands/_build.js
+ ''}
+
# Patch some executables
${if stdenv.system == "i686-linux" then
diff --git a/pkgs/development/mobile/xcodeenv/build-app.nix b/pkgs/development/mobile/xcodeenv/build-app.nix
index bbbe1728ee5..d208f26ab67 100644
--- a/pkgs/development/mobile/xcodeenv/build-app.nix
+++ b/pkgs/development/mobile/xcodeenv/build-app.nix
@@ -1,7 +1,7 @@
{stdenv, xcodewrapper}:
{ name
, src
-, sdkVersion ? "10.2"
+, sdkVersion ? "11.2"
, target ? null
, configuration ? null
, scheme ? null
@@ -80,8 +80,10 @@ stdenv.mkDerivation {
''}
# Do the building
+ export LD=clang # To avoid problem with -isysroot parameter that is unrecognized by the stock ld. Comparison with an impure build shows that it uses clang instead. Ugly, but it works
+
xcodebuild -target ${_target} -configuration ${_configuration} ${stdenv.lib.optionalString (scheme != null) "-scheme ${scheme}"} -sdk ${_sdk} TARGETED_DEVICE_FAMILY="1, 2" ONLY_ACTIVE_ARCH=NO CONFIGURATION_TEMP_DIR=$TMPDIR CONFIGURATION_BUILD_DIR=$out ${if generateXCArchive then "archive" else ""} ${xcodeFlags} ${if release then ''"CODE_SIGN_IDENTITY=${codeSignIdentity}" PROVISIONING_PROFILE=$PROVISIONING_PROFILE OTHER_CODE_SIGN_FLAGS="--keychain $HOME/Library/Keychains/$keychainName-db"'' else ""}
-
+
${stdenv.lib.optionalString release ''
${stdenv.lib.optionalString generateIPA ''
# Produce an IPA file
diff --git a/pkgs/development/mobile/xcodeenv/default.nix b/pkgs/development/mobile/xcodeenv/default.nix
index afe430df383..b3b9dbdf07a 100644
--- a/pkgs/development/mobile/xcodeenv/default.nix
+++ b/pkgs/development/mobile/xcodeenv/default.nix
@@ -1,4 +1,4 @@
-{stdenv, version ? "8.2.1", xcodeBaseDir ? "/Applications/Xcode.app"}:
+{stdenv, version ? "9.2", xcodeBaseDir ? "/Applications/Xcode.app"}:
rec {
xcodewrapper = import ./xcodewrapper.nix {
diff --git a/pkgs/development/mobile/xpwn/default.nix b/pkgs/development/mobile/xpwn/default.nix
index e1b2b0cb2fa..d5ffb7f6c01 100644
--- a/pkgs/development/mobile/xpwn/default.nix
+++ b/pkgs/development/mobile/xpwn/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchgit, cmake, zlib, libpng, bzip2, libusb1, openssl }:
+{ stdenv, fetchgit, cmake, zlib, libpng, bzip2, libusb, openssl }:
stdenv.mkDerivation {
name = "xpwn-0.5.8git";
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
sed -i -e '/install/d' CMakeLists.txt
'';
- buildInputs = [ cmake zlib libpng bzip2 libusb1 openssl ];
+ buildInputs = [ cmake zlib libpng bzip2 libusb openssl ];
cmakeFlags = [
"-DCMAKE_OSX_DEPLOYMENT_TARGET="
diff --git a/pkgs/development/node-packages/composition-v4.nix b/pkgs/development/node-packages/composition-v4.nix
index 2d9f1ae4217..e5892ee616d 100644
--- a/pkgs/development/node-packages/composition-v4.nix
+++ b/pkgs/development/node-packages/composition-v4.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.5.0. Do not edit!
+# This file has been generated by node2nix 1.5.1. Do not edit!
{pkgs ? import {
inherit system;
diff --git a/pkgs/development/node-packages/composition-v6.nix b/pkgs/development/node-packages/composition-v6.nix
index 9396c59be69..4232324f350 100644
--- a/pkgs/development/node-packages/composition-v6.nix
+++ b/pkgs/development/node-packages/composition-v6.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.5.0. Do not edit!
+# This file has been generated by node2nix 1.5.1. Do not edit!
{pkgs ? import {
inherit system;
diff --git a/pkgs/development/node-packages/composition-v8.nix b/pkgs/development/node-packages/composition-v8.nix
index c96c1ec2cbe..cb8e6ee8adf 100644
--- a/pkgs/development/node-packages/composition-v8.nix
+++ b/pkgs/development/node-packages/composition-v8.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.5.0. Do not edit!
+# This file has been generated by node2nix 1.5.1. Do not edit!
{pkgs ? import {
inherit system;
diff --git a/pkgs/development/node-packages/node-packages-v4.json b/pkgs/development/node-packages/node-packages-v4.json
index c178f0fde82..b1349773a73 100644
--- a/pkgs/development/node-packages/node-packages-v4.json
+++ b/pkgs/development/node-packages/node-packages-v4.json
@@ -6,5 +6,4 @@
, "node-inspector"
, "node-pre-gyp"
, "npm"
-, "titanium"
]
diff --git a/pkgs/development/node-packages/node-packages-v4.nix b/pkgs/development/node-packages/node-packages-v4.nix
index acb65b614fa..9db71971647 100644
--- a/pkgs/development/node-packages/node-packages-v4.nix
+++ b/pkgs/development/node-packages/node-packages-v4.nix
@@ -1,135 +1,9 @@
-# This file has been generated by node2nix 1.5.0. Do not edit!
+# This file has been generated by node2nix 1.5.1. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
let
sources = {
- "findup-sync-0.3.0" = {
- name = "findup-sync";
- packageName = "findup-sync";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz";
- sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16";
- };
- };
- "grunt-known-options-1.1.0" = {
- name = "grunt-known-options";
- packageName = "grunt-known-options";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz";
- sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149";
- };
- };
- "nopt-3.0.6" = {
- name = "nopt";
- packageName = "nopt";
- version = "3.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
- sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
- };
- };
- "resolve-1.1.7" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz";
- sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
- };
- };
- "glob-5.0.15" = {
- name = "glob";
- packageName = "glob";
- version = "5.0.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz";
- sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1";
- };
- };
- "inflight-1.0.6" = {
- name = "inflight";
- packageName = "inflight";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
- };
- };
- "inherits-2.0.3" = {
- name = "inherits";
- packageName = "inherits";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
- sha1 = "633c2c83e3da42a502f52466022480f4208261de";
- };
- };
- "minimatch-3.0.4" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
- sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8";
- };
- };
- "once-1.4.0" = {
- name = "once";
- packageName = "once";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
- };
- };
- "path-is-absolute-1.0.1" = {
- name = "path-is-absolute";
- packageName = "path-is-absolute";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
- };
- };
- "wrappy-1.0.2" = {
- name = "wrappy";
- packageName = "wrappy";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
- };
- };
- "brace-expansion-1.1.8" = {
- name = "brace-expansion";
- packageName = "brace-expansion";
- version = "1.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz";
- sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292";
- };
- };
- "balanced-match-1.0.0" = {
- name = "balanced-match";
- packageName = "balanced-match";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
- sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
- };
- };
- "concat-map-0.0.1" = {
- name = "concat-map";
- packageName = "concat-map";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
- };
- };
"abbrev-1.1.1" = {
name = "abbrev";
packageName = "abbrev";
@@ -139,319 +13,40 @@ let
sha512 = "38s4f3id97wsb0rg9nm9zvxyq0nvwrmrpa5dzvrkp36mf5ibs98b4z6lvsbrwzzs0sbcank6c7gpp06vcwp9acfhp41rzlhi3ybsxwy";
};
};
- "archy-1.0.0" = {
- name = "archy";
- packageName = "archy";
- version = "1.0.0";
+ "accepts-1.3.4" = {
+ name = "accepts";
+ packageName = "accepts";
+ version = "1.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz";
- sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
+ url = "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz";
+ sha1 = "86246758c7dd6d21a6474ff084a4740ec05eb21f";
};
};
- "chalk-1.1.3" = {
- name = "chalk";
- packageName = "chalk";
- version = "1.1.3";
+ "after-0.8.2" = {
+ name = "after";
+ packageName = "after";
+ version = "0.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
- sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
+ url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz";
+ sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f";
};
};
- "deprecated-0.0.1" = {
- name = "deprecated";
- packageName = "deprecated";
- version = "0.0.1";
+ "ajv-4.11.8" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "4.11.8";
src = fetchurl {
- url = "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz";
- sha1 = "f9c9af5464afa1e7a971458a8bdef2aa94d5bb19";
+ url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
+ sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
};
};
- "gulp-util-3.0.8" = {
- name = "gulp-util";
- packageName = "gulp-util";
- version = "3.0.8";
+ "ajv-5.5.2" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "5.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz";
- sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f";
- };
- };
- "interpret-1.1.0" = {
- name = "interpret";
- packageName = "interpret";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
- sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
- };
- };
- "liftoff-2.5.0" = {
- name = "liftoff";
- packageName = "liftoff";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
- sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
- };
- };
- "minimist-1.2.0" = {
- name = "minimist";
- packageName = "minimist";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
- sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
- };
- };
- "orchestrator-0.3.8" = {
- name = "orchestrator";
- packageName = "orchestrator";
- version = "0.3.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz";
- sha1 = "14e7e9e2764f7315fbac184e506c7aa6df94ad7e";
- };
- };
- "pretty-hrtime-1.0.3" = {
- name = "pretty-hrtime";
- packageName = "pretty-hrtime";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz";
- sha1 = "b7e3ea42435a4c9b2759d99e0f201eb195802ee1";
- };
- };
- "semver-4.3.6" = {
- name = "semver";
- packageName = "semver";
- version = "4.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz";
- sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da";
- };
- };
- "tildify-1.2.0" = {
- name = "tildify";
- packageName = "tildify";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz";
- sha1 = "dcec03f55dca9b7aa3e5b04f21817eb56e63588a";
- };
- };
- "v8flags-2.1.1" = {
- name = "v8flags";
- packageName = "v8flags";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz";
- sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4";
- };
- };
- "vinyl-fs-0.3.14" = {
- name = "vinyl-fs";
- packageName = "vinyl-fs";
- version = "0.3.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz";
- sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6";
- };
- };
- "ansi-styles-2.2.1" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
- sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
- };
- };
- "escape-string-regexp-1.0.5" = {
- name = "escape-string-regexp";
- packageName = "escape-string-regexp";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
- };
- };
- "has-ansi-2.0.0" = {
- name = "has-ansi";
- packageName = "has-ansi";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
- sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
- };
- };
- "strip-ansi-3.0.1" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
- };
- };
- "supports-color-2.0.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
- sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
- };
- };
- "ansi-regex-2.1.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
- };
- };
- "array-differ-1.0.0" = {
- name = "array-differ";
- packageName = "array-differ";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz";
- sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031";
- };
- };
- "array-uniq-1.0.3" = {
- name = "array-uniq";
- packageName = "array-uniq";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
- sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
- };
- };
- "beeper-1.1.1" = {
- name = "beeper";
- packageName = "beeper";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz";
- sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809";
- };
- };
- "dateformat-2.2.0" = {
- name = "dateformat";
- packageName = "dateformat";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz";
- sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062";
- };
- };
- "fancy-log-1.3.2" = {
- name = "fancy-log";
- packageName = "fancy-log";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz";
- sha1 = "f41125e3d84f2e7d89a43d06d958c8f78be16be1";
- };
- };
- "gulplog-1.0.0" = {
- name = "gulplog";
- packageName = "gulplog";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz";
- sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5";
- };
- };
- "has-gulplog-0.1.0" = {
- name = "has-gulplog";
- packageName = "has-gulplog";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz";
- sha1 = "6414c82913697da51590397dafb12f22967811ce";
- };
- };
- "lodash._reescape-3.0.0" = {
- name = "lodash._reescape";
- packageName = "lodash._reescape";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz";
- sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a";
- };
- };
- "lodash._reevaluate-3.0.0" = {
- name = "lodash._reevaluate";
- packageName = "lodash._reevaluate";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz";
- sha1 = "58bc74c40664953ae0b124d806996daca431e2ed";
- };
- };
- "lodash._reinterpolate-3.0.0" = {
- name = "lodash._reinterpolate";
- packageName = "lodash._reinterpolate";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz";
- sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d";
- };
- };
- "lodash.template-3.6.2" = {
- name = "lodash.template";
- packageName = "lodash.template";
- version = "3.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz";
- sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f";
- };
- };
- "multipipe-0.1.2" = {
- name = "multipipe";
- packageName = "multipipe";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz";
- sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
- };
- };
- "object-assign-3.0.0" = {
- name = "object-assign";
- packageName = "object-assign";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz";
- sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2";
- };
- };
- "replace-ext-0.0.1" = {
- name = "replace-ext";
- packageName = "replace-ext";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz";
- sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924";
- };
- };
- "through2-2.0.3" = {
- name = "through2";
- packageName = "through2";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz";
- sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
- };
- };
- "vinyl-0.5.3" = {
- name = "vinyl";
- packageName = "vinyl";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz";
- sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde";
+ url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
+ sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
};
};
"ansi-gray-0.1.1" = {
@@ -463,22 +58,22 @@ let
sha1 = "2962cf54ec9792c48510a3deb524436861ef7251";
};
};
- "color-support-1.1.3" = {
- name = "color-support";
- packageName = "color-support";
- version = "1.1.3";
+ "ansi-regex-2.1.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz";
- sha512 = "13g563h7mrddc3rlljgg75km4zycb8rhzxb5wiiricqvh4n7zgl60psnz39ijkzx5bn93s5qvacwkxbg1cglcmg5z3yyb6cjs96685a";
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
+ sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
};
};
- "time-stamp-1.1.0" = {
- name = "time-stamp";
- packageName = "time-stamp";
- version = "1.1.0";
+ "ansi-styles-2.2.1" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz";
- sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3";
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
+ sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
};
};
"ansi-wrap-0.1.0" = {
@@ -490,1678 +85,22 @@ let
sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf";
};
};
- "glogg-1.0.0" = {
- name = "glogg";
- packageName = "glogg";
+ "aproba-1.2.0" = {
+ name = "aproba";
+ packageName = "aproba";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
+ sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3";
+ };
+ };
+ "archy-1.0.0" = {
+ name = "archy";
+ packageName = "archy";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz";
- sha1 = "7fe0f199f57ac906cf512feead8f90ee4a284fc5";
- };
- };
- "sparkles-1.0.0" = {
- name = "sparkles";
- packageName = "sparkles";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz";
- sha1 = "1acbbfb592436d10bbe8f785b7cc6f82815012c3";
- };
- };
- "lodash._basecopy-3.0.1" = {
- name = "lodash._basecopy";
- packageName = "lodash._basecopy";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz";
- sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36";
- };
- };
- "lodash._basetostring-3.0.1" = {
- name = "lodash._basetostring";
- packageName = "lodash._basetostring";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz";
- sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5";
- };
- };
- "lodash._basevalues-3.0.0" = {
- name = "lodash._basevalues";
- packageName = "lodash._basevalues";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz";
- sha1 = "5b775762802bde3d3297503e26300820fdf661b7";
- };
- };
- "lodash._isiterateecall-3.0.9" = {
- name = "lodash._isiterateecall";
- packageName = "lodash._isiterateecall";
- version = "3.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz";
- sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c";
- };
- };
- "lodash.escape-3.2.0" = {
- name = "lodash.escape";
- packageName = "lodash.escape";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz";
- sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698";
- };
- };
- "lodash.keys-3.1.2" = {
- name = "lodash.keys";
- packageName = "lodash.keys";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz";
- sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a";
- };
- };
- "lodash.restparam-3.6.1" = {
- name = "lodash.restparam";
- packageName = "lodash.restparam";
- version = "3.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz";
- sha1 = "936a4e309ef330a7645ed4145986c85ae5b20805";
- };
- };
- "lodash.templatesettings-3.1.1" = {
- name = "lodash.templatesettings";
- packageName = "lodash.templatesettings";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz";
- sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5";
- };
- };
- "lodash._root-3.0.1" = {
- name = "lodash._root";
- packageName = "lodash._root";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz";
- sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692";
- };
- };
- "lodash._getnative-3.9.1" = {
- name = "lodash._getnative";
- packageName = "lodash._getnative";
- version = "3.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz";
- sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5";
- };
- };
- "lodash.isarguments-3.1.0" = {
- name = "lodash.isarguments";
- packageName = "lodash.isarguments";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz";
- sha1 = "2f573d85c6a24289ff00663b491c1d338ff3458a";
- };
- };
- "lodash.isarray-3.0.4" = {
- name = "lodash.isarray";
- packageName = "lodash.isarray";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz";
- sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55";
- };
- };
- "duplexer2-0.0.2" = {
- name = "duplexer2";
- packageName = "duplexer2";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz";
- sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db";
- };
- };
- "readable-stream-1.1.14" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.1.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
- sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
- };
- };
- "core-util-is-1.0.2" = {
- name = "core-util-is";
- packageName = "core-util-is";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
- sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
- };
- };
- "isarray-0.0.1" = {
- name = "isarray";
- packageName = "isarray";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
- sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
- };
- };
- "string_decoder-0.10.31" = {
- name = "string_decoder";
- packageName = "string_decoder";
- version = "0.10.31";
- src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
- sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
- };
- };
- "readable-stream-2.3.3" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz";
- sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv";
- };
- };
- "xtend-4.0.1" = {
- name = "xtend";
- packageName = "xtend";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
- sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
- };
- };
- "isarray-1.0.0" = {
- name = "isarray";
- packageName = "isarray";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- };
- "process-nextick-args-1.0.7" = {
- name = "process-nextick-args";
- packageName = "process-nextick-args";
- version = "1.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
- sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
- };
- };
- "safe-buffer-5.1.1" = {
- name = "safe-buffer";
- packageName = "safe-buffer";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz";
- sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh";
- };
- };
- "string_decoder-1.0.3" = {
- name = "string_decoder";
- packageName = "string_decoder";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz";
- sha512 = "22vw5mmwlyblqc2zyqwl39wyhyahhpiyknim8iz5fk6xi002x777gkswiq8fh297djs5ii4pgrys57wq33hr5zf3xfd0d7kjxkzl0g0";
- };
- };
- "util-deprecate-1.0.2" = {
- name = "util-deprecate";
- packageName = "util-deprecate";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
- };
- };
- "clone-1.0.3" = {
- name = "clone";
- packageName = "clone";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz";
- sha1 = "298d7e2231660f40c003c2ed3140decf3f53085f";
- };
- };
- "clone-stats-0.0.1" = {
- name = "clone-stats";
- packageName = "clone-stats";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz";
- sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1";
- };
- };
- "extend-3.0.1" = {
- name = "extend";
- packageName = "extend";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz";
- sha1 = "a755ea7bc1adfcc5a31ce7e762dbaadc5e636444";
- };
- };
- "findup-sync-2.0.0" = {
- name = "findup-sync";
- packageName = "findup-sync";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
- sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
- };
- };
- "fined-1.1.0" = {
- name = "fined";
- packageName = "fined";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz";
- sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476";
- };
- };
- "flagged-respawn-1.0.0" = {
- name = "flagged-respawn";
- packageName = "flagged-respawn";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz";
- sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7";
- };
- };
- "is-plain-object-2.0.4" = {
- name = "is-plain-object";
- packageName = "is-plain-object";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
- sha512 = "0xgsjz9m3kg5pm36lcchblxk53qay59ya7wi5jgdmz0dsl5b0j2j7wcd48yyfaip1m70mj9aqf8kib02fn62k0hy0vxg2hng60yk4w7";
- };
- };
- "object.map-1.0.0" = {
- name = "object.map";
- packageName = "object.map";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.map/-/object.map-1.0.0.tgz";
- sha1 = "92aef871cd6dcbced31fe29c0921db8395624597";
- };
- };
- "rechoir-0.6.2" = {
- name = "rechoir";
- packageName = "rechoir";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
- sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
- };
- };
- "resolve-1.5.0" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz";
- sha512 = "25scf9zkhf5yc9x3d7mfq2im5vyxmq3ih939na6jzblal7mgfcijmadl2maz501mkccykj714gvdhhmlzi86hbk7k03r9ipnwd142l6";
- };
- };
- "detect-file-1.0.0" = {
- name = "detect-file";
- packageName = "detect-file";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
- sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
- };
- };
- "is-glob-3.1.0" = {
- name = "is-glob";
- packageName = "is-glob";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
- sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
- };
- };
- "micromatch-3.1.4" = {
- name = "micromatch";
- packageName = "micromatch";
- version = "3.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.4.tgz";
- sha512 = "1z55bzyr3xwhvk8wbclnfjsbzwivqf9whb7k84gd8ljwfzmhsra430ikzd3p0nzxk90ybqas0c4bl6j4l1q5iyyz99h584q4az6sm4h";
- };
- };
- "resolve-dir-1.0.1" = {
- name = "resolve-dir";
- packageName = "resolve-dir";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
- sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
- };
- };
- "is-extglob-2.1.1" = {
- name = "is-extglob";
- packageName = "is-extglob";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
- sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
- };
- };
- "arr-diff-4.0.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
- sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
- };
- };
- "array-unique-0.3.2" = {
- name = "array-unique";
- packageName = "array-unique";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
- sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
- };
- };
- "braces-2.3.0" = {
- name = "braces";
- packageName = "braces";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/braces/-/braces-2.3.0.tgz";
- sha512 = "2ngfivxj9g7knac123y1lk3arpmmzdhfn2g4qf1n4kzpvka4vafp48zcsh2qq7c97fxw2la5q2h6m2xcq5b1cr8b45j66jx0i8vr0rz";
- };
- };
- "define-property-1.0.0" = {
- name = "define-property";
- packageName = "define-property";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
- sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
- };
- };
- "extend-shallow-2.0.1" = {
- name = "extend-shallow";
- packageName = "extend-shallow";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
- sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
- };
- };
- "extglob-2.0.2" = {
- name = "extglob";
- packageName = "extglob";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/extglob/-/extglob-2.0.2.tgz";
- sha512 = "3bi96hlw84salahixd3vvyzzx1riqlfnrf44qnlhl46yqpl5rad97halvj3vybzvh970jyk50lagp9qys69qhayy25m337y25j9wkr3";
- };
- };
- "fragment-cache-0.2.1" = {
- name = "fragment-cache";
- packageName = "fragment-cache";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
- sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
- };
- };
- "kind-of-6.0.2" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
- sha512 = "2l91vcracq8y3nxacsssb4yhk0ww011gi5sn55wsb6bpnhyds2i1x98512f61r8awxmj602bxky6c7hsyibjvz17f1pmlf7r4whp6dk";
- };
- };
- "nanomatch-1.2.6" = {
- name = "nanomatch";
- packageName = "nanomatch";
- version = "1.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.6.tgz";
- sha512 = "014pd4mh3hhi0gmrpss462ivnr8ic21ihmyjs4rx6v5prf5mw2zqzhsxbinx2mxiy4kc7wlw5w052bi18y6rgxq7l2pangg4r69g7jq";
- };
- };
- "object.pick-1.3.0" = {
- name = "object.pick";
- packageName = "object.pick";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
- sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
- };
- };
- "regex-not-1.0.0" = {
- name = "regex-not";
- packageName = "regex-not";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.0.tgz";
- sha1 = "42f83e39771622df826b02af176525d6a5f157f9";
- };
- };
- "snapdragon-0.8.1" = {
- name = "snapdragon";
- packageName = "snapdragon";
- version = "0.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.1.tgz";
- sha1 = "e12b5487faded3e3dea0ac91e9400bf75b401370";
- };
- };
- "to-regex-3.0.1" = {
- name = "to-regex";
- packageName = "to-regex";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.1.tgz";
- sha1 = "15358bee4a2c83bd76377ba1dc049d0f18837aae";
- };
- };
- "arr-flatten-1.1.0" = {
- name = "arr-flatten";
- packageName = "arr-flatten";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g";
- };
- };
- "fill-range-4.0.0" = {
- name = "fill-range";
- packageName = "fill-range";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
- sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
- };
- };
- "isobject-3.0.1" = {
- name = "isobject";
- packageName = "isobject";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
- sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
- };
- };
- "repeat-element-1.1.2" = {
- name = "repeat-element";
- packageName = "repeat-element";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz";
- sha1 = "ef089a178d1483baae4d93eb98b4f9e4e11d990a";
- };
- };
- "snapdragon-node-2.1.1" = {
- name = "snapdragon-node";
- packageName = "snapdragon-node";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
- sha512 = "2gk18pdld8ij1bpa2mdwl8f7i4rl5d4ys3qw31hipj56wslnsfhp1vxp3q36kj1m4f34wzzlvj0282qx5xlflqf978xyqlc2viyaviv";
- };
- };
- "split-string-3.1.0" = {
- name = "split-string";
- packageName = "split-string";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
- sha512 = "25ih1dx2qb3lawqjxj85znd4l3x8nnigrcdlpfw8064gh2mwxic9bgg5ylgxm9gjl3v8dmyc47rycp8xvqz78jqalg0g9yqj225acrp";
- };
- };
- "is-number-3.0.0" = {
- name = "is-number";
- packageName = "is-number";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
- sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
- };
- };
- "repeat-string-1.6.1" = {
- name = "repeat-string";
- packageName = "repeat-string";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
- sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
- };
- };
- "to-regex-range-2.1.1" = {
- name = "to-regex-range";
- packageName = "to-regex-range";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
- sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
- };
- };
- "kind-of-3.2.2" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
- sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
- };
- };
- "is-buffer-1.1.6" = {
- name = "is-buffer";
- packageName = "is-buffer";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
- sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm";
- };
- };
- "snapdragon-util-3.0.1" = {
- name = "snapdragon-util";
- packageName = "snapdragon-util";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
- sha512 = "1jsaqma4ycl2iq0761i1w7758z1kq7gbsij4xfb7p5cnw0qa62pszv6pr3j856n3pbxww7wwxs5wvcg2cb6vy020kw3bchashqs9clr";
- };
- };
- "extend-shallow-3.0.2" = {
- name = "extend-shallow";
- packageName = "extend-shallow";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
- sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
- };
- };
- "assign-symbols-1.0.0" = {
- name = "assign-symbols";
- packageName = "assign-symbols";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
- sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
- };
- };
- "is-extendable-1.0.1" = {
- name = "is-extendable";
- packageName = "is-extendable";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
- sha512 = "0w73qlx9ynmv2iznw1kll86yd04z4rsz3788nzgh7amcnpsbyxbrs734im9dibqgps6pjyz61s8kp4lcsbjsdfrlc51m1pm2hrxgfba";
- };
- };
- "is-descriptor-1.0.1" = {
- name = "is-descriptor";
- packageName = "is-descriptor";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.1.tgz";
- sha512 = "1s669mqvckcwsqrnni08lac1anx00q82rkfplnq6zl9inaqzlq8n9ln8j8m49a9gaxjrwgkl8wjw4188whbj65yxspalzgaaiacaxqv";
- };
- };
- "is-accessor-descriptor-0.1.6" = {
- name = "is-accessor-descriptor";
- packageName = "is-accessor-descriptor";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
- sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
- };
- };
- "is-data-descriptor-0.1.4" = {
- name = "is-data-descriptor";
- packageName = "is-data-descriptor";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
- sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
- };
- };
- "kind-of-5.1.0" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
- sha512 = "0zk87sccrjx6pgf9n74v4msnqwq5siyhrkpaklx7yk85ygy5ypcgmyfhbd5mmcyd53x8zcw0gzvp9bhbglziqbhp7a6n5zsf6p08q9l";
- };
- };
- "is-extendable-0.1.1" = {
- name = "is-extendable";
- packageName = "is-extendable";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
- sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
- };
- };
- "expand-brackets-2.1.4" = {
- name = "expand-brackets";
- packageName = "expand-brackets";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
- sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
- };
- };
- "debug-2.6.9" = {
- name = "debug";
- packageName = "debug";
- version = "2.6.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
- sha512 = "0q0fsr8bk1m83z0am0h2xn09vyfcf18adscxms8hclznwks1aihsisd96h8npx0idq5wwnypnqrkyk25m5d9zh3dk7rjs29nybc8bkc";
- };
- };
- "define-property-0.2.5" = {
- name = "define-property";
- packageName = "define-property";
- version = "0.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
- sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
- };
- };
- "posix-character-classes-0.1.1" = {
- name = "posix-character-classes";
- packageName = "posix-character-classes";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
- sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
- };
- };
- "ms-2.0.0" = {
- name = "ms";
- packageName = "ms";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
- };
- };
- "is-descriptor-0.1.6" = {
- name = "is-descriptor";
- packageName = "is-descriptor";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
- sha512 = "0gbflcxmd30gzj91y19fylsfalirl6qg71sxjximc8lc2vxkg5h9scnahvxsczymchlx742i8ai489843ys431vyw73rp418jpxiw3a";
- };
- };
- "map-cache-0.2.2" = {
- name = "map-cache";
- packageName = "map-cache";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
- sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
- };
- };
- "is-odd-1.0.0" = {
- name = "is-odd";
- packageName = "is-odd";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-odd/-/is-odd-1.0.0.tgz";
- sha1 = "3b8a932eb028b3775c39bb09e91767accdb69088";
- };
- };
- "base-0.11.2" = {
- name = "base";
- packageName = "base";
- version = "0.11.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
- sha512 = "11dwi4v72034dqafp0qxsg8h6cpn92vv4vf909a9fybd69yfg6gqn4hhav6x59r1wbi8h1qlgfh9np0340mpljv1hc9v9p02giqygp5";
- };
- };
- "source-map-0.5.7" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
- sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
- };
- };
- "source-map-resolve-0.5.1" = {
- name = "source-map-resolve";
- packageName = "source-map-resolve";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz";
- sha512 = "3ccyfzn4imm9m891wy0bqh85lxrsf82snlh7dlgvjc28rpd2m6n95x8kjmm2crcpqv6234xc2lqzp1h1cyx7xrn146nzinzzk1bd9fh";
- };
- };
- "use-2.0.2" = {
- name = "use";
- packageName = "use";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/use/-/use-2.0.2.tgz";
- sha1 = "ae28a0d72f93bf22422a18a2e379993112dec8e8";
- };
- };
- "cache-base-1.0.1" = {
- name = "cache-base";
- packageName = "cache-base";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
- sha512 = "36i943khi87af4gif9r6imjgybqxq9cbd69z2h8p2s2j6scfbhrv7j3n591xl982fmyq29rkwh70a6qdcf3v0piwzfh8n2jf571v9q0";
- };
- };
- "class-utils-0.3.5" = {
- name = "class-utils";
- packageName = "class-utils";
- version = "0.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.5.tgz";
- sha1 = "17e793103750f9627b2176ea34cfd1b565903c80";
- };
- };
- "component-emitter-1.2.1" = {
- name = "component-emitter";
- packageName = "component-emitter";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
- sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
- };
- };
- "mixin-deep-1.3.0" = {
- name = "mixin-deep";
- packageName = "mixin-deep";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.0.tgz";
- sha512 = "016isy937hd503fn41ivc4j267cr1brp7f65waxkk2ijslc1gyh7r815xk4g27cjrgjzydwqbpwk5yj4nyjj085n3l5k2vsi2z841kn";
- };
- };
- "pascalcase-0.1.1" = {
- name = "pascalcase";
- packageName = "pascalcase";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
- sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
- };
- };
- "collection-visit-1.0.0" = {
- name = "collection-visit";
- packageName = "collection-visit";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
- sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
- };
- };
- "get-value-2.0.6" = {
- name = "get-value";
- packageName = "get-value";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
- sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
- };
- };
- "has-value-1.0.0" = {
- name = "has-value";
- packageName = "has-value";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
- sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
- };
- };
- "set-value-2.0.0" = {
- name = "set-value";
- packageName = "set-value";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
- sha512 = "1xdxg14zh452ih8f7826ki7xpq8wk8a831pm5zngqf8cbc4qv6mr9npks863bfqylfrhm161whf9199rmqn4i12wzmz2ks69z3343c7";
- };
- };
- "to-object-path-0.3.0" = {
- name = "to-object-path";
- packageName = "to-object-path";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
- sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
- };
- };
- "union-value-1.0.0" = {
- name = "union-value";
- packageName = "union-value";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
- sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
- };
- };
- "unset-value-1.0.0" = {
- name = "unset-value";
- packageName = "unset-value";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
- sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
- };
- };
- "map-visit-1.0.0" = {
- name = "map-visit";
- packageName = "map-visit";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
- sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
- };
- };
- "object-visit-1.0.1" = {
- name = "object-visit";
- packageName = "object-visit";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
- sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
- };
- };
- "has-values-1.0.0" = {
- name = "has-values";
- packageName = "has-values";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
- sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
- };
- };
- "kind-of-4.0.0" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
- sha1 = "20813df3d712928b207378691a45066fae72dd57";
- };
- };
- "arr-union-3.1.0" = {
- name = "arr-union";
- packageName = "arr-union";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
- sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
- };
- };
- "set-value-0.4.3" = {
- name = "set-value";
- packageName = "set-value";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
- sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
- };
- };
- "has-value-0.3.1" = {
- name = "has-value";
- packageName = "has-value";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
- sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
- };
- };
- "has-values-0.1.4" = {
- name = "has-values";
- packageName = "has-values";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
- sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
- };
- };
- "isobject-2.1.0" = {
- name = "isobject";
- packageName = "isobject";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
- sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
- };
- };
- "lazy-cache-2.0.2" = {
- name = "lazy-cache";
- packageName = "lazy-cache";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz";
- sha1 = "b9190a4f913354694840859f8a8f7084d8822264";
- };
- };
- "static-extend-0.1.2" = {
- name = "static-extend";
- packageName = "static-extend";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
- sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
- };
- };
- "set-getter-0.1.0" = {
- name = "set-getter";
- packageName = "set-getter";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz";
- sha1 = "d769c182c9d5a51f409145f2fba82e5e86e80376";
- };
- };
- "object-copy-0.1.0" = {
- name = "object-copy";
- packageName = "object-copy";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
- sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
- };
- };
- "copy-descriptor-0.1.1" = {
- name = "copy-descriptor";
- packageName = "copy-descriptor";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
- sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
- };
- };
- "for-in-1.0.2" = {
- name = "for-in";
- packageName = "for-in";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
- sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
- };
- };
- "decode-uri-component-0.2.0" = {
- name = "decode-uri-component";
- packageName = "decode-uri-component";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
- sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
- };
- };
- "source-map-url-0.4.0" = {
- name = "source-map-url";
- packageName = "source-map-url";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
- sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
- };
- };
- "atob-2.0.3" = {
- name = "atob";
- packageName = "atob";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz";
- sha1 = "19c7a760473774468f20b2d2d03372ad7d4cbf5d";
- };
- };
- "urix-0.1.0" = {
- name = "urix";
- packageName = "urix";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
- sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
- };
- };
- "resolve-url-0.2.1" = {
- name = "resolve-url";
- packageName = "resolve-url";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
- sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
- };
- };
- "expand-tilde-2.0.2" = {
- name = "expand-tilde";
- packageName = "expand-tilde";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
- sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
- };
- };
- "global-modules-1.0.0" = {
- name = "global-modules";
- packageName = "global-modules";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
- sha512 = "1pgpsvm0rm1fnqmblx77xs67gh8c80nf4dsgcgalhh9phmlp8ahn5w7vzx3xkwyxw3fg33h8vhh3plsycw6fd7c2r76mm7m8w9fkb5h";
- };
- };
- "homedir-polyfill-1.0.1" = {
- name = "homedir-polyfill";
- packageName = "homedir-polyfill";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz";
- sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc";
- };
- };
- "parse-passwd-1.0.0" = {
- name = "parse-passwd";
- packageName = "parse-passwd";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
- sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
- };
- };
- "global-prefix-1.0.2" = {
- name = "global-prefix";
- packageName = "global-prefix";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
- sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
- };
- };
- "is-windows-1.0.1" = {
- name = "is-windows";
- packageName = "is-windows";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.1.tgz";
- sha1 = "310db70f742d259a16a369202b51af84233310d9";
- };
- };
- "ini-1.3.5" = {
- name = "ini";
- packageName = "ini";
- version = "1.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
- sha512 = "1rjbvf1rg5ywhnba08sgagn2qf23lab330qrqmh7d891zap3xpxcyfyj1cblpf0f0rypglcfacybzyrpd4996aa1mbc820awa33k5j5";
- };
- };
- "which-1.3.0" = {
- name = "which";
- packageName = "which";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
- sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
- };
- };
- "isexe-2.0.0" = {
- name = "isexe";
- packageName = "isexe";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
- };
- };
- "object.defaults-1.1.0" = {
- name = "object.defaults";
- packageName = "object.defaults";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
- sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
- };
- };
- "parse-filepath-1.0.2" = {
- name = "parse-filepath";
- packageName = "parse-filepath";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
- sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
- };
- };
- "array-each-1.0.1" = {
- name = "array-each";
- packageName = "array-each";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
- sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
- };
- };
- "array-slice-1.1.0" = {
- name = "array-slice";
- packageName = "array-slice";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
- sha512 = "3myjiz16qi117x0k52sisqyn0cqx6yxvpgr43bkil9shgs7yhs8wpdgd3wjwfzgwxsw330yqwhp880gsyx2kxj1lfyb6gs1fh7qqnh7";
- };
- };
- "for-own-1.0.0" = {
- name = "for-own";
- packageName = "for-own";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
- sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
- };
- };
- "is-absolute-1.0.0" = {
- name = "is-absolute";
- packageName = "is-absolute";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
- sha512 = "02g5p9wfcx3f1p0zq01ycrx5biwg79qg1mdw1cv6li7kxpny5hxsp34ynam7w2g6nvah73f0kzdkh6pxxmx1ymd8m02fwvgz6lsirbl";
- };
- };
- "path-root-0.1.1" = {
- name = "path-root";
- packageName = "path-root";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
- sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
- };
- };
- "is-relative-1.0.0" = {
- name = "is-relative";
- packageName = "is-relative";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
- sha512 = "0c1pd4414iy40xq652p1zgqgmncmm7xcns96pfazd63v439vyc1z93bvzvbw5r2qc4fp24414ydnj4gdsqlq223pfg05ar2mmwd23rb";
- };
- };
- "is-unc-path-1.0.0" = {
- name = "is-unc-path";
- packageName = "is-unc-path";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
- sha512 = "2asak63h3kc1vackrpai7qfiv15ndr231w1yc753m1dy7fd6ywxsr0rvh88b9ppyxhmc373fqk89a0pw3dllv7m5nbbbcqzvmaskccs";
- };
- };
- "unc-path-regex-0.1.2" = {
- name = "unc-path-regex";
- packageName = "unc-path-regex";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
- sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
- };
- };
- "path-root-regex-0.1.2" = {
- name = "path-root-regex";
- packageName = "path-root-regex";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
- sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
- };
- };
- "for-own-0.1.5" = {
- name = "for-own";
- packageName = "for-own";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz";
- sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce";
- };
- };
- "make-iterator-1.0.0" = {
- name = "make-iterator";
- packageName = "make-iterator";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.0.tgz";
- sha1 = "57bef5dc85d23923ba23767324d8e8f8f3d9694b";
- };
- };
- "path-parse-1.0.5" = {
- name = "path-parse";
- packageName = "path-parse";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz";
- sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1";
- };
- };
- "end-of-stream-0.1.5" = {
- name = "end-of-stream";
- packageName = "end-of-stream";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz";
- sha1 = "8e177206c3c80837d85632e8b9359dfe8b2f6eaf";
- };
- };
- "sequencify-0.0.7" = {
- name = "sequencify";
- packageName = "sequencify";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz";
- sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c";
- };
- };
- "stream-consume-0.1.0" = {
- name = "stream-consume";
- packageName = "stream-consume";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz";
- sha1 = "a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f";
- };
- };
- "once-1.3.3" = {
- name = "once";
- packageName = "once";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz";
- sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20";
- };
- };
- "os-homedir-1.0.2" = {
- name = "os-homedir";
- packageName = "os-homedir";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
- };
- };
- "user-home-1.1.1" = {
- name = "user-home";
- packageName = "user-home";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz";
- sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190";
- };
- };
- "defaults-1.0.3" = {
- name = "defaults";
- packageName = "defaults";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz";
- sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d";
- };
- };
- "glob-stream-3.1.18" = {
- name = "glob-stream";
- packageName = "glob-stream";
- version = "3.1.18";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz";
- sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b";
- };
- };
- "glob-watcher-0.0.6" = {
- name = "glob-watcher";
- packageName = "glob-watcher";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz";
- sha1 = "b95b4a8df74b39c83298b0c05c978b4d9a3b710b";
- };
- };
- "graceful-fs-3.0.11" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "3.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz";
- sha1 = "7613c778a1afea62f25c630a086d7f3acbbdd818";
- };
- };
- "mkdirp-0.5.1" = {
- name = "mkdirp";
- packageName = "mkdirp";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
- sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
- };
- };
- "strip-bom-1.0.0" = {
- name = "strip-bom";
- packageName = "strip-bom";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz";
- sha1 = "85b8862f3844b5a6d5ec8467a93598173a36f794";
- };
- };
- "through2-0.6.5" = {
- name = "through2";
- packageName = "through2";
- version = "0.6.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz";
- sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48";
- };
- };
- "vinyl-0.4.6" = {
- name = "vinyl";
- packageName = "vinyl";
- version = "0.4.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz";
- sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847";
- };
- };
- "glob-4.5.3" = {
- name = "glob";
- packageName = "glob";
- version = "4.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz";
- sha1 = "c6cb73d3226c1efef04de3c56d012f03377ee15f";
- };
- };
- "minimatch-2.0.10" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "2.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz";
- sha1 = "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7";
- };
- };
- "ordered-read-streams-0.1.0" = {
- name = "ordered-read-streams";
- packageName = "ordered-read-streams";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz";
- sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126";
- };
- };
- "glob2base-0.0.12" = {
- name = "glob2base";
- packageName = "glob2base";
- version = "0.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz";
- sha1 = "9d419b3e28f12e83a362164a277055922c9c0d56";
- };
- };
- "unique-stream-1.0.0" = {
- name = "unique-stream";
- packageName = "unique-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz";
- sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b";
- };
- };
- "find-index-0.1.1" = {
- name = "find-index";
- packageName = "find-index";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz";
- sha1 = "675d358b2ca3892d795a1ab47232f8b6e2e0dde4";
- };
- };
- "gaze-0.5.2" = {
- name = "gaze";
- packageName = "gaze";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
- sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
- };
- };
- "globule-0.1.0" = {
- name = "globule";
- packageName = "globule";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
- sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
- };
- };
- "lodash-1.0.2" = {
- name = "lodash";
- packageName = "lodash";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
- sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
- };
- };
- "glob-3.1.21" = {
- name = "glob";
- packageName = "glob";
- version = "3.1.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
- sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
- };
- };
- "minimatch-0.2.14" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "0.2.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
- sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
- };
- };
- "graceful-fs-1.2.3" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
- sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
- };
- };
- "inherits-1.0.2" = {
- name = "inherits";
- packageName = "inherits";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
- sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
- };
- };
- "lru-cache-2.7.3" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "2.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
- sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
- };
- };
- "sigmund-1.0.1" = {
- name = "sigmund";
- packageName = "sigmund";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
- sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
- };
- };
- "natives-1.1.1" = {
- name = "natives";
- packageName = "natives";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz";
- sha512 = "08a9lf00d2pkqmdi6ipp00pjin0gwl6fh283cjdjbayaz834lppwrw19kn4s642kwa46bfcway3033j6rbqd96iy86qrzrfgz35mr7i";
- };
- };
- "minimist-0.0.8" = {
- name = "minimist";
- packageName = "minimist";
- version = "0.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
- sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
- };
- };
- "first-chunk-stream-1.0.0" = {
- name = "first-chunk-stream";
- packageName = "first-chunk-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz";
- sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e";
- };
- };
- "is-utf8-0.2.1" = {
- name = "is-utf8";
- packageName = "is-utf8";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz";
- sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
- };
- };
- "readable-stream-1.0.34" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.0.34";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz";
- sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c";
- };
- };
- "clone-0.2.0" = {
- name = "clone";
- packageName = "clone";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz";
- sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f";
- };
- };
- "fstream-1.0.11" = {
- name = "fstream";
- packageName = "fstream";
- version = "1.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
- sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
- };
- };
- "glob-7.1.2" = {
- name = "glob";
- packageName = "glob";
- version = "7.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
- sha512 = "08vjxzixc9dwc1hn5pd60yyij98krk2pr758aiga97r02ncvaqx1hidi95wk470k1v84gg4alls9bm52m77174z128bgf13b61x951h";
- };
- };
- "graceful-fs-4.1.11" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "4.1.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
- sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
- };
- };
- "npmlog-4.1.2" = {
- name = "npmlog";
- packageName = "npmlog";
- version = "4.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
- sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs";
- };
- };
- "osenv-0.1.4" = {
- name = "osenv";
- packageName = "osenv";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz";
- sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644";
- };
- };
- "request-2.83.0" = {
- name = "request";
- packageName = "request";
- version = "2.83.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz";
- sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm";
- };
- };
- "rimraf-2.6.2" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
- sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn";
- };
- };
- "semver-5.3.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz";
- sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f";
- };
- };
- "tar-2.2.1" = {
- name = "tar";
- packageName = "tar";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz";
- sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
- };
- };
- "fs.realpath-1.0.0" = {
- name = "fs.realpath";
- packageName = "fs.realpath";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
+ url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz";
+ sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
};
};
"are-we-there-yet-1.1.4" = {
@@ -2173,130 +112,166 @@ let
sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d";
};
};
- "console-control-strings-1.1.0" = {
- name = "console-control-strings";
- packageName = "console-control-strings";
+ "arr-diff-4.0.0" = {
+ name = "arr-diff";
+ packageName = "arr-diff";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
+ sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
+ };
+ };
+ "arr-flatten-1.1.0" = {
+ name = "arr-flatten";
+ packageName = "arr-flatten";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
- sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
+ url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
+ sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g";
};
};
- "gauge-2.7.4" = {
- name = "gauge";
- packageName = "gauge";
- version = "2.7.4";
+ "arr-union-3.1.0" = {
+ name = "arr-union";
+ packageName = "arr-union";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
- sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
+ url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
+ sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
};
};
- "set-blocking-2.0.0" = {
- name = "set-blocking";
- packageName = "set-blocking";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
- };
- };
- "delegates-1.0.0" = {
- name = "delegates";
- packageName = "delegates";
+ "array-differ-1.0.0" = {
+ name = "array-differ";
+ packageName = "array-differ";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
- sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
+ url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz";
+ sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031";
};
};
- "aproba-1.2.0" = {
- name = "aproba";
- packageName = "aproba";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
- sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3";
- };
- };
- "has-unicode-2.0.1" = {
- name = "has-unicode";
- packageName = "has-unicode";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
- sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
- };
- };
- "object-assign-4.1.1" = {
- name = "object-assign";
- packageName = "object-assign";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
- sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
- };
- };
- "signal-exit-3.0.2" = {
- name = "signal-exit";
- packageName = "signal-exit";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
- sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
- };
- };
- "string-width-1.0.2" = {
- name = "string-width";
- packageName = "string-width";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
- sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
- };
- };
- "wide-align-1.1.2" = {
- name = "wide-align";
- packageName = "wide-align";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
- sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
- };
- };
- "code-point-at-1.1.0" = {
- name = "code-point-at";
- packageName = "code-point-at";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
- sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
- };
- };
- "is-fullwidth-code-point-1.0.0" = {
- name = "is-fullwidth-code-point";
- packageName = "is-fullwidth-code-point";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
- sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
- };
- };
- "number-is-nan-1.0.1" = {
- name = "number-is-nan";
- packageName = "number-is-nan";
+ "array-each-1.0.1" = {
+ name = "array-each";
+ packageName = "array-each";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
- sha1 = "097b602b53422a522c1afb8790318336941a011d";
+ url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
+ sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
};
};
- "os-tmpdir-1.0.2" = {
- name = "os-tmpdir";
- packageName = "os-tmpdir";
+ "array-find-index-1.0.2" = {
+ name = "array-find-index";
+ packageName = "array-find-index";
version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
+ url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz";
+ sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
+ };
+ };
+ "array-flatten-1.1.1" = {
+ name = "array-flatten";
+ packageName = "array-flatten";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz";
+ sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
+ };
+ };
+ "array-slice-1.1.0" = {
+ name = "array-slice";
+ packageName = "array-slice";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
+ sha512 = "3myjiz16qi117x0k52sisqyn0cqx6yxvpgr43bkil9shgs7yhs8wpdgd3wjwfzgwxsw330yqwhp880gsyx2kxj1lfyb6gs1fh7qqnh7";
+ };
+ };
+ "array-uniq-1.0.3" = {
+ name = "array-uniq";
+ packageName = "array-uniq";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
+ sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
+ };
+ };
+ "array-unique-0.3.2" = {
+ name = "array-unique";
+ packageName = "array-unique";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
+ sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
+ };
+ };
+ "asn1-0.2.3" = {
+ name = "asn1";
+ packageName = "asn1";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz";
+ sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
+ };
+ };
+ "assert-plus-0.2.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
+ sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
+ };
+ };
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
+ };
+ };
+ "assign-symbols-1.0.0" = {
+ name = "assign-symbols";
+ packageName = "assign-symbols";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
+ sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
+ };
+ };
+ "async-0.9.2" = {
+ name = "async";
+ packageName = "async";
+ version = "0.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz";
+ sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
+ };
+ };
+ "asynckit-0.4.0" = {
+ name = "asynckit";
+ packageName = "asynckit";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
+ sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
+ };
+ };
+ "atob-2.0.3" = {
+ name = "atob";
+ packageName = "atob";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz";
+ sha1 = "19c7a760473774468f20b2d2d03372ad7d4cbf5d";
+ };
+ };
+ "aws-sign2-0.6.0" = {
+ name = "aws-sign2";
+ packageName = "aws-sign2";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
+ sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
};
};
"aws-sign2-0.7.0" = {
@@ -2317,589 +292,22 @@ let
sha1 = "83ef5ca860b2b32e4a0deedee8c771b9db57471e";
};
};
- "caseless-0.12.0" = {
- name = "caseless";
- packageName = "caseless";
- version = "0.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
- };
- };
- "combined-stream-1.0.5" = {
- name = "combined-stream";
- packageName = "combined-stream";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz";
- sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009";
- };
- };
- "forever-agent-0.6.1" = {
- name = "forever-agent";
- packageName = "forever-agent";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
- };
- };
- "form-data-2.3.1" = {
- name = "form-data";
- packageName = "form-data";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz";
- sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf";
- };
- };
- "har-validator-5.0.3" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "5.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz";
- sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd";
- };
- };
- "hawk-6.0.2" = {
- name = "hawk";
- packageName = "hawk";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz";
- sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als";
- };
- };
- "http-signature-1.2.0" = {
- name = "http-signature";
- packageName = "http-signature";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
- };
- };
- "is-typedarray-1.0.0" = {
- name = "is-typedarray";
- packageName = "is-typedarray";
+ "balanced-match-1.0.0" = {
+ name = "balanced-match";
+ packageName = "balanced-match";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
+ url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
+ sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
};
};
- "isstream-0.1.2" = {
- name = "isstream";
- packageName = "isstream";
- version = "0.1.2";
+ "base-0.11.2" = {
+ name = "base";
+ packageName = "base";
+ version = "0.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
- };
- };
- "json-stringify-safe-5.0.1" = {
- name = "json-stringify-safe";
- packageName = "json-stringify-safe";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
- };
- };
- "mime-types-2.1.17" = {
- name = "mime-types";
- packageName = "mime-types";
- version = "2.1.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz";
- sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a";
- };
- };
- "oauth-sign-0.8.2" = {
- name = "oauth-sign";
- packageName = "oauth-sign";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
- sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
- };
- };
- "performance-now-2.1.0" = {
- name = "performance-now";
- packageName = "performance-now";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
- };
- };
- "qs-6.5.1" = {
- name = "qs";
- packageName = "qs";
- version = "6.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz";
- sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r";
- };
- };
- "stringstream-0.0.5" = {
- name = "stringstream";
- packageName = "stringstream";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz";
- sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878";
- };
- };
- "tough-cookie-2.3.3" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz";
- sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561";
- };
- };
- "tunnel-agent-0.6.0" = {
- name = "tunnel-agent";
- packageName = "tunnel-agent";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
- };
- };
- "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 = "3x5mi85l1559nkb35pfksjjgiyfyqrcvmcf0nly1xjl1kb0d37jnxd6sk0b8d331waadnqbf60nfssb563x9pvnjcw87lrh976sv18c";
- };
- };
- "delayed-stream-1.0.0" = {
- name = "delayed-stream";
- packageName = "delayed-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
- };
- };
- "asynckit-0.4.0" = {
- name = "asynckit";
- packageName = "asynckit";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
- };
- };
- "ajv-5.5.2" = {
- name = "ajv";
- packageName = "ajv";
- version = "5.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
- sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
- };
- };
- "har-schema-2.0.0" = {
- name = "har-schema";
- packageName = "har-schema";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
- };
- };
- "co-4.6.0" = {
- name = "co";
- packageName = "co";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
- sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
- };
- };
- "fast-deep-equal-1.0.0" = {
- name = "fast-deep-equal";
- packageName = "fast-deep-equal";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz";
- sha1 = "96256a3bc975595eb36d82e9929d060d893439ff";
- };
- };
- "fast-json-stable-stringify-2.0.0" = {
- name = "fast-json-stable-stringify";
- packageName = "fast-json-stable-stringify";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
- sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
- };
- };
- "json-schema-traverse-0.3.1" = {
- name = "json-schema-traverse";
- packageName = "json-schema-traverse";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz";
- sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340";
- };
- };
- "hoek-4.2.0" = {
- name = "hoek";
- packageName = "hoek";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz";
- sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz";
- };
- };
- "boom-4.3.1" = {
- name = "boom";
- packageName = "boom";
- version = "4.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz";
- sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31";
- };
- };
- "cryptiles-3.1.2" = {
- name = "cryptiles";
- packageName = "cryptiles";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz";
- sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe";
- };
- };
- "sntp-2.1.0" = {
- name = "sntp";
- packageName = "sntp";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz";
- sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
- };
- };
- "boom-5.2.0" = {
- name = "boom";
- packageName = "boom";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz";
- sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437";
- };
- };
- "assert-plus-1.0.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- };
- "jsprim-1.4.1" = {
- name = "jsprim";
- packageName = "jsprim";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
- sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
- };
- };
- "sshpk-1.13.1" = {
- name = "sshpk";
- packageName = "sshpk";
- version = "1.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz";
- sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3";
- };
- };
- "extsprintf-1.3.0" = {
- name = "extsprintf";
- packageName = "extsprintf";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
- sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
- };
- };
- "json-schema-0.2.3" = {
- name = "json-schema";
- packageName = "json-schema";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
- };
- };
- "verror-1.10.0" = {
- name = "verror";
- packageName = "verror";
- version = "1.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
- };
- };
- "asn1-0.2.3" = {
- name = "asn1";
- packageName = "asn1";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz";
- sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
- };
- };
- "dashdash-1.14.1" = {
- name = "dashdash";
- packageName = "dashdash";
- version = "1.14.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
- };
- };
- "getpass-0.1.7" = {
- name = "getpass";
- packageName = "getpass";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
- };
- };
- "jsbn-0.1.1" = {
- name = "jsbn";
- packageName = "jsbn";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
- };
- };
- "tweetnacl-0.14.5" = {
- name = "tweetnacl";
- packageName = "tweetnacl";
- version = "0.14.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
- };
- };
- "ecc-jsbn-0.1.1" = {
- name = "ecc-jsbn";
- packageName = "ecc-jsbn";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz";
- sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505";
- };
- };
- "bcrypt-pbkdf-1.0.1" = {
- name = "bcrypt-pbkdf";
- packageName = "bcrypt-pbkdf";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz";
- sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d";
- };
- };
- "mime-db-1.30.0" = {
- name = "mime-db";
- packageName = "mime-db";
- version = "1.30.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz";
- sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01";
- };
- };
- "punycode-1.4.1" = {
- name = "punycode";
- packageName = "punycode";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
- sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
- };
- };
- "block-stream-0.0.9" = {
- name = "block-stream";
- packageName = "block-stream";
- version = "0.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
- sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
- };
- };
- "async-0.9.2" = {
- name = "async";
- packageName = "async";
- version = "0.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz";
- sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
- };
- };
- "biased-opener-0.2.8" = {
- name = "biased-opener";
- packageName = "biased-opener";
- version = "0.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/biased-opener/-/biased-opener-0.2.8.tgz";
- sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
- };
- };
- "express-4.16.2" = {
- name = "express";
- packageName = "express";
- version = "4.16.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-4.16.2.tgz";
- sha1 = "e35c6dfe2d64b7dca0a5cd4f21781be3299e076c";
- };
- };
- "rc-1.2.2" = {
- name = "rc";
- packageName = "rc";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.2.2.tgz";
- sha1 = "d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077";
- };
- };
- "serve-favicon-2.4.5" = {
- name = "serve-favicon";
- packageName = "serve-favicon";
- version = "2.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.5.tgz";
- sha512 = "2gn8a5l0hh655cxq2cvvar6k1hl8cpmagplavx6svjiz9kmi968nwbzhpc2fvpcpmsfqb8s5jjq0gvn8vwwc2lx3cj57ckbcf3prcdk";
- };
- };
- "strong-data-uri-1.0.4" = {
- name = "strong-data-uri";
- packageName = "strong-data-uri";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.4.tgz";
- sha1 = "136765ebaf8e0f4ad60c4b146779f062c29d18f0";
- };
- };
- "v8-debug-1.0.1" = {
- name = "v8-debug";
- packageName = "v8-debug";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/v8-debug/-/v8-debug-1.0.1.tgz";
- sha1 = "6ae1c6dae4477bb3ced79b523e4d160c1d8667fe";
- };
- };
- "v8-profiler-5.7.0" = {
- name = "v8-profiler";
- packageName = "v8-profiler";
- version = "5.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/v8-profiler/-/v8-profiler-5.7.0.tgz";
- sha1 = "e8381cbebb5b5fd0ca8d2b09f6a0181a158db34d";
- };
- };
- "ws-1.1.5" = {
- name = "ws";
- packageName = "ws";
- version = "1.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz";
- sha512 = "3iv2yz706h7wyg563jsfjdykkkxs8j49vz60r6qx5by0npfhs98rgc114kdqs15sc52mldscc22bkfpkrs08cwlqaxx8lfdjn5alwm3";
- };
- };
- "yargs-3.32.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "3.32.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz";
- sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995";
- };
- };
- "browser-launcher2-0.4.6" = {
- name = "browser-launcher2";
- packageName = "browser-launcher2";
- version = "0.4.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/browser-launcher2/-/browser-launcher2-0.4.6.tgz";
- sha1 = "51598408a13f4c9c5b20eba44554b2c0b0ae4074";
- };
- };
- "x-default-browser-0.3.1" = {
- name = "x-default-browser";
- packageName = "x-default-browser";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/x-default-browser/-/x-default-browser-0.3.1.tgz";
- sha1 = "7f6194154fd1786cf261e68b5488c47127a04977";
- };
- };
- "headless-0.1.7" = {
- name = "headless";
- packageName = "headless";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/headless/-/headless-0.1.7.tgz";
- sha1 = "6e62fae668947f88184d5c156ede7c5695a7e9c8";
- };
- };
- "lodash-2.4.2" = {
- name = "lodash";
- packageName = "lodash";
- version = "2.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
- sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
- };
- };
- "plist-1.2.0" = {
- name = "plist";
- packageName = "plist";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/plist/-/plist-1.2.0.tgz";
- sha1 = "084b5093ddc92506e259f874b8d9b1afb8c79593";
- };
- };
- "win-detect-browsers-1.0.2" = {
- name = "win-detect-browsers";
- packageName = "win-detect-browsers";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz";
- sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0";
- };
- };
- "uid-0.0.2" = {
- name = "uid";
- packageName = "uid";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uid/-/uid-0.0.2.tgz";
- sha1 = "5e4a5d4b78138b4f70f89fd3c76fc59aa9d2f103";
- };
- };
- "rimraf-2.2.8" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
- sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
+ url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
+ sha512 = "11dwi4v72034dqafp0qxsg8h6cpn92vv4vf909a9fybd69yfg6gqn4hhav6x59r1wbi8h1qlgfh9np0340mpljv1hc9v9p02giqygp5";
};
};
"base64-js-0.0.8" = {
@@ -2911,85 +319,31 @@ let
sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978";
};
};
- "xmlbuilder-4.0.0" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "4.0.0";
+ "bcrypt-pbkdf-1.0.1" = {
+ name = "bcrypt-pbkdf";
+ packageName = "bcrypt-pbkdf";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz";
- sha1 = "98b8f651ca30aa624036f127d11cc66dc7b907a3";
+ url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz";
+ sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d";
};
};
- "xmldom-0.1.27" = {
- name = "xmldom";
- packageName = "xmldom";
- version = "0.1.27";
+ "beeper-1.1.1" = {
+ name = "beeper";
+ packageName = "beeper";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz";
- sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9";
+ url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz";
+ sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809";
};
};
- "lodash-3.10.1" = {
- name = "lodash";
- packageName = "lodash";
- version = "3.10.1";
+ "biased-opener-0.2.8" = {
+ name = "biased-opener";
+ packageName = "biased-opener";
+ version = "0.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz";
- sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6";
- };
- };
- "after-0.8.2" = {
- name = "after";
- packageName = "after";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz";
- sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f";
- };
- };
- "yargs-1.3.3" = {
- name = "yargs";
- packageName = "yargs";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz";
- sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a";
- };
- };
- "default-browser-id-1.0.4" = {
- name = "default-browser-id";
- packageName = "default-browser-id";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/default-browser-id/-/default-browser-id-1.0.4.tgz";
- sha1 = "e59d09a5d157b828b876c26816e61c3d2a2c203a";
- };
- };
- "bplist-parser-0.1.1" = {
- name = "bplist-parser";
- packageName = "bplist-parser";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz";
- sha1 = "d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6";
- };
- };
- "meow-3.7.0" = {
- name = "meow";
- packageName = "meow";
- version = "3.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz";
- sha1 = "72cb668b425228290abbfa856892587308a801fb";
- };
- };
- "untildify-2.1.0" = {
- name = "untildify";
- packageName = "untildify";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/untildify/-/untildify-2.1.0.tgz";
- sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0";
+ url = "https://registry.npmjs.org/biased-opener/-/biased-opener-0.2.8.tgz";
+ sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
};
};
"big-integer-1.6.26" = {
@@ -3001,130 +355,85 @@ let
sha1 = "3af1672fa62daf2d5ecafacf6e5aa0d25e02c1c8";
};
};
- "camelcase-keys-2.1.0" = {
- name = "camelcase-keys";
- packageName = "camelcase-keys";
- version = "2.1.0";
+ "block-stream-0.0.9" = {
+ name = "block-stream";
+ packageName = "block-stream";
+ version = "0.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz";
- sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7";
+ url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
+ sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
};
};
- "decamelize-1.2.0" = {
- name = "decamelize";
- packageName = "decamelize";
- version = "1.2.0";
+ "body-parser-1.18.2" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.18.2";
src = fetchurl {
- url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
- sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz";
+ sha1 = "87678a19d84b47d859b83199bd59bce222b10454";
};
};
- "loud-rejection-1.6.0" = {
- name = "loud-rejection";
- packageName = "loud-rejection";
- version = "1.6.0";
+ "boom-2.10.1" = {
+ name = "boom";
+ packageName = "boom";
+ version = "2.10.1";
src = fetchurl {
- url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz";
- sha1 = "5b46f80147edee578870f086d04821cf998e551f";
+ url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
+ sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
};
};
- "map-obj-1.0.1" = {
- name = "map-obj";
- packageName = "map-obj";
- version = "1.0.1";
+ "boom-4.3.1" = {
+ name = "boom";
+ packageName = "boom";
+ version = "4.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz";
- sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d";
+ url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz";
+ sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31";
};
};
- "normalize-package-data-2.4.0" = {
- name = "normalize-package-data";
- packageName = "normalize-package-data";
- version = "2.4.0";
+ "boom-5.2.0" = {
+ name = "boom";
+ packageName = "boom";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
- sha512 = "01wzws79ps84ylshjb7rfpjykgiqxnpr89s52p2yyzfx8nfvyh5flvf1almiiavsi75xgi8g3s5davc1mmgz7gn8yvlqz6gnhax8f7n";
+ url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz";
+ sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437";
};
};
- "read-pkg-up-1.0.1" = {
- name = "read-pkg-up";
- packageName = "read-pkg-up";
- version = "1.0.1";
+ "bplist-parser-0.1.1" = {
+ name = "bplist-parser";
+ packageName = "bplist-parser";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz";
- sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02";
+ url = "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz";
+ sha1 = "d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6";
};
};
- "redent-1.0.0" = {
- name = "redent";
- packageName = "redent";
- version = "1.0.0";
+ "brace-expansion-1.1.8" = {
+ name = "brace-expansion";
+ packageName = "brace-expansion";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz";
- sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde";
+ url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz";
+ sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292";
};
};
- "trim-newlines-1.0.0" = {
- name = "trim-newlines";
- packageName = "trim-newlines";
- version = "1.0.0";
+ "braces-2.3.0" = {
+ name = "braces";
+ packageName = "braces";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz";
- sha1 = "5887966bb582a4503a41eb524f7d35011815a613";
+ url = "https://registry.npmjs.org/braces/-/braces-2.3.0.tgz";
+ sha512 = "2ngfivxj9g7knac123y1lk3arpmmzdhfn2g4qf1n4kzpvka4vafp48zcsh2qq7c97fxw2la5q2h6m2xcq5b1cr8b45j66jx0i8vr0rz";
};
};
- "camelcase-2.1.1" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "2.1.1";
+ "browser-launcher2-0.4.6" = {
+ name = "browser-launcher2";
+ packageName = "browser-launcher2";
+ version = "0.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz";
- sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f";
- };
- };
- "currently-unhandled-0.4.1" = {
- name = "currently-unhandled";
- packageName = "currently-unhandled";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz";
- sha1 = "988df33feab191ef799a61369dd76c17adf957ea";
- };
- };
- "array-find-index-1.0.2" = {
- name = "array-find-index";
- packageName = "array-find-index";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz";
- sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
- };
- };
- "hosted-git-info-2.5.0" = {
- name = "hosted-git-info";
- packageName = "hosted-git-info";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz";
- sha512 = "355g980qsk8k9hkv60z58llbvpscjl5yqkh4wx719s8jcq2swzn4ynzinj8azmvdgs10r22wb297rmixh9vvsml55sbysdf2i8ipn54";
- };
- };
- "is-builtin-module-1.0.0" = {
- name = "is-builtin-module";
- packageName = "is-builtin-module";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz";
- sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe";
- };
- };
- "validate-npm-package-license-3.0.1" = {
- name = "validate-npm-package-license";
- packageName = "validate-npm-package-license";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz";
- sha1 = "2804babe712ad3379459acfbe24746ab2c303fbc";
+ url = "https://registry.npmjs.org/browser-launcher2/-/browser-launcher2-0.4.6.tgz";
+ sha1 = "51598408a13f4c9c5b20eba44554b2c0b0ae4074";
};
};
"builtin-modules-1.1.1" = {
@@ -3136,211 +445,175 @@ let
sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f";
};
};
- "spdx-correct-1.0.2" = {
- name = "spdx-correct";
- packageName = "spdx-correct";
- version = "1.0.2";
+ "bytes-3.0.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz";
- sha1 = "4b3073d933ff51f3912f03ac5519498a4150db40";
+ url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz";
+ sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
};
};
- "spdx-expression-parse-1.0.4" = {
- name = "spdx-expression-parse";
- packageName = "spdx-expression-parse";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz";
- sha1 = "9bdf2f20e1f40ed447fbe273266191fced51626c";
- };
- };
- "spdx-license-ids-1.2.2" = {
- name = "spdx-license-ids";
- packageName = "spdx-license-ids";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz";
- sha1 = "c9df7a3424594ade6bd11900d596696dc06bac57";
- };
- };
- "find-up-1.1.2" = {
- name = "find-up";
- packageName = "find-up";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz";
- sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f";
- };
- };
- "read-pkg-1.1.0" = {
- name = "read-pkg";
- packageName = "read-pkg";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz";
- sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28";
- };
- };
- "path-exists-2.1.0" = {
- name = "path-exists";
- packageName = "path-exists";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz";
- sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b";
- };
- };
- "pinkie-promise-2.0.1" = {
- name = "pinkie-promise";
- packageName = "pinkie-promise";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
- sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
- };
- };
- "pinkie-2.0.4" = {
- name = "pinkie";
- packageName = "pinkie";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
- sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
- };
- };
- "load-json-file-1.1.0" = {
- name = "load-json-file";
- packageName = "load-json-file";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz";
- sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0";
- };
- };
- "path-type-1.1.0" = {
- name = "path-type";
- packageName = "path-type";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz";
- sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441";
- };
- };
- "parse-json-2.2.0" = {
- name = "parse-json";
- packageName = "parse-json";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz";
- sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9";
- };
- };
- "pify-2.3.0" = {
- name = "pify";
- packageName = "pify";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz";
- sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c";
- };
- };
- "strip-bom-2.0.0" = {
- name = "strip-bom";
- packageName = "strip-bom";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz";
- sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e";
- };
- };
- "error-ex-1.3.1" = {
- name = "error-ex";
- packageName = "error-ex";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz";
- sha1 = "f855a86ce61adc4e8621c3cda21e7a7612c3a8dc";
- };
- };
- "is-arrayish-0.2.1" = {
- name = "is-arrayish";
- packageName = "is-arrayish";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz";
- sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
- };
- };
- "indent-string-2.1.0" = {
- name = "indent-string";
- packageName = "indent-string";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz";
- sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80";
- };
- };
- "strip-indent-1.0.1" = {
- name = "strip-indent";
- packageName = "strip-indent";
+ "cache-base-1.0.1" = {
+ name = "cache-base";
+ packageName = "cache-base";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz";
- sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2";
+ url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
+ sha512 = "36i943khi87af4gif9r6imjgybqxq9cbd69z2h8p2s2j6scfbhrv7j3n591xl982fmyq29rkwh70a6qdcf3v0piwzfh8n2jf571v9q0";
};
};
- "repeating-2.0.1" = {
- name = "repeating";
- packageName = "repeating";
- version = "2.0.1";
+ "camelcase-2.1.1" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz";
- sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz";
+ sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f";
};
};
- "is-finite-1.0.2" = {
- name = "is-finite";
- packageName = "is-finite";
- version = "1.0.2";
+ "camelcase-keys-2.1.0" = {
+ name = "camelcase-keys";
+ packageName = "camelcase-keys";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz";
- sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa";
+ url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz";
+ sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7";
};
};
- "get-stdin-4.0.1" = {
- name = "get-stdin";
- packageName = "get-stdin";
- version = "4.0.1";
+ "caseless-0.12.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz";
- sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe";
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
+ sha1 = "1b681c21ff84033c826543090689420d187151dc";
};
};
- "accepts-1.3.4" = {
- name = "accepts";
- packageName = "accepts";
- version = "1.3.4";
+ "chalk-1.1.3" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz";
- sha1 = "86246758c7dd6d21a6474ff084a4740ec05eb21f";
+ url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
+ sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
};
};
- "array-flatten-1.1.1" = {
- name = "array-flatten";
- packageName = "array-flatten";
- version = "1.1.1";
+ "class-utils-0.3.6" = {
+ name = "class-utils";
+ packageName = "class-utils";
+ version = "0.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz";
- sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
+ url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
+ sha512 = "1xcqwmfmsbrm2ck76brwiqjmcza655khgh5szh6wngk357i37sgwsga1pbarwzaz9hvzkriqhq6j0z5mv0pmz61cf9wxvk3y5mlzs58";
};
};
- "body-parser-1.18.2" = {
- name = "body-parser";
- packageName = "body-parser";
- version = "1.18.2";
+ "cliui-3.2.0" = {
+ name = "cliui";
+ packageName = "cliui";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz";
- sha1 = "87678a19d84b47d859b83199bd59bce222b10454";
+ url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz";
+ sha1 = "120601537a916d29940f934da3b48d585a39213d";
+ };
+ };
+ "clone-0.2.0" = {
+ name = "clone";
+ packageName = "clone";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz";
+ sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f";
+ };
+ };
+ "clone-1.0.3" = {
+ name = "clone";
+ packageName = "clone";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz";
+ sha1 = "298d7e2231660f40c003c2ed3140decf3f53085f";
+ };
+ };
+ "clone-stats-0.0.1" = {
+ name = "clone-stats";
+ packageName = "clone-stats";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz";
+ sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1";
+ };
+ };
+ "co-4.6.0" = {
+ name = "co";
+ packageName = "co";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
+ sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
+ };
+ };
+ "code-point-at-1.1.0" = {
+ name = "code-point-at";
+ packageName = "code-point-at";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
+ sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
+ };
+ };
+ "collection-visit-1.0.0" = {
+ name = "collection-visit";
+ packageName = "collection-visit";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
+ sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
+ };
+ };
+ "color-support-1.1.3" = {
+ name = "color-support";
+ packageName = "color-support";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz";
+ sha512 = "13g563h7mrddc3rlljgg75km4zycb8rhzxb5wiiricqvh4n7zgl60psnz39ijkzx5bn93s5qvacwkxbg1cglcmg5z3yyb6cjs96685a";
+ };
+ };
+ "combined-stream-1.0.5" = {
+ name = "combined-stream";
+ packageName = "combined-stream";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz";
+ sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009";
+ };
+ };
+ "component-emitter-1.2.1" = {
+ name = "component-emitter";
+ packageName = "component-emitter";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
+ sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
+ };
+ };
+ "concat-map-0.0.1" = {
+ name = "concat-map";
+ packageName = "concat-map";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
+ sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
+ };
+ };
+ "console-control-strings-1.1.0" = {
+ name = "console-control-strings";
+ packageName = "console-control-strings";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
+ sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
};
};
"content-disposition-0.5.2" = {
@@ -3379,6 +652,159 @@ let
sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c";
};
};
+ "copy-descriptor-0.1.1" = {
+ name = "copy-descriptor";
+ packageName = "copy-descriptor";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
+ sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
+ };
+ };
+ "core-util-is-1.0.2" = {
+ name = "core-util-is";
+ packageName = "core-util-is";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
+ sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
+ };
+ };
+ "cryptiles-2.0.5" = {
+ name = "cryptiles";
+ packageName = "cryptiles";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
+ sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
+ };
+ };
+ "cryptiles-3.1.2" = {
+ name = "cryptiles";
+ packageName = "cryptiles";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz";
+ sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe";
+ };
+ };
+ "currently-unhandled-0.4.1" = {
+ name = "currently-unhandled";
+ packageName = "currently-unhandled";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz";
+ sha1 = "988df33feab191ef799a61369dd76c17adf957ea";
+ };
+ };
+ "dashdash-1.14.1" = {
+ name = "dashdash";
+ packageName = "dashdash";
+ version = "1.14.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
+ sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
+ };
+ };
+ "dateformat-2.2.0" = {
+ name = "dateformat";
+ packageName = "dateformat";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz";
+ sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062";
+ };
+ };
+ "debug-2.6.9" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
+ sha512 = "0q0fsr8bk1m83z0am0h2xn09vyfcf18adscxms8hclznwks1aihsisd96h8npx0idq5wwnypnqrkyk25m5d9zh3dk7rjs29nybc8bkc";
+ };
+ };
+ "decamelize-1.2.0" = {
+ name = "decamelize";
+ packageName = "decamelize";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
+ sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
+ };
+ };
+ "decode-uri-component-0.2.0" = {
+ name = "decode-uri-component";
+ packageName = "decode-uri-component";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
+ sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
+ };
+ };
+ "deep-extend-0.4.2" = {
+ name = "deep-extend";
+ packageName = "deep-extend";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz";
+ sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f";
+ };
+ };
+ "default-browser-id-1.0.4" = {
+ name = "default-browser-id";
+ packageName = "default-browser-id";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/default-browser-id/-/default-browser-id-1.0.4.tgz";
+ sha1 = "e59d09a5d157b828b876c26816e61c3d2a2c203a";
+ };
+ };
+ "defaults-1.0.3" = {
+ name = "defaults";
+ packageName = "defaults";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz";
+ sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d";
+ };
+ };
+ "define-property-0.2.5" = {
+ name = "define-property";
+ packageName = "define-property";
+ version = "0.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
+ sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
+ };
+ };
+ "define-property-1.0.0" = {
+ name = "define-property";
+ packageName = "define-property";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
+ sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
+ };
+ };
+ "delayed-stream-1.0.0" = {
+ name = "delayed-stream";
+ packageName = "delayed-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
+ sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
+ };
+ };
+ "delegates-1.0.0" = {
+ name = "delegates";
+ packageName = "delegates";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
+ sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
+ };
+ };
"depd-1.1.1" = {
name = "depd";
packageName = "depd";
@@ -3388,13 +814,103 @@ let
sha1 = "5783b4e1c459f06fa5ca27f991f3d06e7a310359";
};
};
- "encodeurl-1.0.1" = {
+ "depd-1.1.2" = {
+ name = "depd";
+ packageName = "depd";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz";
+ sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9";
+ };
+ };
+ "deprecated-0.0.1" = {
+ name = "deprecated";
+ packageName = "deprecated";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz";
+ sha1 = "f9c9af5464afa1e7a971458a8bdef2aa94d5bb19";
+ };
+ };
+ "destroy-1.0.4" = {
+ name = "destroy";
+ packageName = "destroy";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz";
+ sha1 = "978857442c44749e4206613e37946205826abd80";
+ };
+ };
+ "detect-file-1.0.0" = {
+ name = "detect-file";
+ packageName = "detect-file";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
+ sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
+ };
+ };
+ "detect-libc-1.0.3" = {
+ name = "detect-libc";
+ packageName = "detect-libc";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz";
+ sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
+ };
+ };
+ "duplexer2-0.0.2" = {
+ name = "duplexer2";
+ packageName = "duplexer2";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz";
+ sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db";
+ };
+ };
+ "ecc-jsbn-0.1.1" = {
+ name = "ecc-jsbn";
+ packageName = "ecc-jsbn";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz";
+ sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505";
+ };
+ };
+ "ee-first-1.1.1" = {
+ name = "ee-first";
+ packageName = "ee-first";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz";
+ sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
+ };
+ };
+ "encodeurl-1.0.2" = {
name = "encodeurl";
packageName = "encodeurl";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz";
- sha1 = "79e3d58655346909fe6f0f45a5de68103b294d20";
+ url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz";
+ sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59";
+ };
+ };
+ "end-of-stream-0.1.5" = {
+ name = "end-of-stream";
+ packageName = "end-of-stream";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz";
+ sha1 = "8e177206c3c80837d85632e8b9359dfe8b2f6eaf";
+ };
+ };
+ "error-ex-1.3.1" = {
+ name = "error-ex";
+ packageName = "error-ex";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz";
+ sha1 = "f855a86ce61adc4e8621c3cda21e7a7612c3a8dc";
};
};
"escape-html-1.0.3" = {
@@ -3406,6 +922,15 @@ let
sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
};
};
+ "escape-string-regexp-1.0.5" = {
+ name = "escape-string-regexp";
+ packageName = "escape-string-regexp";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
+ sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
+ };
+ };
"etag-1.8.1" = {
name = "etag";
packageName = "etag";
@@ -3415,6 +940,114 @@ let
sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
};
};
+ "expand-brackets-2.1.4" = {
+ name = "expand-brackets";
+ packageName = "expand-brackets";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
+ sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
+ };
+ };
+ "expand-tilde-2.0.2" = {
+ name = "expand-tilde";
+ packageName = "expand-tilde";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
+ sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
+ };
+ };
+ "express-4.16.2" = {
+ name = "express";
+ packageName = "express";
+ version = "4.16.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-4.16.2.tgz";
+ sha1 = "e35c6dfe2d64b7dca0a5cd4f21781be3299e076c";
+ };
+ };
+ "extend-3.0.1" = {
+ name = "extend";
+ packageName = "extend";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz";
+ sha1 = "a755ea7bc1adfcc5a31ce7e762dbaadc5e636444";
+ };
+ };
+ "extend-shallow-2.0.1" = {
+ name = "extend-shallow";
+ packageName = "extend-shallow";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
+ sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
+ };
+ };
+ "extend-shallow-3.0.2" = {
+ name = "extend-shallow";
+ packageName = "extend-shallow";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
+ sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
+ };
+ };
+ "extglob-2.0.4" = {
+ name = "extglob";
+ packageName = "extglob";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
+ sha512 = "2klp0045k4wnaspb9khqx90ddv7rjg997mlyp5qz41sl2yqdrpw8g8wji77qq16aawl4yhvg0f993ln48lja0kfmy0wnbh4g50zlrin";
+ };
+ };
+ "extsprintf-1.3.0" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
+ sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
+ };
+ };
+ "fancy-log-1.3.2" = {
+ name = "fancy-log";
+ packageName = "fancy-log";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz";
+ sha1 = "f41125e3d84f2e7d89a43d06d958c8f78be16be1";
+ };
+ };
+ "fast-deep-equal-1.0.0" = {
+ name = "fast-deep-equal";
+ packageName = "fast-deep-equal";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz";
+ sha1 = "96256a3bc975595eb36d82e9929d060d893439ff";
+ };
+ };
+ "fast-json-stable-stringify-2.0.0" = {
+ name = "fast-json-stable-stringify";
+ packageName = "fast-json-stable-stringify";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
+ sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
+ };
+ };
+ "fill-range-4.0.0" = {
+ name = "fill-range";
+ packageName = "fill-range";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
+ sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
+ };
+ };
"finalhandler-1.1.0" = {
name = "finalhandler";
packageName = "finalhandler";
@@ -3424,6 +1057,132 @@ let
sha1 = "ce0b6855b45853e791b2fcc680046d88253dd7f5";
};
};
+ "find-index-0.1.1" = {
+ name = "find-index";
+ packageName = "find-index";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz";
+ sha1 = "675d358b2ca3892d795a1ab47232f8b6e2e0dde4";
+ };
+ };
+ "find-up-1.1.2" = {
+ name = "find-up";
+ packageName = "find-up";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz";
+ sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f";
+ };
+ };
+ "findup-sync-0.3.0" = {
+ name = "findup-sync";
+ packageName = "findup-sync";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz";
+ sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16";
+ };
+ };
+ "findup-sync-2.0.0" = {
+ name = "findup-sync";
+ packageName = "findup-sync";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
+ sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
+ };
+ };
+ "fined-1.1.0" = {
+ name = "fined";
+ packageName = "fined";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz";
+ sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476";
+ };
+ };
+ "first-chunk-stream-1.0.0" = {
+ name = "first-chunk-stream";
+ packageName = "first-chunk-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz";
+ sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e";
+ };
+ };
+ "flagged-respawn-1.0.0" = {
+ name = "flagged-respawn";
+ packageName = "flagged-respawn";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz";
+ sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7";
+ };
+ };
+ "for-in-1.0.2" = {
+ name = "for-in";
+ packageName = "for-in";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
+ sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
+ };
+ };
+ "for-own-1.0.0" = {
+ name = "for-own";
+ packageName = "for-own";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
+ sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
+ };
+ };
+ "forever-agent-0.6.1" = {
+ name = "forever-agent";
+ packageName = "forever-agent";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
+ sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
+ };
+ };
+ "form-data-2.1.4" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
+ sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
+ };
+ };
+ "form-data-2.3.1" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz";
+ sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf";
+ };
+ };
+ "forwarded-0.1.2" = {
+ name = "forwarded";
+ packageName = "forwarded";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz";
+ sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84";
+ };
+ };
+ "fragment-cache-0.2.1" = {
+ name = "fragment-cache";
+ packageName = "fragment-cache";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
+ sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
+ };
+ };
"fresh-0.5.2" = {
name = "fresh";
packageName = "fresh";
@@ -3433,6 +1192,1149 @@ let
sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
};
};
+ "fs.realpath-1.0.0" = {
+ name = "fs.realpath";
+ packageName = "fs.realpath";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
+ sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
+ };
+ };
+ "fstream-1.0.11" = {
+ name = "fstream";
+ packageName = "fstream";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
+ sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
+ };
+ };
+ "fstream-ignore-1.0.5" = {
+ name = "fstream-ignore";
+ packageName = "fstream-ignore";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz";
+ sha1 = "9c31dae34767018fe1d249b24dada67d092da105";
+ };
+ };
+ "gauge-2.7.4" = {
+ name = "gauge";
+ packageName = "gauge";
+ version = "2.7.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
+ sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
+ };
+ };
+ "gaze-0.5.2" = {
+ name = "gaze";
+ packageName = "gaze";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
+ sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
+ };
+ };
+ "get-stdin-4.0.1" = {
+ name = "get-stdin";
+ packageName = "get-stdin";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz";
+ sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe";
+ };
+ };
+ "get-value-2.0.6" = {
+ name = "get-value";
+ packageName = "get-value";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
+ sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
+ };
+ };
+ "getpass-0.1.7" = {
+ name = "getpass";
+ packageName = "getpass";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
+ sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
+ };
+ };
+ "glob-3.1.21" = {
+ name = "glob";
+ packageName = "glob";
+ version = "3.1.21";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
+ sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
+ };
+ };
+ "glob-4.5.3" = {
+ name = "glob";
+ packageName = "glob";
+ version = "4.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz";
+ sha1 = "c6cb73d3226c1efef04de3c56d012f03377ee15f";
+ };
+ };
+ "glob-5.0.15" = {
+ name = "glob";
+ packageName = "glob";
+ version = "5.0.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz";
+ sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1";
+ };
+ };
+ "glob-7.1.2" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
+ sha512 = "08vjxzixc9dwc1hn5pd60yyij98krk2pr758aiga97r02ncvaqx1hidi95wk470k1v84gg4alls9bm52m77174z128bgf13b61x951h";
+ };
+ };
+ "glob-stream-3.1.18" = {
+ name = "glob-stream";
+ packageName = "glob-stream";
+ version = "3.1.18";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz";
+ sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b";
+ };
+ };
+ "glob-watcher-0.0.6" = {
+ name = "glob-watcher";
+ packageName = "glob-watcher";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz";
+ sha1 = "b95b4a8df74b39c83298b0c05c978b4d9a3b710b";
+ };
+ };
+ "glob2base-0.0.12" = {
+ name = "glob2base";
+ packageName = "glob2base";
+ version = "0.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz";
+ sha1 = "9d419b3e28f12e83a362164a277055922c9c0d56";
+ };
+ };
+ "global-modules-1.0.0" = {
+ name = "global-modules";
+ packageName = "global-modules";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
+ sha512 = "1pgpsvm0rm1fnqmblx77xs67gh8c80nf4dsgcgalhh9phmlp8ahn5w7vzx3xkwyxw3fg33h8vhh3plsycw6fd7c2r76mm7m8w9fkb5h";
+ };
+ };
+ "global-prefix-1.0.2" = {
+ name = "global-prefix";
+ packageName = "global-prefix";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
+ sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
+ };
+ };
+ "globule-0.1.0" = {
+ name = "globule";
+ packageName = "globule";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
+ sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
+ };
+ };
+ "glogg-1.0.1" = {
+ name = "glogg";
+ packageName = "glogg";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz";
+ sha512 = "0vr9sdx0f84b9s5vy72ralm494844c0p9kqqgcvy25gcn9abv57y7hwwafdsswc3z283v8bqa50j8gp740dd4biyngi5f15p9f2lxna";
+ };
+ };
+ "graceful-fs-1.2.3" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
+ sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
+ };
+ };
+ "graceful-fs-3.0.11" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "3.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz";
+ sha1 = "7613c778a1afea62f25c630a086d7f3acbbdd818";
+ };
+ };
+ "graceful-fs-4.1.11" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "4.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
+ sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
+ };
+ };
+ "grunt-known-options-1.1.0" = {
+ name = "grunt-known-options";
+ packageName = "grunt-known-options";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz";
+ sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149";
+ };
+ };
+ "gulp-util-3.0.8" = {
+ name = "gulp-util";
+ packageName = "gulp-util";
+ version = "3.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz";
+ sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f";
+ };
+ };
+ "gulplog-1.0.0" = {
+ name = "gulplog";
+ packageName = "gulplog";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz";
+ sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5";
+ };
+ };
+ "har-schema-1.0.5" = {
+ name = "har-schema";
+ packageName = "har-schema";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
+ sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
+ };
+ };
+ "har-schema-2.0.0" = {
+ name = "har-schema";
+ packageName = "har-schema";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
+ sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
+ };
+ };
+ "har-validator-4.2.1" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
+ sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
+ };
+ };
+ "har-validator-5.0.3" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz";
+ sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd";
+ };
+ };
+ "has-ansi-2.0.0" = {
+ name = "has-ansi";
+ packageName = "has-ansi";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
+ sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
+ };
+ };
+ "has-gulplog-0.1.0" = {
+ name = "has-gulplog";
+ packageName = "has-gulplog";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz";
+ sha1 = "6414c82913697da51590397dafb12f22967811ce";
+ };
+ };
+ "has-unicode-2.0.1" = {
+ name = "has-unicode";
+ packageName = "has-unicode";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
+ sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
+ };
+ };
+ "has-value-0.3.1" = {
+ name = "has-value";
+ packageName = "has-value";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
+ sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
+ };
+ };
+ "has-value-1.0.0" = {
+ name = "has-value";
+ packageName = "has-value";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
+ sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
+ };
+ };
+ "has-values-0.1.4" = {
+ name = "has-values";
+ packageName = "has-values";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
+ sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
+ };
+ };
+ "has-values-1.0.0" = {
+ name = "has-values";
+ packageName = "has-values";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
+ sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
+ };
+ };
+ "hawk-3.1.3" = {
+ name = "hawk";
+ packageName = "hawk";
+ version = "3.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
+ sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
+ };
+ };
+ "hawk-6.0.2" = {
+ name = "hawk";
+ packageName = "hawk";
+ version = "6.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz";
+ sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als";
+ };
+ };
+ "headless-0.1.7" = {
+ name = "headless";
+ packageName = "headless";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/headless/-/headless-0.1.7.tgz";
+ sha1 = "6e62fae668947f88184d5c156ede7c5695a7e9c8";
+ };
+ };
+ "hoek-2.16.3" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "2.16.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
+ sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
+ };
+ };
+ "hoek-4.2.0" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz";
+ sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz";
+ };
+ };
+ "homedir-polyfill-1.0.1" = {
+ name = "homedir-polyfill";
+ packageName = "homedir-polyfill";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz";
+ sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc";
+ };
+ };
+ "hosted-git-info-2.5.0" = {
+ name = "hosted-git-info";
+ packageName = "hosted-git-info";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz";
+ sha512 = "355g980qsk8k9hkv60z58llbvpscjl5yqkh4wx719s8jcq2swzn4ynzinj8azmvdgs10r22wb297rmixh9vvsml55sbysdf2i8ipn54";
+ };
+ };
+ "http-errors-1.6.2" = {
+ name = "http-errors";
+ packageName = "http-errors";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz";
+ sha1 = "0a002cc85707192a7e7946ceedc11155f60ec736";
+ };
+ };
+ "http-signature-1.1.1" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
+ sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
+ };
+ };
+ "http-signature-1.2.0" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
+ sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
+ };
+ };
+ "iconv-lite-0.4.19" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz";
+ sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1";
+ };
+ };
+ "indent-string-2.1.0" = {
+ name = "indent-string";
+ packageName = "indent-string";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz";
+ sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80";
+ };
+ };
+ "inflight-1.0.6" = {
+ name = "inflight";
+ packageName = "inflight";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
+ sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
+ };
+ };
+ "inherits-1.0.2" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
+ sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
+ };
+ };
+ "inherits-2.0.3" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
+ sha1 = "633c2c83e3da42a502f52466022480f4208261de";
+ };
+ };
+ "ini-1.3.5" = {
+ name = "ini";
+ packageName = "ini";
+ version = "1.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
+ sha512 = "1rjbvf1rg5ywhnba08sgagn2qf23lab330qrqmh7d891zap3xpxcyfyj1cblpf0f0rypglcfacybzyrpd4996aa1mbc820awa33k5j5";
+ };
+ };
+ "interpret-1.1.0" = {
+ name = "interpret";
+ packageName = "interpret";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
+ sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
+ };
+ };
+ "invert-kv-1.0.0" = {
+ name = "invert-kv";
+ packageName = "invert-kv";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz";
+ sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6";
+ };
+ };
+ "ipaddr.js-1.5.2" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz";
+ sha1 = "d4b505bde9946987ccf0fc58d9010ff9607e3fa0";
+ };
+ };
+ "is-absolute-1.0.0" = {
+ name = "is-absolute";
+ packageName = "is-absolute";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
+ sha512 = "02g5p9wfcx3f1p0zq01ycrx5biwg79qg1mdw1cv6li7kxpny5hxsp34ynam7w2g6nvah73f0kzdkh6pxxmx1ymd8m02fwvgz6lsirbl";
+ };
+ };
+ "is-accessor-descriptor-0.1.6" = {
+ name = "is-accessor-descriptor";
+ packageName = "is-accessor-descriptor";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
+ sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
+ };
+ };
+ "is-accessor-descriptor-1.0.0" = {
+ name = "is-accessor-descriptor";
+ packageName = "is-accessor-descriptor";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
+ sha512 = "1qllik6fjwfq17ic0fxwqyll8mrhmcm36xfsq45xc57mq9ah4i4nn4f8fvgb0gx4kpl3jlpkzndp0xlmmf2mh0xmggw6mhw74fng64v";
+ };
+ };
+ "is-arrayish-0.2.1" = {
+ name = "is-arrayish";
+ packageName = "is-arrayish";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz";
+ sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
+ };
+ };
+ "is-buffer-1.1.6" = {
+ name = "is-buffer";
+ packageName = "is-buffer";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
+ sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm";
+ };
+ };
+ "is-builtin-module-1.0.0" = {
+ name = "is-builtin-module";
+ packageName = "is-builtin-module";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz";
+ sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe";
+ };
+ };
+ "is-data-descriptor-0.1.4" = {
+ name = "is-data-descriptor";
+ packageName = "is-data-descriptor";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
+ sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
+ };
+ };
+ "is-data-descriptor-1.0.0" = {
+ name = "is-data-descriptor";
+ packageName = "is-data-descriptor";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
+ sha512 = "0ny6kxc752fg3z6fmj8a7fw2lai2y17d9fx0028nvyv1qj0sa30rfryhv9xd7b7is1yfs0val6amsy2b22rh589il10md36a75mgd4d";
+ };
+ };
+ "is-descriptor-0.1.6" = {
+ name = "is-descriptor";
+ packageName = "is-descriptor";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
+ sha512 = "0gbflcxmd30gzj91y19fylsfalirl6qg71sxjximc8lc2vxkg5h9scnahvxsczymchlx742i8ai489843ys431vyw73rp418jpxiw3a";
+ };
+ };
+ "is-descriptor-1.0.2" = {
+ name = "is-descriptor";
+ packageName = "is-descriptor";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
+ sha512 = "2v1a9mn2rzz52v8vs3i7njk9pv95fh971yc81xr0zkaw3dff4gbv1zv048xyjysfgwpajbyryk2px8hinwwh0wagblmw6chdbjsrs6r";
+ };
+ };
+ "is-extendable-0.1.1" = {
+ name = "is-extendable";
+ packageName = "is-extendable";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
+ sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
+ };
+ };
+ "is-extendable-1.0.1" = {
+ name = "is-extendable";
+ packageName = "is-extendable";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
+ sha512 = "0w73qlx9ynmv2iznw1kll86yd04z4rsz3788nzgh7amcnpsbyxbrs734im9dibqgps6pjyz61s8kp4lcsbjsdfrlc51m1pm2hrxgfba";
+ };
+ };
+ "is-extglob-2.1.1" = {
+ name = "is-extglob";
+ packageName = "is-extglob";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
+ sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
+ };
+ };
+ "is-finite-1.0.2" = {
+ name = "is-finite";
+ packageName = "is-finite";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz";
+ sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa";
+ };
+ };
+ "is-fullwidth-code-point-1.0.0" = {
+ name = "is-fullwidth-code-point";
+ packageName = "is-fullwidth-code-point";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
+ sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
+ };
+ };
+ "is-glob-3.1.0" = {
+ name = "is-glob";
+ packageName = "is-glob";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
+ sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
+ };
+ };
+ "is-number-3.0.0" = {
+ name = "is-number";
+ packageName = "is-number";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
+ sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
+ };
+ };
+ "is-odd-1.0.0" = {
+ name = "is-odd";
+ packageName = "is-odd";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-odd/-/is-odd-1.0.0.tgz";
+ sha1 = "3b8a932eb028b3775c39bb09e91767accdb69088";
+ };
+ };
+ "is-plain-object-2.0.4" = {
+ name = "is-plain-object";
+ packageName = "is-plain-object";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
+ sha512 = "0xgsjz9m3kg5pm36lcchblxk53qay59ya7wi5jgdmz0dsl5b0j2j7wcd48yyfaip1m70mj9aqf8kib02fn62k0hy0vxg2hng60yk4w7";
+ };
+ };
+ "is-relative-1.0.0" = {
+ name = "is-relative";
+ packageName = "is-relative";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
+ sha512 = "0c1pd4414iy40xq652p1zgqgmncmm7xcns96pfazd63v439vyc1z93bvzvbw5r2qc4fp24414ydnj4gdsqlq223pfg05ar2mmwd23rb";
+ };
+ };
+ "is-typedarray-1.0.0" = {
+ name = "is-typedarray";
+ packageName = "is-typedarray";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
+ sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
+ };
+ };
+ "is-unc-path-1.0.0" = {
+ name = "is-unc-path";
+ packageName = "is-unc-path";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
+ sha512 = "2asak63h3kc1vackrpai7qfiv15ndr231w1yc753m1dy7fd6ywxsr0rvh88b9ppyxhmc373fqk89a0pw3dllv7m5nbbbcqzvmaskccs";
+ };
+ };
+ "is-utf8-0.2.1" = {
+ name = "is-utf8";
+ packageName = "is-utf8";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz";
+ sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
+ };
+ };
+ "is-windows-1.0.1" = {
+ name = "is-windows";
+ packageName = "is-windows";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.1.tgz";
+ sha1 = "310db70f742d259a16a369202b51af84233310d9";
+ };
+ };
+ "isarray-0.0.1" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
+ sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
+ };
+ };
+ "isarray-1.0.0" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
+ sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
+ };
+ };
+ "isexe-2.0.0" = {
+ name = "isexe";
+ packageName = "isexe";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
+ sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
+ };
+ };
+ "isobject-2.1.0" = {
+ name = "isobject";
+ packageName = "isobject";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
+ sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
+ };
+ };
+ "isobject-3.0.1" = {
+ name = "isobject";
+ packageName = "isobject";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
+ sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
+ };
+ };
+ "isstream-0.1.2" = {
+ name = "isstream";
+ packageName = "isstream";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
+ sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
+ };
+ };
+ "jsbn-0.1.1" = {
+ name = "jsbn";
+ packageName = "jsbn";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
+ sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
+ };
+ };
+ "json-schema-0.2.3" = {
+ name = "json-schema";
+ packageName = "json-schema";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
+ sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
+ };
+ };
+ "json-schema-traverse-0.3.1" = {
+ name = "json-schema-traverse";
+ packageName = "json-schema-traverse";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz";
+ sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340";
+ };
+ };
+ "json-stable-stringify-1.0.1" = {
+ name = "json-stable-stringify";
+ packageName = "json-stable-stringify";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
+ sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
+ };
+ };
+ "json-stringify-safe-5.0.1" = {
+ name = "json-stringify-safe";
+ packageName = "json-stringify-safe";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
+ sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
+ };
+ };
+ "jsonify-0.0.0" = {
+ name = "jsonify";
+ packageName = "jsonify";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
+ sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
+ };
+ };
+ "jsprim-1.4.1" = {
+ name = "jsprim";
+ packageName = "jsprim";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
+ sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
+ };
+ };
+ "kind-of-3.2.2" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
+ sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
+ };
+ };
+ "kind-of-4.0.0" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
+ sha1 = "20813df3d712928b207378691a45066fae72dd57";
+ };
+ };
+ "kind-of-5.1.0" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
+ sha512 = "0zk87sccrjx6pgf9n74v4msnqwq5siyhrkpaklx7yk85ygy5ypcgmyfhbd5mmcyd53x8zcw0gzvp9bhbglziqbhp7a6n5zsf6p08q9l";
+ };
+ };
+ "kind-of-6.0.2" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "6.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
+ sha512 = "2l91vcracq8y3nxacsssb4yhk0ww011gi5sn55wsb6bpnhyds2i1x98512f61r8awxmj602bxky6c7hsyibjvz17f1pmlf7r4whp6dk";
+ };
+ };
+ "lazy-cache-2.0.2" = {
+ name = "lazy-cache";
+ packageName = "lazy-cache";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz";
+ sha1 = "b9190a4f913354694840859f8a8f7084d8822264";
+ };
+ };
+ "lcid-1.0.0" = {
+ name = "lcid";
+ packageName = "lcid";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz";
+ sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835";
+ };
+ };
+ "liftoff-2.5.0" = {
+ name = "liftoff";
+ packageName = "liftoff";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
+ sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
+ };
+ };
+ "load-json-file-1.1.0" = {
+ name = "load-json-file";
+ packageName = "load-json-file";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz";
+ sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0";
+ };
+ };
+ "lodash-1.0.2" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
+ sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
+ };
+ };
+ "lodash-2.4.2" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "2.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
+ sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
+ };
+ };
+ "lodash-3.10.1" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "3.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz";
+ sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6";
+ };
+ };
+ "lodash._basecopy-3.0.1" = {
+ name = "lodash._basecopy";
+ packageName = "lodash._basecopy";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz";
+ sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36";
+ };
+ };
+ "lodash._basetostring-3.0.1" = {
+ name = "lodash._basetostring";
+ packageName = "lodash._basetostring";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz";
+ sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5";
+ };
+ };
+ "lodash._basevalues-3.0.0" = {
+ name = "lodash._basevalues";
+ packageName = "lodash._basevalues";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz";
+ sha1 = "5b775762802bde3d3297503e26300820fdf661b7";
+ };
+ };
+ "lodash._getnative-3.9.1" = {
+ name = "lodash._getnative";
+ packageName = "lodash._getnative";
+ version = "3.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz";
+ sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5";
+ };
+ };
+ "lodash._isiterateecall-3.0.9" = {
+ name = "lodash._isiterateecall";
+ packageName = "lodash._isiterateecall";
+ version = "3.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz";
+ sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c";
+ };
+ };
+ "lodash._reescape-3.0.0" = {
+ name = "lodash._reescape";
+ packageName = "lodash._reescape";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz";
+ sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a";
+ };
+ };
+ "lodash._reevaluate-3.0.0" = {
+ name = "lodash._reevaluate";
+ packageName = "lodash._reevaluate";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz";
+ sha1 = "58bc74c40664953ae0b124d806996daca431e2ed";
+ };
+ };
+ "lodash._reinterpolate-3.0.0" = {
+ name = "lodash._reinterpolate";
+ packageName = "lodash._reinterpolate";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz";
+ sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d";
+ };
+ };
+ "lodash._root-3.0.1" = {
+ name = "lodash._root";
+ packageName = "lodash._root";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz";
+ sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692";
+ };
+ };
+ "lodash.escape-3.2.0" = {
+ name = "lodash.escape";
+ packageName = "lodash.escape";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz";
+ sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698";
+ };
+ };
+ "lodash.isarguments-3.1.0" = {
+ name = "lodash.isarguments";
+ packageName = "lodash.isarguments";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz";
+ sha1 = "2f573d85c6a24289ff00663b491c1d338ff3458a";
+ };
+ };
+ "lodash.isarray-3.0.4" = {
+ name = "lodash.isarray";
+ packageName = "lodash.isarray";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz";
+ sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55";
+ };
+ };
+ "lodash.keys-3.1.2" = {
+ name = "lodash.keys";
+ packageName = "lodash.keys";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz";
+ sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a";
+ };
+ };
+ "lodash.restparam-3.6.1" = {
+ name = "lodash.restparam";
+ packageName = "lodash.restparam";
+ version = "3.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz";
+ sha1 = "936a4e309ef330a7645ed4145986c85ae5b20805";
+ };
+ };
+ "lodash.template-3.6.2" = {
+ name = "lodash.template";
+ packageName = "lodash.template";
+ version = "3.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz";
+ sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f";
+ };
+ };
+ "lodash.templatesettings-3.1.1" = {
+ name = "lodash.templatesettings";
+ packageName = "lodash.templatesettings";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz";
+ sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5";
+ };
+ };
+ "loud-rejection-1.6.0" = {
+ name = "loud-rejection";
+ packageName = "loud-rejection";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz";
+ sha1 = "5b46f80147edee578870f086d04821cf998e551f";
+ };
+ };
+ "lru-cache-2.7.3" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "2.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
+ sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
+ };
+ };
+ "make-iterator-1.0.0" = {
+ name = "make-iterator";
+ packageName = "make-iterator";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.0.tgz";
+ sha1 = "57bef5dc85d23923ba23767324d8e8f8f3d9694b";
+ };
+ };
+ "map-cache-0.2.2" = {
+ name = "map-cache";
+ packageName = "map-cache";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
+ sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
+ };
+ };
+ "map-obj-1.0.1" = {
+ name = "map-obj";
+ packageName = "map-obj";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz";
+ sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d";
+ };
+ };
+ "map-visit-1.0.0" = {
+ name = "map-visit";
+ packageName = "map-visit";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
+ sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
+ };
+ };
+ "media-typer-0.3.0" = {
+ name = "media-typer";
+ packageName = "media-typer";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz";
+ sha1 = "8710d7af0aa626f8fffa1ce00168545263255748";
+ };
+ };
+ "meow-3.7.0" = {
+ name = "meow";
+ packageName = "meow";
+ version = "3.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz";
+ sha1 = "72cb668b425228290abbfa856892587308a801fb";
+ };
+ };
"merge-descriptors-1.0.1" = {
name = "merge-descriptors";
packageName = "merge-descriptors";
@@ -3451,211 +2353,13 @@ let
sha1 = "5529a4d67654134edcc5266656835b0f851afcee";
};
};
- "on-finished-2.3.0" = {
- name = "on-finished";
- packageName = "on-finished";
- version = "2.3.0";
+ "micromatch-3.1.5" = {
+ name = "micromatch";
+ packageName = "micromatch";
+ version = "3.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz";
- sha1 = "20f1336481b083cd75337992a16971aa2d906947";
- };
- };
- "parseurl-1.3.2" = {
- name = "parseurl";
- packageName = "parseurl";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz";
- sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3";
- };
- };
- "path-to-regexp-0.1.7" = {
- name = "path-to-regexp";
- packageName = "path-to-regexp";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz";
- sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
- };
- };
- "proxy-addr-2.0.2" = {
- name = "proxy-addr";
- packageName = "proxy-addr";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz";
- sha1 = "6571504f47bb988ec8180253f85dd7e14952bdec";
- };
- };
- "range-parser-1.2.0" = {
- name = "range-parser";
- packageName = "range-parser";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz";
- sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e";
- };
- };
- "send-0.16.1" = {
- name = "send";
- packageName = "send";
- version = "0.16.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.16.1.tgz";
- sha512 = "3c9rfxzsayrnka50s3hdbln9sjzad94ll4z2nx83i3rqciy4dxj05x34sjmm64k46zmk99pj8g4bcwk476a3iqzpcxgja28s8jqnl0j";
- };
- };
- "serve-static-1.13.1" = {
- name = "serve-static";
- packageName = "serve-static";
- version = "1.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz";
- sha512 = "2ahchxbzy0wr61gjy85p35cx4rkfb5347fmglk5rb2wawla3nhx6xx8hsgvmvjcsp5vfdilvf84kcnvp832f1anylsg4sqgpdk188w5";
- };
- };
- "setprototypeof-1.1.0" = {
- name = "setprototypeof";
- packageName = "setprototypeof";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz";
- sha512 = "2jlhhawfqdiga1m6if01ks1q3yx56k5vj6wf372589vkswvdflw7224viivxali56b0jjsckpmjy10rj6fcakhw2dbq2psr197kzw86";
- };
- };
- "statuses-1.3.1" = {
- name = "statuses";
- packageName = "statuses";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz";
- sha1 = "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e";
- };
- };
- "type-is-1.6.15" = {
- name = "type-is";
- packageName = "type-is";
- version = "1.6.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz";
- sha1 = "cab10fb4909e441c82842eafe1ad646c81804410";
- };
- };
- "utils-merge-1.0.1" = {
- name = "utils-merge";
- packageName = "utils-merge";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz";
- sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
- };
- };
- "vary-1.1.2" = {
- name = "vary";
- packageName = "vary";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz";
- sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc";
- };
- };
- "negotiator-0.6.1" = {
- name = "negotiator";
- packageName = "negotiator";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz";
- sha1 = "2b327184e8992101177b28563fb5e7102acd0ca9";
- };
- };
- "bytes-3.0.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz";
- sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
- };
- };
- "http-errors-1.6.2" = {
- name = "http-errors";
- packageName = "http-errors";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz";
- sha1 = "0a002cc85707192a7e7946ceedc11155f60ec736";
- };
- };
- "iconv-lite-0.4.19" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz";
- sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1";
- };
- };
- "raw-body-2.3.2" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz";
- sha1 = "bcd60c77d3eb93cde0050295c3f379389bc88f89";
- };
- };
- "setprototypeof-1.0.3" = {
- name = "setprototypeof";
- packageName = "setprototypeof";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz";
- sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04";
- };
- };
- "unpipe-1.0.0" = {
- name = "unpipe";
- packageName = "unpipe";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz";
- sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
- };
- };
- "ee-first-1.1.1" = {
- name = "ee-first";
- packageName = "ee-first";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz";
- sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
- };
- };
- "forwarded-0.1.2" = {
- name = "forwarded";
- packageName = "forwarded";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz";
- sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84";
- };
- };
- "ipaddr.js-1.5.2" = {
- name = "ipaddr.js";
- packageName = "ipaddr.js";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz";
- sha1 = "d4b505bde9946987ccf0fc58d9010ff9607e3fa0";
- };
- };
- "destroy-1.0.4" = {
- name = "destroy";
- packageName = "destroy";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz";
- sha1 = "978857442c44749e4206613e37946205826abd80";
+ url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.5.tgz";
+ sha512 = "2y22i8yrib7vcgpfcm5sq9g4fh4wxrn0f3z017vdbkvybvywa1axl3kym81k9ad6h3d4jmqkqyahcaj2c5qy5wpa17kvbyhnfn6sjya";
};
};
"mime-1.4.1" = {
@@ -3667,40 +2371,103 @@ let
sha512 = "2sz22r1xrnyvq6jg0h6b6cab3s3xdsfqa0n6vl9xv9gq3ppcxrcpg2hqfc41xjwnfwfkr6240l5gys7nds61ch6xcb3gr3fwsl7x398";
};
};
- "media-typer-0.3.0" = {
- name = "media-typer";
- packageName = "media-typer";
- version = "0.3.0";
+ "mime-db-1.30.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz";
- sha1 = "8710d7af0aa626f8fffa1ce00168545263255748";
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz";
+ sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01";
};
};
- "deep-extend-0.4.2" = {
- name = "deep-extend";
- packageName = "deep-extend";
- version = "0.4.2";
+ "mime-types-2.1.17" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.17";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz";
- sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f";
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz";
+ sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a";
};
};
- "strip-json-comments-2.0.1" = {
- name = "strip-json-comments";
- packageName = "strip-json-comments";
- version = "2.0.1";
+ "minimatch-0.2.14" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "0.2.14";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
- sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
+ sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
};
};
- "truncate-1.0.5" = {
- name = "truncate";
- packageName = "truncate";
- version = "1.0.5";
+ "minimatch-2.0.10" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "2.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/truncate/-/truncate-1.0.5.tgz";
- sha1 = "c636c6c1f50eed7c927af06c1dbffab53c7abe28";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz";
+ sha1 = "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7";
+ };
+ };
+ "minimatch-3.0.4" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
+ sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8";
+ };
+ };
+ "minimist-0.0.8" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
+ sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
+ };
+ };
+ "minimist-1.2.0" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
+ sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
+ };
+ };
+ "mixin-deep-1.3.0" = {
+ name = "mixin-deep";
+ packageName = "mixin-deep";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.0.tgz";
+ sha512 = "016isy937hd503fn41ivc4j267cr1brp7f65waxkk2ijslc1gyh7r815xk4g27cjrgjzydwqbpwk5yj4nyjj085n3l5k2vsi2z841kn";
+ };
+ };
+ "mkdirp-0.5.1" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
+ sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
+ };
+ };
+ "ms-2.0.0" = {
+ name = "ms";
+ packageName = "ms";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
+ sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
+ };
+ };
+ "multipipe-0.1.2" = {
+ name = "multipipe";
+ packageName = "multipipe";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz";
+ sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
};
};
"nan-2.8.0" = {
@@ -3712,6 +2479,33 @@ let
sha1 = "ed715f3fe9de02b57a5e6252d90a96675e1f085a";
};
};
+ "nanomatch-1.2.7" = {
+ name = "nanomatch";
+ packageName = "nanomatch";
+ version = "1.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.7.tgz";
+ sha512 = "2m4xaq739s2r5bvh287d8zm8af9mxa706z1a7ila48yhvkspi4iimwyg0id1cl327i7kqssrcnc2nwdc2qw8s83xwqg3bmfgjr5v6gz";
+ };
+ };
+ "natives-1.1.1" = {
+ name = "natives";
+ packageName = "natives";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz";
+ sha512 = "08a9lf00d2pkqmdi6ipp00pjin0gwl6fh283cjdjbayaz834lppwrw19kn4s642kwa46bfcway3033j6rbqd96iy86qrzrfgz35mr7i";
+ };
+ };
+ "negotiator-0.6.1" = {
+ name = "negotiator";
+ packageName = "negotiator";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz";
+ sha1 = "2b327184e8992101177b28563fb5e7102acd0ca9";
+ };
+ };
"node-pre-gyp-0.6.39" = {
name = "node-pre-gyp";
packageName = "node-pre-gyp";
@@ -3721,6 +2515,15 @@ let
sha512 = "2cwrivwc0ha272cly9r61bbb14kkl1s1hsmn53yr88b6pfjqj512nac6c5rphc6ak88v8gpl1f879qdd3v7386103zzr7miibpmbhis";
};
};
+ "nopt-3.0.6" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "3.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
+ sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
+ };
+ };
"nopt-4.0.1" = {
name = "nopt";
packageName = "nopt";
@@ -3730,202 +2533,130 @@ let
sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
};
};
- "request-2.81.0" = {
- name = "request";
- packageName = "request";
- version = "2.81.0";
+ "normalize-package-data-2.4.0" = {
+ name = "normalize-package-data";
+ packageName = "normalize-package-data";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
- sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
+ url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
+ sha512 = "01wzws79ps84ylshjb7rfpjykgiqxnpr89s52p2yyzfx8nfvyh5flvf1almiiavsi75xgi8g3s5davc1mmgz7gn8yvlqz6gnhax8f7n";
};
};
- "hawk-3.1.3" = {
- name = "hawk";
- packageName = "hawk";
- version = "3.1.3";
+ "npmlog-4.1.2" = {
+ name = "npmlog";
+ packageName = "npmlog";
+ version = "4.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
- sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
+ url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
+ sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs";
};
};
- "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 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
- };
- };
- "detect-libc-1.0.3" = {
- name = "detect-libc";
- packageName = "detect-libc";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz";
- sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
- };
- };
- "tar-pack-3.4.1" = {
- name = "tar-pack";
- packageName = "tar-pack";
- version = "3.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz";
- sha512 = "0mgk8jd55vr7i3i29r1skhxwwbqkqfz6mbr32r5nn8h6v5xns8d2rc7835y7wj0zmppckxai7nm8r4s65kkg6yhirnwx33yixn75x1w";
- };
- };
- "aws-sign2-0.6.0" = {
- name = "aws-sign2";
- packageName = "aws-sign2";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
- sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
- };
- };
- "form-data-2.1.4" = {
- name = "form-data";
- packageName = "form-data";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
- sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
- };
- };
- "har-validator-4.2.1" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
- sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
- };
- };
- "http-signature-1.1.1" = {
- name = "http-signature";
- packageName = "http-signature";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
- sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
- };
- };
- "performance-now-0.2.0" = {
- name = "performance-now";
- packageName = "performance-now";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
- sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
- };
- };
- "qs-6.4.0" = {
- name = "qs";
- packageName = "qs";
- version = "6.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
- sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
- };
- };
- "ajv-4.11.8" = {
- name = "ajv";
- packageName = "ajv";
- version = "4.11.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
- sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
- };
- };
- "har-schema-1.0.5" = {
- name = "har-schema";
- packageName = "har-schema";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
- sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
- };
- };
- "json-stable-stringify-1.0.1" = {
- name = "json-stable-stringify";
- packageName = "json-stable-stringify";
+ "number-is-nan-1.0.1" = {
+ name = "number-is-nan";
+ packageName = "number-is-nan";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
- sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
+ url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
+ sha1 = "097b602b53422a522c1afb8790318336941a011d";
};
};
- "jsonify-0.0.0" = {
- name = "jsonify";
- packageName = "jsonify";
- version = "0.0.0";
+ "oauth-sign-0.8.2" = {
+ name = "oauth-sign";
+ packageName = "oauth-sign";
+ version = "0.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
- sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
+ url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
+ sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
};
};
- "assert-plus-0.2.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "0.2.0";
+ "object-assign-3.0.0" = {
+ name = "object-assign";
+ packageName = "object-assign";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
- sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz";
+ sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2";
};
};
- "hoek-2.16.3" = {
- name = "hoek";
- packageName = "hoek";
- version = "2.16.3";
+ "object-assign-4.1.1" = {
+ name = "object-assign";
+ packageName = "object-assign";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
- sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
+ sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
};
};
- "boom-2.10.1" = {
- name = "boom";
- packageName = "boom";
- version = "2.10.1";
+ "object-copy-0.1.0" = {
+ name = "object-copy";
+ packageName = "object-copy";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
- sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
+ url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
+ sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
};
};
- "cryptiles-2.0.5" = {
- name = "cryptiles";
- packageName = "cryptiles";
- version = "2.0.5";
+ "object-visit-1.0.1" = {
+ name = "object-visit";
+ packageName = "object-visit";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
- sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
+ url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
+ sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
};
};
- "sntp-1.0.9" = {
- name = "sntp";
- packageName = "sntp";
- version = "1.0.9";
+ "object.defaults-1.1.0" = {
+ name = "object.defaults";
+ packageName = "object.defaults";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
- sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
+ url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
+ sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
};
};
- "fstream-ignore-1.0.5" = {
- name = "fstream-ignore";
- packageName = "fstream-ignore";
- version = "1.0.5";
+ "object.map-1.0.1" = {
+ name = "object.map";
+ packageName = "object.map";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz";
- sha1 = "9c31dae34767018fe1d249b24dada67d092da105";
+ url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
+ sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
};
};
- "uid-number-0.0.6" = {
- name = "uid-number";
- packageName = "uid-number";
- version = "0.0.6";
+ "object.pick-1.3.0" = {
+ name = "object.pick";
+ packageName = "object.pick";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz";
- sha1 = "0ea10e8035e8eb5b8e4449f06da1c730663baa81";
+ url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
+ sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
+ };
+ };
+ "on-finished-2.3.0" = {
+ name = "on-finished";
+ packageName = "on-finished";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz";
+ sha1 = "20f1336481b083cd75337992a16971aa2d906947";
+ };
+ };
+ "once-1.3.3" = {
+ name = "once";
+ packageName = "once";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz";
+ sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20";
+ };
+ };
+ "once-1.4.0" = {
+ name = "once";
+ packageName = "once";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
+ sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
};
};
"options-0.0.6" = {
@@ -3937,22 +2668,31 @@ let
sha1 = "ec22d312806bb53e731773e7cdaefcf1c643128f";
};
};
- "ultron-1.0.2" = {
- name = "ultron";
- packageName = "ultron";
- version = "1.0.2";
+ "orchestrator-0.3.8" = {
+ name = "orchestrator";
+ packageName = "orchestrator";
+ version = "0.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz";
- sha1 = "ace116ab557cd197386a4e88f4685378c8b2e4fa";
+ url = "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz";
+ sha1 = "14e7e9e2764f7315fbac184e506c7aa6df94ad7e";
};
};
- "cliui-3.2.0" = {
- name = "cliui";
- packageName = "cliui";
- version = "3.2.0";
+ "ordered-read-streams-0.1.0" = {
+ name = "ordered-read-streams";
+ packageName = "ordered-read-streams";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz";
- sha1 = "120601537a916d29940f934da3b48d585a39213d";
+ url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz";
+ sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126";
+ };
+ };
+ "os-homedir-1.0.2" = {
+ name = "os-homedir";
+ packageName = "os-homedir";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
+ sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
};
};
"os-locale-1.4.0" = {
@@ -3964,6 +2704,1230 @@ let
sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9";
};
};
+ "os-tmpdir-1.0.2" = {
+ name = "os-tmpdir";
+ packageName = "os-tmpdir";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
+ sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
+ };
+ };
+ "osenv-0.1.4" = {
+ name = "osenv";
+ packageName = "osenv";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz";
+ sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644";
+ };
+ };
+ "parse-filepath-1.0.2" = {
+ name = "parse-filepath";
+ packageName = "parse-filepath";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
+ sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
+ };
+ };
+ "parse-json-2.2.0" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz";
+ sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9";
+ };
+ };
+ "parse-passwd-1.0.0" = {
+ name = "parse-passwd";
+ packageName = "parse-passwd";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
+ sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
+ };
+ };
+ "parseurl-1.3.2" = {
+ name = "parseurl";
+ packageName = "parseurl";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz";
+ sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3";
+ };
+ };
+ "pascalcase-0.1.1" = {
+ name = "pascalcase";
+ packageName = "pascalcase";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
+ sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
+ };
+ };
+ "path-exists-2.1.0" = {
+ name = "path-exists";
+ packageName = "path-exists";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz";
+ sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b";
+ };
+ };
+ "path-is-absolute-1.0.1" = {
+ name = "path-is-absolute";
+ packageName = "path-is-absolute";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
+ sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
+ };
+ };
+ "path-parse-1.0.5" = {
+ name = "path-parse";
+ packageName = "path-parse";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz";
+ sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1";
+ };
+ };
+ "path-root-0.1.1" = {
+ name = "path-root";
+ packageName = "path-root";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
+ sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
+ };
+ };
+ "path-root-regex-0.1.2" = {
+ name = "path-root-regex";
+ packageName = "path-root-regex";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
+ sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
+ };
+ };
+ "path-to-regexp-0.1.7" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz";
+ sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
+ };
+ };
+ "path-type-1.1.0" = {
+ name = "path-type";
+ packageName = "path-type";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz";
+ sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441";
+ };
+ };
+ "performance-now-0.2.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
+ sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
+ };
+ };
+ "performance-now-2.1.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
+ sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
+ };
+ };
+ "pify-2.3.0" = {
+ name = "pify";
+ packageName = "pify";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz";
+ sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c";
+ };
+ };
+ "pinkie-2.0.4" = {
+ name = "pinkie";
+ packageName = "pinkie";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
+ sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
+ };
+ };
+ "pinkie-promise-2.0.1" = {
+ name = "pinkie-promise";
+ packageName = "pinkie-promise";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
+ sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
+ };
+ };
+ "plist-1.2.0" = {
+ name = "plist";
+ packageName = "plist";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/plist/-/plist-1.2.0.tgz";
+ sha1 = "084b5093ddc92506e259f874b8d9b1afb8c79593";
+ };
+ };
+ "posix-character-classes-0.1.1" = {
+ name = "posix-character-classes";
+ packageName = "posix-character-classes";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
+ sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
+ };
+ };
+ "pretty-hrtime-1.0.3" = {
+ name = "pretty-hrtime";
+ packageName = "pretty-hrtime";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz";
+ sha1 = "b7e3ea42435a4c9b2759d99e0f201eb195802ee1";
+ };
+ };
+ "process-nextick-args-1.0.7" = {
+ name = "process-nextick-args";
+ packageName = "process-nextick-args";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
+ sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
+ };
+ };
+ "proxy-addr-2.0.2" = {
+ name = "proxy-addr";
+ packageName = "proxy-addr";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz";
+ sha1 = "6571504f47bb988ec8180253f85dd7e14952bdec";
+ };
+ };
+ "punycode-1.4.1" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
+ sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
+ };
+ };
+ "qs-6.4.0" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
+ sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
+ };
+ };
+ "qs-6.5.1" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz";
+ sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r";
+ };
+ };
+ "range-parser-1.2.0" = {
+ name = "range-parser";
+ packageName = "range-parser";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz";
+ sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e";
+ };
+ };
+ "raw-body-2.3.2" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz";
+ sha1 = "bcd60c77d3eb93cde0050295c3f379389bc88f89";
+ };
+ };
+ "rc-1.2.4" = {
+ name = "rc";
+ packageName = "rc";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.4.tgz";
+ sha1 = "a0f606caae2a3b862bbd0ef85482c0125b315fa3";
+ };
+ };
+ "read-pkg-1.1.0" = {
+ name = "read-pkg";
+ packageName = "read-pkg";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz";
+ sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28";
+ };
+ };
+ "read-pkg-up-1.0.1" = {
+ name = "read-pkg-up";
+ packageName = "read-pkg-up";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz";
+ sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02";
+ };
+ };
+ "readable-stream-1.0.34" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "1.0.34";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz";
+ sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c";
+ };
+ };
+ "readable-stream-1.1.14" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "1.1.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
+ sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
+ };
+ };
+ "readable-stream-2.3.3" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz";
+ sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv";
+ };
+ };
+ "rechoir-0.6.2" = {
+ name = "rechoir";
+ packageName = "rechoir";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
+ sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
+ };
+ };
+ "redent-1.0.0" = {
+ name = "redent";
+ packageName = "redent";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz";
+ sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde";
+ };
+ };
+ "regex-not-1.0.0" = {
+ name = "regex-not";
+ packageName = "regex-not";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.0.tgz";
+ sha1 = "42f83e39771622df826b02af176525d6a5f157f9";
+ };
+ };
+ "repeat-element-1.1.2" = {
+ name = "repeat-element";
+ packageName = "repeat-element";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz";
+ sha1 = "ef089a178d1483baae4d93eb98b4f9e4e11d990a";
+ };
+ };
+ "repeat-string-1.6.1" = {
+ name = "repeat-string";
+ packageName = "repeat-string";
+ version = "1.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
+ sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
+ };
+ };
+ "repeating-2.0.1" = {
+ name = "repeating";
+ packageName = "repeating";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz";
+ sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
+ };
+ };
+ "replace-ext-0.0.1" = {
+ name = "replace-ext";
+ packageName = "replace-ext";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz";
+ sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924";
+ };
+ };
+ "request-2.81.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.81.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
+ sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
+ };
+ };
+ "request-2.83.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.83.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz";
+ sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm";
+ };
+ };
+ "resolve-1.1.7" = {
+ name = "resolve";
+ packageName = "resolve";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz";
+ sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
+ };
+ };
+ "resolve-1.5.0" = {
+ name = "resolve";
+ packageName = "resolve";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz";
+ sha512 = "25scf9zkhf5yc9x3d7mfq2im5vyxmq3ih939na6jzblal7mgfcijmadl2maz501mkccykj714gvdhhmlzi86hbk7k03r9ipnwd142l6";
+ };
+ };
+ "resolve-dir-1.0.1" = {
+ name = "resolve-dir";
+ packageName = "resolve-dir";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
+ sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
+ };
+ };
+ "resolve-url-0.2.1" = {
+ name = "resolve-url";
+ packageName = "resolve-url";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
+ sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
+ };
+ };
+ "rimraf-2.2.8" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
+ sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
+ };
+ };
+ "rimraf-2.6.2" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
+ sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn";
+ };
+ };
+ "safe-buffer-5.1.1" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz";
+ sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh";
+ };
+ };
+ "semver-4.3.6" = {
+ name = "semver";
+ packageName = "semver";
+ version = "4.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz";
+ sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da";
+ };
+ };
+ "semver-5.3.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz";
+ sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f";
+ };
+ };
+ "semver-5.5.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
+ sha512 = "0h32zh035y8m6dzcqhcymbhwgmc8839fa1hhj0jfh9ivp9kmqfj1sbwnsnkzcn9qm3sqn38sa8ys2g4c638lpnmzjr0a0qndmv7f8p1";
+ };
+ };
+ "send-0.16.1" = {
+ name = "send";
+ packageName = "send";
+ version = "0.16.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.16.1.tgz";
+ sha512 = "3c9rfxzsayrnka50s3hdbln9sjzad94ll4z2nx83i3rqciy4dxj05x34sjmm64k46zmk99pj8g4bcwk476a3iqzpcxgja28s8jqnl0j";
+ };
+ };
+ "sequencify-0.0.7" = {
+ name = "sequencify";
+ packageName = "sequencify";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz";
+ sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c";
+ };
+ };
+ "serve-favicon-2.4.5" = {
+ name = "serve-favicon";
+ packageName = "serve-favicon";
+ version = "2.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.5.tgz";
+ sha512 = "2gn8a5l0hh655cxq2cvvar6k1hl8cpmagplavx6svjiz9kmi968nwbzhpc2fvpcpmsfqb8s5jjq0gvn8vwwc2lx3cj57ckbcf3prcdk";
+ };
+ };
+ "serve-static-1.13.1" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz";
+ sha512 = "2ahchxbzy0wr61gjy85p35cx4rkfb5347fmglk5rb2wawla3nhx6xx8hsgvmvjcsp5vfdilvf84kcnvp832f1anylsg4sqgpdk188w5";
+ };
+ };
+ "set-blocking-2.0.0" = {
+ name = "set-blocking";
+ packageName = "set-blocking";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
+ sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
+ };
+ };
+ "set-getter-0.1.0" = {
+ name = "set-getter";
+ packageName = "set-getter";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz";
+ sha1 = "d769c182c9d5a51f409145f2fba82e5e86e80376";
+ };
+ };
+ "set-value-0.4.3" = {
+ name = "set-value";
+ packageName = "set-value";
+ version = "0.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
+ sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
+ };
+ };
+ "set-value-2.0.0" = {
+ name = "set-value";
+ packageName = "set-value";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
+ sha512 = "1xdxg14zh452ih8f7826ki7xpq8wk8a831pm5zngqf8cbc4qv6mr9npks863bfqylfrhm161whf9199rmqn4i12wzmz2ks69z3343c7";
+ };
+ };
+ "setprototypeof-1.0.3" = {
+ name = "setprototypeof";
+ packageName = "setprototypeof";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz";
+ sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04";
+ };
+ };
+ "setprototypeof-1.1.0" = {
+ name = "setprototypeof";
+ packageName = "setprototypeof";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz";
+ sha512 = "2jlhhawfqdiga1m6if01ks1q3yx56k5vj6wf372589vkswvdflw7224viivxali56b0jjsckpmjy10rj6fcakhw2dbq2psr197kzw86";
+ };
+ };
+ "sigmund-1.0.1" = {
+ name = "sigmund";
+ packageName = "sigmund";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
+ sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
+ };
+ };
+ "signal-exit-3.0.2" = {
+ name = "signal-exit";
+ packageName = "signal-exit";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
+ sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
+ };
+ };
+ "snapdragon-0.8.1" = {
+ name = "snapdragon";
+ packageName = "snapdragon";
+ version = "0.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.1.tgz";
+ sha1 = "e12b5487faded3e3dea0ac91e9400bf75b401370";
+ };
+ };
+ "snapdragon-node-2.1.1" = {
+ name = "snapdragon-node";
+ packageName = "snapdragon-node";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
+ sha512 = "2gk18pdld8ij1bpa2mdwl8f7i4rl5d4ys3qw31hipj56wslnsfhp1vxp3q36kj1m4f34wzzlvj0282qx5xlflqf978xyqlc2viyaviv";
+ };
+ };
+ "snapdragon-util-3.0.1" = {
+ name = "snapdragon-util";
+ packageName = "snapdragon-util";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
+ sha512 = "1jsaqma4ycl2iq0761i1w7758z1kq7gbsij4xfb7p5cnw0qa62pszv6pr3j856n3pbxww7wwxs5wvcg2cb6vy020kw3bchashqs9clr";
+ };
+ };
+ "sntp-1.0.9" = {
+ name = "sntp";
+ packageName = "sntp";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
+ sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
+ };
+ };
+ "sntp-2.1.0" = {
+ name = "sntp";
+ packageName = "sntp";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz";
+ sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
+ };
+ };
+ "source-map-0.5.7" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
+ sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
+ };
+ };
+ "source-map-resolve-0.5.1" = {
+ name = "source-map-resolve";
+ packageName = "source-map-resolve";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz";
+ sha512 = "3ccyfzn4imm9m891wy0bqh85lxrsf82snlh7dlgvjc28rpd2m6n95x8kjmm2crcpqv6234xc2lqzp1h1cyx7xrn146nzinzzk1bd9fh";
+ };
+ };
+ "source-map-url-0.4.0" = {
+ name = "source-map-url";
+ packageName = "source-map-url";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
+ sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
+ };
+ };
+ "sparkles-1.0.0" = {
+ name = "sparkles";
+ packageName = "sparkles";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz";
+ sha1 = "1acbbfb592436d10bbe8f785b7cc6f82815012c3";
+ };
+ };
+ "spdx-correct-1.0.2" = {
+ name = "spdx-correct";
+ packageName = "spdx-correct";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz";
+ sha1 = "4b3073d933ff51f3912f03ac5519498a4150db40";
+ };
+ };
+ "spdx-expression-parse-1.0.4" = {
+ name = "spdx-expression-parse";
+ packageName = "spdx-expression-parse";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz";
+ sha1 = "9bdf2f20e1f40ed447fbe273266191fced51626c";
+ };
+ };
+ "spdx-license-ids-1.2.2" = {
+ name = "spdx-license-ids";
+ packageName = "spdx-license-ids";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz";
+ sha1 = "c9df7a3424594ade6bd11900d596696dc06bac57";
+ };
+ };
+ "split-string-3.1.0" = {
+ name = "split-string";
+ packageName = "split-string";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
+ sha512 = "25ih1dx2qb3lawqjxj85znd4l3x8nnigrcdlpfw8064gh2mwxic9bgg5ylgxm9gjl3v8dmyc47rycp8xvqz78jqalg0g9yqj225acrp";
+ };
+ };
+ "sshpk-1.13.1" = {
+ name = "sshpk";
+ packageName = "sshpk";
+ version = "1.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz";
+ sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3";
+ };
+ };
+ "static-extend-0.1.2" = {
+ name = "static-extend";
+ packageName = "static-extend";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
+ sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
+ };
+ };
+ "statuses-1.3.1" = {
+ name = "statuses";
+ packageName = "statuses";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz";
+ sha1 = "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e";
+ };
+ };
+ "stream-consume-0.1.0" = {
+ name = "stream-consume";
+ packageName = "stream-consume";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz";
+ sha1 = "a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f";
+ };
+ };
+ "string-width-1.0.2" = {
+ name = "string-width";
+ packageName = "string-width";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
+ sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
+ };
+ };
+ "string_decoder-0.10.31" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "0.10.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
+ sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
+ };
+ };
+ "string_decoder-1.0.3" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz";
+ sha512 = "22vw5mmwlyblqc2zyqwl39wyhyahhpiyknim8iz5fk6xi002x777gkswiq8fh297djs5ii4pgrys57wq33hr5zf3xfd0d7kjxkzl0g0";
+ };
+ };
+ "stringstream-0.0.5" = {
+ name = "stringstream";
+ packageName = "stringstream";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz";
+ sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878";
+ };
+ };
+ "strip-ansi-3.0.1" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
+ sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
+ };
+ };
+ "strip-bom-1.0.0" = {
+ name = "strip-bom";
+ packageName = "strip-bom";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz";
+ sha1 = "85b8862f3844b5a6d5ec8467a93598173a36f794";
+ };
+ };
+ "strip-bom-2.0.0" = {
+ name = "strip-bom";
+ packageName = "strip-bom";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz";
+ sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e";
+ };
+ };
+ "strip-indent-1.0.1" = {
+ name = "strip-indent";
+ packageName = "strip-indent";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz";
+ sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2";
+ };
+ };
+ "strip-json-comments-2.0.1" = {
+ name = "strip-json-comments";
+ packageName = "strip-json-comments";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
+ sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
+ };
+ };
+ "strong-data-uri-1.0.4" = {
+ name = "strong-data-uri";
+ packageName = "strong-data-uri";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.4.tgz";
+ sha1 = "136765ebaf8e0f4ad60c4b146779f062c29d18f0";
+ };
+ };
+ "supports-color-2.0.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
+ sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
+ };
+ };
+ "tar-2.2.1" = {
+ name = "tar";
+ packageName = "tar";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz";
+ sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
+ };
+ };
+ "tar-pack-3.4.1" = {
+ name = "tar-pack";
+ packageName = "tar-pack";
+ version = "3.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz";
+ sha512 = "0mgk8jd55vr7i3i29r1skhxwwbqkqfz6mbr32r5nn8h6v5xns8d2rc7835y7wj0zmppckxai7nm8r4s65kkg6yhirnwx33yixn75x1w";
+ };
+ };
+ "through2-0.6.5" = {
+ name = "through2";
+ packageName = "through2";
+ version = "0.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz";
+ sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48";
+ };
+ };
+ "through2-2.0.3" = {
+ name = "through2";
+ packageName = "through2";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz";
+ sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
+ };
+ };
+ "tildify-1.2.0" = {
+ name = "tildify";
+ packageName = "tildify";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz";
+ sha1 = "dcec03f55dca9b7aa3e5b04f21817eb56e63588a";
+ };
+ };
+ "time-stamp-1.1.0" = {
+ name = "time-stamp";
+ packageName = "time-stamp";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz";
+ sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3";
+ };
+ };
+ "to-object-path-0.3.0" = {
+ name = "to-object-path";
+ packageName = "to-object-path";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
+ sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
+ };
+ };
+ "to-regex-3.0.1" = {
+ name = "to-regex";
+ packageName = "to-regex";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.1.tgz";
+ sha1 = "15358bee4a2c83bd76377ba1dc049d0f18837aae";
+ };
+ };
+ "to-regex-range-2.1.1" = {
+ name = "to-regex-range";
+ packageName = "to-regex-range";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
+ sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
+ };
+ };
+ "tough-cookie-2.3.3" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz";
+ sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561";
+ };
+ };
+ "trim-newlines-1.0.0" = {
+ name = "trim-newlines";
+ packageName = "trim-newlines";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz";
+ sha1 = "5887966bb582a4503a41eb524f7d35011815a613";
+ };
+ };
+ "truncate-1.0.5" = {
+ name = "truncate";
+ packageName = "truncate";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/truncate/-/truncate-1.0.5.tgz";
+ sha1 = "c636c6c1f50eed7c927af06c1dbffab53c7abe28";
+ };
+ };
+ "tunnel-agent-0.6.0" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
+ sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
+ };
+ };
+ "tweetnacl-0.14.5" = {
+ name = "tweetnacl";
+ packageName = "tweetnacl";
+ version = "0.14.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
+ sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
+ };
+ };
+ "type-is-1.6.15" = {
+ name = "type-is";
+ packageName = "type-is";
+ version = "1.6.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz";
+ sha1 = "cab10fb4909e441c82842eafe1ad646c81804410";
+ };
+ };
+ "uid-0.0.2" = {
+ name = "uid";
+ packageName = "uid";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid/-/uid-0.0.2.tgz";
+ sha1 = "5e4a5d4b78138b4f70f89fd3c76fc59aa9d2f103";
+ };
+ };
+ "uid-number-0.0.6" = {
+ name = "uid-number";
+ packageName = "uid-number";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz";
+ sha1 = "0ea10e8035e8eb5b8e4449f06da1c730663baa81";
+ };
+ };
+ "ultron-1.0.2" = {
+ name = "ultron";
+ packageName = "ultron";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz";
+ sha1 = "ace116ab557cd197386a4e88f4685378c8b2e4fa";
+ };
+ };
+ "unc-path-regex-0.1.2" = {
+ name = "unc-path-regex";
+ packageName = "unc-path-regex";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
+ sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
+ };
+ };
+ "union-value-1.0.0" = {
+ name = "union-value";
+ packageName = "union-value";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
+ sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
+ };
+ };
+ "unique-stream-1.0.0" = {
+ name = "unique-stream";
+ packageName = "unique-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz";
+ sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b";
+ };
+ };
+ "unpipe-1.0.0" = {
+ name = "unpipe";
+ packageName = "unpipe";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz";
+ sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
+ };
+ };
+ "unset-value-1.0.0" = {
+ name = "unset-value";
+ packageName = "unset-value";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
+ sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
+ };
+ };
+ "untildify-2.1.0" = {
+ name = "untildify";
+ packageName = "untildify";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/untildify/-/untildify-2.1.0.tgz";
+ sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0";
+ };
+ };
+ "urix-0.1.0" = {
+ name = "urix";
+ packageName = "urix";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
+ sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
+ };
+ };
+ "use-2.0.2" = {
+ name = "use";
+ packageName = "use";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/use/-/use-2.0.2.tgz";
+ sha1 = "ae28a0d72f93bf22422a18a2e379993112dec8e8";
+ };
+ };
+ "user-home-1.1.1" = {
+ name = "user-home";
+ packageName = "user-home";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz";
+ sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190";
+ };
+ };
+ "util-deprecate-1.0.2" = {
+ name = "util-deprecate";
+ packageName = "util-deprecate";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
+ sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
+ };
+ };
+ "utils-merge-1.0.1" = {
+ name = "utils-merge";
+ packageName = "utils-merge";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz";
+ sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
+ };
+ };
+ "uuid-3.2.1" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz";
+ sha512 = "0843vl1c974n8kw5kn0kvhvhwk8y8jydr0xkwwl2963xxmkw4ingk6xj9c8m48jw2i95giglxzq5aw5v5mij9kv7fzln8pxav1cr6cd";
+ };
+ };
+ "v8-debug-1.0.1" = {
+ name = "v8-debug";
+ packageName = "v8-debug";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/v8-debug/-/v8-debug-1.0.1.tgz";
+ sha1 = "6ae1c6dae4477bb3ced79b523e4d160c1d8667fe";
+ };
+ };
+ "v8-profiler-5.7.0" = {
+ name = "v8-profiler";
+ packageName = "v8-profiler";
+ version = "5.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/v8-profiler/-/v8-profiler-5.7.0.tgz";
+ sha1 = "e8381cbebb5b5fd0ca8d2b09f6a0181a158db34d";
+ };
+ };
+ "v8flags-2.1.1" = {
+ name = "v8flags";
+ packageName = "v8flags";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz";
+ sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4";
+ };
+ };
+ "validate-npm-package-license-3.0.1" = {
+ name = "validate-npm-package-license";
+ packageName = "validate-npm-package-license";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz";
+ sha1 = "2804babe712ad3379459acfbe24746ab2c303fbc";
+ };
+ };
+ "vary-1.1.2" = {
+ name = "vary";
+ packageName = "vary";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz";
+ sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc";
+ };
+ };
+ "verror-1.10.0" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
+ sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
+ };
+ };
+ "vinyl-0.4.6" = {
+ name = "vinyl";
+ packageName = "vinyl";
+ version = "0.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz";
+ sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847";
+ };
+ };
+ "vinyl-0.5.3" = {
+ name = "vinyl";
+ packageName = "vinyl";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz";
+ sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde";
+ };
+ };
+ "vinyl-fs-0.3.14" = {
+ name = "vinyl-fs";
+ packageName = "vinyl-fs";
+ version = "0.3.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz";
+ sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6";
+ };
+ };
+ "which-1.3.0" = {
+ name = "which";
+ packageName = "which";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
+ sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
+ };
+ };
+ "wide-align-1.1.2" = {
+ name = "wide-align";
+ packageName = "wide-align";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
+ sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
+ };
+ };
+ "win-detect-browsers-1.0.2" = {
+ name = "win-detect-browsers";
+ packageName = "win-detect-browsers";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz";
+ sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0";
+ };
+ };
"window-size-0.1.4" = {
name = "window-size";
packageName = "window-size";
@@ -3973,15 +3937,6 @@ let
sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876";
};
};
- "y18n-3.2.1" = {
- name = "y18n";
- packageName = "y18n";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz";
- sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41";
- };
- };
"wrap-ansi-2.1.0" = {
name = "wrap-ansi";
packageName = "wrap-ansi";
@@ -3991,526 +3946,85 @@ let
sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
};
};
- "lcid-1.0.0" = {
- name = "lcid";
- packageName = "lcid";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz";
- sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835";
- };
- };
- "invert-kv-1.0.0" = {
- name = "invert-kv";
- packageName = "invert-kv";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz";
- sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6";
- };
- };
- "adm-zip-0.4.7" = {
- name = "adm-zip";
- packageName = "adm-zip";
- version = "0.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz";
- sha1 = "8606c2cbf1c426ce8c8ec00174447fd49b6eafc1";
- };
- };
- "async-2.1.2" = {
- name = "async";
- packageName = "async";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.1.2.tgz";
- sha1 = "612a4ab45ef42a70cde806bad86ee6db047e8385";
- };
- };
- "colors-1.1.2" = {
- name = "colors";
- packageName = "colors";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
- sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
- };
- };
- "fields-0.1.24" = {
- name = "fields";
- packageName = "fields";
- version = "0.1.24";
- src = fetchurl {
- url = "https://registry.npmjs.org/fields/-/fields-0.1.24.tgz";
- sha1 = "bed93b1c2521f4705fe764f4209267fdfd89f5d3";
- };
- };
- "humanize-0.0.9" = {
- name = "humanize";
- packageName = "humanize";
- version = "0.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/humanize/-/humanize-0.0.9.tgz";
- sha1 = "1994ffaecdfe9c441ed2bdac7452b7bb4c9e41a4";
- };
- };
- "longjohn-0.2.11" = {
- name = "longjohn";
- packageName = "longjohn";
- version = "0.2.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/longjohn/-/longjohn-0.2.11.tgz";
- sha1 = "83736a15ae5f48711b625153e98012f2de659e69";
- };
- };
- "moment-2.16.0" = {
- name = "moment";
- packageName = "moment";
- version = "2.16.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.16.0.tgz";
- sha1 = "f38f2c97c9889b0ee18fc6cc392e1e443ad2da8e";
- };
- };
- "node-appc-0.2.41" = {
- name = "node-appc";
- packageName = "node-appc";
- version = "0.2.41";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-appc/-/node-appc-0.2.41.tgz";
- sha1 = "f68cf5acb607c4903e2f63024383ae95ba1fdc52";
- };
- };
- "request-2.79.0" = {
- name = "request";
- packageName = "request";
- version = "2.79.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz";
- sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de";
- };
- };
- "sprintf-0.1.5" = {
- name = "sprintf";
- packageName = "sprintf";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/sprintf/-/sprintf-0.1.5.tgz";
- sha1 = "8f83e39a9317c1a502cb7db8050e51c679f6edcf";
- };
- };
- "temp-0.8.3" = {
- name = "temp";
- packageName = "temp";
- version = "0.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz";
- sha1 = "e0c6bc4d26b903124410e4fed81103014dfc1f59";
- };
- };
- "winston-1.1.2" = {
- name = "winston";
- packageName = "winston";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-1.1.2.tgz";
- sha1 = "68edd769ff79d4f9528cf0e5d80021aade67480c";
- };
- };
- "fs-extra-2.1.2" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz";
- sha1 = "046c70163cef9aad46b0e4a7fa467fb22d71de35";
- };
- };
- "lodash-4.17.4" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.17.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz";
- sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae";
- };
- };
- "colors-0.6.2" = {
- name = "colors";
- packageName = "colors";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
- sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
- };
- };
- "keypress-0.2.1" = {
- name = "keypress";
- packageName = "keypress";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz";
- sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77";
- };
- };
- "source-map-support-0.3.2" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.3.2.tgz";
- sha1 = "737d5c901e0b78fdb53aca713d24f23ccbb10be1";
- };
- };
- "source-map-0.1.32" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.1.32";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz";
- sha1 = "c8b6c167797ba4740a8ea33252162ff08591b266";
- };
- };
- "amdefine-1.0.1" = {
- name = "amdefine";
- packageName = "amdefine";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
- sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
- };
- };
- "async-2.1.4" = {
- name = "async";
- packageName = "async";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.1.4.tgz";
- sha1 = "2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4";
- };
- };
- "diff-3.2.0" = {
- name = "diff";
- packageName = "diff";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz";
- sha1 = "c9ce393a4b7cbd0b058a725c93df299027868ff9";
- };
- };
- "node-uuid-1.4.7" = {
- name = "node-uuid";
- packageName = "node-uuid";
- version = "1.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";
- sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f";
- };
- };
- "optimist-0.6.1" = {
- name = "optimist";
- packageName = "optimist";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz";
- sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686";
- };
- };
- "wrench-1.5.9" = {
- name = "wrench";
- packageName = "wrench";
- version = "1.5.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/wrench/-/wrench-1.5.9.tgz";
- sha1 = "411691c63a9b2531b1700267279bdeca23b2142a";
- };
- };
- "uglify-js-2.7.5" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "2.7.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz";
- sha1 = "4612c0c7baaee2ba7c487de4904ae122079f2ca8";
- };
- };
- "wordwrap-0.0.3" = {
- name = "wordwrap";
- packageName = "wordwrap";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz";
- sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107";
- };
- };
- "minimist-0.0.10" = {
- name = "minimist";
- packageName = "minimist";
- version = "0.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz";
- sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf";
- };
- };
- "async-0.2.10" = {
- name = "async";
- packageName = "async";
- version = "0.2.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
- sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
- };
- };
- "uglify-to-browserify-1.0.2" = {
- name = "uglify-to-browserify";
- packageName = "uglify-to-browserify";
+ "wrappy-1.0.2" = {
+ name = "wrappy";
+ packageName = "wrappy";
version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
- sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
+ url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
+ sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
};
};
- "yargs-3.10.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "3.10.0";
+ "ws-1.1.5" = {
+ name = "ws";
+ packageName = "ws";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
- sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
+ url = "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz";
+ sha512 = "3iv2yz706h7wyg563jsfjdykkkxs8j49vz60r6qx5by0npfhs98rgc114kdqs15sc52mldscc22bkfpkrs08cwlqaxx8lfdjn5alwm3";
};
};
- "camelcase-1.2.1" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
- sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
- };
- };
- "cliui-2.1.0" = {
- name = "cliui";
- packageName = "cliui";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
- sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
- };
- };
- "window-size-0.1.0" = {
- name = "window-size";
- packageName = "window-size";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
- sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
- };
- };
- "center-align-0.1.3" = {
- name = "center-align";
- packageName = "center-align";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
- sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
- };
- };
- "right-align-0.1.3" = {
- name = "right-align";
- packageName = "right-align";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz";
- sha1 = "61339b722fe6a3515689210d24e14c96148613ef";
- };
- };
- "wordwrap-0.0.2" = {
- name = "wordwrap";
- packageName = "wordwrap";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
- sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
- };
- };
- "align-text-0.1.4" = {
- name = "align-text";
- packageName = "align-text";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
- sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
- };
- };
- "lazy-cache-1.0.4" = {
- name = "lazy-cache";
- packageName = "lazy-cache";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz";
- sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e";
- };
- };
- "longest-1.0.1" = {
- name = "longest";
- packageName = "longest";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz";
- sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097";
- };
- };
- "caseless-0.11.0" = {
- name = "caseless";
- packageName = "caseless";
- version = "0.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz";
- sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7";
- };
- };
- "har-validator-2.0.6" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz";
- sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d";
- };
- };
- "qs-6.3.2" = {
- name = "qs";
- packageName = "qs";
- version = "6.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz";
- sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c";
- };
- };
- "tunnel-agent-0.4.3" = {
- name = "tunnel-agent";
- packageName = "tunnel-agent";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz";
- sha1 = "6373db76909fe570e08d73583365ed828a74eeeb";
- };
- };
- "commander-2.12.2" = {
- name = "commander";
- packageName = "commander";
- version = "2.12.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz";
- sha512 = "007wb3baahjcrv17kgxryqjlsyr3c3kl2y07p85m4ia78pba9xyjr3cgi95jjrwq8qq550s78hj06f7z0ab8ssrxk6w06afjsmxln84";
- };
- };
- "is-my-json-valid-2.17.1" = {
- name = "is-my-json-valid";
- packageName = "is-my-json-valid";
- version = "2.17.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz";
- sha512 = "2qkjhj6i3y40j35y8k722kklm1j8dfwk9506csa3vxr16vv7125v8jzpmkl551gsif98bzn205yj3sb99xi1i4bd6p5a1m81wvj2sa3";
- };
- };
- "generate-function-2.0.0" = {
- name = "generate-function";
- packageName = "generate-function";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz";
- sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74";
- };
- };
- "generate-object-property-1.2.0" = {
- name = "generate-object-property";
- packageName = "generate-object-property";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz";
- sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0";
- };
- };
- "jsonpointer-4.0.1" = {
- name = "jsonpointer";
- packageName = "jsonpointer";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz";
- sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9";
- };
- };
- "is-property-1.0.2" = {
- name = "is-property";
- packageName = "is-property";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz";
- sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
- };
- };
- "async-1.0.0" = {
- name = "async";
- packageName = "async";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
- sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
- };
- };
- "colors-1.0.3" = {
- name = "colors";
- packageName = "colors";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
- sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
- };
- };
- "cycle-1.0.3" = {
- name = "cycle";
- packageName = "cycle";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz";
- sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
- };
- };
- "eyes-0.1.8" = {
- name = "eyes";
- packageName = "eyes";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz";
- sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0";
- };
- };
- "pkginfo-0.3.1" = {
- name = "pkginfo";
- packageName = "pkginfo";
+ "x-default-browser-0.3.1" = {
+ name = "x-default-browser";
+ packageName = "x-default-browser";
version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz";
- sha1 = "5b29f6a81f70717142e09e765bbeab97b4f81e21";
+ url = "https://registry.npmjs.org/x-default-browser/-/x-default-browser-0.3.1.tgz";
+ sha1 = "7f6194154fd1786cf261e68b5488c47127a04977";
};
};
- "stack-trace-0.0.10" = {
- name = "stack-trace";
- packageName = "stack-trace";
- version = "0.0.10";
+ "xmlbuilder-4.0.0" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz";
- sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz";
+ sha1 = "98b8f651ca30aa624036f127d11cc66dc7b907a3";
};
};
- "jsonfile-2.4.0" = {
- name = "jsonfile";
- packageName = "jsonfile";
- version = "2.4.0";
+ "xmldom-0.1.27" = {
+ name = "xmldom";
+ packageName = "xmldom";
+ version = "0.1.27";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz";
- sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8";
+ url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz";
+ sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9";
+ };
+ };
+ "xtend-4.0.1" = {
+ name = "xtend";
+ packageName = "xtend";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
+ sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
+ };
+ };
+ "y18n-3.2.1" = {
+ name = "y18n";
+ packageName = "y18n";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz";
+ sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41";
+ };
+ };
+ "yargs-1.3.3" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz";
+ sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a";
+ };
+ };
+ "yargs-3.32.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "3.32.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz";
+ sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995";
};
};
};
@@ -4636,7 +4150,7 @@ in
})
(sources."gulplog-1.0.0" // {
dependencies = [
- (sources."glogg-1.0.0" // {
+ (sources."glogg-1.0.1" // {
dependencies = [
sources."sparkles-1.0.0"
];
@@ -4680,9 +4194,9 @@ in
(sources."readable-stream-1.1.14" // {
dependencies = [
sources."core-util-is-1.0.2"
+ sources."inherits-2.0.3"
sources."isarray-0.0.1"
sources."string_decoder-0.10.31"
- sources."inherits-2.0.3"
];
})
];
@@ -4727,7 +4241,7 @@ in
sources."is-extglob-2.1.1"
];
})
- (sources."micromatch-3.1.4" // {
+ (sources."micromatch-3.1.5" // {
dependencies = [
sources."arr-diff-4.0.0"
sources."array-unique-0.3.2"
@@ -4778,27 +4292,10 @@ in
})
(sources."define-property-1.0.0" // {
dependencies = [
- (sources."is-descriptor-1.0.1" // {
+ (sources."is-descriptor-1.0.2" // {
dependencies = [
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- (sources."kind-of-3.2.2" // {
- dependencies = [
- sources."is-buffer-1.1.6"
- ];
- })
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- (sources."kind-of-3.2.2" // {
- dependencies = [
- sources."is-buffer-1.1.6"
- ];
- })
- ];
- })
- sources."kind-of-5.1.0"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-data-descriptor-1.0.0"
];
})
];
@@ -4808,7 +4305,7 @@ in
sources."is-extendable-0.1.1"
];
})
- (sources."extglob-2.0.2" // {
+ (sources."extglob-2.0.4" // {
dependencies = [
(sources."expand-brackets-2.1.4" // {
dependencies = [
@@ -4855,7 +4352,7 @@ in
];
})
sources."kind-of-6.0.2"
- (sources."nanomatch-1.2.6" // {
+ (sources."nanomatch-1.2.7" // {
dependencies = [
(sources."is-odd-1.0.0" // {
dependencies = [
@@ -4961,7 +4458,7 @@ in
})
];
})
- (sources."class-utils-0.3.5" // {
+ (sources."class-utils-0.3.6" // {
dependencies = [
sources."arr-union-3.1.0"
(sources."define-property-0.2.5" // {
@@ -4991,23 +4488,6 @@ in
})
];
})
- (sources."lazy-cache-2.0.2" // {
- dependencies = [
- (sources."set-getter-0.1.0" // {
- dependencies = [
- (sources."to-object-path-0.3.0" // {
- dependencies = [
- (sources."kind-of-3.2.2" // {
- dependencies = [
- sources."is-buffer-1.1.6"
- ];
- })
- ];
- })
- ];
- })
- ];
- })
(sources."static-extend-0.1.2" // {
dependencies = [
(sources."object-copy-0.1.0" // {
@@ -5027,27 +4507,10 @@ in
sources."component-emitter-1.2.1"
(sources."define-property-1.0.0" // {
dependencies = [
- (sources."is-descriptor-1.0.1" // {
+ (sources."is-descriptor-1.0.2" // {
dependencies = [
- (sources."is-accessor-descriptor-0.1.6" // {
- dependencies = [
- (sources."kind-of-3.2.2" // {
- dependencies = [
- sources."is-buffer-1.1.6"
- ];
- })
- ];
- })
- (sources."is-data-descriptor-0.1.4" // {
- dependencies = [
- (sources."kind-of-3.2.2" // {
- dependencies = [
- sources."is-buffer-1.1.6"
- ];
- })
- ];
- })
- sources."kind-of-5.1.0"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-data-descriptor-1.0.0"
];
})
];
@@ -5098,11 +4561,11 @@ in
sources."source-map-0.5.7"
(sources."source-map-resolve-0.5.1" // {
dependencies = [
- sources."decode-uri-component-0.2.0"
- sources."source-map-url-0.4.0"
sources."atob-2.0.3"
- sources."urix-0.1.0"
+ sources."decode-uri-component-0.2.0"
sources."resolve-url-0.2.1"
+ sources."source-map-url-0.4.0"
+ sources."urix-0.1.0"
];
})
(sources."use-2.0.2" // {
@@ -5257,9 +4720,9 @@ in
sources."isobject-3.0.1"
];
})
- (sources."object.map-1.0.0" // {
+ (sources."object.map-1.0.1" // {
dependencies = [
- (sources."for-own-0.1.5" // {
+ (sources."for-own-1.0.0" // {
dependencies = [
sources."for-in-1.0.2"
];
@@ -5335,6 +4798,11 @@ in
})
];
})
+ (sources."glob2base-0.0.12" // {
+ dependencies = [
+ sources."find-index-0.1.1"
+ ];
+ })
(sources."minimatch-2.0.10" // {
dependencies = [
(sources."brace-expansion-1.1.8" // {
@@ -5346,11 +4814,6 @@ in
];
})
sources."ordered-read-streams-0.1.0"
- (sources."glob2base-0.0.12" // {
- dependencies = [
- sources."find-index-0.1.1"
- ];
- })
sources."unique-stream-1.0.0"
];
})
@@ -5360,13 +4823,13 @@ in
dependencies = [
(sources."globule-0.1.0" // {
dependencies = [
- sources."lodash-1.0.2"
(sources."glob-3.1.21" // {
dependencies = [
sources."graceful-fs-1.2.3"
sources."inherits-1.0.2"
];
})
+ sources."lodash-1.0.2"
(sources."minimatch-0.2.14" // {
dependencies = [
sources."lru-cache-2.7.3"
@@ -5400,9 +4863,9 @@ in
(sources."readable-stream-1.0.34" // {
dependencies = [
sources."core-util-is-1.0.2"
+ sources."inherits-2.0.3"
sources."isarray-0.0.1"
sources."string_decoder-0.10.31"
- sources."inherits-2.0.3"
];
})
sources."xtend-4.0.1"
@@ -5562,13 +5025,13 @@ in
})
(sources."hawk-6.0.2" // {
dependencies = [
- sources."hoek-4.2.0"
sources."boom-4.3.1"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
];
})
+ sources."hoek-4.2.0"
sources."sntp-2.1.0"
];
})
@@ -5589,12 +5052,12 @@ in
(sources."sshpk-1.13.1" // {
dependencies = [
sources."asn1-0.2.3"
+ sources."bcrypt-pbkdf-1.0.1"
sources."dashdash-1.14.1"
+ sources."ecc-jsbn-0.1.1"
sources."getpass-0.1.7"
sources."jsbn-0.1.1"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
];
})
];
@@ -5618,7 +5081,7 @@ in
];
})
sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
+ sources."uuid-3.2.1"
];
})
sources."rimraf-2.6.2"
@@ -5674,15 +5137,17 @@ in
(sources."plist-1.2.0" // {
dependencies = [
sources."base64-js-0.0.8"
+ sources."util-deprecate-1.0.2"
(sources."xmlbuilder-4.0.0" // {
dependencies = [
sources."lodash-3.10.1"
];
})
sources."xmldom-0.1.27"
- sources."util-deprecate-1.0.2"
];
})
+ sources."rimraf-2.2.8"
+ sources."uid-0.0.2"
(sources."win-detect-browsers-1.0.2" // {
dependencies = [
sources."after-0.8.2"
@@ -5690,8 +5155,6 @@ in
sources."yargs-1.3.3"
];
})
- sources."uid-0.0.2"
- sources."rimraf-2.2.8"
];
})
sources."minimist-1.2.0"
@@ -5857,6 +5320,7 @@ in
sources."bytes-3.0.0"
(sources."http-errors-1.6.2" // {
dependencies = [
+ sources."depd-1.1.1"
sources."inherits-2.0.3"
sources."setprototypeof-1.0.3"
];
@@ -5873,8 +5337,8 @@ in
sources."content-type-1.0.4"
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
- sources."depd-1.1.1"
- sources."encodeurl-1.0.1"
+ sources."depd-1.1.2"
+ sources."encodeurl-1.0.2"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
(sources."finalhandler-1.1.0" // {
@@ -5906,6 +5370,7 @@ in
sources."destroy-1.0.4"
(sources."http-errors-1.6.2" // {
dependencies = [
+ sources."depd-1.1.1"
sources."inherits-2.0.3"
sources."setprototypeof-1.0.3"
];
@@ -5957,7 +5422,7 @@ in
];
})
sources."path-is-absolute-1.0.1"
- (sources."rc-1.2.2" // {
+ (sources."rc-1.2.4" // {
dependencies = [
sources."deep-extend-0.4.2"
sources."ini-1.3.5"
@@ -5985,6 +5450,15 @@ in
sources."nan-2.8.0"
(sources."node-pre-gyp-0.6.39" // {
dependencies = [
+ sources."detect-libc-1.0.3"
+ (sources."hawk-3.1.3" // {
+ dependencies = [
+ sources."boom-2.10.1"
+ sources."cryptiles-2.0.5"
+ sources."hoek-2.16.3"
+ sources."sntp-1.0.9"
+ ];
+ })
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
@@ -6098,12 +5572,12 @@ in
dependencies = [
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
sources."dashdash-1.14.1"
+ sources."ecc-jsbn-0.1.1"
sources."getpass-0.1.7"
sources."jsbn-0.1.1"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
];
})
];
@@ -6127,15 +5601,7 @@ in
];
})
sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- ];
- })
- (sources."hawk-3.1.3" // {
- dependencies = [
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
+ sources."uuid-3.2.1"
];
})
(sources."rimraf-2.6.2" // {
@@ -6168,8 +5634,7 @@ in
})
];
})
- sources."semver-5.4.1"
- sources."detect-libc-1.0.3"
+ sources."semver-5.5.0"
(sources."tar-2.2.1" // {
dependencies = [
sources."block-stream-0.0.9"
@@ -6232,6 +5697,15 @@ in
sources."nan-2.8.0"
(sources."node-pre-gyp-0.6.39" // {
dependencies = [
+ sources."detect-libc-1.0.3"
+ (sources."hawk-3.1.3" // {
+ dependencies = [
+ sources."boom-2.10.1"
+ sources."cryptiles-2.0.5"
+ sources."hoek-2.16.3"
+ sources."sntp-1.0.9"
+ ];
+ })
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
@@ -6345,12 +5819,12 @@ in
dependencies = [
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
sources."dashdash-1.14.1"
+ sources."ecc-jsbn-0.1.1"
sources."getpass-0.1.7"
sources."jsbn-0.1.1"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
];
})
];
@@ -6374,15 +5848,7 @@ in
];
})
sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- ];
- })
- (sources."hawk-3.1.3" // {
- dependencies = [
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
+ sources."uuid-3.2.1"
];
})
(sources."rimraf-2.6.2" // {
@@ -6415,8 +5881,7 @@ in
})
];
})
- sources."semver-5.4.1"
- sources."detect-libc-1.0.3"
+ sources."semver-5.5.0"
(sources."tar-2.2.1" // {
dependencies = [
sources."block-stream-0.0.9"
@@ -6545,6 +6010,15 @@ in
sha512 = "2cwrivwc0ha272cly9r61bbb14kkl1s1hsmn53yr88b6pfjqj512nac6c5rphc6ak88v8gpl1f879qdd3v7386103zzr7miibpmbhis";
};
dependencies = [
+ sources."detect-libc-1.0.3"
+ (sources."hawk-3.1.3" // {
+ dependencies = [
+ sources."boom-2.10.1"
+ sources."cryptiles-2.0.5"
+ sources."hoek-2.16.3"
+ sources."sntp-1.0.9"
+ ];
+ })
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
@@ -6607,7 +6081,7 @@ in
sources."set-blocking-2.0.0"
];
})
- (sources."rc-1.2.2" // {
+ (sources."rc-1.2.4" // {
dependencies = [
sources."deep-extend-0.4.2"
sources."ini-1.3.5"
@@ -6666,12 +6140,12 @@ in
dependencies = [
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
sources."dashdash-1.14.1"
+ sources."ecc-jsbn-0.1.1"
sources."getpass-0.1.7"
sources."jsbn-0.1.1"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
];
})
];
@@ -6695,15 +6169,7 @@ in
];
})
sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- ];
- })
- (sources."hawk-3.1.3" // {
- dependencies = [
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
+ sources."uuid-3.2.1"
];
})
(sources."rimraf-2.6.2" // {
@@ -6737,8 +6203,7 @@ in
})
];
})
- sources."semver-5.4.1"
- sources."detect-libc-1.0.3"
+ sources."semver-5.5.0"
(sources."tar-2.2.1" // {
dependencies = [
sources."block-stream-0.0.9"
@@ -6824,258 +6289,4 @@ in
production = true;
bypassCache = false;
};
- titanium = nodeEnv.buildNodePackage {
- name = "titanium";
- packageName = "titanium";
- version = "5.0.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/titanium/-/titanium-5.0.14.tgz";
- sha1 = "140bd332624acae65113a3ffec10b8cbb940ad0b";
- };
- dependencies = [
- sources."adm-zip-0.4.7"
- (sources."async-2.1.2" // {
- dependencies = [
- sources."lodash-4.17.4"
- ];
- })
- sources."colors-1.1.2"
- (sources."fields-0.1.24" // {
- dependencies = [
- sources."colors-0.6.2"
- sources."keypress-0.2.1"
- ];
- })
- sources."humanize-0.0.9"
- (sources."longjohn-0.2.11" // {
- dependencies = [
- (sources."source-map-support-0.3.2" // {
- dependencies = [
- (sources."source-map-0.1.32" // {
- dependencies = [
- sources."amdefine-1.0.1"
- ];
- })
- ];
- })
- ];
- })
- sources."moment-2.16.0"
- (sources."node-appc-0.2.41" // {
- dependencies = [
- (sources."async-2.1.4" // {
- dependencies = [
- sources."lodash-4.17.4"
- ];
- })
- sources."diff-3.2.0"
- sources."node-uuid-1.4.7"
- (sources."optimist-0.6.1" // {
- dependencies = [
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- ];
- })
- sources."wrench-1.5.9"
- (sources."uglify-js-2.7.5" // {
- dependencies = [
- sources."async-0.2.10"
- sources."source-map-0.5.7"
- sources."uglify-to-browserify-1.0.2"
- (sources."yargs-3.10.0" // {
- dependencies = [
- sources."camelcase-1.2.1"
- (sources."cliui-2.1.0" // {
- dependencies = [
- (sources."center-align-0.1.3" // {
- dependencies = [
- (sources."align-text-0.1.4" // {
- dependencies = [
- (sources."kind-of-3.2.2" // {
- dependencies = [
- sources."is-buffer-1.1.6"
- ];
- })
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- ];
- })
- sources."lazy-cache-1.0.4"
- ];
- })
- (sources."right-align-0.1.3" // {
- dependencies = [
- (sources."align-text-0.1.4" // {
- dependencies = [
- (sources."kind-of-3.2.2" // {
- dependencies = [
- sources."is-buffer-1.1.6"
- ];
- })
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- ];
- })
- ];
- })
- sources."wordwrap-0.0.2"
- ];
- })
- sources."decamelize-1.2.0"
- sources."window-size-0.1.0"
- ];
- })
- ];
- })
- sources."xmldom-0.1.27"
- ];
- })
- (sources."request-2.79.0" // {
- dependencies = [
- sources."aws-sign2-0.6.0"
- sources."aws4-1.6.0"
- sources."caseless-0.11.0"
- (sources."combined-stream-1.0.5" // {
- dependencies = [
- sources."delayed-stream-1.0.0"
- ];
- })
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- (sources."form-data-2.1.4" // {
- dependencies = [
- sources."asynckit-0.4.0"
- ];
- })
- (sources."har-validator-2.0.6" // {
- dependencies = [
- (sources."chalk-1.1.3" // {
- dependencies = [
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- (sources."has-ansi-2.0.0" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
- (sources."strip-ansi-3.0.1" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."supports-color-2.0.0"
- ];
- })
- sources."commander-2.12.2"
- (sources."is-my-json-valid-2.17.1" // {
- dependencies = [
- sources."generate-function-2.0.0"
- (sources."generate-object-property-1.2.0" // {
- dependencies = [
- sources."is-property-1.0.2"
- ];
- })
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- ];
- })
- (sources."pinkie-promise-2.0.1" // {
- dependencies = [
- sources."pinkie-2.0.4"
- ];
- })
- ];
- })
- (sources."hawk-3.1.3" // {
- dependencies = [
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- ];
- })
- (sources."http-signature-1.1.1" // {
- dependencies = [
- sources."assert-plus-0.2.0"
- (sources."jsprim-1.4.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."core-util-is-1.0.2"
- ];
- })
- ];
- })
- (sources."sshpk-1.13.1" // {
- dependencies = [
- sources."asn1-0.2.3"
- sources."assert-plus-1.0.0"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- ];
- })
- ];
- })
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- (sources."mime-types-2.1.17" // {
- dependencies = [
- sources."mime-db-1.30.0"
- ];
- })
- sources."oauth-sign-0.8.2"
- sources."qs-6.3.2"
- sources."stringstream-0.0.5"
- (sources."tough-cookie-2.3.3" // {
- dependencies = [
- sources."punycode-1.4.1"
- ];
- })
- sources."tunnel-agent-0.4.3"
- sources."uuid-3.1.0"
- ];
- })
- sources."semver-5.3.0"
- sources."sprintf-0.1.5"
- (sources."temp-0.8.3" // {
- dependencies = [
- sources."os-tmpdir-1.0.2"
- sources."rimraf-2.2.8"
- ];
- })
- (sources."winston-1.1.2" // {
- dependencies = [
- sources."async-1.0.0"
- sources."colors-1.0.3"
- sources."cycle-1.0.3"
- sources."eyes-0.1.8"
- sources."isstream-0.1.2"
- sources."pkginfo-0.3.1"
- sources."stack-trace-0.0.10"
- ];
- })
- (sources."fs-extra-2.1.2" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- sources."jsonfile-2.4.0"
- ];
- })
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Appcelerator Titanium Command line";
- homepage = "https://github.com/appcelerator/titanium#readme";
- license = "Apache-2.0";
- };
- production = true;
- bypassCache = false;
- };
}
\ No newline at end of file
diff --git a/pkgs/development/node-packages/node-packages-v6.json b/pkgs/development/node-packages/node-packages-v6.json
index 8f9e923fe2b..49380392bab 100644
--- a/pkgs/development/node-packages/node-packages-v6.json
+++ b/pkgs/development/node-packages/node-packages-v6.json
@@ -6,8 +6,10 @@
, "bower2nix"
, "browserify"
, "castnow"
+, "clean-css"
, "coffee-script"
, "coinmon"
+, "configurable-http-proxy"
, "cordova"
, "csslint"
, "dat"
@@ -48,6 +50,8 @@
, "karma"
, { "kibana-authentication-proxy": "git://github.com/fangli/kibana-authentication-proxy.git" }
, "lerna"
+, "less"
+, "less-plugin-clean-css"
, "lcov-result-merger"
, "livedown"
, "live-server"
@@ -76,6 +80,7 @@
, "pulp"
, "quassel-webserver"
, "react-tools"
+, "react-native-cli"
, "s3http"
, "semver"
, "serve"
@@ -91,6 +96,7 @@
, "stylus"
, "svgo"
, "tern"
+, "titanium"
, "typescript"
, "typings"
, "uglify-js"
diff --git a/pkgs/development/node-packages/node-packages-v6.nix b/pkgs/development/node-packages/node-packages-v6.nix
index 325ad4ce28e..316693ecec0 100644
--- a/pkgs/development/node-packages/node-packages-v6.nix
+++ b/pkgs/development/node-packages/node-packages-v6.nix
@@ -1,763 +1,169 @@
-# This file has been generated by node2nix 1.5.0. Do not edit!
+# This file has been generated by node2nix 1.5.1. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
let
sources = {
- "async-2.6.0" = {
- name = "async";
- packageName = "async";
- version = "2.6.0";
+ "@browserify/acorn5-object-spread-5.0.1" = {
+ name = "_at_browserify_slash_acorn5-object-spread";
+ packageName = "@browserify/acorn5-object-spread";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.6.0.tgz";
- sha512 = "0zp4b5788400npi1ixjry5x3a4m21c8pnknk8v731rgnwnjbp5ijmfcf5ppmn1ap4a04md1s9dr8n9ygdvrmiai590v0k6dby1wc1y4";
+ url = "https://registry.npmjs.org/@browserify/acorn5-object-spread/-/acorn5-object-spread-5.0.1.tgz";
+ sha512 = "0l47lh2pz596qayh9mmg2x2zjvjm6phj6llj4465cc420fpsjpwbm4i67mkc7d3iylilxhrcs9mlyqm2cpc79xqvrm3f4hy70zr8l5h";
};
};
- "babel-core-6.26.0" = {
- name = "babel-core";
- packageName = "babel-core";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz";
- sha1 = "af32f78b31a6fcef119c87b0fd8d9753f03a0bb8";
- };
- };
- "babel-generator-6.26.0" = {
- name = "babel-generator";
- packageName = "babel-generator";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz";
- sha1 = "ac1ae20070b79f6e3ca1d3269613053774f20dc5";
- };
- };
- "babel-traverse-6.26.0" = {
- name = "babel-traverse";
- packageName = "babel-traverse";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz";
- sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
- };
- };
- "babel-types-6.26.0" = {
- name = "babel-types";
- packageName = "babel-types";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz";
- sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
- };
- };
- "babylon-6.18.0" = {
- name = "babylon";
- packageName = "babylon";
- version = "6.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz";
- sha512 = "1qk460vyxfs08g8586jdc02wqzyy2y06596qcn1na9bz7yxra6vgh6177qf345xai0virpaz56bkpgmfcrd8yx5l2vjkn49y66h9xdb";
- };
- };
- "chmodr-1.0.2" = {
- name = "chmodr";
- packageName = "chmodr";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/chmodr/-/chmodr-1.0.2.tgz";
- sha1 = "04662b932d0f02ec66deaa2b0ea42811968e3eb9";
- };
- };
- "colors-0.6.0-1" = {
- name = "colors";
- packageName = "colors";
- version = "0.6.0-1";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-0.6.0-1.tgz";
- sha1 = "6dbb68ceb8bc60f2b313dcc5ce1599f06d19e67a";
- };
- };
- "commander-0.6.1" = {
- name = "commander";
- packageName = "commander";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz";
- sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06";
- };
- };
- "deasync-0.1.12" = {
- name = "deasync";
- packageName = "deasync";
- version = "0.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/deasync/-/deasync-0.1.12.tgz";
- sha512 = "1vnaqczk6nr30xzzf6qxsaa2fj00z80rr6xrb7mxwn0d41zdwrgffk5vizwf6b17bps2zdr4f87s2mdmnixhsfh41vrh185ixi9r5l2";
- };
- };
- "ejs-2.3.4" = {
- name = "ejs";
- packageName = "ejs";
- version = "2.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/ejs/-/ejs-2.3.4.tgz";
- sha1 = "3c76caa09664b3583b0037af9dc136e79ec68b98";
- };
- };
- "fs-extra-3.0.1" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-3.0.1.tgz";
- sha1 = "3794f378c58b342ea7dbbb23095109c4b3b62291";
- };
- };
- "global-paths-0.1.2" = {
- name = "global-paths";
- packageName = "global-paths";
+ "@ionic/cli-framework-0.1.2" = {
+ name = "_at_ionic_slash_cli-framework";
+ packageName = "@ionic/cli-framework";
version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/global-paths/-/global-paths-0.1.2.tgz";
- sha1 = "8869ecb2a8c80995be8a459f27ae5db7a0b03299";
+ url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-0.1.2.tgz";
+ sha512 = "265kszf17mdz60zpfrj5i47lqwwgp6h1b7i8vymig1pnlqd3lnljibxvd2d1rfa3827ks435k9wws458z3dk7fyq8wfmzmv8fk9qjhh";
};
};
- "jsonlint-1.5.1" = {
- name = "jsonlint";
- packageName = "jsonlint";
- version = "1.5.1";
+ "@ionic/cli-utils-1.19.1" = {
+ name = "_at_ionic_slash_cli-utils";
+ packageName = "@ionic/cli-utils";
+ version = "1.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.5.1.tgz";
- sha1 = "3cf436dcc9f3477ef3d7fa55a5bdf6d893f1c6c6";
+ url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.19.1.tgz";
+ sha512 = "3anhsxw0zyzi9j4kfnqxg2h4fxqjyw6pabb75z5b17hmksmjcyy6psic9fziyrgllp5rqksadqdzbkbb6lrviclhiz26sj8f7gjfi8r";
};
};
- "moment-2.17.1" = {
- name = "moment";
- packageName = "moment";
- version = "2.17.1";
+ "@ionic/discover-0.4.0" = {
+ name = "_at_ionic_slash_discover";
+ packageName = "@ionic/discover";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.17.1.tgz";
- sha1 = "fed9506063f36b10f066c8b59a144d7faebe1d82";
+ url = "https://registry.npmjs.org/@ionic/discover/-/discover-0.4.0.tgz";
+ sha512 = "0x6yxaj489n9lbq0kfvdnpj1pacgv3r0vk5cnlla7w1jkvxzwaf0vbcnwd9gdaj6zkq69wm1g4zjvj37pyn1lajjkzl1f50l7cnr2ad";
};
};
- "node.extend-1.0.10" = {
- name = "node.extend";
- packageName = "node.extend";
- version = "1.0.10";
+ "@sindresorhus/is-0.7.0" = {
+ name = "_at_sindresorhus_slash_is";
+ packageName = "@sindresorhus/is";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.10.tgz";
- sha1 = "3269bddf81c54535f408abc784c32b0d2bd55f6f";
+ url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz";
+ sha512 = "2ilygr40l2yqbk6lix4xnnnqsq6fxa6sysdxg49bg1ax5gzhwy3bcjbdlk7lndgh9055slpx6fybs3p8mhvbsnnjkmkqzrfy8l5mn1q";
};
};
- "pkginfo-0.2.2" = {
- name = "pkginfo";
- packageName = "pkginfo";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.2.tgz";
- sha1 = "97e1100dbbb275ff6fab583a256a7eea85120c8e";
- };
- };
- "resolve-1.5.0" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz";
- sha512 = "25scf9zkhf5yc9x3d7mfq2im5vyxmq3ih939na6jzblal7mgfcijmadl2maz501mkccykj714gvdhhmlzi86hbk7k03r9ipnwd142l6";
- };
- };
- "source-map-0.6.1" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz";
- sha512 = "3p7hw8p69ikj5mwapmqkacsjnbvdfk5ylyamjg9x5izkl717xvzj0vk3fnmx1n4pf54h5rs7r8ig5kk4jv4ycqqj0hv75cnx6k1lf2j";
- };
- };
- "walk-sync-0.3.2" = {
- name = "walk-sync";
- packageName = "walk-sync";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.2.tgz";
- sha512 = "2cycfx3lc52h2684s54pd81wz42f9lbggff4yva194nzr5x8nxp4fl437scd2dayyvxk68v8jmk1k8m364zdh5wmaff1a2bm9b7kh0l";
- };
- };
- "xml2tss-0.0.5" = {
- name = "xml2tss";
- packageName = "xml2tss";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml2tss/-/xml2tss-0.0.5.tgz";
- sha1 = "d76a310d6b8a7ba9e4825bb3d43f5427e9fe8f6e";
- };
- };
- "xmldom-0.1.19" = {
- name = "xmldom";
- packageName = "xmldom";
- version = "0.1.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz";
- sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc";
- };
- };
- "lodash-4.17.4" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.17.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz";
- sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae";
- };
- };
- "babel-code-frame-6.26.0" = {
- name = "babel-code-frame";
- packageName = "babel-code-frame";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
- sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
- };
- };
- "babel-helpers-6.24.1" = {
- name = "babel-helpers";
- packageName = "babel-helpers";
- version = "6.24.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz";
- sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
- };
- };
- "babel-messages-6.23.0" = {
- name = "babel-messages";
- packageName = "babel-messages";
- version = "6.23.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz";
- sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
- };
- };
- "babel-register-6.26.0" = {
- name = "babel-register";
- packageName = "babel-register";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz";
- sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
- };
- };
- "babel-runtime-6.26.0" = {
- name = "babel-runtime";
- packageName = "babel-runtime";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
- sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
- };
- };
- "babel-template-6.26.0" = {
- name = "babel-template";
- packageName = "babel-template";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz";
- sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
- };
- };
- "convert-source-map-1.5.1" = {
- name = "convert-source-map";
- packageName = "convert-source-map";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz";
- sha1 = "b8278097b9bc229365de5c62cf5fcaed8b5599e5";
- };
- };
- "debug-2.6.9" = {
- name = "debug";
- packageName = "debug";
- version = "2.6.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
- sha512 = "0q0fsr8bk1m83z0am0h2xn09vyfcf18adscxms8hclznwks1aihsisd96h8npx0idq5wwnypnqrkyk25m5d9zh3dk7rjs29nybc8bkc";
- };
- };
- "json5-0.5.1" = {
- name = "json5";
- packageName = "json5";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz";
- sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
- };
- };
- "minimatch-3.0.4" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
- sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8";
- };
- };
- "path-is-absolute-1.0.1" = {
- name = "path-is-absolute";
- packageName = "path-is-absolute";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
- };
- };
- "private-0.1.8" = {
- name = "private";
- packageName = "private";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz";
- sha512 = "2dgznnpxsgy9bgp4kfby1is72blvca4lhmqb3nlja8yiig1v52c12p5yw0aag8jqazhkqvihpxmqf9gsjlg5dr1jb56jxzgnqrazy2n";
- };
- };
- "slash-1.0.0" = {
- name = "slash";
- packageName = "slash";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz";
- sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
- };
- };
- "source-map-0.5.7" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
- sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
- };
- };
- "chalk-1.1.3" = {
- name = "chalk";
- packageName = "chalk";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
- sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
- };
- };
- "esutils-2.0.2" = {
- name = "esutils";
- packageName = "esutils";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz";
- sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b";
- };
- };
- "js-tokens-3.0.2" = {
- name = "js-tokens";
- packageName = "js-tokens";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz";
- sha1 = "9866df395102130e38f7f996bceb65443209c25b";
- };
- };
- "ansi-styles-2.2.1" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
+ "@types/form-data-2.2.1" = {
+ name = "_at_types_slash_form-data";
+ packageName = "@types/form-data";
version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
- sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
+ url = "https://registry.npmjs.org/@types/form-data/-/form-data-2.2.1.tgz";
+ sha512 = "2fv2qaz90rp6ib2s45ix0p3a4bd6yl6k94k1kkhw7w4s2aa5mqc6chppkf6pfvsz1l6phh7y0xswyfyzjgny7qzascch8c7ws20a0r4";
};
};
- "escape-string-regexp-1.0.5" = {
- name = "escape-string-regexp";
- packageName = "escape-string-regexp";
+ "@types/node-8.5.9" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "8.5.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-8.5.9.tgz";
+ sha512 = "2j38fqqziiv6m51w16lz6lgivrkycvn4nwch7sdpg32hbl5kv5m2ngg4y4jrf0v1s7iryi5gyh9729b8l1p48cf9hf0gj567h13grxk";
+ };
+ };
+ "@types/node-9.3.0" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "9.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-9.3.0.tgz";
+ sha512 = "0mhmzddyv8rhkha7ibpbsa5dfygzaa90438aqzpg9w7d31n093a7spx2zg4zfki4qrab71xrfb381hmqajn826cnrw9kc7kv2y5zl60";
+ };
+ };
+ "@types/request-2.0.13" = {
+ name = "_at_types_slash_request";
+ packageName = "@types/request";
+ version = "2.0.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/request/-/request-2.0.13.tgz";
+ sha512 = "3gbwnwgvm7d4jwixg004j635l89kvd2vll1wkv0rdlz5v8biqwnmgfg67nbj3lccvn4rhbalwpkrgvqz66j0n3d20fs02xyxr0z8x80";
+ };
+ };
+ "@types/tough-cookie-2.3.2" = {
+ name = "_at_types_slash_tough-cookie";
+ packageName = "@types/tough-cookie";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-2.3.2.tgz";
+ sha512 = "1nbw2qb74417hfamhd2a4yxf6ls3rjy92lv847mnhj7dxfla54kiwwdi64bnvcn7ysn5spkfakq4ssknb78qgz5nhd926whpdm6drdw";
+ };
+ };
+ "@types/uuid-3.4.3" = {
+ name = "_at_types_slash_uuid";
+ packageName = "@types/uuid";
+ version = "3.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.3.tgz";
+ sha512 = "1psrs8sjpmhz8sz2zjkkd7743vzdi7q7vcj8p219q1pkfawr619rl1m5pczp69hbm1769kn8zwlbayjylhl7an5hkvkdd2bi04lpx75";
+ };
+ };
+ "@zeit/check-updates-1.0.5" = {
+ name = "_at_zeit_slash_check-updates";
+ packageName = "@zeit/check-updates";
version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
+ url = "https://registry.npmjs.org/@zeit/check-updates/-/check-updates-1.0.5.tgz";
+ sha512 = "3a4h5bdrpjkv8rjvyafqf9b3wnyynzi3gisz92k37c35nvawlicsdv4svwnsxfqvhjhqn3lab6rjmkkivvdijr41vm3r048pp5dm1s0";
};
};
- "has-ansi-2.0.0" = {
- name = "has-ansi";
- packageName = "has-ansi";
- version = "2.0.0";
+ "CSSselect-0.4.1" = {
+ name = "CSSselect";
+ packageName = "CSSselect";
+ version = "0.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
- sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
+ url = "https://registry.npmjs.org/CSSselect/-/CSSselect-0.4.1.tgz";
+ sha1 = "f8ab7e1f8418ce63cda6eb7bd778a85d7ec492b2";
};
};
- "strip-ansi-3.0.1" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "3.0.1";
+ "CSSwhat-0.4.7" = {
+ name = "CSSwhat";
+ packageName = "CSSwhat";
+ version = "0.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
+ url = "https://registry.npmjs.org/CSSwhat/-/CSSwhat-0.4.7.tgz";
+ sha1 = "867da0ff39f778613242c44cfea83f0aa4ebdf9b";
};
};
- "supports-color-2.0.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
- sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
- };
- };
- "ansi-regex-2.1.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
- };
- };
- "core-js-2.5.3" = {
- name = "core-js";
- packageName = "core-js";
- version = "2.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz";
- sha1 = "8acc38345824f16d8365b7c9b4259168e8ed603e";
- };
- };
- "home-or-tmp-2.0.0" = {
- name = "home-or-tmp";
- packageName = "home-or-tmp";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz";
- sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
- };
- };
- "mkdirp-0.5.1" = {
- name = "mkdirp";
- packageName = "mkdirp";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
- sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
- };
- };
- "source-map-support-0.4.18" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.4.18";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz";
- sha512 = "1n37icn5xpsxs2x8szv6ifajjf066fskm04xn6agr79sid57n0yws4n0cis7m9q5hr0hxzr8dv2fnmmpgb4mvz8kiyv2g5ikbyb9g5n";
- };
- };
- "os-homedir-1.0.2" = {
- name = "os-homedir";
- packageName = "os-homedir";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
- };
- };
- "os-tmpdir-1.0.2" = {
- name = "os-tmpdir";
- packageName = "os-tmpdir";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
- sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
- };
- };
- "minimist-0.0.8" = {
- name = "minimist";
- packageName = "minimist";
- version = "0.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
- sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
- };
- };
- "regenerator-runtime-0.11.1" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.11.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
- sha512 = "03d4l8l8cyywh93wf5vw84lq56jh1b1d7jll4ny4z060j9hvx7w5q3q0b8q227jm93749k1c9h86r2pz0bm2xq5vp14g3r2kbvqc2rj";
- };
- };
- "ms-2.0.0" = {
- name = "ms";
- packageName = "ms";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
- };
- };
- "brace-expansion-1.1.8" = {
- name = "brace-expansion";
- packageName = "brace-expansion";
- version = "1.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz";
- sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292";
- };
- };
- "balanced-match-1.0.0" = {
- name = "balanced-match";
- packageName = "balanced-match";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
- sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
- };
- };
- "concat-map-0.0.1" = {
- name = "concat-map";
- packageName = "concat-map";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
- };
- };
- "detect-indent-4.0.0" = {
- name = "detect-indent";
- packageName = "detect-indent";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz";
- sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208";
- };
- };
- "jsesc-1.3.0" = {
- name = "jsesc";
- packageName = "jsesc";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz";
- sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
- };
- };
- "trim-right-1.0.1" = {
- name = "trim-right";
- packageName = "trim-right";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz";
- sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003";
- };
- };
- "repeating-2.0.1" = {
- name = "repeating";
- packageName = "repeating";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz";
- sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
- };
- };
- "is-finite-1.0.2" = {
- name = "is-finite";
- packageName = "is-finite";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz";
- sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa";
- };
- };
- "number-is-nan-1.0.1" = {
- name = "number-is-nan";
- packageName = "number-is-nan";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
- sha1 = "097b602b53422a522c1afb8790318336941a011d";
- };
- };
- "globals-9.18.0" = {
- name = "globals";
- packageName = "globals";
- version = "9.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz";
- sha512 = "18psd5ig23apaw07k4mma3z1hi2ndfwsqkm05hxashnf5lf7mpfs6kjiircc0x3x3q15j2x2j4zfzsqacxvfsmw40zjchn44bfccjab";
- };
- };
- "invariant-2.2.2" = {
- name = "invariant";
- packageName = "invariant";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz";
- sha1 = "9e1f56ac0acdb6bf303306f338be3b204ae60360";
- };
- };
- "loose-envify-1.3.1" = {
- name = "loose-envify";
- packageName = "loose-envify";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz";
- sha1 = "d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848";
- };
- };
- "to-fast-properties-1.0.3" = {
- name = "to-fast-properties";
- packageName = "to-fast-properties";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
- sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
- };
- };
- "bindings-1.2.1" = {
- name = "bindings";
- packageName = "bindings";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz";
- sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11";
- };
- };
- "nan-2.8.0" = {
- name = "nan";
- packageName = "nan";
- version = "2.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz";
- sha1 = "ed715f3fe9de02b57a5e6252d90a96675e1f085a";
- };
- };
- "graceful-fs-4.1.11" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "4.1.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
- sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
- };
- };
- "jsonfile-3.0.1" = {
- name = "jsonfile";
- packageName = "jsonfile";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonfile/-/jsonfile-3.0.1.tgz";
- sha1 = "a5ecc6f65f53f662c4415c7675a0331d0992ec66";
- };
- };
- "universalify-0.1.1" = {
- name = "universalify";
- packageName = "universalify";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz";
- sha1 = "fa71badd4437af4c148841e3b3b165f9e9e590b7";
- };
- };
- "array-unique-0.2.1" = {
- name = "array-unique";
- packageName = "array-unique";
+ "JSONSelect-0.2.1" = {
+ name = "JSONSelect";
+ packageName = "JSONSelect";
version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz";
- sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53";
+ url = "https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.2.1.tgz";
+ sha1 = "415418a526d33fe31d74b4defa3c836d485ec203";
};
};
- "global-modules-0.2.3" = {
- name = "global-modules";
- packageName = "global-modules";
- version = "0.2.3";
+ "JSONStream-0.10.0" = {
+ name = "JSONStream";
+ packageName = "JSONStream";
+ version = "0.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz";
- sha1 = "ea5a3bed42c6d6ce995a4f8a1269b5dae223828d";
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.10.0.tgz";
+ sha1 = "74349d0d89522b71f30f0a03ff9bd20ca6f12ac0";
};
};
- "is-windows-0.1.1" = {
- name = "is-windows";
- packageName = "is-windows";
- version = "0.1.1";
+ "JSONStream-0.8.4" = {
+ name = "JSONStream";
+ packageName = "JSONStream";
+ version = "0.8.4";
src = fetchurl {
- url = "https://registry.npmjs.org/is-windows/-/is-windows-0.1.1.tgz";
- sha1 = "be310715431cfabccc54ab3951210fa0b6d01abe";
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz";
+ sha1 = "91657dfe6ff857483066132b4618b62e8f4887bd";
};
};
- "global-prefix-0.1.5" = {
- name = "global-prefix";
- packageName = "global-prefix";
- version = "0.1.5";
+ "JSONStream-1.3.2" = {
+ name = "JSONStream";
+ packageName = "JSONStream";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz";
- sha1 = "8d3bc6b8da3ca8112a160d8d496ff0462bfef78f";
- };
- };
- "is-windows-0.2.0" = {
- name = "is-windows";
- packageName = "is-windows";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz";
- sha1 = "de1aa6d63ea29dd248737b69f1ff8b8002d2108c";
- };
- };
- "homedir-polyfill-1.0.1" = {
- name = "homedir-polyfill";
- packageName = "homedir-polyfill";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz";
- sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc";
- };
- };
- "ini-1.3.5" = {
- name = "ini";
- packageName = "ini";
- version = "1.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
- sha512 = "1rjbvf1rg5ywhnba08sgagn2qf23lab330qrqmh7d891zap3xpxcyfyj1cblpf0f0rypglcfacybzyrpd4996aa1mbc820awa33k5j5";
- };
- };
- "which-1.3.0" = {
- name = "which";
- packageName = "which";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
- sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
- };
- };
- "parse-passwd-1.0.0" = {
- name = "parse-passwd";
- packageName = "parse-passwd";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
- sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
- };
- };
- "isexe-2.0.0" = {
- name = "isexe";
- packageName = "isexe";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
- };
- };
- "nomnom-1.8.1" = {
- name = "nomnom";
- packageName = "nomnom";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz";
- sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7";
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz";
+ sha1 = "c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea";
};
};
"JSV-4.0.2" = {
@@ -769,301 +175,13 @@ let
sha1 = "d077f6825571f82132f9dffaed587b4029feff57";
};
};
- "underscore-1.6.0" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.6.0";
+ "abbrev-1.0.9" = {
+ name = "abbrev";
+ packageName = "abbrev";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz";
- sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8";
- };
- };
- "chalk-0.4.0" = {
- name = "chalk";
- packageName = "chalk";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz";
- sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f";
- };
- };
- "has-color-0.1.7" = {
- name = "has-color";
- packageName = "has-color";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz";
- sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f";
- };
- };
- "ansi-styles-1.0.0" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz";
- sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178";
- };
- };
- "strip-ansi-0.1.1" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz";
- sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991";
- };
- };
- "is-0.3.0" = {
- name = "is";
- packageName = "is";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is/-/is-0.3.0.tgz";
- sha1 = "a8f71dfc8a6e28371627f26c929098c6f4d5d5d7";
- };
- };
- "path-parse-1.0.5" = {
- name = "path-parse";
- packageName = "path-parse";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz";
- sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1";
- };
- };
- "ensure-posix-path-1.0.2" = {
- name = "ensure-posix-path";
- packageName = "ensure-posix-path";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz";
- sha1 = "a65b3e42d0b71cfc585eb774f9943c8d9b91b0c2";
- };
- };
- "matcher-collection-1.0.5" = {
- name = "matcher-collection";
- packageName = "matcher-collection";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/matcher-collection/-/matcher-collection-1.0.5.tgz";
- sha512 = "1hfvbsx85xqrw6g0k7rkqwngl8b2nwj92ax10ilx3b4lma2mcp8q6zpvam1sffgqsssa9d13cj7prrzg5c00mf0c8q92w59m36ach4x";
- };
- };
- "xml2js-0.2.8" = {
- name = "xml2js";
- packageName = "xml2js";
- version = "0.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.8.tgz";
- sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2";
- };
- };
- "sax-0.5.8" = {
- name = "sax";
- packageName = "sax";
- version = "0.5.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz";
- sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1";
- };
- };
- "chromium-pickle-js-0.2.0" = {
- name = "chromium-pickle-js";
- packageName = "chromium-pickle-js";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz";
- sha1 = "04a106672c18b085ab774d983dfa3ea138f22205";
- };
- };
- "commander-2.12.2" = {
- name = "commander";
- packageName = "commander";
- version = "2.12.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz";
- sha512 = "007wb3baahjcrv17kgxryqjlsyr3c3kl2y07p85m4ia78pba9xyjr3cgi95jjrwq8qq550s78hj06f7z0ab8ssrxk6w06afjsmxln84";
- };
- };
- "cuint-0.2.2" = {
- name = "cuint";
- packageName = "cuint";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz";
- sha1 = "408086d409550c2631155619e9fa7bcadc3b991b";
- };
- };
- "glob-6.0.4" = {
- name = "glob";
- packageName = "glob";
- version = "6.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz";
- sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22";
- };
- };
- "mksnapshot-0.3.1" = {
- name = "mksnapshot";
- packageName = "mksnapshot";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mksnapshot/-/mksnapshot-0.3.1.tgz";
- sha1 = "2501c05657436d742ce958a4ff92c77e40dd37e6";
- };
- };
- "tmp-0.0.28" = {
- name = "tmp";
- packageName = "tmp";
- version = "0.0.28";
- src = fetchurl {
- url = "https://registry.npmjs.org/tmp/-/tmp-0.0.28.tgz";
- sha1 = "172735b7f614ea7af39664fa84cf0de4e515d120";
- };
- };
- "inflight-1.0.6" = {
- name = "inflight";
- packageName = "inflight";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
- };
- };
- "inherits-2.0.3" = {
- name = "inherits";
- packageName = "inherits";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
- sha1 = "633c2c83e3da42a502f52466022480f4208261de";
- };
- };
- "once-1.4.0" = {
- name = "once";
- packageName = "once";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
- };
- };
- "wrappy-1.0.2" = {
- name = "wrappy";
- packageName = "wrappy";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
- };
- };
- "decompress-zip-0.3.0" = {
- name = "decompress-zip";
- packageName = "decompress-zip";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/decompress-zip/-/decompress-zip-0.3.0.tgz";
- sha1 = "ae3bcb7e34c65879adfe77e19c30f86602b4bdb0";
- };
- };
- "fs-extra-0.26.7" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "0.26.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz";
- sha1 = "9ae1fdd94897798edab76d0918cf42d0c3184fa9";
- };
- };
- "request-2.83.0" = {
- name = "request";
- packageName = "request";
- version = "2.83.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz";
- sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm";
- };
- };
- "binary-0.3.0" = {
- name = "binary";
- packageName = "binary";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz";
- sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79";
- };
- };
- "mkpath-0.1.0" = {
- name = "mkpath";
- packageName = "mkpath";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz";
- sha1 = "7554a6f8d871834cc97b5462b122c4c124d6de91";
- };
- };
- "nopt-3.0.6" = {
- name = "nopt";
- packageName = "nopt";
- version = "3.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
- sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
- };
- };
- "q-1.5.1" = {
- name = "q";
- packageName = "q";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz";
- sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7";
- };
- };
- "readable-stream-1.1.14" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.1.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
- sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
- };
- };
- "touch-0.0.3" = {
- name = "touch";
- packageName = "touch";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/touch/-/touch-0.0.3.tgz";
- sha1 = "51aef3d449571d4f287a5d87c9c8b49181a0db1d";
- };
- };
- "chainsaw-0.1.0" = {
- name = "chainsaw";
- packageName = "chainsaw";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz";
- sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98";
- };
- };
- "buffers-0.1.1" = {
- name = "buffers";
- packageName = "buffers";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz";
- sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb";
- };
- };
- "traverse-0.3.9" = {
- name = "traverse";
- packageName = "traverse";
- version = "0.3.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz";
- sha1 = "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9";
+ url = "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz";
+ sha1 = "91b4792588a7738c25f35dd6f63752a2f8776135";
};
};
"abbrev-1.1.1" = {
@@ -1075,85 +193,1363 @@ let
sha512 = "38s4f3id97wsb0rg9nm9zvxyq0nvwrmrpa5dzvrkp36mf5ibs98b4z6lvsbrwzzs0sbcank6c7gpp06vcwp9acfhp41rzlhi3ybsxwy";
};
};
- "core-util-is-1.0.2" = {
- name = "core-util-is";
- packageName = "core-util-is";
- version = "1.0.2";
+ "abstract-leveldown-0.12.4" = {
+ name = "abstract-leveldown";
+ packageName = "abstract-leveldown";
+ version = "0.12.4";
src = fetchurl {
- url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
- sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
+ url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz";
+ sha1 = "29e18e632e60e4e221d5810247852a63d7b2e410";
};
};
- "isarray-0.0.1" = {
- name = "isarray";
- packageName = "isarray";
+ "abstract-random-access-1.1.2" = {
+ name = "abstract-random-access";
+ packageName = "abstract-random-access";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/abstract-random-access/-/abstract-random-access-1.1.2.tgz";
+ sha1 = "9a8eac8ff79866f3f9b4bb1443ca778f1598aeda";
+ };
+ };
+ "accepts-1.2.13" = {
+ name = "accepts";
+ packageName = "accepts";
+ version = "1.2.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz";
+ sha1 = "e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea";
+ };
+ };
+ "accepts-1.3.3" = {
+ name = "accepts";
+ packageName = "accepts";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz";
+ sha1 = "c3ca7434938648c3e0d9c1e328dd68b622c284ca";
+ };
+ };
+ "accepts-1.3.4" = {
+ name = "accepts";
+ packageName = "accepts";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz";
+ sha1 = "86246758c7dd6d21a6474ff084a4740ec05eb21f";
+ };
+ };
+ "acorn-1.2.2" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz";
+ sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014";
+ };
+ };
+ "acorn-2.7.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "2.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz";
+ sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7";
+ };
+ };
+ "acorn-3.3.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
+ sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
+ };
+ };
+ "acorn-4.0.13" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "4.0.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz";
+ sha1 = "105495ae5361d697bd195c825192e1ad7f253787";
+ };
+ };
+ "acorn-5.3.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "5.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-5.3.0.tgz";
+ sha512 = "197zp88clmmxjyvhahqv32kv07q825hf87facxaq8qmvb1swfqnpyy4398dl56sr2fa44f7gjpzzlwy1szqzwww6746y3kmwb6gxs31";
+ };
+ };
+ "acorn-dynamic-import-2.0.2" = {
+ name = "acorn-dynamic-import";
+ packageName = "acorn-dynamic-import";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz";
+ sha1 = "c752bd210bef679501b6c6cb7fc84f8f47158cc4";
+ };
+ };
+ "acorn-globals-1.0.9" = {
+ name = "acorn-globals";
+ packageName = "acorn-globals";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz";
+ sha1 = "55bb5e98691507b74579d0513413217c380c54cf";
+ };
+ };
+ "acorn-globals-3.1.0" = {
+ name = "acorn-globals";
+ packageName = "acorn-globals";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz";
+ sha1 = "fd8270f71fbb4996b004fa880ee5d46573a731bf";
+ };
+ };
+ "acorn-jsx-3.0.1" = {
+ name = "acorn-jsx";
+ packageName = "acorn-jsx";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
+ sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
+ };
+ };
+ "active-x-obfuscator-0.0.1" = {
+ name = "active-x-obfuscator";
+ packageName = "active-x-obfuscator";
version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
- sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
+ url = "https://registry.npmjs.org/active-x-obfuscator/-/active-x-obfuscator-0.0.1.tgz";
+ sha1 = "089b89b37145ff1d9ec74af6530be5526cae1f1a";
};
};
- "string_decoder-0.10.31" = {
- name = "string_decoder";
- packageName = "string_decoder";
- version = "0.10.31";
+ "adal-node-0.1.21" = {
+ name = "adal-node";
+ packageName = "adal-node";
+ version = "0.1.21";
src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
- sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
+ url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.21.tgz";
+ sha1 = "11c58e427b7e83d9ef2d77c9c3a2a60fbb0b6cc8";
};
};
- "nopt-1.0.10" = {
- name = "nopt";
- packageName = "nopt";
- version = "1.0.10";
+ "adal-node-0.1.27" = {
+ name = "adal-node";
+ packageName = "adal-node";
+ version = "0.1.27";
src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
- sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
+ url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.27.tgz";
+ sha1 = "42252337bc1d01aff6b3c26138a08a3d4f420b0e";
};
};
- "jsonfile-2.4.0" = {
- name = "jsonfile";
- packageName = "jsonfile";
- version = "2.4.0";
+ "adbkit-2.11.0" = {
+ name = "adbkit";
+ packageName = "adbkit";
+ version = "2.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz";
- sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8";
+ url = "https://registry.npmjs.org/adbkit/-/adbkit-2.11.0.tgz";
+ sha512 = "1yf29dq993f047nmbm3yv9qsla7z3s9xn61jh43lzlgbpcxw36p2jn1ahv53i8ik69fkb5l7mqi6r1xm6qfzagz0jm2i64r8y2d8swg";
};
};
- "klaw-1.3.1" = {
- name = "klaw";
- packageName = "klaw";
- version = "1.3.1";
+ "adbkit-logcat-1.1.0" = {
+ name = "adbkit-logcat";
+ packageName = "adbkit-logcat";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz";
- sha1 = "4088433b46b3b1ba259d78785d8e96f73ba02439";
+ url = "https://registry.npmjs.org/adbkit-logcat/-/adbkit-logcat-1.1.0.tgz";
+ sha1 = "01d7f9b0cef9093a30bcb3b007efff301508962f";
};
};
- "rimraf-2.6.2" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.6.2";
+ "adbkit-monkey-1.0.1" = {
+ name = "adbkit-monkey";
+ packageName = "adbkit-monkey";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
- sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn";
+ url = "https://registry.npmjs.org/adbkit-monkey/-/adbkit-monkey-1.0.1.tgz";
+ sha1 = "f291be701a2efc567a63fc7aa6afcded31430be1";
};
};
- "glob-7.1.2" = {
- name = "glob";
- packageName = "glob";
- version = "7.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
- sha512 = "08vjxzixc9dwc1hn5pd60yyij98krk2pr758aiga97r02ncvaqx1hidi95wk470k1v84gg4alls9bm52m77174z128bgf13b61x951h";
- };
- };
- "fs.realpath-1.0.0" = {
- name = "fs.realpath";
- packageName = "fs.realpath";
+ "add-stream-1.0.0" = {
+ name = "add-stream";
+ packageName = "add-stream";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
+ url = "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz";
+ sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa";
+ };
+ };
+ "addons-linter-0.33.0" = {
+ name = "addons-linter";
+ packageName = "addons-linter";
+ version = "0.33.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/addons-linter/-/addons-linter-0.33.0.tgz";
+ sha1 = "0b2a75a6650e743fe22a34ec7cfd4647fd062efc";
+ };
+ };
+ "addr-to-ip-port-1.4.2" = {
+ name = "addr-to-ip-port";
+ packageName = "addr-to-ip-port";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.4.2.tgz";
+ sha1 = "7e46ff1f26b7a9f5e33fd839d57aef6303b4c692";
+ };
+ };
+ "address-1.0.3" = {
+ name = "address";
+ packageName = "address";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/address/-/address-1.0.3.tgz";
+ sha512 = "27dii2i2aw9z3pw09110914532z5dfywxp8gbrfr14737cwy8m0jysam3abmfsbp8g51sd02ys57j5snwly3zfd0vrbli4109rni7ng";
+ };
+ };
+ "addressparser-0.1.3" = {
+ name = "addressparser";
+ packageName = "addressparser";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/addressparser/-/addressparser-0.1.3.tgz";
+ sha1 = "9e9ab43d257e1ae784e1df5f580c9f5240f58874";
+ };
+ };
+ "addressparser-0.3.2" = {
+ name = "addressparser";
+ packageName = "addressparser";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/addressparser/-/addressparser-0.3.2.tgz";
+ sha1 = "59873f35e8fcf6c7361c10239261d76e15348bb2";
+ };
+ };
+ "addressparser-1.0.1" = {
+ name = "addressparser";
+ packageName = "addressparser";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz";
+ sha1 = "47afbe1a2a9262191db6838e4fd1d39b40821746";
+ };
+ };
+ "adm-zip-0.4.7" = {
+ name = "adm-zip";
+ packageName = "adm-zip";
+ version = "0.4.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz";
+ sha1 = "8606c2cbf1c426ce8c8ec00174447fd49b6eafc1";
+ };
+ };
+ "after-0.8.1" = {
+ name = "after";
+ packageName = "after";
+ version = "0.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/after/-/after-0.8.1.tgz";
+ sha1 = "ab5d4fb883f596816d3515f8f791c0af486dd627";
+ };
+ };
+ "after-0.8.2" = {
+ name = "after";
+ packageName = "after";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz";
+ sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f";
+ };
+ };
+ "agent-base-2.1.1" = {
+ name = "agent-base";
+ packageName = "agent-base";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz";
+ sha1 = "d6de10d5af6132d5bd692427d46fc538539094c7";
+ };
+ };
+ "agent-base-4.2.0" = {
+ name = "agent-base";
+ packageName = "agent-base";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/agent-base/-/agent-base-4.2.0.tgz";
+ sha512 = "0i6q0c347f7z5c56gi1cggjiwvdhl3p9zfsysq66gqggk3prlqildnpva900rz8f8gfc8rav8jk7m51z9dhias0z7v3rnzyjm9pzr3k";
+ };
+ };
+ "aggregate-error-1.0.0" = {
+ name = "aggregate-error";
+ packageName = "aggregate-error";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-1.0.0.tgz";
+ sha1 = "888344dad0220a72e3af50906117f48771925fac";
+ };
+ };
+ "airplay-js-0.2.16" = {
+ name = "airplay-js";
+ packageName = "airplay-js";
+ version = "0.2.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/airplay-js/-/airplay-js-0.2.16.tgz";
+ sha1 = "48566d5fa55a921d80187ad946f7e8f7555902a1";
+ };
+ };
+ "airplay-protocol-2.0.2" = {
+ name = "airplay-protocol";
+ packageName = "airplay-protocol";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/airplay-protocol/-/airplay-protocol-2.0.2.tgz";
+ sha1 = "b5b2a7137331f5545acbe196ba5693c13238fc5e";
+ };
+ };
+ "airplayer-2.0.0" = {
+ name = "airplayer";
+ packageName = "airplayer";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/airplayer/-/airplayer-2.0.0.tgz";
+ sha1 = "7ab62d23b96d44234138aec1281d2e67ef190259";
+ };
+ };
+ "ajv-4.11.8" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "4.11.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
+ sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
+ };
+ };
+ "ajv-5.5.2" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "5.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
+ sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
+ };
+ };
+ "ajv-keywords-1.5.1" = {
+ name = "ajv-keywords";
+ packageName = "ajv-keywords";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz";
+ sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c";
+ };
+ };
+ "ajv-keywords-2.1.1" = {
+ name = "ajv-keywords";
+ packageName = "ajv-keywords";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz";
+ sha1 = "617997fc5f60576894c435f940d819e135b80762";
+ };
+ };
+ "aliasify-2.1.0" = {
+ name = "aliasify";
+ packageName = "aliasify";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aliasify/-/aliasify-2.1.0.tgz";
+ sha1 = "7c30825b9450b9e6185ba27533eaf6e2067d4b42";
+ };
+ };
+ "align-text-0.1.4" = {
+ name = "align-text";
+ packageName = "align-text";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
+ sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
+ };
+ };
+ "amdefine-1.0.1" = {
+ name = "amdefine";
+ packageName = "amdefine";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
+ sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
+ };
+ };
+ "amqplib-0.5.2" = {
+ name = "amqplib";
+ packageName = "amqplib";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/amqplib/-/amqplib-0.5.2.tgz";
+ sha512 = "0h54i1d01av3cd2z1hv2nkc5r8za54nmmi2j0678ly7m4w9rr6619b915lgpqapqgakscwpmrav3ni94h34gqhrm53xpjfvlarq5ncp";
+ };
+ };
+ "anchor-markdown-header-0.5.7" = {
+ name = "anchor-markdown-header";
+ packageName = "anchor-markdown-header";
+ version = "0.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/anchor-markdown-header/-/anchor-markdown-header-0.5.7.tgz";
+ sha1 = "045063d76e6a1f9cd327a57a0126aa0fdec371a7";
+ };
+ };
+ "ansi-0.3.1" = {
+ name = "ansi";
+ packageName = "ansi";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz";
+ sha1 = "0c42d4fb17160d5a9af1e484bace1c66922c1b21";
+ };
+ };
+ "ansi-align-2.0.0" = {
+ name = "ansi-align";
+ packageName = "ansi-align";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz";
+ sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f";
+ };
+ };
+ "ansi-color-0.2.1" = {
+ name = "ansi-color";
+ packageName = "ansi-color";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-color/-/ansi-color-0.2.1.tgz";
+ sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a";
+ };
+ };
+ "ansi-diff-stream-1.2.0" = {
+ name = "ansi-diff-stream";
+ packageName = "ansi-diff-stream";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-diff-stream/-/ansi-diff-stream-1.2.0.tgz";
+ sha1 = "eb325c20ac3623ecd592011a9295d76d97de460e";
+ };
+ };
+ "ansi-escapes-1.4.0" = {
+ name = "ansi-escapes";
+ packageName = "ansi-escapes";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz";
+ sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
+ };
+ };
+ "ansi-escapes-3.0.0" = {
+ name = "ansi-escapes";
+ packageName = "ansi-escapes";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz";
+ sha512 = "06szfav8g7xywvqsis16nnkjqs2snhv37r4m53l1ax8k2sahvqv9id2klam32jajqd08ylw8g9wbcjr971igx6vh8idan76drrjby9v";
+ };
+ };
+ "ansi-gray-0.1.1" = {
+ name = "ansi-gray";
+ packageName = "ansi-gray";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz";
+ sha1 = "2962cf54ec9792c48510a3deb524436861ef7251";
+ };
+ };
+ "ansi-regex-0.2.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
+ sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
+ };
+ };
+ "ansi-regex-1.1.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz";
+ sha1 = "41c847194646375e6a1a5d10c3ca054ef9fc980d";
+ };
+ };
+ "ansi-regex-2.1.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
+ sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
+ };
+ };
+ "ansi-regex-3.0.0" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
+ sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
+ };
+ };
+ "ansi-styles-1.0.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz";
+ sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178";
+ };
+ };
+ "ansi-styles-1.1.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz";
+ sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de";
+ };
+ };
+ "ansi-styles-2.2.1" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
+ sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
+ };
+ };
+ "ansi-styles-3.2.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
+ sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n";
+ };
+ };
+ "ansi-wrap-0.1.0" = {
+ name = "ansi-wrap";
+ packageName = "ansi-wrap";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz";
+ sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf";
+ };
+ };
+ "ansicolors-0.3.2" = {
+ name = "ansicolors";
+ packageName = "ansicolors";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz";
+ sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979";
+ };
+ };
+ "any-promise-1.3.0" = {
+ name = "any-promise";
+ packageName = "any-promise";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz";
+ sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f";
+ };
+ };
+ "anymatch-1.3.2" = {
+ name = "anymatch";
+ packageName = "anymatch";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz";
+ sha512 = "269dbx666z4ws49vag1dma5kdpjlx83s74c1jlngrn2672rhvbc47i5ay5h40spmrzgvbvcm33i4yrp88rrc6lg70v78k155z45lwyi";
+ };
+ };
+ "anymatch-2.0.0" = {
+ name = "anymatch";
+ packageName = "anymatch";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz";
+ sha512 = "03mjsaw6xk4zhvl17fpqn59j4v2bafqs0yfw5y45hl8x97xlihwvjmcx3icnaamvipplnczymvzg4sb4ixwpzak0k3p21c00nqqxmz6";
+ };
+ };
+ "ap-0.1.0" = {
+ name = "ap";
+ packageName = "ap";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ap/-/ap-0.1.0.tgz";
+ sha1 = "d8a3f26615379398a1b53ca6cc1a666a0fbfe150";
+ };
+ };
+ "apache-crypt-1.2.1" = {
+ name = "apache-crypt";
+ packageName = "apache-crypt";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.1.tgz";
+ sha1 = "d6fc72aa6d27d99c95a94fd188d731eefffa663c";
+ };
+ };
+ "apache-md5-1.1.2" = {
+ name = "apache-md5";
+ packageName = "apache-md5";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.2.tgz";
+ sha1 = "ee49736b639b4f108b6e9e626c6da99306b41692";
+ };
+ };
+ "append-0.1.1" = {
+ name = "append";
+ packageName = "append";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/append/-/append-0.1.1.tgz";
+ sha1 = "7e5dd327747078d877286fbb624b1e8f4d2b396b";
+ };
+ };
+ "append-field-0.1.0" = {
+ name = "append-field";
+ packageName = "append-field";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/append-field/-/append-field-0.1.0.tgz";
+ sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a";
+ };
+ };
+ "append-tree-2.4.1" = {
+ name = "append-tree";
+ packageName = "append-tree";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.1.tgz";
+ sha512 = "2zb14nlfxs726ng8jhfpf6n9b9kw32smg2krcl0vj90dfrkcc20fm36j2zgdd49b2ln1z4jz2wvvy4qgss14zzfr3rps719h6vlyjg7";
+ };
+ };
+ "appendable-cli-menu-2.0.0" = {
+ name = "appendable-cli-menu";
+ packageName = "appendable-cli-menu";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/appendable-cli-menu/-/appendable-cli-menu-2.0.0.tgz";
+ sha1 = "dcfca9e509300e4c3b2d467965fe50c56fc75e66";
+ };
+ };
+ "applicationinsights-0.16.0" = {
+ name = "applicationinsights";
+ packageName = "applicationinsights";
+ version = "0.16.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/applicationinsights/-/applicationinsights-0.16.0.tgz";
+ sha1 = "e02dafb10cf573c19b429793c87797d6404f0ee3";
+ };
+ };
+ "aproba-1.2.0" = {
+ name = "aproba";
+ packageName = "aproba";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
+ sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3";
+ };
+ };
+ "arch-2.1.0" = {
+ name = "arch";
+ packageName = "arch";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arch/-/arch-2.1.0.tgz";
+ sha1 = "3613aa46149064b3c1f0607919bf1d4786e82889";
+ };
+ };
+ "archiver-2.1.1" = {
+ name = "archiver";
+ packageName = "archiver";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/archiver/-/archiver-2.1.1.tgz";
+ sha1 = "ff662b4a78201494a3ee544d3a33fe7496509ebc";
+ };
+ };
+ "archiver-utils-1.3.0" = {
+ name = "archiver-utils";
+ packageName = "archiver-utils";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz";
+ sha1 = "e50b4c09c70bf3d680e32ff1b7994e9f9d895174";
+ };
+ };
+ "archy-1.0.0" = {
+ name = "archy";
+ packageName = "archy";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz";
+ sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
+ };
+ };
+ "are-we-there-yet-1.1.4" = {
+ name = "are-we-there-yet";
+ packageName = "are-we-there-yet";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz";
+ sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d";
+ };
+ };
+ "argparse-0.1.15" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "0.1.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/argparse/-/argparse-0.1.15.tgz";
+ sha1 = "28a1f72c43113e763220e5708414301c8840f0a1";
+ };
+ };
+ "argparse-0.1.16" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "0.1.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz";
+ sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
+ };
+ };
+ "argparse-1.0.4" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/argparse/-/argparse-1.0.4.tgz";
+ sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4";
+ };
+ };
+ "argparse-1.0.9" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz";
+ sha1 = "73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86";
+ };
+ };
+ "args-3.0.8" = {
+ name = "args";
+ packageName = "args";
+ version = "3.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/args/-/args-3.0.8.tgz";
+ sha512 = "26h2nssgwzgc9y1mywgjcx2rbbkxlpx23zj9gh81bayjr8522zi78rwrhpkkqwh7dwqx6mv8gphcx8zyv3vm8hxw5s89kjlzm66k7y9";
+ };
+ };
+ "arr-diff-2.0.0" = {
+ name = "arr-diff";
+ packageName = "arr-diff";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz";
+ sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
+ };
+ };
+ "arr-diff-4.0.0" = {
+ name = "arr-diff";
+ packageName = "arr-diff";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
+ sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
+ };
+ };
+ "arr-flatten-1.1.0" = {
+ name = "arr-flatten";
+ packageName = "arr-flatten";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
+ sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g";
+ };
+ };
+ "arr-union-3.1.0" = {
+ name = "arr-union";
+ packageName = "arr-union";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
+ sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
+ };
+ };
+ "array-differ-1.0.0" = {
+ name = "array-differ";
+ packageName = "array-differ";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz";
+ sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031";
+ };
+ };
+ "array-each-1.0.1" = {
+ name = "array-each";
+ packageName = "array-each";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
+ sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
+ };
+ };
+ "array-filter-0.0.1" = {
+ name = "array-filter";
+ packageName = "array-filter";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz";
+ sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec";
+ };
+ };
+ "array-find-0.1.1" = {
+ name = "array-find";
+ packageName = "array-find";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-find/-/array-find-0.1.1.tgz";
+ sha1 = "dc813845ad5a9afc35cb92b786c878d81b5b82ce";
+ };
+ };
+ "array-find-index-1.0.2" = {
+ name = "array-find-index";
+ packageName = "array-find-index";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz";
+ sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
+ };
+ };
+ "array-flatten-1.1.1" = {
+ name = "array-flatten";
+ packageName = "array-flatten";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz";
+ sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
+ };
+ };
+ "array-flatten-2.1.1" = {
+ name = "array-flatten";
+ packageName = "array-flatten";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz";
+ sha1 = "426bb9da84090c1838d812c8150af20a8331e296";
+ };
+ };
+ "array-from-2.1.1" = {
+ name = "array-from";
+ packageName = "array-from";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz";
+ sha1 = "cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195";
+ };
+ };
+ "array-ify-1.0.0" = {
+ name = "array-ify";
+ packageName = "array-ify";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz";
+ sha1 = "9e528762b4a9066ad163a6962a364418e9626ece";
+ };
+ };
+ "array-indexofobject-0.0.1" = {
+ name = "array-indexofobject";
+ packageName = "array-indexofobject";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-indexofobject/-/array-indexofobject-0.0.1.tgz";
+ sha1 = "aaa128e62c9b3c358094568c219ff64fe489d42a";
+ };
+ };
+ "array-loop-1.0.0" = {
+ name = "array-loop";
+ packageName = "array-loop";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-loop/-/array-loop-1.0.0.tgz";
+ sha1 = "c033d086cf0d12af73aed5a99c0cedb37367b395";
+ };
+ };
+ "array-lru-1.1.1" = {
+ name = "array-lru";
+ packageName = "array-lru";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-lru/-/array-lru-1.1.1.tgz";
+ sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337";
+ };
+ };
+ "array-map-0.0.0" = {
+ name = "array-map";
+ packageName = "array-map";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz";
+ sha1 = "88a2bab73d1cf7bcd5c1b118a003f66f665fa662";
+ };
+ };
+ "array-reduce-0.0.0" = {
+ name = "array-reduce";
+ packageName = "array-reduce";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz";
+ sha1 = "173899d3ffd1c7d9383e4479525dbe278cab5f2b";
+ };
+ };
+ "array-shuffle-1.0.1" = {
+ name = "array-shuffle";
+ packageName = "array-shuffle";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-shuffle/-/array-shuffle-1.0.1.tgz";
+ sha1 = "7ea4882a356b4bca5f545e0b6e52eaf6d971557a";
+ };
+ };
+ "array-slice-0.2.3" = {
+ name = "array-slice";
+ packageName = "array-slice";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz";
+ sha1 = "dd3cfb80ed7973a75117cdac69b0b99ec86186f5";
+ };
+ };
+ "array-slice-1.1.0" = {
+ name = "array-slice";
+ packageName = "array-slice";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
+ sha512 = "3myjiz16qi117x0k52sisqyn0cqx6yxvpgr43bkil9shgs7yhs8wpdgd3wjwfzgwxsw330yqwhp880gsyx2kxj1lfyb6gs1fh7qqnh7";
+ };
+ };
+ "array-union-1.0.2" = {
+ name = "array-union";
+ packageName = "array-union";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
+ sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
+ };
+ };
+ "array-uniq-1.0.3" = {
+ name = "array-uniq";
+ packageName = "array-uniq";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
+ sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
+ };
+ };
+ "array-unique-0.2.1" = {
+ name = "array-unique";
+ packageName = "array-unique";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz";
+ sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53";
+ };
+ };
+ "array-unique-0.3.2" = {
+ name = "array-unique";
+ packageName = "array-unique";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
+ sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
+ };
+ };
+ "arraybuffer.slice-0.0.6" = {
+ name = "arraybuffer.slice";
+ packageName = "arraybuffer.slice";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz";
+ sha1 = "f33b2159f0532a3f3107a272c0ccfbd1ad2979ca";
+ };
+ };
+ "arraybuffer.slice-0.0.7" = {
+ name = "arraybuffer.slice";
+ packageName = "arraybuffer.slice";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz";
+ sha512 = "2ifpj39fza01g4z9jhgl0shmh5f79czgfh7bf40n66v5p93nrf43kiqhsgic9az2jrwmj8n60dn7kav1rzvm41a9kwi4ypf0mahhrf0";
+ };
+ };
+ "arrify-1.0.1" = {
+ name = "arrify";
+ packageName = "arrify";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz";
+ sha1 = "898508da2226f380df904728456849c1501a4b0d";
+ };
+ };
+ "asap-1.0.0" = {
+ name = "asap";
+ packageName = "asap";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz";
+ sha1 = "b2a45da5fdfa20b0496fc3768cc27c12fa916a7d";
+ };
+ };
+ "asap-2.0.6" = {
+ name = "asap";
+ packageName = "asap";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
+ sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
+ };
+ };
+ "ascli-0.3.0" = {
+ name = "ascli";
+ packageName = "ascli";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ascli/-/ascli-0.3.0.tgz";
+ sha1 = "5e66230e5219fe3e8952a4efb4f20fae596a813a";
+ };
+ };
+ "asn1-0.1.11" = {
+ name = "asn1";
+ packageName = "asn1";
+ version = "0.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz";
+ sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7";
+ };
+ };
+ "asn1-0.2.3" = {
+ name = "asn1";
+ packageName = "asn1";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz";
+ sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
+ };
+ };
+ "asn1.js-4.9.2" = {
+ name = "asn1.js";
+ packageName = "asn1.js";
+ version = "4.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.9.2.tgz";
+ sha512 = "071d32h5646ddyfxvmm0yd0xc320zh2cdsjal4hs8cs0hgn9dpq7k9c9ndlhjq3y93nlawkinm99znqvp0cxx61ic7qy4nn7d5arwvg";
+ };
+ };
+ "assert-1.4.1" = {
+ name = "assert";
+ packageName = "assert";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz";
+ sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91";
+ };
+ };
+ "assert-plus-0.1.2" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.2.tgz";
+ sha1 = "d93ffdbb67ac5507779be316a7d65146417beef8";
+ };
+ };
+ "assert-plus-0.1.5" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz";
+ sha1 = "ee74009413002d84cec7219c6ac811812e723160";
+ };
+ };
+ "assert-plus-0.2.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
+ sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
+ };
+ };
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
+ };
+ };
+ "assertion-error-1.1.0" = {
+ name = "assertion-error";
+ packageName = "assertion-error";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz";
+ sha512 = "07swiwljqy13fyil4y9lp319zcqsgdkchaic1y4dlfi3flh5l4qlwv497g40bnspsl9h857a3ig5assmvjdwv913dppgymkvcsil2wf";
+ };
+ };
+ "assign-symbols-1.0.0" = {
+ name = "assign-symbols";
+ packageName = "assign-symbols";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
+ sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
+ };
+ };
+ "ast-types-0.10.1" = {
+ name = "ast-types";
+ packageName = "ast-types";
+ version = "0.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ast-types/-/ast-types-0.10.1.tgz";
+ sha512 = "2wjsah372x6rjrrsq3bv915lccq4pjpyk4b0vb7kmc87ab5yjgac4rab0qclh6brhhyv95mbyy1k5sijfyx36676darz57k6gsgx3ji";
+ };
+ };
+ "ast-types-0.9.6" = {
+ name = "ast-types";
+ packageName = "ast-types";
+ version = "0.9.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz";
+ sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
+ };
+ };
+ "astw-2.2.0" = {
+ name = "astw";
+ packageName = "astw";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/astw/-/astw-2.2.0.tgz";
+ sha1 = "7bd41784d32493987aeb239b6b4e1c57a873b917";
+ };
+ };
+ "async-0.1.22" = {
+ name = "async";
+ packageName = "async";
+ version = "0.1.22";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz";
+ sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061";
+ };
+ };
+ "async-0.2.10" = {
+ name = "async";
+ packageName = "async";
+ version = "0.2.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
+ sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
+ };
+ };
+ "async-0.2.7" = {
+ name = "async";
+ packageName = "async";
+ version = "0.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-0.2.7.tgz";
+ sha1 = "44c5ee151aece6c4bf5364cfc7c28fe4e58f18df";
+ };
+ };
+ "async-0.2.9" = {
+ name = "async";
+ packageName = "async";
+ version = "0.2.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-0.2.9.tgz";
+ sha1 = "df63060fbf3d33286a76aaf6d55a2986d9ff8619";
+ };
+ };
+ "async-0.9.2" = {
+ name = "async";
+ packageName = "async";
+ version = "0.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz";
+ sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
+ };
+ };
+ "async-1.0.0" = {
+ name = "async";
+ packageName = "async";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
+ sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
+ };
+ };
+ "async-1.4.2" = {
+ name = "async";
+ packageName = "async";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-1.4.2.tgz";
+ sha1 = "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab";
+ };
+ };
+ "async-1.5.2" = {
+ name = "async";
+ packageName = "async";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz";
+ sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a";
+ };
+ };
+ "async-2.1.2" = {
+ name = "async";
+ packageName = "async";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.1.2.tgz";
+ sha1 = "612a4ab45ef42a70cde806bad86ee6db047e8385";
+ };
+ };
+ "async-2.1.4" = {
+ name = "async";
+ packageName = "async";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.1.4.tgz";
+ sha1 = "2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4";
+ };
+ };
+ "async-2.1.5" = {
+ name = "async";
+ packageName = "async";
+ version = "2.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz";
+ sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
+ };
+ };
+ "async-2.5.0" = {
+ name = "async";
+ packageName = "async";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.5.0.tgz";
+ sha512 = "1ijrwmifg76a8wwhhfqxg23kd0rsjhzklwvj2czvqxs2k25ii6p3y6s3vhbcc5hnr87b0gfc4nb54b8bph2hn9c6z1f6nldjw04ksbv";
+ };
+ };
+ "async-2.6.0" = {
+ name = "async";
+ packageName = "async";
+ version = "2.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.6.0.tgz";
+ sha512 = "0zp4b5788400npi1ixjry5x3a4m21c8pnknk8v731rgnwnjbp5ijmfcf5ppmn1ap4a04md1s9dr8n9ygdvrmiai590v0k6dby1wc1y4";
+ };
+ };
+ "async-each-1.0.1" = {
+ name = "async-each";
+ packageName = "async-each";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz";
+ sha1 = "19d386a1d9edc6e7c1c85d388aedbcc56d33602d";
+ };
+ };
+ "async-limiter-1.0.0" = {
+ name = "async-limiter";
+ packageName = "async-limiter";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz";
+ sha512 = "1ddib7nbyayhldvsyrfdpxk7khyi6s72570gkf3qqf4b1xwzdh52w0vlj6bknl40imispychhwfjb2bm29pjxbd5yz26fi8g8bfx7wf";
+ };
+ };
+ "asynckit-0.4.0" = {
+ name = "asynckit";
+ packageName = "asynckit";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
+ sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
+ };
+ };
+ "atob-2.0.3" = {
+ name = "atob";
+ packageName = "atob";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz";
+ sha1 = "19c7a760473774468f20b2d2d03372ad7d4cbf5d";
+ };
+ };
+ "atomic-batcher-1.0.2" = {
+ name = "atomic-batcher";
+ packageName = "atomic-batcher";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/atomic-batcher/-/atomic-batcher-1.0.2.tgz";
+ sha1 = "d16901d10ccec59516c197b9ccd8930689b813b4";
+ };
+ };
+ "auto-bind-1.2.0" = {
+ name = "auto-bind";
+ packageName = "auto-bind";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/auto-bind/-/auto-bind-1.2.0.tgz";
+ sha512 = "0wamaj1k757h28fyrvfam4fz8ymz84pvfcyvm3k88bs8vxq36jn9kbiqqa3s0axwi6pcmwgmpjqfsh2721a1bb5kp5dpkpdkrkfj3k7";
+ };
+ };
+ "aws-sdk-1.18.0" = {
+ name = "aws-sdk";
+ packageName = "aws-sdk";
+ version = "1.18.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-1.18.0.tgz";
+ sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
+ };
+ };
+ "aws-sdk-2.187.0" = {
+ name = "aws-sdk";
+ packageName = "aws-sdk";
+ version = "2.187.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.187.0.tgz";
+ sha1 = "04cb9a333d39c09753bf3ff63ec065b32b00db18";
+ };
+ };
+ "aws-sign-0.2.0" = {
+ name = "aws-sign";
+ packageName = "aws-sign";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz";
+ sha1 = "c55013856c8194ec854a0cbec90aab5a04ce3ac5";
+ };
+ };
+ "aws-sign2-0.6.0" = {
+ name = "aws-sign2";
+ packageName = "aws-sign2";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
+ sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
};
};
"aws-sign2-0.7.0" = {
@@ -1174,463 +1570,22 @@ let
sha1 = "83ef5ca860b2b32e4a0deedee8c771b9db57471e";
};
};
- "caseless-0.12.0" = {
- name = "caseless";
- packageName = "caseless";
- version = "0.12.0";
+ "axios-0.15.3" = {
+ name = "axios";
+ packageName = "axios";
+ version = "0.15.3";
src = fetchurl {
- url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
+ url = "https://registry.npmjs.org/axios/-/axios-0.15.3.tgz";
+ sha1 = "2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053";
};
};
- "combined-stream-1.0.5" = {
- name = "combined-stream";
- packageName = "combined-stream";
- version = "1.0.5";
+ "axios-0.17.1" = {
+ name = "axios";
+ packageName = "axios";
+ version = "0.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz";
- sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009";
- };
- };
- "extend-3.0.1" = {
- name = "extend";
- packageName = "extend";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz";
- sha1 = "a755ea7bc1adfcc5a31ce7e762dbaadc5e636444";
- };
- };
- "forever-agent-0.6.1" = {
- name = "forever-agent";
- packageName = "forever-agent";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
- };
- };
- "form-data-2.3.1" = {
- name = "form-data";
- packageName = "form-data";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz";
- sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf";
- };
- };
- "har-validator-5.0.3" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "5.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz";
- sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd";
- };
- };
- "hawk-6.0.2" = {
- name = "hawk";
- packageName = "hawk";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz";
- sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als";
- };
- };
- "http-signature-1.2.0" = {
- name = "http-signature";
- packageName = "http-signature";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
- };
- };
- "is-typedarray-1.0.0" = {
- name = "is-typedarray";
- packageName = "is-typedarray";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
- };
- };
- "isstream-0.1.2" = {
- name = "isstream";
- packageName = "isstream";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
- };
- };
- "json-stringify-safe-5.0.1" = {
- name = "json-stringify-safe";
- packageName = "json-stringify-safe";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
- };
- };
- "mime-types-2.1.17" = {
- name = "mime-types";
- packageName = "mime-types";
- version = "2.1.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz";
- sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a";
- };
- };
- "oauth-sign-0.8.2" = {
- name = "oauth-sign";
- packageName = "oauth-sign";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
- sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
- };
- };
- "performance-now-2.1.0" = {
- name = "performance-now";
- packageName = "performance-now";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
- };
- };
- "qs-6.5.1" = {
- name = "qs";
- packageName = "qs";
- version = "6.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz";
- sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r";
- };
- };
- "safe-buffer-5.1.1" = {
- name = "safe-buffer";
- packageName = "safe-buffer";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz";
- sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh";
- };
- };
- "stringstream-0.0.5" = {
- name = "stringstream";
- packageName = "stringstream";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz";
- sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878";
- };
- };
- "tough-cookie-2.3.3" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz";
- sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561";
- };
- };
- "tunnel-agent-0.6.0" = {
- name = "tunnel-agent";
- packageName = "tunnel-agent";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
- };
- };
- "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 = "3x5mi85l1559nkb35pfksjjgiyfyqrcvmcf0nly1xjl1kb0d37jnxd6sk0b8d331waadnqbf60nfssb563x9pvnjcw87lrh976sv18c";
- };
- };
- "delayed-stream-1.0.0" = {
- name = "delayed-stream";
- packageName = "delayed-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
- };
- };
- "asynckit-0.4.0" = {
- name = "asynckit";
- packageName = "asynckit";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
- };
- };
- "ajv-5.5.2" = {
- name = "ajv";
- packageName = "ajv";
- version = "5.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
- sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
- };
- };
- "har-schema-2.0.0" = {
- name = "har-schema";
- packageName = "har-schema";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
- };
- };
- "co-4.6.0" = {
- name = "co";
- packageName = "co";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
- sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
- };
- };
- "fast-deep-equal-1.0.0" = {
- name = "fast-deep-equal";
- packageName = "fast-deep-equal";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz";
- sha1 = "96256a3bc975595eb36d82e9929d060d893439ff";
- };
- };
- "fast-json-stable-stringify-2.0.0" = {
- name = "fast-json-stable-stringify";
- packageName = "fast-json-stable-stringify";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
- sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
- };
- };
- "json-schema-traverse-0.3.1" = {
- name = "json-schema-traverse";
- packageName = "json-schema-traverse";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz";
- sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340";
- };
- };
- "hoek-4.2.0" = {
- name = "hoek";
- packageName = "hoek";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz";
- sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz";
- };
- };
- "boom-4.3.1" = {
- name = "boom";
- packageName = "boom";
- version = "4.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz";
- sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31";
- };
- };
- "cryptiles-3.1.2" = {
- name = "cryptiles";
- packageName = "cryptiles";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz";
- sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe";
- };
- };
- "sntp-2.1.0" = {
- name = "sntp";
- packageName = "sntp";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz";
- sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
- };
- };
- "boom-5.2.0" = {
- name = "boom";
- packageName = "boom";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz";
- sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437";
- };
- };
- "assert-plus-1.0.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- };
- "jsprim-1.4.1" = {
- name = "jsprim";
- packageName = "jsprim";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
- sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
- };
- };
- "sshpk-1.13.1" = {
- name = "sshpk";
- packageName = "sshpk";
- version = "1.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz";
- sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3";
- };
- };
- "extsprintf-1.3.0" = {
- name = "extsprintf";
- packageName = "extsprintf";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
- sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
- };
- };
- "json-schema-0.2.3" = {
- name = "json-schema";
- packageName = "json-schema";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
- };
- };
- "verror-1.10.0" = {
- name = "verror";
- packageName = "verror";
- version = "1.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
- };
- };
- "asn1-0.2.3" = {
- name = "asn1";
- packageName = "asn1";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz";
- sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
- };
- };
- "dashdash-1.14.1" = {
- name = "dashdash";
- packageName = "dashdash";
- version = "1.14.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
- };
- };
- "getpass-0.1.7" = {
- name = "getpass";
- packageName = "getpass";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
- };
- };
- "jsbn-0.1.1" = {
- name = "jsbn";
- packageName = "jsbn";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
- };
- };
- "tweetnacl-0.14.5" = {
- name = "tweetnacl";
- packageName = "tweetnacl";
- version = "0.14.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
- };
- };
- "ecc-jsbn-0.1.1" = {
- name = "ecc-jsbn";
- packageName = "ecc-jsbn";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz";
- sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505";
- };
- };
- "bcrypt-pbkdf-1.0.1" = {
- name = "bcrypt-pbkdf";
- packageName = "bcrypt-pbkdf";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz";
- sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d";
- };
- };
- "mime-db-1.30.0" = {
- name = "mime-db";
- packageName = "mime-db";
- version = "1.30.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz";
- sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01";
- };
- };
- "punycode-1.4.1" = {
- name = "punycode";
- packageName = "punycode";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
- sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
- };
- };
- "adal-node-0.1.21" = {
- name = "adal-node";
- packageName = "adal-node";
- version = "0.1.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.21.tgz";
- sha1 = "11c58e427b7e83d9ef2d77c9c3a2a60fbb0b6cc8";
- };
- };
- "async-1.4.2" = {
- name = "async";
- packageName = "async";
- version = "1.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-1.4.2.tgz";
- sha1 = "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab";
- };
- };
- "azure-common-0.9.18" = {
- name = "azure-common";
- packageName = "azure-common";
- version = "0.9.18";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.18.tgz";
- sha1 = "38b960f4ddadd44d34f52e8b85d5d1e0226440fd";
+ url = "https://registry.npmjs.org/axios/-/axios-0.17.1.tgz";
+ sha1 = "2d8e3e5d0bdbd7327f91bc814f5c57660f81824d";
};
};
"azure-arm-authorization-2.0.0" = {
@@ -1642,6 +1597,15 @@ let
sha1 = "56b558ba43b9cb5657662251dabe3cb34c16c56f";
};
};
+ "azure-arm-batch-0.3.0" = {
+ name = "azure-arm-batch";
+ packageName = "azure-arm-batch";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-0.3.0.tgz";
+ sha1 = "78b000b10a16b97dcf273729b4dba919efbfdaf7";
+ };
+ };
"azure-arm-cdn-1.0.3" = {
name = "azure-arm-cdn";
packageName = "azure-arm-cdn";
@@ -1687,6 +1651,24 @@ let
sha1 = "c8b7c113016c92703a84dc28d29ba518e8c64763";
};
};
+ "azure-arm-devtestlabs-0.1.0" = {
+ name = "azure-arm-devtestlabs";
+ packageName = "azure-arm-devtestlabs";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-0.1.0.tgz";
+ sha1 = "76604b8d2ad7b881f6ff53a37e37365481ca8c40";
+ };
+ };
+ "azure-arm-dns-2.0.0-preview" = {
+ name = "azure-arm-dns";
+ packageName = "azure-arm-dns";
+ version = "2.0.0-preview";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.0.0-preview.tgz";
+ sha1 = "3dd0645c7f1767fe150e00a8ac33b4b55bce9b8c";
+ };
+ };
"azure-arm-hdinsight-0.2.2" = {
name = "azure-arm-hdinsight";
packageName = "azure-arm-hdinsight";
@@ -1723,15 +1705,6 @@ let
sha1 = "f63a6dad0355633d9347fb403f417fb195fe3b91";
};
};
- "azure-arm-servermanagement-0.1.2" = {
- name = "azure-arm-servermanagement";
- packageName = "azure-arm-servermanagement";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-0.1.2.tgz";
- sha1 = "937f87a8aeceb641a8210a9ba837323f0206eb47";
- };
- };
"azure-arm-network-4.0.1" = {
name = "azure-arm-network";
packageName = "azure-arm-network";
@@ -1750,33 +1723,6 @@ let
sha1 = "f0050ed833e2b3b12daba83d6f9e3d96852ee970";
};
};
- "azure-arm-trafficmanager-1.1.0-preview" = {
- name = "azure-arm-trafficmanager";
- packageName = "azure-arm-trafficmanager";
- version = "1.1.0-preview";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-trafficmanager/-/azure-arm-trafficmanager-1.1.0-preview.tgz";
- sha1 = "b46cfcf7f1690e4739864dcdb5c8de322e82ec50";
- };
- };
- "azure-arm-dns-2.0.0-preview" = {
- name = "azure-arm-dns";
- packageName = "azure-arm-dns";
- version = "2.0.0-preview";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.0.0-preview.tgz";
- sha1 = "3dd0645c7f1767fe150e00a8ac33b4b55bce9b8c";
- };
- };
- "azure-arm-website-0.11.4" = {
- name = "azure-arm-website";
- packageName = "azure-arm-website";
- version = "0.11.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-0.11.4.tgz";
- sha1 = "6972dd9844a0d12376d74014b541c49247caa37d";
- };
- };
"azure-arm-rediscache-0.2.3" = {
name = "azure-arm-rediscache";
packageName = "azure-arm-rediscache";
@@ -1786,40 +1732,49 @@ let
sha1 = "b6898abe8b4c3e1b2ec5be82689ef212bc2b1a06";
};
};
- "azure-arm-devtestlabs-0.1.0" = {
- name = "azure-arm-devtestlabs";
- packageName = "azure-arm-devtestlabs";
- version = "0.1.0";
+ "azure-arm-resource-1.6.1-preview" = {
+ name = "azure-arm-resource";
+ packageName = "azure-arm-resource";
+ version = "1.6.1-preview";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-0.1.0.tgz";
- sha1 = "76604b8d2ad7b881f6ff53a37e37365481ca8c40";
+ url = "https://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-1.6.1-preview.tgz";
+ sha1 = "aa9a49fb9081a210f2f4cc6596ca4653b68306e6";
};
};
- "azure-graph-2.1.0-preview" = {
- name = "azure-graph";
- packageName = "azure-graph";
- version = "2.1.0-preview";
+ "azure-arm-servermanagement-0.1.2" = {
+ name = "azure-arm-servermanagement";
+ packageName = "azure-arm-servermanagement";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.1.0-preview.tgz";
- sha1 = "2005abb76d9193cbfb90f25ee92823cde87d4f5f";
+ url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-0.1.2.tgz";
+ sha1 = "937f87a8aeceb641a8210a9ba837323f0206eb47";
};
};
- "azure-gallery-2.0.0-pre.18" = {
- name = "azure-gallery";
- packageName = "azure-gallery";
- version = "2.0.0-pre.18";
+ "azure-arm-storage-0.15.0-preview" = {
+ name = "azure-arm-storage";
+ packageName = "azure-arm-storage";
+ version = "0.15.0-preview";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-gallery/-/azure-gallery-2.0.0-pre.18.tgz";
- sha1 = "3cd4c5e4e0091551d6a5ee757af2354c8a36b3e6";
+ url = "https://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-0.15.0-preview.tgz";
+ sha1 = "e25c13a1e716656caa019a7bc9fabe05c5062b7e";
};
};
- "azure-keyvault-0.11.0" = {
- name = "azure-keyvault";
- packageName = "azure-keyvault";
- version = "0.11.0";
+ "azure-arm-trafficmanager-1.1.0-preview" = {
+ name = "azure-arm-trafficmanager";
+ packageName = "azure-arm-trafficmanager";
+ version = "1.1.0-preview";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-0.11.0.tgz";
- sha1 = "379e6c2ed4155de86caff63243923c7330d34802";
+ url = "https://registry.npmjs.org/azure-arm-trafficmanager/-/azure-arm-trafficmanager-1.1.0-preview.tgz";
+ sha1 = "b46cfcf7f1690e4739864dcdb5c8de322e82ec50";
+ };
+ };
+ "azure-arm-website-0.11.4" = {
+ name = "azure-arm-website";
+ packageName = "azure-arm-website";
+ version = "0.11.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-0.11.4.tgz";
+ sha1 = "6972dd9844a0d12376d74014b541c49247caa37d";
};
};
"azure-asm-compute-0.18.0" = {
@@ -1840,15 +1795,6 @@ let
sha1 = "2d11cdaaa073fc38f31c718991d5923fb7259fa0";
};
};
- "azure-asm-trafficmanager-0.10.3" = {
- name = "azure-asm-trafficmanager";
- packageName = "azure-asm-trafficmanager";
- version = "0.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-trafficmanager/-/azure-asm-trafficmanager-0.10.3.tgz";
- sha1 = "91e2e63d73869090613cd42ee38a3823e55f4447";
- };
- };
"azure-asm-mgmt-0.10.1" = {
name = "azure-asm-mgmt";
packageName = "azure-asm-mgmt";
@@ -1858,15 +1804,6 @@ let
sha1 = "d0a44b47ccabf338b19d53271675733cfa2d1751";
};
};
- "azure-monitoring-0.10.2" = {
- name = "azure-monitoring";
- packageName = "azure-monitoring";
- version = "0.10.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.2.tgz";
- sha1 = "2b7d493306747b43e4e2dcad44d65328e6c3cf57";
- };
- };
"azure-asm-network-0.13.0" = {
name = "azure-asm-network";
packageName = "azure-asm-network";
@@ -1876,24 +1813,6 @@ let
sha1 = "8d5d46b66b16c36dfc067f7c7c87bd2f42049c54";
};
};
- "azure-arm-resource-1.6.1-preview" = {
- name = "azure-arm-resource";
- packageName = "azure-arm-resource";
- version = "1.6.1-preview";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-1.6.1-preview.tgz";
- sha1 = "aa9a49fb9081a210f2f4cc6596ca4653b68306e6";
- };
- };
- "azure-arm-storage-0.15.0-preview" = {
- name = "azure-arm-storage";
- packageName = "azure-arm-storage";
- version = "0.15.0-preview";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-0.15.0-preview.tgz";
- sha1 = "e25c13a1e716656caa019a7bc9fabe05c5062b7e";
- };
- };
"azure-asm-sb-0.10.1" = {
name = "azure-asm-sb";
packageName = "azure-asm-sb";
@@ -1930,6 +1849,15 @@ let
sha1 = "917a5e87a04b69c0f5c29339fe910bb5e5e7a04c";
};
};
+ "azure-asm-trafficmanager-0.10.3" = {
+ name = "azure-asm-trafficmanager";
+ packageName = "azure-asm-trafficmanager";
+ version = "0.10.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-asm-trafficmanager/-/azure-asm-trafficmanager-0.10.3.tgz";
+ sha1 = "91e2e63d73869090613cd42ee38a3823e55f4447";
+ };
+ };
"azure-asm-website-0.10.4" = {
name = "azure-asm-website";
packageName = "azure-asm-website";
@@ -1939,24 +1867,6 @@ let
sha1 = "bfd0c01a8ae6afd90eaa13360976242e28459650";
};
};
- "azure-storage-2.1.0" = {
- name = "azure-storage";
- packageName = "azure-storage";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.1.0.tgz";
- sha1 = "7fc81246cd64b54cabced70b5138d7cc4571ea01";
- };
- };
- "azure-arm-batch-0.3.0" = {
- name = "azure-arm-batch";
- packageName = "azure-arm-batch";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-0.3.0.tgz";
- sha1 = "78b000b10a16b97dcf273729b4dba919efbfdaf7";
- };
- };
"azure-batch-0.5.2" = {
name = "azure-batch";
packageName = "azure-batch";
@@ -1966,6 +1876,51 @@ let
sha1 = "21b23f9db7f42734e97f35bd703818a1cf2492eb";
};
};
+ "azure-common-0.9.18" = {
+ name = "azure-common";
+ packageName = "azure-common";
+ version = "0.9.18";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.18.tgz";
+ sha1 = "38b960f4ddadd44d34f52e8b85d5d1e0226440fd";
+ };
+ };
+ "azure-gallery-2.0.0-pre.18" = {
+ name = "azure-gallery";
+ packageName = "azure-gallery";
+ version = "2.0.0-pre.18";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-gallery/-/azure-gallery-2.0.0-pre.18.tgz";
+ sha1 = "3cd4c5e4e0091551d6a5ee757af2354c8a36b3e6";
+ };
+ };
+ "azure-graph-2.1.0-preview" = {
+ name = "azure-graph";
+ packageName = "azure-graph";
+ version = "2.1.0-preview";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.1.0-preview.tgz";
+ sha1 = "2005abb76d9193cbfb90f25ee92823cde87d4f5f";
+ };
+ };
+ "azure-keyvault-0.11.0" = {
+ name = "azure-keyvault";
+ packageName = "azure-keyvault";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-0.11.0.tgz";
+ sha1 = "379e6c2ed4155de86caff63243923c7330d34802";
+ };
+ };
+ "azure-monitoring-0.10.2" = {
+ name = "azure-monitoring";
+ packageName = "azure-monitoring";
+ version = "0.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.2.tgz";
+ sha1 = "2b7d493306747b43e4e2dcad44d65328e6c3cf57";
+ };
+ };
"azure-servicefabric-0.1.5" = {
name = "azure-servicefabric";
packageName = "azure-servicefabric";
@@ -1975,400 +1930,346 @@ let
sha1 = "bdc4b378292490ce77e788ee189f291ce5ae25a6";
};
};
- "applicationinsights-0.16.0" = {
- name = "applicationinsights";
- packageName = "applicationinsights";
- version = "0.16.0";
+ "azure-storage-2.1.0" = {
+ name = "azure-storage";
+ packageName = "azure-storage";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/applicationinsights/-/applicationinsights-0.16.0.tgz";
- sha1 = "e02dafb10cf573c19b429793c87797d6404f0ee3";
+ url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.1.0.tgz";
+ sha1 = "7fc81246cd64b54cabced70b5138d7cc4571ea01";
};
};
- "caller-id-0.1.0" = {
- name = "caller-id";
- packageName = "caller-id";
- version = "0.1.0";
+ "babel-code-frame-6.26.0" = {
+ name = "babel-code-frame";
+ packageName = "babel-code-frame";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/caller-id/-/caller-id-0.1.0.tgz";
- sha1 = "59bdac0893d12c3871408279231f97458364f07b";
+ url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz";
+ sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b";
};
};
- "colors-1.1.2" = {
- name = "colors";
- packageName = "colors";
- version = "1.1.2";
+ "babel-core-6.26.0" = {
+ name = "babel-core";
+ packageName = "babel-core";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
- sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
+ url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.0.tgz";
+ sha1 = "af32f78b31a6fcef119c87b0fd8d9753f03a0bb8";
};
};
- "commander-1.0.4" = {
- name = "commander";
- packageName = "commander";
- version = "1.0.4";
+ "babel-generator-6.26.0" = {
+ name = "babel-generator";
+ packageName = "babel-generator";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.0.4.tgz";
- sha1 = "5edeb1aee23c4fb541a6b70d692abef19669a2d3";
+ url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.0.tgz";
+ sha1 = "ac1ae20070b79f6e3ca1d3269613053774f20dc5";
};
};
- "date-utils-1.2.21" = {
- name = "date-utils";
- packageName = "date-utils";
- version = "1.2.21";
+ "babel-helper-builder-react-jsx-6.26.0" = {
+ name = "babel-helper-builder-react-jsx";
+ packageName = "babel-helper-builder-react-jsx";
+ version = "6.26.0";
src = fetchurl {
- url = "https://registry.npmjs.org/date-utils/-/date-utils-1.2.21.tgz";
- sha1 = "61fb16cdc1274b3c9acaaffe9fc69df8720a2b64";
+ url = "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz";
+ sha1 = "39ff8313b75c8b65dceff1f31d383e0ff2a408a0";
};
};
- "easy-table-1.1.0" = {
- name = "easy-table";
- packageName = "easy-table";
- version = "1.1.0";
+ "babel-helpers-6.24.1" = {
+ name = "babel-helpers";
+ packageName = "babel-helpers";
+ version = "6.24.1";
src = fetchurl {
- url = "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz";
- sha1 = "86f9ab4c102f0371b7297b92a651d5824bc8cb73";
+ url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz";
+ sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2";
};
};
- "event-stream-3.1.5" = {
- name = "event-stream";
- packageName = "event-stream";
- version = "3.1.5";
+ "babel-messages-6.23.0" = {
+ name = "babel-messages";
+ packageName = "babel-messages";
+ version = "6.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-3.1.5.tgz";
- sha1 = "6cba5a3ae02a7e4967d65ad04ef12502a2fff66c";
+ url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz";
+ sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e";
};
};
- "eyes-0.1.8" = {
- name = "eyes";
- packageName = "eyes";
- version = "0.1.8";
+ "babel-plugin-syntax-jsx-6.18.0" = {
+ name = "babel-plugin-syntax-jsx";
+ packageName = "babel-plugin-syntax-jsx";
+ version = "6.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz";
- sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0";
+ url = "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz";
+ sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946";
};
};
- "github-0.1.6" = {
- name = "github";
- packageName = "github";
- version = "0.1.6";
+ "babel-plugin-syntax-object-rest-spread-6.13.0" = {
+ name = "babel-plugin-syntax-object-rest-spread";
+ packageName = "babel-plugin-syntax-object-rest-spread";
+ version = "6.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/github/-/github-0.1.6.tgz";
- sha1 = "1344e694f8d20ef9b29bcbfd1ca5eb4f7a287922";
+ url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz";
+ sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5";
};
};
- "fast-json-patch-0.5.6" = {
- name = "fast-json-patch";
- packageName = "fast-json-patch";
- version = "0.5.6";
+ "babel-plugin-transform-es2015-destructuring-6.23.0" = {
+ name = "babel-plugin-transform-es2015-destructuring";
+ packageName = "babel-plugin-transform-es2015-destructuring";
+ version = "6.23.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-0.5.6.tgz";
- sha1 = "66e4028e381eaa002edeb280d10238f3a46c3402";
+ url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz";
+ sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
};
};
- "js2xmlparser-1.0.0" = {
- name = "js2xmlparser";
- packageName = "js2xmlparser";
+ "babel-plugin-transform-object-rest-spread-6.26.0" = {
+ name = "babel-plugin-transform-object-rest-spread";
+ packageName = "babel-plugin-transform-object-rest-spread";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz";
+ sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06";
+ };
+ };
+ "babel-plugin-transform-react-jsx-6.24.1" = {
+ name = "babel-plugin-transform-react-jsx";
+ packageName = "babel-plugin-transform-react-jsx";
+ version = "6.24.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz";
+ sha1 = "840a028e7df460dfc3a2d29f0c0d91f6376e66a3";
+ };
+ };
+ "babel-polyfill-6.16.0" = {
+ name = "babel-polyfill";
+ packageName = "babel-polyfill";
+ version = "6.16.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.16.0.tgz";
+ sha1 = "2d45021df87e26a374b6d4d1a9c65964d17f2422";
+ };
+ };
+ "babel-polyfill-6.26.0" = {
+ name = "babel-polyfill";
+ packageName = "babel-polyfill";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz";
+ sha1 = "379937abc67d7895970adc621f284cd966cf2153";
+ };
+ };
+ "babel-register-6.26.0" = {
+ name = "babel-register";
+ packageName = "babel-register";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz";
+ sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071";
+ };
+ };
+ "babel-runtime-6.26.0" = {
+ name = "babel-runtime";
+ packageName = "babel-runtime";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
+ sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
+ };
+ };
+ "babel-template-6.26.0" = {
+ name = "babel-template";
+ packageName = "babel-template";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz";
+ sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02";
+ };
+ };
+ "babel-traverse-6.26.0" = {
+ name = "babel-traverse";
+ packageName = "babel-traverse";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz";
+ sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee";
+ };
+ };
+ "babel-types-6.26.0" = {
+ name = "babel-types";
+ packageName = "babel-types";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz";
+ sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497";
+ };
+ };
+ "babybird-0.0.1" = {
+ name = "babybird";
+ packageName = "babybird";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babybird/-/babybird-0.0.1.tgz";
+ sha1 = "da80c79c6d7441cdfec7c2ff2dcbd7c13ebdbea2";
+ };
+ };
+ "babylon-6.18.0" = {
+ name = "babylon";
+ packageName = "babylon";
+ version = "6.18.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz";
+ sha512 = "1qk460vyxfs08g8586jdc02wqzyy2y06596qcn1na9bz7yxra6vgh6177qf345xai0virpaz56bkpgmfcrd8yx5l2vjkn49y66h9xdb";
+ };
+ };
+ "babylon-7.0.0-beta.19" = {
+ name = "babylon";
+ packageName = "babylon";
+ version = "7.0.0-beta.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.19.tgz";
+ sha512 = "3y91819zra4jxfjqqdvbi44fr34m68vk7j76rkqkxvayhxmcmrvmxpk7rz16r2s3riql0xs322mkzm61asxzkc5b2zpw4firzv043an";
+ };
+ };
+ "backo2-1.0.2" = {
+ name = "backo2";
+ packageName = "backo2";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz";
+ sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947";
+ };
+ };
+ "backoff-2.5.0" = {
+ name = "backoff";
+ packageName = "backoff";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz";
+ sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f";
+ };
+ };
+ "bail-1.0.2" = {
+ name = "bail";
+ packageName = "bail";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bail/-/bail-1.0.2.tgz";
+ sha1 = "f7d6c1731630a9f9f0d4d35ed1f962e2074a1764";
+ };
+ };
+ "balanced-match-1.0.0" = {
+ name = "balanced-match";
+ packageName = "balanced-match";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-1.0.0.tgz";
- sha1 = "5a170f2e8d6476ce45405e04823242513782fe30";
+ url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
+ sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
};
};
- "jsonlint-1.6.2" = {
- name = "jsonlint";
- packageName = "jsonlint";
- version = "1.6.2";
+ "base-0.11.2" = {
+ name = "base";
+ packageName = "base";
+ version = "0.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.2.tgz";
- sha1 = "5737045085f55eb455c68b1ff4ebc01bd50e8830";
+ url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
+ sha512 = "11dwi4v72034dqafp0qxsg8h6cpn92vv4vf909a9fybd69yfg6gqn4hhav6x59r1wbi8h1qlgfh9np0340mpljv1hc9v9p02giqygp5";
};
};
- "jsonminify-0.4.1" = {
- name = "jsonminify";
- packageName = "jsonminify";
- version = "0.4.1";
+ "base62-0.1.1" = {
+ name = "base62";
+ packageName = "base62";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonminify/-/jsonminify-0.4.1.tgz";
- sha1 = "805dafbb39395188cee9ab582c81ef959d7e710c";
+ url = "https://registry.npmjs.org/base62/-/base62-0.1.1.tgz";
+ sha1 = "7b4174c2f94449753b11c2651c083da841a7b084";
};
};
- "jsrsasign-4.8.2" = {
- name = "jsrsasign";
- packageName = "jsrsasign";
- version = "4.8.2";
+ "base64-arraybuffer-0.1.2" = {
+ name = "base64-arraybuffer";
+ packageName = "base64-arraybuffer";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/jsrsasign/-/jsrsasign-4.8.2.tgz";
- sha1 = "bd0a7040d426d7598d6c742ec8f875d0e88644a9";
+ url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz";
+ sha1 = "474df4a9f2da24e05df3158c3b1db3c3cd46a154";
};
};
- "jwt-decode-2.2.0" = {
- name = "jwt-decode";
- packageName = "jwt-decode";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jwt-decode/-/jwt-decode-2.2.0.tgz";
- sha1 = "7d86bd56679f58ce6a84704a657dd392bba81a79";
- };
- };
- "kuduscript-1.0.15" = {
- name = "kuduscript";
- packageName = "kuduscript";
- version = "1.0.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/kuduscript/-/kuduscript-1.0.15.tgz";
- sha1 = "2721f05aa6876534cd30d6ded9418651cadfaa21";
- };
- };
- "moment-2.20.1" = {
- name = "moment";
- packageName = "moment";
- version = "2.20.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz";
- sha512 = "2zc9qgzsrnp9g4jm4qsb1g1h7w5zmnkz8690br52l83yr9kwhch0mh7r2vdhc706jkrqczia9wbrgkscz0x6k8cwmb3r5jifbpp47v2";
- };
- };
- "ms-rest-2.3.0" = {
- name = "ms-rest";
- packageName = "ms-rest";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.3.0.tgz";
- sha512 = "2dfmfxr3xagmds2agz7g6rnj1s9lh29fgfwxbqsfpkkabh3qhcc7sznkaviilpzr59fks1401wy6sh9xyy3wsaqbm975vm5b2bj6cwf";
- };
- };
- "ms-rest-azure-2.4.5" = {
- name = "ms-rest-azure";
- packageName = "ms-rest-azure";
- version = "2.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.4.5.tgz";
- sha512 = "17n7vax0wim6r3x51vaib4yblfkm791vv1awqs6p16y3zbfxdhgk1sks1iw2519187mmw4njnrja6kxvms4ly8l8qf481qh87xnia1v";
- };
- };
- "node-forge-0.6.23" = {
- name = "node-forge";
- packageName = "node-forge";
- version = "0.6.23";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-forge/-/node-forge-0.6.23.tgz";
- sha1 = "f03cf65ebd5d4d9dd2f7becb57ceaf78ed94a2bf";
- };
- };
- "omelette-0.3.2" = {
- name = "omelette";
- packageName = "omelette";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/omelette/-/omelette-0.3.2.tgz";
- sha1 = "68c1b3c57ced778b4e67d8637d2559b2c1b3ec26";
- };
- };
- "openssl-wrapper-0.2.1" = {
- name = "openssl-wrapper";
- packageName = "openssl-wrapper";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.2.1.tgz";
- sha1 = "ff2d6552c83bb14437edc0371784704c75289473";
- };
- };
- "progress-1.1.8" = {
- name = "progress";
- packageName = "progress";
- version = "1.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz";
- sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be";
- };
- };
- "prompt-0.2.14" = {
- name = "prompt";
- packageName = "prompt";
- version = "0.2.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz";
- sha1 = "57754f64f543fd7b0845707c818ece618f05ffdc";
- };
- };
- "readable-stream-1.0.34" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.0.34";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz";
- sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c";
- };
- };
- "request-2.74.0" = {
- name = "request";
- packageName = "request";
- version = "2.74.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.74.0.tgz";
- sha1 = "7693ca768bbb0ea5c8ce08c084a45efa05b892ab";
- };
- };
- "ssh-key-to-pem-0.11.0" = {
- name = "ssh-key-to-pem";
- packageName = "ssh-key-to-pem";
- version = "0.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ssh-key-to-pem/-/ssh-key-to-pem-0.11.0.tgz";
- sha1 = "512675a28f08f1e581779e1989ab1e13effb49e4";
- };
- };
- "streamline-0.10.17" = {
- name = "streamline";
- packageName = "streamline";
- version = "0.10.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/streamline/-/streamline-0.10.17.tgz";
- sha1 = "fa2170da74194dbd0b54f756523f0d0d370426af";
- };
- };
- "streamline-streams-0.1.5" = {
- name = "streamline-streams";
- packageName = "streamline-streams";
+ "base64-arraybuffer-0.1.5" = {
+ name = "base64-arraybuffer";
+ packageName = "base64-arraybuffer";
version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/streamline-streams/-/streamline-streams-0.1.5.tgz";
- sha1 = "5b0ff80cf543f603cc3438ed178ca2aec7899b54";
+ url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz";
+ sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8";
};
};
- "sync-request-3.0.0" = {
- name = "sync-request";
- packageName = "sync-request";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sync-request/-/sync-request-3.0.0.tgz";
- sha1 = "8030046939b00096e625c0dd6b3905bc7b85709c";
- };
- };
- "through-2.3.4" = {
- name = "through";
- packageName = "through";
- version = "2.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/through/-/through-2.3.4.tgz";
- sha1 = "495e40e8d8a8eaebc7c275ea88c2b8fc14c56455";
- };
- };
- "tunnel-0.0.2" = {
- name = "tunnel";
- packageName = "tunnel";
+ "base64-js-0.0.2" = {
+ name = "base64-js";
+ packageName = "base64-js";
version = "0.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.2.tgz";
- sha1 = "f23bcd8b7a7b8a864261b2084f66f93193396334";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.2.tgz";
+ sha1 = "024f0f72afa25b75f9c0ee73cd4f55ec1bed9784";
};
};
- "underscore-1.4.4" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.4.4";
+ "base64-js-0.0.8" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "0.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz";
- sha1 = "61a6a32010622afa07963bf325203cf12239d604";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz";
+ sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978";
};
};
- "user-home-2.0.0" = {
- name = "user-home";
- packageName = "user-home";
- version = "2.0.0";
+ "base64-js-1.1.2" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz";
- sha1 = "9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-1.1.2.tgz";
+ sha1 = "d6400cac1c4c660976d90d07a04351d89395f5e8";
};
};
- "validator-5.2.0" = {
- name = "validator";
- packageName = "validator";
- version = "5.2.0";
+ "base64-js-1.2.0" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-5.2.0.tgz";
- sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz";
+ sha1 = "a39992d723584811982be5e290bb6a53d86700f1";
};
};
- "winston-2.1.1" = {
- name = "winston";
- packageName = "winston";
- version = "2.1.1";
+ "base64-js-1.2.1" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz";
- sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e";
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz";
+ sha512 = "0dhi66vsajfcm04s11xqklh5lj3abs4ncnl8h3689964aqam3ps9spmc454hz94rz3x1x5l1ad03jrba67mq9zc9vq9a1gchma581bp";
};
};
- "wordwrap-0.0.2" = {
- name = "wordwrap";
- packageName = "wordwrap";
- version = "0.0.2";
+ "base64-url-1.2.1" = {
+ name = "base64-url";
+ packageName = "base64-url";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
- sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
+ url = "https://registry.npmjs.org/base64-url/-/base64-url-1.2.1.tgz";
+ sha1 = "199fd661702a0e7b7dcae6e0698bb089c52f6d78";
};
};
- "xml2js-0.1.14" = {
- name = "xml2js";
- packageName = "xml2js";
- version = "0.1.14";
+ "base64id-0.1.0" = {
+ name = "base64id";
+ packageName = "base64id";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.1.14.tgz";
- sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c";
+ url = "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz";
+ sha1 = "02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f";
};
};
- "xmlbuilder-0.4.3" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "0.4.3";
+ "base64id-1.0.0" = {
+ name = "base64id";
+ packageName = "base64id";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.3.tgz";
- sha1 = "c4614ba74e0ad196e609c9272cd9e1ddb28a8a58";
- };
- };
- "read-1.0.7" = {
- name = "read";
- packageName = "read";
- version = "1.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/read/-/read-1.0.7.tgz";
- sha1 = "b3da19bd052431a97671d44a42634adf710b40c4";
- };
- };
- "jws-3.1.4" = {
- name = "jws";
- packageName = "jws";
- version = "3.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/jws/-/jws-3.1.4.tgz";
- sha1 = "f9e8b9338e8a847277d6444b1464f61880e050a2";
- };
- };
- "node-uuid-1.4.7" = {
- name = "node-uuid";
- packageName = "node-uuid";
- version = "1.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";
- sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f";
- };
- };
- "xmldom-0.1.27" = {
- name = "xmldom";
- packageName = "xmldom";
- version = "0.1.27";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz";
- sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9";
- };
- };
- "xpath.js-1.0.7" = {
- name = "xpath.js";
- packageName = "xpath.js";
- version = "1.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/xpath.js/-/xpath.js-1.0.7.tgz";
- sha1 = "7e94627f541276cbc6a6b02b5d35e9418565b3e4";
+ url = "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz";
+ sha1 = "47688cb99bb6804f0e06d3e763b1c32e57d8e6b6";
};
};
"base64url-2.0.0" = {
@@ -2380,553 +2281,319 @@ let
sha1 = "eac16e03ea1438eff9423d69baa36262ed1f70bb";
};
};
- "jwa-1.1.5" = {
- name = "jwa";
- packageName = "jwa";
- version = "1.1.5";
+ "basic-auth-1.0.4" = {
+ name = "basic-auth";
+ packageName = "basic-auth";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/jwa/-/jwa-1.1.5.tgz";
- sha1 = "a0552ce0220742cd52e153774a32905c30e756e5";
+ url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz";
+ sha1 = "030935b01de7c9b94a824b29f3fccb750d3a5290";
};
};
- "buffer-equal-constant-time-1.0.1" = {
- name = "buffer-equal-constant-time";
- packageName = "buffer-equal-constant-time";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz";
- sha1 = "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819";
- };
- };
- "ecdsa-sig-formatter-1.0.9" = {
- name = "ecdsa-sig-formatter";
- packageName = "ecdsa-sig-formatter";
- version = "1.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.9.tgz";
- sha1 = "4bc926274ec3b5abb5016e7e1d60921ac262b2a1";
- };
- };
- "xml2js-0.2.7" = {
- name = "xml2js";
- packageName = "xml2js";
- version = "0.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.7.tgz";
- sha1 = "1838518bb01741cae0878bab4915e494c32306af";
- };
- };
- "dateformat-1.0.2-1.2.3" = {
- name = "dateformat";
- packageName = "dateformat";
- version = "1.0.2-1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz";
- sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9";
- };
- };
- "validator-3.22.2" = {
- name = "validator";
- packageName = "validator";
- version = "3.22.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-3.22.2.tgz";
- sha1 = "6f297ae67f7f82acc76d0afdb49f18d9a09c18c0";
- };
- };
- "envconf-0.0.4" = {
- name = "envconf";
- packageName = "envconf";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/envconf/-/envconf-0.0.4.tgz";
- sha1 = "85675afba237c43f98de2d46adc0e532a4dcf48b";
- };
- };
- "duplexer-0.1.1" = {
- name = "duplexer";
- packageName = "duplexer";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz";
- sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1";
- };
- };
- "sax-0.5.2" = {
- name = "sax";
- packageName = "sax";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/sax/-/sax-0.5.2.tgz";
- sha1 = "735ffaa39a1cff8ffb9598f0223abdb03a9fb2ea";
- };
- };
- "ms-rest-1.15.7" = {
- name = "ms-rest";
- packageName = "ms-rest";
- version = "1.15.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest/-/ms-rest-1.15.7.tgz";
- sha1 = "400515e05b1924889cb61a1ec6054290a68e1207";
- };
- };
- "ms-rest-azure-1.15.7" = {
- name = "ms-rest-azure";
- packageName = "ms-rest-azure";
- version = "1.15.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.15.7.tgz";
- sha1 = "8bce09f053b1565dbaa8bd022ca40155c35b0fde";
- };
- };
- "async-0.2.7" = {
- name = "async";
- packageName = "async";
- version = "0.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.2.7.tgz";
- sha1 = "44c5ee151aece6c4bf5364cfc7c28fe4e58f18df";
- };
- };
- "moment-2.6.0" = {
- name = "moment";
- packageName = "moment";
- version = "2.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.6.0.tgz";
- sha1 = "0765b72b841dd213fa91914c0f6765122719f061";
- };
- };
- "moment-2.14.1" = {
- name = "moment";
- packageName = "moment";
- version = "2.14.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.14.1.tgz";
- sha1 = "b35b27c47e57ed2ddc70053d6b07becdb291741c";
- };
- };
- "browserify-mime-1.2.9" = {
- name = "browserify-mime";
- packageName = "browserify-mime";
- version = "1.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-mime/-/browserify-mime-1.2.9.tgz";
- sha1 = "aeb1af28de6c0d7a6a2ce40adb68ff18422af31f";
- };
- };
- "extend-1.2.1" = {
- name = "extend";
- packageName = "extend";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend/-/extend-1.2.1.tgz";
- sha1 = "a0f5fd6cfc83a5fe49ef698d60ec8a624dd4576c";
- };
- };
- "json-edm-parser-0.1.2" = {
- name = "json-edm-parser";
- packageName = "json-edm-parser";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-edm-parser/-/json-edm-parser-0.1.2.tgz";
- sha1 = "1e60b0fef1bc0af67bc0d146dfdde5486cd615b4";
- };
- };
- "md5.js-1.3.4" = {
- name = "md5.js";
- packageName = "md5.js";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz";
- sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d";
- };
- };
- "readable-stream-2.0.6" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz";
- sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e";
- };
- };
- "jsonparse-1.2.0" = {
- name = "jsonparse";
- packageName = "jsonparse";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz";
- sha1 = "5c0c5685107160e72fe7489bddea0b44c2bc67bd";
- };
- };
- "hash-base-3.0.4" = {
- name = "hash-base";
- packageName = "hash-base";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz";
- sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918";
- };
- };
- "isarray-1.0.0" = {
- name = "isarray";
- packageName = "isarray";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- };
- "process-nextick-args-1.0.7" = {
- name = "process-nextick-args";
- packageName = "process-nextick-args";
- version = "1.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
- sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
- };
- };
- "util-deprecate-1.0.2" = {
- name = "util-deprecate";
- packageName = "util-deprecate";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
- };
- };
- "stack-trace-0.0.10" = {
- name = "stack-trace";
- packageName = "stack-trace";
- version = "0.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz";
- sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
- };
- };
- "keypress-0.1.0" = {
- name = "keypress";
- packageName = "keypress";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz";
- sha1 = "4a3188d4291b66b4f65edb99f806aa9ae293592a";
- };
- };
- "wcwidth-1.0.1" = {
- name = "wcwidth";
- packageName = "wcwidth";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz";
- sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8";
- };
- };
- "defaults-1.0.3" = {
- name = "defaults";
- packageName = "defaults";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz";
- sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d";
- };
- };
- "clone-1.0.3" = {
- name = "clone";
- packageName = "clone";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz";
- sha1 = "298d7e2231660f40c003c2ed3140decf3f53085f";
- };
- };
- "from-0.1.7" = {
- name = "from";
- packageName = "from";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/from/-/from-0.1.7.tgz";
- sha1 = "83c60afc58b9c56997007ed1a768b3ab303a44fe";
- };
- };
- "map-stream-0.1.0" = {
- name = "map-stream";
- packageName = "map-stream";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz";
- sha1 = "e56aa94c4c8055a16404a0674b78f215f7c8e194";
- };
- };
- "pause-stream-0.0.11" = {
- name = "pause-stream";
- packageName = "pause-stream";
- version = "0.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz";
- sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445";
- };
- };
- "split-0.2.10" = {
- name = "split";
- packageName = "split";
- version = "0.2.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/split/-/split-0.2.10.tgz";
- sha1 = "67097c601d697ce1368f418f06cd201cf0521a57";
- };
- };
- "stream-combiner-0.0.4" = {
- name = "stream-combiner";
- packageName = "stream-combiner";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz";
- sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14";
- };
- };
- "commander-1.1.1" = {
- name = "commander";
- packageName = "commander";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz";
- sha1 = "50d1651868ae60eccff0a2d9f34595376bc6b041";
- };
- };
- "streamline-0.4.11" = {
- name = "streamline";
- packageName = "streamline";
- version = "0.4.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/streamline/-/streamline-0.4.11.tgz";
- sha1 = "0e3c4f24a3f052b231b12d5049085a0a099be782";
- };
- };
- "@types/node-8.5.2" = {
- name = "_at_types_slash_node";
- packageName = "@types/node";
- version = "8.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-8.5.2.tgz";
- sha512 = "1amd3742m7s65mqdd5fl3p0bxwl95rp916lsv46wf9m24w0nz2sfq7rc5lv0bvxslarhh660p3aqq5zc9c0k7kx23m7lpk0x8l0c3i8";
- };
- };
- "@types/request-2.0.9" = {
- name = "_at_types_slash_request";
- packageName = "@types/request";
- version = "2.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/request/-/request-2.0.9.tgz";
- sha512 = "2kdhxhp1x6x3bmggmcsf6zl71a5j4wr22gbxid1264gards2wxk9plfgr3q3vl7l2h7pp29c622dlmz91mnrpyr7mqjhxdv359bhsi1";
- };
- };
- "@types/uuid-3.4.3" = {
- name = "_at_types_slash_uuid";
- packageName = "@types/uuid";
- version = "3.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.3.tgz";
- sha512 = "1psrs8sjpmhz8sz2zjkkd7743vzdi7q7vcj8p219q1pkfawr619rl1m5pczp69hbm1769kn8zwlbayjylhl7an5hkvkdd2bi04lpx75";
- };
- };
- "is-buffer-1.1.6" = {
- name = "is-buffer";
- packageName = "is-buffer";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
- sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm";
- };
- };
- "is-stream-1.1.0" = {
- name = "is-stream";
- packageName = "is-stream";
+ "basic-auth-1.1.0" = {
+ name = "basic-auth";
+ packageName = "basic-auth";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
- sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
+ url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz";
+ sha1 = "45221ee429f7ee1e5035be3f51533f1cdfd29884";
};
};
- "moment-2.18.1" = {
- name = "moment";
- packageName = "moment";
- version = "2.18.1";
+ "basic-auth-2.0.0" = {
+ name = "basic-auth";
+ packageName = "basic-auth";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz";
- sha1 = "c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f";
+ url = "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.0.tgz";
+ sha1 = "015db3f353e02e56377755f962742e8981e7bbba";
};
};
- "through-2.3.8" = {
- name = "through";
- packageName = "through";
- version = "2.3.8";
+ "basic-auth-connect-1.0.0" = {
+ name = "basic-auth-connect";
+ packageName = "basic-auth-connect";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
- sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
+ url = "https://registry.npmjs.org/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz";
+ sha1 = "fdb0b43962ca7b40456a7c2bb48fe173da2d2122";
};
};
- "tunnel-0.0.5" = {
- name = "tunnel";
- packageName = "tunnel";
- version = "0.0.5";
+ "batch-0.5.3" = {
+ name = "batch";
+ packageName = "batch";
+ version = "0.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.5.tgz";
- sha512 = "1n2p6ca2m26hbf9gxlww91fp653cyqdbfnvxjc8jn91ybvbwbhsqg3cm4da8rrxzgfr9nsa6zpi20bv5w708753chaixbsym1v6qgl2";
+ url = "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz";
+ sha1 = "3f3414f380321743bfc1042f9a83ff1d5824d464";
};
};
- "@types/form-data-2.2.1" = {
- name = "_at_types_slash_form-data";
- packageName = "@types/form-data";
- version = "2.2.1";
+ "batch-0.6.1" = {
+ name = "batch";
+ packageName = "batch";
+ version = "0.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/form-data/-/form-data-2.2.1.tgz";
- sha512 = "2fv2qaz90rp6ib2s45ix0p3a4bd6yl6k94k1kkhw7w4s2aa5mqc6chppkf6pfvsz1l6phh7y0xswyfyzjgny7qzascch8c7ws20a0r4";
+ url = "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz";
+ sha1 = "dc34314f4e679318093fc760272525f94bf25c16";
};
};
- "async-2.5.0" = {
- name = "async";
- packageName = "async";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.5.0.tgz";
- sha512 = "1ijrwmifg76a8wwhhfqxg23kd0rsjhzklwvj2czvqxs2k25ii6p3y6s3vhbcc5hnr87b0gfc4nb54b8bph2hn9c6z1f6nldjw04ksbv";
- };
- };
- "adal-node-0.1.26" = {
- name = "adal-node";
- packageName = "adal-node";
- version = "0.1.26";
- src = fetchurl {
- url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.26.tgz";
- sha1 = "5a0a955b74ee8f2bb44f32305cafdc7a6877fced";
- };
- };
- "debug-0.7.4" = {
- name = "debug";
- packageName = "debug";
- version = "0.7.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz";
- sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39";
- };
- };
- "q-0.9.7" = {
- name = "q";
- packageName = "q";
- version = "0.9.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/q/-/q-0.9.7.tgz";
- sha1 = "4de2e6cb3b29088c9e4cbc03bf9d42fb96ce2f75";
- };
- };
- "pkginfo-0.4.1" = {
- name = "pkginfo";
- packageName = "pkginfo";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz";
- sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff";
- };
- };
- "revalidator-0.1.8" = {
- name = "revalidator";
- packageName = "revalidator";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz";
- sha1 = "fece61bfa0c1b52a206bd6b18198184bdd523a3b";
- };
- };
- "utile-0.2.1" = {
- name = "utile";
- packageName = "utile";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/utile/-/utile-0.2.1.tgz";
- sha1 = "930c88e99098d6220834c356cbd9a770522d90d7";
- };
- };
- "winston-0.8.3" = {
- name = "winston";
- packageName = "winston";
- version = "0.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz";
- sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0";
- };
- };
- "async-0.2.10" = {
- name = "async";
- packageName = "async";
- version = "0.2.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
- sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
- };
- };
- "deep-equal-1.0.1" = {
- name = "deep-equal";
- packageName = "deep-equal";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz";
- sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5";
- };
- };
- "i-0.3.6" = {
- name = "i";
- packageName = "i";
- version = "0.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/i/-/i-0.3.6.tgz";
- sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d";
- };
- };
- "ncp-0.4.2" = {
- name = "ncp";
- packageName = "ncp";
- version = "0.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz";
- sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574";
- };
- };
- "colors-0.6.2" = {
- name = "colors";
- packageName = "colors";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
- sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
- };
- };
- "cycle-1.0.3" = {
- name = "cycle";
- packageName = "cycle";
+ "bcrypt-1.0.3" = {
+ name = "bcrypt";
+ packageName = "bcrypt";
version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz";
- sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
+ url = "https://registry.npmjs.org/bcrypt/-/bcrypt-1.0.3.tgz";
+ sha512 = "1zfn87155w6q9fsv5ls3gxwih7yvarrh16kzpfrpppblzpmp1cy9gjkknsf9lkixacza39h51jd7varqfg19w3qkdic62zpirv86755";
};
};
- "pkginfo-0.3.1" = {
- name = "pkginfo";
- packageName = "pkginfo";
- version = "0.3.1";
+ "bcrypt-nodejs-0.0.3" = {
+ name = "bcrypt-nodejs";
+ packageName = "bcrypt-nodejs";
+ version = "0.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz";
- sha1 = "5b29f6a81f70717142e09e765bbeab97b4f81e21";
+ url = "https://registry.npmjs.org/bcrypt-nodejs/-/bcrypt-nodejs-0.0.3.tgz";
+ sha1 = "c60917f26dc235661566c681061c303c2b28842b";
};
};
- "aws-sign2-0.6.0" = {
- name = "aws-sign2";
- packageName = "aws-sign2";
- version = "0.6.0";
+ "bcrypt-pbkdf-1.0.1" = {
+ name = "bcrypt-pbkdf";
+ packageName = "bcrypt-pbkdf";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
- sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
+ url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz";
+ sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d";
+ };
+ };
+ "bcryptjs-2.4.3" = {
+ name = "bcryptjs";
+ packageName = "bcryptjs";
+ version = "2.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz";
+ sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb";
+ };
+ };
+ "beeper-1.1.1" = {
+ name = "beeper";
+ packageName = "beeper";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz";
+ sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809";
+ };
+ };
+ "bencode-0.7.0" = {
+ name = "bencode";
+ packageName = "bencode";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bencode/-/bencode-0.7.0.tgz";
+ sha1 = "811ed647c0118945e41bb4bbbdea9a2c78a17083";
+ };
+ };
+ "bencode-0.8.0" = {
+ name = "bencode";
+ packageName = "bencode";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bencode/-/bencode-0.8.0.tgz";
+ sha1 = "3143448e82b0fadc745633ecc2a5f8fa87932f19";
+ };
+ };
+ "bencode-1.0.0" = {
+ name = "bencode";
+ packageName = "bencode";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bencode/-/bencode-1.0.0.tgz";
+ sha512 = "1kvjv5hs1c53b5g2vghpnncn4zj397sa0vpbx1pzpn8ngq52s3xq9923gnl2kzkh1mhyrl277jrh87a766yks89qvz8b4jczr44xr9p";
+ };
+ };
+ "better-assert-1.0.2" = {
+ name = "better-assert";
+ packageName = "better-assert";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz";
+ sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522";
+ };
+ };
+ "better-curry-1.6.0" = {
+ name = "better-curry";
+ packageName = "better-curry";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/better-curry/-/better-curry-1.6.0.tgz";
+ sha1 = "38f716b24c8cee07a262abc41c22c314e20e3869";
+ };
+ };
+ "biased-opener-0.2.8" = {
+ name = "biased-opener";
+ packageName = "biased-opener";
+ version = "0.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/biased-opener/-/biased-opener-0.2.8.tgz";
+ sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
+ };
+ };
+ "big-integer-1.6.26" = {
+ name = "big-integer";
+ packageName = "big-integer";
+ version = "1.6.26";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.26.tgz";
+ sha1 = "3af1672fa62daf2d5ecafacf6e5aa0d25e02c1c8";
+ };
+ };
+ "big.js-3.2.0" = {
+ name = "big.js";
+ packageName = "big.js";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz";
+ sha512 = "3qicqys1bg16slzbzjn3f0fir82r4d1h6lvy5y0cqqwzbs2iaxf93xgi6x47m7l87i102ifjn4qvjbf764gyncsxcqw7lw33mk7y4zs";
+ };
+ };
+ "bin-version-1.0.4" = {
+ name = "bin-version";
+ packageName = "bin-version";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bin-version/-/bin-version-1.0.4.tgz";
+ sha1 = "9eb498ee6fd76f7ab9a7c160436f89579435d78e";
+ };
+ };
+ "bin-version-check-2.1.0" = {
+ name = "bin-version-check";
+ packageName = "bin-version-check";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bin-version-check/-/bin-version-check-2.1.0.tgz";
+ sha1 = "e4e5df290b9069f7d111324031efc13fdd11a5b0";
+ };
+ };
+ "binary-0.3.0" = {
+ name = "binary";
+ packageName = "binary";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz";
+ sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79";
+ };
+ };
+ "binary-extensions-1.11.0" = {
+ name = "binary-extensions";
+ packageName = "binary-extensions";
+ version = "1.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz";
+ sha1 = "46aa1751fb6a2f93ee5e689bb1087d4b14c6c205";
+ };
+ };
+ "binaryheap-0.0.3" = {
+ name = "binaryheap";
+ packageName = "binaryheap";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/binaryheap/-/binaryheap-0.0.3.tgz";
+ sha1 = "0d6136c84e9f1a5a90c0b97178c3e00df59820d6";
+ };
+ };
+ "bindings-1.2.1" = {
+ name = "bindings";
+ packageName = "bindings";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz";
+ sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11";
+ };
+ };
+ "bindings-1.3.0" = {
+ name = "bindings";
+ packageName = "bindings";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz";
+ sha512 = "15lvjac4av3h7xmks8jgd56vryz5xb27r8xcpfwhfyr9dv305lms5llc1x6nx6nfvha873d4vg04nfi89aj4jkxplrnjiyc9kjf34hf";
+ };
+ };
+ "binstall-1.2.0" = {
+ name = "binstall";
+ packageName = "binstall";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/binstall/-/binstall-1.2.0.tgz";
+ sha1 = "6b2c0f580b9e3c607f50ef7a22a54ce9fdc8d933";
+ };
+ };
+ "bitfield-0.1.0" = {
+ name = "bitfield";
+ packageName = "bitfield";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bitfield/-/bitfield-0.1.0.tgz";
+ sha1 = "b05d8b5f0d09f2df35a9db3b3a62d3808c46c457";
+ };
+ };
+ "bitfield-rle-2.1.0" = {
+ name = "bitfield-rle";
+ packageName = "bitfield-rle";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bitfield-rle/-/bitfield-rle-2.1.0.tgz";
+ sha1 = "ae29e9382a7ba4898de9f48bb23fd338c4fbdcf8";
+ };
+ };
+ "bitsyntax-0.0.4" = {
+ name = "bitsyntax";
+ packageName = "bitsyntax";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bitsyntax/-/bitsyntax-0.0.4.tgz";
+ sha1 = "eb10cc6f82b8c490e3e85698f07e83d46e0cba82";
+ };
+ };
+ "bittorrent-dht-6.4.2" = {
+ name = "bittorrent-dht";
+ packageName = "bittorrent-dht";
+ version = "6.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-6.4.2.tgz";
+ sha1 = "8b40f8cee6bea87f2b34fd2ae0bd367a8b1247a6";
+ };
+ };
+ "bittorrent-dht-7.10.0" = {
+ name = "bittorrent-dht";
+ packageName = "bittorrent-dht";
+ version = "7.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-7.10.0.tgz";
+ sha512 = "10md5792s6q3xwdrmwh1a8ax9w128g607b5qsbxzw8x0gl9184g754hprchl6mq8lmf4f8qylk2h8vavsnbn9yy9gzjnyh2kwrzmxky";
+ };
+ };
+ "bittorrent-tracker-7.7.0" = {
+ name = "bittorrent-tracker";
+ packageName = "bittorrent-tracker";
+ version = "7.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-7.7.0.tgz";
+ sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c";
+ };
+ };
+ "bl-0.8.2" = {
+ name = "bl";
+ packageName = "bl";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz";
+ sha1 = "c9b6bca08d1bc2ea00fc8afb4f1a5fd1e1c66e4e";
+ };
+ };
+ "bl-1.0.3" = {
+ name = "bl";
+ packageName = "bl";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz";
+ sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e";
};
};
"bl-1.1.2" = {
@@ -2938,148 +2605,202 @@ let
sha1 = "fdca871a99713aa00d19e3bbba41c44787a65398";
};
};
- "caseless-0.11.0" = {
- name = "caseless";
- packageName = "caseless";
- version = "0.11.0";
+ "bl-1.2.1" = {
+ name = "bl";
+ packageName = "bl";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz";
- sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7";
+ url = "https://registry.npmjs.org/bl/-/bl-1.2.1.tgz";
+ sha1 = "cac328f7bee45730d404b692203fcb590e172d5e";
};
};
- "form-data-1.0.1" = {
- name = "form-data";
- packageName = "form-data";
- version = "1.0.1";
+ "blake2b-2.1.2" = {
+ name = "blake2b";
+ packageName = "blake2b";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz";
- sha1 = "ae315db9a4907fa065502304a66d7733475ee37c";
+ url = "https://registry.npmjs.org/blake2b/-/blake2b-2.1.2.tgz";
+ sha1 = "6880eddca35cfede92c4fb2724221334f989145a";
};
};
- "har-validator-2.0.6" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "2.0.6";
+ "blake2b-wasm-1.1.7" = {
+ name = "blake2b-wasm";
+ packageName = "blake2b-wasm";
+ version = "1.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz";
- sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d";
+ url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.7.tgz";
+ sha512 = "1q4aaql83818qzgh01c6x9jvcchmd6bq7r0kfs3f364vhwxnp7qc25y3h2ij5751mi1zhh96874ib0afn8an92xh3ag1kv5g2yhflm0";
};
};
- "hawk-3.1.3" = {
- name = "hawk";
- packageName = "hawk";
- version = "3.1.3";
+ "blob-0.0.2" = {
+ name = "blob";
+ packageName = "blob";
+ version = "0.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
- sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
+ url = "https://registry.npmjs.org/blob/-/blob-0.0.2.tgz";
+ sha1 = "b89562bd6994af95ba1e812155536333aa23cf24";
};
};
- "http-signature-1.1.1" = {
- name = "http-signature";
- packageName = "http-signature";
- version = "1.1.1";
+ "blob-0.0.4" = {
+ name = "blob";
+ packageName = "blob";
+ version = "0.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
- sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
+ url = "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz";
+ sha1 = "bcf13052ca54463f30f9fc7e95b9a47630a94921";
};
};
- "qs-6.2.3" = {
- name = "qs";
- packageName = "qs";
- version = "6.2.3";
+ "blob-to-buffer-1.2.6" = {
+ name = "blob-to-buffer";
+ packageName = "blob-to-buffer";
+ version = "1.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz";
- sha1 = "1cfcb25c10a9b2b483053ff39f5dfc9233908cfe";
+ url = "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.6.tgz";
+ sha1 = "089ac264c686b73ead6c539a484a8003bfbb2033";
};
};
- "tunnel-agent-0.4.3" = {
- name = "tunnel-agent";
- packageName = "tunnel-agent";
- version = "0.4.3";
+ "block-stream-0.0.9" = {
+ name = "block-stream";
+ packageName = "block-stream";
+ version = "0.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz";
- sha1 = "6373db76909fe570e08d73583365ed828a74eeeb";
+ url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
+ sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
};
};
- "is-my-json-valid-2.17.1" = {
- name = "is-my-json-valid";
- packageName = "is-my-json-valid";
- version = "2.17.1";
+ "bluebird-2.9.34" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "2.9.34";
src = fetchurl {
- url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz";
- sha512 = "2qkjhj6i3y40j35y8k722kklm1j8dfwk9506csa3vxr16vv7125v8jzpmkl551gsif98bzn205yj3sb99xi1i4bd6p5a1m81wvj2sa3";
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz";
+ sha1 = "2f7b4ec80216328a9fddebdf69c8d4942feff7d8";
};
};
- "pinkie-promise-2.0.1" = {
- name = "pinkie-promise";
- packageName = "pinkie-promise";
- version = "2.0.1";
+ "bluebird-2.9.9" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "2.9.9";
src = fetchurl {
- url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
- sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.9.tgz";
+ sha1 = "61a26904d43d7f6b19dff7ed917dbc92452ad6d3";
};
};
- "generate-function-2.0.0" = {
- name = "generate-function";
- packageName = "generate-function";
- version = "2.0.0";
+ "bluebird-3.5.1" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "3.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz";
- sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74";
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz";
+ sha512 = "2631bhp784qng0ifbypsmvijn6kjfvkhq2335kdz8ix5qi3wb3lbpg94xjn1av2s6i95ygr5a4y9j1721dw6zdbywwh1m48by4qpa1h";
};
};
- "generate-object-property-1.2.0" = {
- name = "generate-object-property";
- packageName = "generate-object-property";
- version = "1.2.0";
+ "blueimp-md5-2.10.0" = {
+ name = "blueimp-md5";
+ packageName = "blueimp-md5";
+ version = "2.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz";
- sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0";
+ url = "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.10.0.tgz";
+ sha512 = "18r5wdrfrrjip7xipgxyg673njbfkj46hkswp4bmb5n7zx6gmajrashp6w32rkvhanymnx6rd7mrlqgzm68ksd89sy5x9gd5qx58hqj";
};
};
- "jsonpointer-4.0.1" = {
- name = "jsonpointer";
- packageName = "jsonpointer";
- version = "4.0.1";
+ "bn.js-4.11.8" = {
+ name = "bn.js";
+ packageName = "bn.js";
+ version = "4.11.8";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz";
- sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9";
+ url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
+ sha512 = "20bg51v29zygy89w84qb64pkjikxfjdsgjs0ry6pvv8fkwn5kd1izrqn022d838q3rcaq8dmy033g7q8b6960j4f8ipan74y9ydimr2";
};
};
- "xtend-4.0.1" = {
- name = "xtend";
- packageName = "xtend";
- version = "4.0.1";
+ "bncode-0.2.3" = {
+ name = "bncode";
+ packageName = "bncode";
+ version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
- sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
+ url = "https://registry.npmjs.org/bncode/-/bncode-0.2.3.tgz";
+ sha1 = "37f851dc8e47188a83fbc0f6fa4775cacc9a3296";
};
};
- "is-property-1.0.2" = {
- name = "is-property";
- packageName = "is-property";
- version = "1.0.2";
+ "bncode-0.5.3" = {
+ name = "bncode";
+ packageName = "bncode";
+ version = "0.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz";
- sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
+ url = "https://registry.npmjs.org/bncode/-/bncode-0.5.3.tgz";
+ sha1 = "e16661697452d436bf9886238cc791b08d66a61a";
};
};
- "pinkie-2.0.4" = {
- name = "pinkie";
- packageName = "pinkie";
- version = "2.0.4";
+ "body-0.1.0" = {
+ name = "body";
+ packageName = "body";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
- sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
+ url = "https://registry.npmjs.org/body/-/body-0.1.0.tgz";
+ sha1 = "e714fe28cd8848aa34cdf2c9f242bbe2e15d1cd8";
};
};
- "hoek-2.16.3" = {
- name = "hoek";
- packageName = "hoek";
- version = "2.16.3";
+ "body-5.1.0" = {
+ name = "body";
+ packageName = "body";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
- sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
+ url = "https://registry.npmjs.org/body/-/body-5.1.0.tgz";
+ sha1 = "e4ba0ce410a46936323367609ecb4e6553125069";
+ };
+ };
+ "body-parser-1.13.3" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.13.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.13.3.tgz";
+ sha1 = "c08cf330c3358e151016a05746f13f029c97fa97";
+ };
+ };
+ "body-parser-1.17.2" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.17.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz";
+ sha1 = "f8892abc8f9e627d42aedafbca66bf5ab99104ee";
+ };
+ };
+ "body-parser-1.18.2" = {
+ name = "body-parser";
+ packageName = "body-parser";
+ version = "1.18.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz";
+ sha1 = "87678a19d84b47d859b83199bd59bce222b10454";
+ };
+ };
+ "bonjour-3.5.0" = {
+ name = "bonjour";
+ packageName = "bonjour";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz";
+ sha1 = "8e890a183d8ee9a2393b3844c691a42bcf7bc9f5";
+ };
+ };
+ "boolbase-1.0.0" = {
+ name = "boolbase";
+ packageName = "boolbase";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz";
+ sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
+ };
+ };
+ "boom-0.3.8" = {
+ name = "boom";
+ packageName = "boom";
+ version = "0.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz";
+ sha1 = "c8cdb041435912741628c044ecc732d1d17c09ea";
};
};
"boom-2.10.1" = {
@@ -3091,202 +2812,49 @@ let
sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
};
};
- "cryptiles-2.0.5" = {
- name = "cryptiles";
- packageName = "cryptiles";
- version = "2.0.5";
+ "boom-4.3.1" = {
+ name = "boom";
+ packageName = "boom";
+ version = "4.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
- sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
+ url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz";
+ sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31";
};
};
- "sntp-1.0.9" = {
- name = "sntp";
- packageName = "sntp";
- version = "1.0.9";
+ "boom-5.2.0" = {
+ name = "boom";
+ packageName = "boom";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
- sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
+ url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz";
+ sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437";
};
};
- "assert-plus-0.2.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "0.2.0";
+ "bops-0.1.1" = {
+ name = "bops";
+ packageName = "bops";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
- sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
+ url = "https://registry.npmjs.org/bops/-/bops-0.1.1.tgz";
+ sha1 = "062e02a8daa801fa10f2e5dbe6740cff801fe17e";
};
};
- "asn1-0.1.11" = {
- name = "asn1";
- packageName = "asn1";
- version = "0.1.11";
+ "bottleneck-1.5.3" = {
+ name = "bottleneck";
+ packageName = "bottleneck";
+ version = "1.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz";
- sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7";
+ url = "https://registry.npmjs.org/bottleneck/-/bottleneck-1.5.3.tgz";
+ sha1 = "55fa64920d9670087d44150404525d59f9511c20";
};
};
- "ctype-0.5.2" = {
- name = "ctype";
- packageName = "ctype";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ctype/-/ctype-0.5.2.tgz";
- sha1 = "fe8091d468a373a0b0c9ff8bbfb3425c00973a1d";
- };
- };
- "source-map-0.1.43" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.1.43";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz";
- sha1 = "c24bc146ca517c1471f5dacbe2571b2b7f9e3346";
- };
- };
- "fibers-1.0.15" = {
- name = "fibers";
- packageName = "fibers";
- version = "1.0.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/fibers/-/fibers-1.0.15.tgz";
- sha1 = "22f039c8f18b856190fbbe4decf056154c1eae9c";
- };
- };
- "galaxy-0.1.12" = {
- name = "galaxy";
- packageName = "galaxy";
- version = "0.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/galaxy/-/galaxy-0.1.12.tgz";
- sha1 = "0c989774f2870c69378aa665648cdc60f343aa53";
- };
- };
- "amdefine-1.0.1" = {
- name = "amdefine";
- packageName = "amdefine";
+ "boundary-1.0.1" = {
+ name = "boundary";
+ packageName = "boundary";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
- sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
- };
- };
- "concat-stream-1.6.0" = {
- name = "concat-stream";
- packageName = "concat-stream";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz";
- sha1 = "0aac662fd52be78964d5532f694784e70110acf7";
- };
- };
- "http-response-object-1.1.0" = {
- name = "http-response-object";
- packageName = "http-response-object";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-response-object/-/http-response-object-1.1.0.tgz";
- sha1 = "a7c4e75aae82f3bb4904e4f43f615673b4d518c3";
- };
- };
- "then-request-2.2.0" = {
- name = "then-request";
- packageName = "then-request";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/then-request/-/then-request-2.2.0.tgz";
- sha1 = "6678b32fa0ca218fe569981bbd8871b594060d81";
- };
- };
- "typedarray-0.0.6" = {
- name = "typedarray";
- packageName = "typedarray";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
- sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
- };
- };
- "readable-stream-2.3.3" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz";
- sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv";
- };
- };
- "string_decoder-1.0.3" = {
- name = "string_decoder";
- packageName = "string_decoder";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz";
- sha512 = "22vw5mmwlyblqc2zyqwl39wyhyahhpiyknim8iz5fk6xi002x777gkswiq8fh297djs5ii4pgrys57wq33hr5zf3xfd0d7kjxkzl0g0";
- };
- };
- "http-basic-2.5.1" = {
- name = "http-basic";
- packageName = "http-basic";
- version = "2.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-basic/-/http-basic-2.5.1.tgz";
- sha1 = "8ce447bdb5b6c577f8a63e3fa78056ec4bb4dbfb";
- };
- };
- "promise-7.3.1" = {
- name = "promise";
- packageName = "promise";
- version = "7.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz";
- sha512 = "17cn4nns2nxh9r0pdiqsqx3fpvaa82c1mhcr8r84k2a9hkpb0mj4bxzfbg3l9iy74yn9hj6mh2gsddsi3v939a1zp7ycbzqkxfm12cy";
- };
- };
- "asap-2.0.6" = {
- name = "asap";
- packageName = "asap";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
- sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
- };
- };
- "async-1.0.0" = {
- name = "async";
- packageName = "async";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
- sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
- };
- };
- "colors-1.0.3" = {
- name = "colors";
- packageName = "colors";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
- sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
- };
- };
- "mute-stream-0.0.7" = {
- name = "mute-stream";
- packageName = "mute-stream";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz";
- sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab";
- };
- };
- "argparse-1.0.4" = {
- name = "argparse";
- packageName = "argparse";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/argparse/-/argparse-1.0.4.tgz";
- sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4";
+ url = "https://registry.npmjs.org/boundary/-/boundary-1.0.1.tgz";
+ sha1 = "4d67dc2602c0cc16dd9bce7ebf87e948290f5812";
};
};
"bower-1.8.2" = {
@@ -3325,4432 +2893,31 @@ let
sha1 = "0c1817c48063a88d96cc3d516c55e57fff5d9ecb";
};
};
- "lodash-4.2.1" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.2.1.tgz";
- sha1 = "171fdcfbbc30d689c544cd18c0529f56de6c1aa9";
- };
- };
- "promised-temp-0.1.0" = {
- name = "promised-temp";
- packageName = "promised-temp";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/promised-temp/-/promised-temp-0.1.0.tgz";
- sha1 = "5f8a704ccdf5f2ac23996fcafe2b301bc2a8d0eb";
- };
- };
- "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 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
- };
- };
- "temp-0.8.3" = {
- name = "temp";
- packageName = "temp";
- version = "0.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz";
- sha1 = "e0c6bc4d26b903124410e4fed81103014dfc1f59";
- };
- };
- "sprintf-js-1.0.3" = {
- name = "sprintf-js";
- packageName = "sprintf-js";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz";
- sha1 = "04e6926f662895354f3dd015203633b857297e2c";
- };
- };
- "deep-extend-0.4.2" = {
- name = "deep-extend";
- packageName = "deep-extend";
- version = "0.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz";
- sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f";
- };
- };
- "ext-name-3.0.0" = {
- name = "ext-name";
- packageName = "ext-name";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ext-name/-/ext-name-3.0.0.tgz";
- sha1 = "07e4418737cb1f513c32c6ea48d8b8c8e0471abb";
- };
- };
- "graceful-fs-3.0.11" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "3.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz";
- sha1 = "7613c778a1afea62f25c630a086d7f3acbbdd818";
- };
- };
- "intersect-1.0.1" = {
- name = "intersect";
- packageName = "intersect";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/intersect/-/intersect-1.0.1.tgz";
- sha1 = "332650e10854d8c0ac58c192bdc27a8bf7e7a30c";
- };
- };
- "ends-with-0.2.0" = {
- name = "ends-with";
- packageName = "ends-with";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ends-with/-/ends-with-0.2.0.tgz";
- sha1 = "2f9da98d57a50cfda4571ce4339000500f4e6b8a";
- };
- };
- "ext-list-2.2.2" = {
- name = "ext-list";
- packageName = "ext-list";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz";
- sha512 = "0a77zmipy5silq8yx7adj0hw82ccvshbs5alv3h8l0vk83lkm5m7pw6y2781wnbks8h98ixyn2q3q065l6m8pwbrhxa3bcvrf191r5v";
- };
- };
- "meow-3.7.0" = {
- name = "meow";
- packageName = "meow";
- version = "3.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz";
- sha1 = "72cb668b425228290abbfa856892587308a801fb";
- };
- };
- "sort-keys-length-1.0.1" = {
- name = "sort-keys-length";
- packageName = "sort-keys-length";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz";
- sha1 = "9cb6f4f4e9e48155a6aa0671edd336ff1479a188";
- };
- };
- "mime-db-1.32.0" = {
- name = "mime-db";
- packageName = "mime-db";
- version = "1.32.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.32.0.tgz";
- sha512 = "1bl21q8acya2jj67757518bdy1yhc5d7ybn755wnikwcca3gq5akfg835nj5mp2kmd4f97yyy0qwx662jlwk1rgx7nl9qsd2vzsi5gr";
- };
- };
- "camelcase-keys-2.1.0" = {
- name = "camelcase-keys";
- packageName = "camelcase-keys";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz";
- sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7";
- };
- };
- "decamelize-1.2.0" = {
- name = "decamelize";
- packageName = "decamelize";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
- sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
- };
- };
- "loud-rejection-1.6.0" = {
- name = "loud-rejection";
- packageName = "loud-rejection";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz";
- sha1 = "5b46f80147edee578870f086d04821cf998e551f";
- };
- };
- "map-obj-1.0.1" = {
- name = "map-obj";
- packageName = "map-obj";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz";
- sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d";
- };
- };
- "minimist-1.2.0" = {
- name = "minimist";
- packageName = "minimist";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
- sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
- };
- };
- "normalize-package-data-2.4.0" = {
- name = "normalize-package-data";
- packageName = "normalize-package-data";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
- sha512 = "01wzws79ps84ylshjb7rfpjykgiqxnpr89s52p2yyzfx8nfvyh5flvf1almiiavsi75xgi8g3s5davc1mmgz7gn8yvlqz6gnhax8f7n";
- };
- };
- "object-assign-4.1.1" = {
- name = "object-assign";
- packageName = "object-assign";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
- sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
- };
- };
- "read-pkg-up-1.0.1" = {
- name = "read-pkg-up";
- packageName = "read-pkg-up";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz";
- sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02";
- };
- };
- "redent-1.0.0" = {
- name = "redent";
- packageName = "redent";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz";
- sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde";
- };
- };
- "trim-newlines-1.0.0" = {
- name = "trim-newlines";
- packageName = "trim-newlines";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz";
- sha1 = "5887966bb582a4503a41eb524f7d35011815a613";
- };
- };
- "camelcase-2.1.1" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz";
- sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f";
- };
- };
- "currently-unhandled-0.4.1" = {
- name = "currently-unhandled";
- packageName = "currently-unhandled";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz";
- sha1 = "988df33feab191ef799a61369dd76c17adf957ea";
- };
- };
- "signal-exit-3.0.2" = {
- name = "signal-exit";
- packageName = "signal-exit";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
- sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
- };
- };
- "array-find-index-1.0.2" = {
- name = "array-find-index";
- packageName = "array-find-index";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz";
- sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
- };
- };
- "hosted-git-info-2.5.0" = {
- name = "hosted-git-info";
- packageName = "hosted-git-info";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz";
- sha512 = "355g980qsk8k9hkv60z58llbvpscjl5yqkh4wx719s8jcq2swzn4ynzinj8azmvdgs10r22wb297rmixh9vvsml55sbysdf2i8ipn54";
- };
- };
- "is-builtin-module-1.0.0" = {
- name = "is-builtin-module";
- packageName = "is-builtin-module";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz";
- sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe";
- };
- };
- "validate-npm-package-license-3.0.1" = {
- name = "validate-npm-package-license";
- packageName = "validate-npm-package-license";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz";
- sha1 = "2804babe712ad3379459acfbe24746ab2c303fbc";
- };
- };
- "builtin-modules-1.1.1" = {
- name = "builtin-modules";
- packageName = "builtin-modules";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz";
- sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f";
- };
- };
- "spdx-correct-1.0.2" = {
- name = "spdx-correct";
- packageName = "spdx-correct";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz";
- sha1 = "4b3073d933ff51f3912f03ac5519498a4150db40";
- };
- };
- "spdx-expression-parse-1.0.4" = {
- name = "spdx-expression-parse";
- packageName = "spdx-expression-parse";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz";
- sha1 = "9bdf2f20e1f40ed447fbe273266191fced51626c";
- };
- };
- "spdx-license-ids-1.2.2" = {
- name = "spdx-license-ids";
- packageName = "spdx-license-ids";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz";
- sha1 = "c9df7a3424594ade6bd11900d596696dc06bac57";
- };
- };
- "find-up-1.1.2" = {
- name = "find-up";
- packageName = "find-up";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz";
- sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f";
- };
- };
- "read-pkg-1.1.0" = {
- name = "read-pkg";
- packageName = "read-pkg";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz";
- sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28";
- };
- };
- "path-exists-2.1.0" = {
- name = "path-exists";
- packageName = "path-exists";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz";
- sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b";
- };
- };
- "load-json-file-1.1.0" = {
- name = "load-json-file";
- packageName = "load-json-file";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz";
- sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0";
- };
- };
- "path-type-1.1.0" = {
- name = "path-type";
- packageName = "path-type";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz";
- sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441";
- };
- };
- "parse-json-2.2.0" = {
- name = "parse-json";
- packageName = "parse-json";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz";
- sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9";
- };
- };
- "pify-2.3.0" = {
- name = "pify";
- packageName = "pify";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz";
- sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c";
- };
- };
- "strip-bom-2.0.0" = {
- name = "strip-bom";
- packageName = "strip-bom";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz";
- sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e";
- };
- };
- "error-ex-1.3.1" = {
- name = "error-ex";
- packageName = "error-ex";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz";
- sha1 = "f855a86ce61adc4e8621c3cda21e7a7612c3a8dc";
- };
- };
- "is-arrayish-0.2.1" = {
- name = "is-arrayish";
- packageName = "is-arrayish";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz";
- sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
- };
- };
- "is-utf8-0.2.1" = {
- name = "is-utf8";
- packageName = "is-utf8";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz";
- sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
- };
- };
- "indent-string-2.1.0" = {
- name = "indent-string";
- packageName = "indent-string";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz";
- sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80";
- };
- };
- "strip-indent-1.0.1" = {
- name = "strip-indent";
- packageName = "strip-indent";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz";
- sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2";
- };
- };
- "get-stdin-4.0.1" = {
- name = "get-stdin";
- packageName = "get-stdin";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz";
- sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe";
- };
- };
- "sort-keys-1.1.2" = {
- name = "sort-keys";
- packageName = "sort-keys";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz";
- sha1 = "441b6d4d346798f1b4e49e8920adfba0e543f9ad";
- };
- };
- "is-plain-obj-1.1.0" = {
- name = "is-plain-obj";
- packageName = "is-plain-obj";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz";
- sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e";
- };
- };
- "natives-1.1.1" = {
- name = "natives";
- packageName = "natives";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz";
- sha512 = "08a9lf00d2pkqmdi6ipp00pjin0gwl6fh283cjdjbayaz834lppwrw19kn4s642kwa46bfcway3033j6rbqd96iy86qrzrfgz35mr7i";
- };
- };
- "rimraf-2.2.8" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
- sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
- };
- };
- "JSONStream-1.3.2" = {
- name = "JSONStream";
- packageName = "JSONStream";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz";
- sha1 = "c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea";
- };
- };
- "assert-1.4.1" = {
- name = "assert";
- packageName = "assert";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/assert/-/assert-1.4.1.tgz";
- sha1 = "99912d591836b5a6f5b345c0f07eefc08fc65d91";
- };
- };
- "browser-pack-6.0.2" = {
- name = "browser-pack";
- packageName = "browser-pack";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.0.2.tgz";
- sha1 = "f86cd6cef4f5300c8e63e07a4d512f65fbff4531";
- };
- };
- "browser-resolve-1.11.2" = {
- name = "browser-resolve";
- packageName = "browser-resolve";
- version = "1.11.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz";
- sha1 = "8ff09b0a2c421718a1051c260b32e48f442938ce";
- };
- };
- "browserify-zlib-0.2.0" = {
- name = "browserify-zlib";
- packageName = "browserify-zlib";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
- sha512 = "24488d4s6d901hj9d9jdddapmcvmibbdpjq6nv3bpyjx72546fcqa0vripy0ydsrw1jk6bakfzvynh5i9cz0g59hrmn4ph75d3kdpk7";
- };
- };
- "buffer-5.0.8" = {
- name = "buffer";
- packageName = "buffer";
- version = "5.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer/-/buffer-5.0.8.tgz";
- sha512 = "0capij8lgps5fzc5hikkkdsn58lmzfdpni7v2m0ham5r67q24kln1spwz4dnk3nh6zkiqmgz0cqnq591pms1pkkv8prvksd2m1f6yy5";
- };
- };
- "cached-path-relative-1.0.1" = {
- name = "cached-path-relative";
- packageName = "cached-path-relative";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.1.tgz";
- sha1 = "d09c4b52800aa4c078e2dd81a869aac90d2e54e7";
- };
- };
- "concat-stream-1.5.2" = {
- name = "concat-stream";
- packageName = "concat-stream";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz";
- sha1 = "708978624d856af41a5a741defdd261da752c266";
- };
- };
- "console-browserify-1.1.0" = {
- name = "console-browserify";
- packageName = "console-browserify";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz";
- sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
- };
- };
- "constants-browserify-1.0.0" = {
- name = "constants-browserify";
- packageName = "constants-browserify";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz";
- sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
- };
- };
- "crypto-browserify-3.12.0" = {
- name = "crypto-browserify";
- packageName = "crypto-browserify";
- version = "3.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
- sha512 = "1d3mrhqlay037azmjp2ml5a8yyls9ijdhilv6f0znz0ajgfm972yr9bhm78wqi09p4crc3shgflk50jc63zijsqv777ikkyi2j2qgkz";
- };
- };
- "defined-1.0.0" = {
- name = "defined";
- packageName = "defined";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz";
- sha1 = "c98d9bcef75674188e110969151199e39b1fa693";
- };
- };
- "deps-sort-2.0.0" = {
- name = "deps-sort";
- packageName = "deps-sort";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz";
- sha1 = "091724902e84658260eb910748cccd1af6e21fb5";
- };
- };
- "domain-browser-1.1.7" = {
- name = "domain-browser";
- packageName = "domain-browser";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz";
- sha1 = "867aa4b093faa05f1de08c06f4d7b21fdf8698bc";
- };
- };
- "duplexer2-0.1.4" = {
- name = "duplexer2";
- packageName = "duplexer2";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz";
- sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1";
- };
- };
- "events-1.1.1" = {
- name = "events";
- packageName = "events";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/events/-/events-1.1.1.tgz";
- sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924";
- };
- };
- "has-1.0.1" = {
- name = "has";
- packageName = "has";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz";
- sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28";
- };
- };
- "htmlescape-1.1.1" = {
- name = "htmlescape";
- packageName = "htmlescape";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz";
- sha1 = "3a03edc2214bca3b66424a3e7959349509cb0351";
- };
- };
- "https-browserify-1.0.0" = {
- name = "https-browserify";
- packageName = "https-browserify";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz";
- sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
- };
- };
- "insert-module-globals-7.0.1" = {
- name = "insert-module-globals";
- packageName = "insert-module-globals";
- version = "7.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.1.tgz";
- sha1 = "c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3";
- };
- };
- "labeled-stream-splicer-2.0.0" = {
- name = "labeled-stream-splicer";
- packageName = "labeled-stream-splicer";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz";
- sha1 = "a52e1d138024c00b86b1c0c91f677918b8ae0a59";
- };
- };
- "module-deps-4.1.1" = {
- name = "module-deps";
- packageName = "module-deps";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/module-deps/-/module-deps-4.1.1.tgz";
- sha1 = "23215833f1da13fd606ccb8087b44852dcb821fd";
- };
- };
- "os-browserify-0.3.0" = {
- name = "os-browserify";
- packageName = "os-browserify";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz";
- sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
- };
- };
- "parents-1.0.1" = {
- name = "parents";
- packageName = "parents";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz";
- sha1 = "fedd4d2bf193a77745fe71e371d73c3307d9c751";
- };
- };
- "path-browserify-0.0.0" = {
- name = "path-browserify";
- packageName = "path-browserify";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz";
- sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a";
- };
- };
- "process-0.11.10" = {
- name = "process";
- packageName = "process";
- version = "0.11.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz";
- sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
- };
- };
- "querystring-es3-0.2.1" = {
- name = "querystring-es3";
- packageName = "querystring-es3";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz";
- sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
- };
- };
- "read-only-stream-2.0.0" = {
- name = "read-only-stream";
- packageName = "read-only-stream";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz";
- sha1 = "2724fd6a8113d73764ac288d4386270c1dbf17f0";
- };
- };
- "shasum-1.0.2" = {
- name = "shasum";
- packageName = "shasum";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz";
- sha1 = "e7012310d8f417f4deb5712150e5678b87ae565f";
- };
- };
- "shell-quote-1.6.1" = {
- name = "shell-quote";
- packageName = "shell-quote";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz";
- sha1 = "f4781949cce402697127430ea3b3c5476f481767";
- };
- };
- "stream-browserify-2.0.1" = {
- name = "stream-browserify";
- packageName = "stream-browserify";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz";
- sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db";
- };
- };
- "stream-http-2.7.2" = {
- name = "stream-http";
- packageName = "stream-http";
- version = "2.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-http/-/stream-http-2.7.2.tgz";
- sha512 = "09n1hj53jy075fnbsaaiknry7in0l4yarh912abwgvk4hwl33lvn8wrfw891zg5bkfa7sxlmd5yz3xxd4dmcln19bnkahyvd87r6k3k";
- };
- };
- "subarg-1.0.0" = {
- name = "subarg";
- packageName = "subarg";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz";
- sha1 = "f62cf17581e996b48fc965699f54c06ae268b8d2";
- };
- };
- "syntax-error-1.3.0" = {
- name = "syntax-error";
- packageName = "syntax-error";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.3.0.tgz";
- sha1 = "1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1";
- };
- };
- "through2-2.0.3" = {
- name = "through2";
- packageName = "through2";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz";
- sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
- };
- };
- "timers-browserify-1.4.2" = {
- name = "timers-browserify";
- packageName = "timers-browserify";
- version = "1.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz";
- sha1 = "c9c58b575be8407375cb5e2462dacee74359f41d";
- };
- };
- "tty-browserify-0.0.0" = {
- name = "tty-browserify";
- packageName = "tty-browserify";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz";
- sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
- };
- };
- "url-0.11.0" = {
- name = "url";
- packageName = "url";
- version = "0.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz";
- sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
- };
- };
- "util-0.10.3" = {
- name = "util";
- packageName = "util";
- version = "0.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz";
- sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
- };
- };
- "vm-browserify-0.0.4" = {
- name = "vm-browserify";
- packageName = "vm-browserify";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz";
- sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73";
- };
- };
- "jsonparse-1.3.1" = {
- name = "jsonparse";
- packageName = "jsonparse";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz";
- sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280";
- };
- };
- "combine-source-map-0.7.2" = {
- name = "combine-source-map";
- packageName = "combine-source-map";
- version = "0.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.7.2.tgz";
- sha1 = "0870312856b307a87cc4ac486f3a9a62aeccc09e";
- };
- };
- "umd-3.0.1" = {
- name = "umd";
- packageName = "umd";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/umd/-/umd-3.0.1.tgz";
- sha1 = "8ae556e11011f63c2596708a8837259f01b3d60e";
- };
- };
- "convert-source-map-1.1.3" = {
- name = "convert-source-map";
- packageName = "convert-source-map";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz";
- sha1 = "4829c877e9fe49b3161f3bf3673888e204699860";
- };
- };
- "inline-source-map-0.6.2" = {
- name = "inline-source-map";
- packageName = "inline-source-map";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz";
- sha1 = "f9393471c18a79d1724f863fa38b586370ade2a5";
- };
- };
- "lodash.memoize-3.0.4" = {
- name = "lodash.memoize";
- packageName = "lodash.memoize";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz";
- sha1 = "2dcbd2c287cbc0a55cc42328bd0c736150d53e3f";
- };
- };
- "resolve-1.1.7" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz";
- sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
- };
- };
- "pako-1.0.6" = {
- name = "pako";
- packageName = "pako";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz";
- sha512 = "1r9hy37qsbhv5ipsydkbir2yl7qg3lbpgj4qzrnb903w8mhj9ibaww0zykbp0ak1nxxp6mpbws3xsrf7fgq39zchci90c7chgqvh1wm";
- };
- };
- "base64-js-1.2.1" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.1.tgz";
- sha512 = "0dhi66vsajfcm04s11xqklh5lj3abs4ncnl8h3689964aqam3ps9spmc454hz94rz3x1x5l1ad03jrba67mq9zc9vq9a1gchma581bp";
- };
- };
- "ieee754-1.1.8" = {
- name = "ieee754";
- packageName = "ieee754";
- version = "1.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz";
- sha1 = "be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4";
- };
- };
- "date-now-0.1.4" = {
- name = "date-now";
- packageName = "date-now";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz";
- sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
- };
- };
- "browserify-cipher-1.0.0" = {
- name = "browserify-cipher";
- packageName = "browserify-cipher";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz";
- sha1 = "9988244874bf5ed4e28da95666dcd66ac8fc363a";
- };
- };
- "browserify-sign-4.0.4" = {
- name = "browserify-sign";
- packageName = "browserify-sign";
- version = "4.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
- sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
- };
- };
- "create-ecdh-4.0.0" = {
- name = "create-ecdh";
- packageName = "create-ecdh";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz";
- sha1 = "888c723596cdf7612f6498233eebd7a35301737d";
- };
- };
- "create-hash-1.1.3" = {
- name = "create-hash";
- packageName = "create-hash";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz";
- sha1 = "606042ac8b9262750f483caddab0f5819172d8fd";
- };
- };
- "create-hmac-1.1.6" = {
- name = "create-hmac";
- packageName = "create-hmac";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.6.tgz";
- sha1 = "acb9e221a4e17bdb076e90657c42b93e3726cf06";
- };
- };
- "diffie-hellman-5.0.2" = {
- name = "diffie-hellman";
- packageName = "diffie-hellman";
- version = "5.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.2.tgz";
- sha1 = "b5835739270cfe26acf632099fded2a07f209e5e";
- };
- };
- "pbkdf2-3.0.14" = {
- name = "pbkdf2";
- packageName = "pbkdf2";
- version = "3.0.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.14.tgz";
- sha512 = "30bb7vx0m1k1m3d1i1khgvmgddx3ahqgprs421ssrh5plpx50k5bazsj67gdi7qiknircqy59yxbclq95s2rnmk8ysgkqdpsddijfw2";
- };
- };
- "public-encrypt-4.0.0" = {
- name = "public-encrypt";
- packageName = "public-encrypt";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz";
- sha1 = "39f699f3a46560dd5ebacbca693caf7c65c18cc6";
- };
- };
- "randombytes-2.0.5" = {
- name = "randombytes";
- packageName = "randombytes";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.5.tgz";
- sha512 = "293m4ffiafbjg0b99a2k78wiffmlwc2v7cigrn5l3n7555x7qxyr34sp0s4p713vwlaf0ny5n57iysgkz08slld3hzw8ci1a2gxjgpi";
- };
- };
- "randomfill-1.0.3" = {
- name = "randomfill";
- packageName = "randomfill";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.3.tgz";
- sha512 = "08l7hdx65kfxli7g9pcnlv84bdrccj7d267d1kfi93db6a4mihwyhvsipmx2n0yk9z45cs21isgpld6rib5saxg28s2g8nn3ap8dgk0";
- };
- };
- "browserify-aes-1.1.1" = {
- name = "browserify-aes";
- packageName = "browserify-aes";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.1.1.tgz";
- sha512 = "0b874c5j68a6h1smd9avnc98zpjy2b4sykkhfpn97lzg7k5aq3ab0jdsmxjafifm0sa3srwscfpcl70gwnlg242p7cavnf115hd6sah";
- };
- };
- "browserify-des-1.0.0" = {
- name = "browserify-des";
- packageName = "browserify-des";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz";
- sha1 = "daa277717470922ed2fe18594118a175439721dd";
- };
- };
- "evp_bytestokey-1.0.3" = {
- name = "evp_bytestokey";
- packageName = "evp_bytestokey";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
- sha512 = "1wd18zxd7n42asa63aa4k1bdf58warg29c7c8cdzzkd4r1wva7qwzqnn52h8g8hqwj7bxjkk3ryghajrvz4i27h5bzp30p8hjiqdzgx";
- };
- };
- "buffer-xor-1.0.3" = {
- name = "buffer-xor";
- packageName = "buffer-xor";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz";
- sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
- };
- };
- "cipher-base-1.0.4" = {
- name = "cipher-base";
- packageName = "cipher-base";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
- sha512 = "3cm9kdc1sv7pakzlhrc1pazdvg9lk4hv31lximwbcrgmwfzg6imxrndszgx9yzlizknfh2b73cr7b5mfcv50bldpyq6jr5s4zknsj1a";
- };
- };
- "des.js-1.0.0" = {
- name = "des.js";
- packageName = "des.js";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz";
- sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc";
- };
- };
- "minimalistic-assert-1.0.0" = {
- name = "minimalistic-assert";
- packageName = "minimalistic-assert";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz";
- sha1 = "702be2dda6b37f4836bcb3f5db56641b64a1d3d3";
- };
- };
- "bn.js-4.11.8" = {
- name = "bn.js";
- packageName = "bn.js";
- version = "4.11.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz";
- sha512 = "20bg51v29zygy89w84qb64pkjikxfjdsgjs0ry6pvv8fkwn5kd1izrqn022d838q3rcaq8dmy033g7q8b6960j4f8ipan74y9ydimr2";
- };
- };
- "browserify-rsa-4.0.1" = {
- name = "browserify-rsa";
- packageName = "browserify-rsa";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
- sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
- };
- };
- "elliptic-6.4.0" = {
- name = "elliptic";
- packageName = "elliptic";
- version = "6.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz";
- sha1 = "cac9af8762c85836187003c8dfe193e5e2eae5df";
- };
- };
- "parse-asn1-5.1.0" = {
- name = "parse-asn1";
- packageName = "parse-asn1";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz";
- sha1 = "37c4f9b7ed3ab65c74817b5f2480937fbf97c712";
- };
- };
- "brorand-1.1.0" = {
- name = "brorand";
- packageName = "brorand";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
- sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
- };
- };
- "hash.js-1.1.3" = {
- name = "hash.js";
- packageName = "hash.js";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz";
- sha512 = "0f88i7rv3ib8lwdh5z5lwrml404frzb1a9n3g25y85jpfng82vzsv7m3c5fbyrpq5ki4c3pa8823z3s61xfigm45q469nqnzp416hgx";
- };
- };
- "hmac-drbg-1.0.1" = {
- name = "hmac-drbg";
- packageName = "hmac-drbg";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
- sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
- };
- };
- "minimalistic-crypto-utils-1.0.1" = {
- name = "minimalistic-crypto-utils";
- packageName = "minimalistic-crypto-utils";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
- sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
- };
- };
- "asn1.js-4.9.2" = {
- name = "asn1.js";
- packageName = "asn1.js";
- version = "4.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.9.2.tgz";
- sha512 = "071d32h5646ddyfxvmm0yd0xc320zh2cdsjal4hs8cs0hgn9dpq7k9c9ndlhjq3y93nlawkinm99znqvp0cxx61ic7qy4nn7d5arwvg";
- };
- };
- "ripemd160-2.0.1" = {
- name = "ripemd160";
- packageName = "ripemd160";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz";
- sha1 = "0f4584295c53a3628af7e6d79aca21ce57d1c6e7";
- };
- };
- "sha.js-2.4.9" = {
- name = "sha.js";
- packageName = "sha.js";
- version = "2.4.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.9.tgz";
- sha512 = "3l96mlw71zgkmfm9madd3jcndrpm2fm4jz2q5gz9mbm27mdg89hsbrg22pfl32ha76xa3pza83m2mc3b47pnq19mz3j6vkasn9dxk0v";
- };
- };
- "hash-base-2.0.2" = {
- name = "hash-base";
- packageName = "hash-base";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz";
- sha1 = "66ea1d856db4e8a5470cadf6fce23ae5244ef2e1";
- };
- };
- "miller-rabin-4.0.1" = {
- name = "miller-rabin";
- packageName = "miller-rabin";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz";
- sha512 = "12277knznlw4myxmgg6vgkrwmrhj9dyniscrlph3s08ndi2q25v3wrv6rwanvz29v5k5x756xa5yif4xllrghpn3jqaamnr3cp5ypnp";
- };
- };
- "function-bind-1.1.1" = {
- name = "function-bind";
- packageName = "function-bind";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz";
- sha512 = "38chm1mh077ksx6hy2sssfz4q29hf0ncb9k6ila7si54zqcpl5fxd1rh6wi82blqp7jcspf4aynr7jqhbsg2yc9y42xpqqp6c1jz2n8";
- };
- };
- "lexical-scope-1.2.0" = {
- name = "lexical-scope";
- packageName = "lexical-scope";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lexical-scope/-/lexical-scope-1.2.0.tgz";
- sha1 = "fcea5edc704a4b3a8796cdca419c3a0afaf22df4";
- };
- };
- "astw-2.2.0" = {
- name = "astw";
- packageName = "astw";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/astw/-/astw-2.2.0.tgz";
- sha1 = "7bd41784d32493987aeb239b6b4e1c57a873b917";
- };
- };
- "acorn-4.0.13" = {
- name = "acorn";
- packageName = "acorn";
- version = "4.0.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz";
- sha1 = "105495ae5361d697bd195c825192e1ad7f253787";
- };
- };
- "stream-splicer-2.0.0" = {
- name = "stream-splicer";
- packageName = "stream-splicer";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz";
- sha1 = "1b63be438a133e4b671cc1935197600175910d83";
- };
- };
- "detective-4.7.1" = {
- name = "detective";
- packageName = "detective";
- version = "4.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/detective/-/detective-4.7.1.tgz";
- sha512 = "259c687nsmq5ni5q79081s6lpd2srwn7xlwipxwbrqkq9bq0zsvwb0n1d99jc7c6kvpm95bhvvlncfb0l4hqy6vnlb5lrhwwmwyd8qz";
- };
- };
- "stream-combiner2-1.1.1" = {
- name = "stream-combiner2";
- packageName = "stream-combiner2";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz";
- sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe";
- };
- };
- "acorn-5.2.1" = {
- name = "acorn";
- packageName = "acorn";
- version = "5.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-5.2.1.tgz";
- sha512 = "3ryzhy30vzfnn2a0crafh3qsrx145ali8i88q1bc0lzl1dz0ycmjmmwh2yn9xfjs3vmjxl7nphpwcs4imgz3da5jb8fvjqbrvnjwvcc";
- };
- };
- "path-platform-0.11.15" = {
- name = "path-platform";
- packageName = "path-platform";
- version = "0.11.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz";
- sha1 = "e864217f74c36850f0852b78dc7bf7d4a5721bf2";
- };
- };
- "json-stable-stringify-0.0.1" = {
- name = "json-stable-stringify";
- packageName = "json-stable-stringify";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz";
- sha1 = "611c23e814db375527df851193db59dd2af27f45";
- };
- };
- "jsonify-0.0.0" = {
- name = "jsonify";
- packageName = "jsonify";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
- sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
- };
- };
- "array-filter-0.0.1" = {
- name = "array-filter";
- packageName = "array-filter";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz";
- sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec";
- };
- };
- "array-reduce-0.0.0" = {
- name = "array-reduce";
- packageName = "array-reduce";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz";
- sha1 = "173899d3ffd1c7d9383e4479525dbe278cab5f2b";
- };
- };
- "array-map-0.0.0" = {
- name = "array-map";
- packageName = "array-map";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz";
- sha1 = "88a2bab73d1cf7bcd5c1b118a003f66f665fa662";
- };
- };
- "builtin-status-codes-3.0.0" = {
- name = "builtin-status-codes";
- packageName = "builtin-status-codes";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
- sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
- };
- };
- "to-arraybuffer-1.0.1" = {
- name = "to-arraybuffer";
- packageName = "to-arraybuffer";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
- sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
- };
- };
- "punycode-1.3.2" = {
- name = "punycode";
- packageName = "punycode";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz";
- sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
- };
- };
- "querystring-0.2.0" = {
- name = "querystring";
- packageName = "querystring";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz";
- sha1 = "b209849203bb25df820da756e747005878521620";
- };
- };
- "inherits-2.0.1" = {
- name = "inherits";
- packageName = "inherits";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz";
- sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
- };
- };
- "indexof-0.0.1" = {
- name = "indexof";
- packageName = "indexof";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz";
- sha1 = "82dc336d232b9062179d05ab3293a66059fd435d";
- };
- };
- "array-loop-1.0.0" = {
- name = "array-loop";
- packageName = "array-loop";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-loop/-/array-loop-1.0.0.tgz";
- sha1 = "c033d086cf0d12af73aed5a99c0cedb37367b395";
- };
- };
- "array-shuffle-1.0.1" = {
- name = "array-shuffle";
- packageName = "array-shuffle";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-shuffle/-/array-shuffle-1.0.1.tgz";
- sha1 = "7ea4882a356b4bca5f545e0b6e52eaf6d971557a";
- };
- };
- "castv2-client-1.2.0" = {
- name = "castv2-client";
- packageName = "castv2-client";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/castv2-client/-/castv2-client-1.2.0.tgz";
- sha1 = "a9193b1a5448b8cb9a0415bd021c8811ed7b0544";
- };
- };
- "chalk-1.0.0" = {
- name = "chalk";
- packageName = "chalk";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz";
- sha1 = "b3cf4ed0ff5397c99c75b8f679db2f52831f96dc";
- };
- };
- "chromecast-player-0.2.3" = {
- name = "chromecast-player";
- packageName = "chromecast-player";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/chromecast-player/-/chromecast-player-0.2.3.tgz";
- sha1 = "fe9ce69911c88096d681e4242c1902ad30787216";
- };
- };
- "debounced-seeker-1.0.0" = {
- name = "debounced-seeker";
- packageName = "debounced-seeker";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/debounced-seeker/-/debounced-seeker-1.0.0.tgz";
- sha1 = "e74befcd1a62ae7a5e5fbfbfa6f5d2bacd962bdd";
- };
- };
- "diveSync-0.3.0" = {
- name = "diveSync";
- packageName = "diveSync";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/diveSync/-/diveSync-0.3.0.tgz";
- sha1 = "d9980493ae33beec36f4fec6f171ff218130cc12";
- };
- };
- "got-1.2.2" = {
- name = "got";
- packageName = "got";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-1.2.2.tgz";
- sha1 = "d9430ba32f6a30218243884418767340aafc0400";
- };
- };
- "internal-ip-1.2.0" = {
- name = "internal-ip";
- packageName = "internal-ip";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/internal-ip/-/internal-ip-1.2.0.tgz";
- sha1 = "ae9fbf93b984878785d50a8de1b356956058cf5c";
- };
- };
- "keypress-0.2.1" = {
- name = "keypress";
- packageName = "keypress";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz";
- sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77";
- };
- };
- "mime-1.6.0" = {
- name = "mime";
- packageName = "mime";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz";
- sha512 = "1x901mk5cdib4xp27v4ivwwr7mhy64r4rk953bzivi5p9lf2bhw88ra2rhkd254xkdx2d3q30zkq239vc4yx4pfsj4hpys8rbr6fif7";
- };
- };
- "peerflix-0.34.0" = {
- name = "peerflix";
- packageName = "peerflix";
- version = "0.34.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/peerflix/-/peerflix-0.34.0.tgz";
- sha1 = "748f7e401284bf8f2c620264d229223304199dbe";
- };
- };
- "playerui-1.2.0" = {
- name = "playerui";
- packageName = "playerui";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/playerui/-/playerui-1.2.0.tgz";
- sha1 = "2d59c8cb736e189cb2398cd809469ca47077f812";
- };
- };
- "query-string-1.0.1" = {
- name = "query-string";
- packageName = "query-string";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/query-string/-/query-string-1.0.1.tgz";
- sha1 = "63ac953352499ad670a9681a75680f6bf3dd1faf";
- };
- };
- "range-parser-1.2.0" = {
- name = "range-parser";
- packageName = "range-parser";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz";
- sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e";
- };
- };
- "read-torrent-1.3.0" = {
- name = "read-torrent";
- packageName = "read-torrent";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-torrent/-/read-torrent-1.3.0.tgz";
- sha1 = "4e0ef5bea6cb24d31843eb6fa8543ad0232ab9f4";
- };
- };
- "router-0.6.2" = {
- name = "router";
- packageName = "router";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/router/-/router-0.6.2.tgz";
- sha1 = "6f04063a2d04eba3303a1bbc6765eef63037cf3d";
- };
- };
- "srt2vtt-1.3.1" = {
- name = "srt2vtt";
- packageName = "srt2vtt";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/srt2vtt/-/srt2vtt-1.3.1.tgz";
- sha1 = "c2b5047c2c297b693d3bab518765e4b7c24d8173";
- };
- };
- "stream-transcoder-0.0.5" = {
- name = "stream-transcoder";
- packageName = "stream-transcoder";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-transcoder/-/stream-transcoder-0.0.5.tgz";
- sha1 = "68261be4efb48840239b5791af23ee3b8bd79808";
- };
- };
- "xml2js-0.4.19" = {
- name = "xml2js";
- packageName = "xml2js";
- version = "0.4.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz";
- sha512 = "3skianymbfq4rg2v5c1vwsz2kmxfik60qa892wh6a3rydd1wrv3l4vgyr8v4wd8krdf42jbmq7blp0ksbmwm332q5yr922fj8jngiks";
- };
- };
- "xspfr-0.3.1" = {
- name = "xspfr";
- packageName = "xspfr";
+ "boxen-0.3.1" = {
+ name = "boxen";
+ packageName = "boxen";
version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/xspfr/-/xspfr-0.3.1.tgz";
- sha1 = "f164263325ae671f53836fb210c7ddbcfda46598";
+ url = "https://registry.npmjs.org/boxen/-/boxen-0.3.1.tgz";
+ sha1 = "a7d898243ae622f7abb6bb604d740a76c6a5461b";
};
};
- "castv2-0.1.9" = {
- name = "castv2";
- packageName = "castv2";
- version = "0.1.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/castv2/-/castv2-0.1.9.tgz";
- sha1 = "d0b0fab1fd06b0d9cca636886716ec1293a5905a";
- };
- };
- "protobufjs-3.8.2" = {
- name = "protobufjs";
- packageName = "protobufjs";
- version = "3.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/protobufjs/-/protobufjs-3.8.2.tgz";
- sha1 = "bc826e34c3af4697e8d0af7a669e4d612aedcd17";
- };
- };
- "bytebuffer-3.5.5" = {
- name = "bytebuffer";
- packageName = "bytebuffer";
- version = "3.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytebuffer/-/bytebuffer-3.5.5.tgz";
- sha1 = "7a6faf1a13514b083f1fcf9541c4c9bfbe7e7fd3";
- };
- };
- "ascli-0.3.0" = {
- name = "ascli";
- packageName = "ascli";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ascli/-/ascli-0.3.0.tgz";
- sha1 = "5e66230e5219fe3e8952a4efb4f20fae596a813a";
- };
- };
- "long-2.4.0" = {
- name = "long";
- packageName = "long";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/long/-/long-2.4.0.tgz";
- sha1 = "9fa180bb1d9500cdc29c4156766a1995e1f4524f";
- };
- };
- "bufferview-1.0.1" = {
- name = "bufferview";
- packageName = "bufferview";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bufferview/-/bufferview-1.0.1.tgz";
- sha1 = "7afd74a45f937fa422a1d338c08bbfdc76cd725d";
- };
- };
- "colour-0.7.1" = {
- name = "colour";
- packageName = "colour";
- version = "0.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/colour/-/colour-0.7.1.tgz";
- sha1 = "9cb169917ec5d12c0736d3e8685746df1cadf778";
- };
- };
- "optjs-3.2.2" = {
- name = "optjs";
- packageName = "optjs";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/optjs/-/optjs-3.2.2.tgz";
- sha1 = "69a6ce89c442a44403141ad2f9b370bd5bb6f4ee";
- };
- };
- "has-ansi-1.0.3" = {
- name = "has-ansi";
- packageName = "has-ansi";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-ansi/-/has-ansi-1.0.3.tgz";
- sha1 = "c0b5b1615d9e382b0ff67169d967b425e48ca538";
- };
- };
- "strip-ansi-2.0.1" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz";
- sha1 = "df62c1aa94ed2f114e1d0f21fd1d50482b79a60e";
- };
- };
- "supports-color-1.3.1" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-1.3.1.tgz";
- sha1 = "15758df09d8ff3b4acc307539fabe27095e1042d";
- };
- };
- "ansi-regex-1.1.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz";
- sha1 = "41c847194646375e6a1a5d10c3ca054ef9fc980d";
- };
- };
- "chromecast-scanner-0.5.0" = {
- name = "chromecast-scanner";
- packageName = "chromecast-scanner";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chromecast-scanner/-/chromecast-scanner-0.5.0.tgz";
- sha1 = "01296a3e5d130cce34974eb509cbbc7d6f78dd3d";
- };
- };
- "mutate.js-0.2.0" = {
- name = "mutate.js";
- packageName = "mutate.js";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mutate.js/-/mutate.js-0.2.0.tgz";
- sha1 = "2e5cb1ac64c937dae28296e8f42af5eafd9bc7ef";
- };
- };
- "promiscuous-0.6.0" = {
- name = "promiscuous";
- packageName = "promiscuous";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/promiscuous/-/promiscuous-0.6.0.tgz";
- sha1 = "54014cd3d62cafe831e3354990c05ff5b78c8892";
- };
- };
- "time-line-1.0.1" = {
- name = "time-line";
- packageName = "time-line";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/time-line/-/time-line-1.0.1.tgz";
- sha1 = "afb89542301c3b5010d118c66b5d63920f5e9a7a";
- };
- };
- "ware-1.3.0" = {
- name = "ware";
- packageName = "ware";
+ "boxen-1.3.0" = {
+ name = "boxen";
+ packageName = "boxen";
version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz";
- sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4";
+ url = "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz";
+ sha512 = "0pmn5jcnph7yfgfhlncg1lys066cq44kavj4d9qhmyy9705w61pabpwlma09xg4xplzbxh78d3m4xwvjwk478r3xyqnmpzq79yy7lsc";
};
};
- "array-find-0.1.1" = {
- name = "array-find";
- packageName = "array-find";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-find/-/array-find-0.1.1.tgz";
- sha1 = "dc813845ad5a9afc35cb92b786c878d81b5b82ce";
- };
- };
- "multicast-dns-4.0.1" = {
- name = "multicast-dns";
- packageName = "multicast-dns";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-4.0.1.tgz";
- sha1 = "abf022fc866727055a9e0c2bc98097f5ebad97a2";
- };
- };
- "thunky-0.1.0" = {
- name = "thunky";
- packageName = "thunky";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz";
- sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e";
- };
- };
- "wrap-fn-0.1.5" = {
- name = "wrap-fn";
- packageName = "wrap-fn";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz";
- sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845";
- };
- };
- "co-3.1.0" = {
- name = "co";
- packageName = "co";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/co/-/co-3.1.0.tgz";
- sha1 = "4ea54ea5a08938153185e15210c68d9092bc1b78";
- };
- };
- "append-0.1.1" = {
- name = "append";
- packageName = "append";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/append/-/append-0.1.1.tgz";
- sha1 = "7e5dd327747078d877286fbb624b1e8f4d2b396b";
- };
- };
- "object-assign-1.0.0" = {
- name = "object-assign";
- packageName = "object-assign";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz";
- sha1 = "e65dc8766d3b47b4b8307465c8311da030b070a6";
- };
- };
- "airplay-js-0.2.16" = {
- name = "airplay-js";
- packageName = "airplay-js";
- version = "0.2.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/airplay-js/-/airplay-js-0.2.16.tgz";
- sha1 = "48566d5fa55a921d80187ad946f7e8f7555902a1";
- };
- };
- "clivas-0.1.4" = {
- name = "clivas";
- packageName = "clivas";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/clivas/-/clivas-0.1.4.tgz";
- sha1 = "e1c1e481d1273d57f1752132b0e4410a0d88235a";
- };
- };
- "inquirer-0.8.5" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "0.8.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz";
- sha1 = "dbd740cf6ca3b731296a63ce6f6d961851f336df";
- };
- };
- "network-address-0.0.5" = {
- name = "network-address";
- packageName = "network-address";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/network-address/-/network-address-0.0.5.tgz";
- sha1 = "a400225438cacb67cd6108e8e826d5920a705dcc";
- };
- };
- "numeral-1.5.6" = {
- name = "numeral";
- packageName = "numeral";
- version = "1.5.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz";
- sha1 = "3831db968451b9cf6aff9bf95925f1ef8e37b33f";
- };
- };
- "open-0.0.5" = {
- name = "open";
- packageName = "open";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/open/-/open-0.0.5.tgz";
- sha1 = "42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc";
- };
- };
- "optimist-0.6.1" = {
- name = "optimist";
- packageName = "optimist";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz";
- sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686";
- };
- };
- "parse-torrent-5.8.3" = {
- name = "parse-torrent";
- packageName = "parse-torrent";
- version = "5.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-5.8.3.tgz";
- sha1 = "f95ef23301239609de406794ad9f958a1bca1b6c";
- };
- };
- "pump-0.3.5" = {
- name = "pump";
- packageName = "pump";
- version = "0.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/pump/-/pump-0.3.5.tgz";
- sha1 = "ae5ff8c1f93ed87adc6530a97565b126f585454b";
- };
- };
- "rc-0.4.0" = {
- name = "rc";
- packageName = "rc";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-0.4.0.tgz";
- sha1 = "ce24a2029ad94c3a40d09604a87227027d7210d3";
- };
- };
- "torrent-stream-1.0.3" = {
- name = "torrent-stream";
- packageName = "torrent-stream";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.0.3.tgz";
- sha1 = "d8c043b44c3c448c9397a3aec42d2df55887037b";
- };
- };
- "windows-no-runnable-0.0.6" = {
- name = "windows-no-runnable";
- packageName = "windows-no-runnable";
+ "bplist-creator-0.0.6" = {
+ name = "bplist-creator";
+ packageName = "bplist-creator";
version = "0.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/windows-no-runnable/-/windows-no-runnable-0.0.6.tgz";
- sha1 = "91e5129088330a0fe248520cee12d1ad6bb4ddfb";
- };
- };
- "mdns-js-1.0.1" = {
- name = "mdns-js";
- packageName = "mdns-js";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mdns-js/-/mdns-js-1.0.1.tgz";
- sha512 = "0z9rixsyb1m6w2qjqimn0ga0qdcpnxnm0ci7zd0svzd9kivqds0zczf7r32064r8c32m94cs3lrcvwvg21d7x2s38f28r5874rjs0bp";
- };
- };
- "plist-2.1.0" = {
- name = "plist";
- packageName = "plist";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/plist/-/plist-2.1.0.tgz";
- sha1 = "57ccdb7a0821df21831217a3cad54e3e146a1025";
- };
- };
- "debug-3.1.0" = {
- name = "debug";
- packageName = "debug";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz";
- sha512 = "3g1hqsahr1ks2kpvdxrwzr57fj90nnr0hvwwrw8yyyzcv3i11sym8zwibxx67bl1mln0acddrzpkkdjjxnc6n2cm9fazmgzzsl1fzrr";
- };
- };
- "dns-js-0.2.1" = {
- name = "dns-js";
- packageName = "dns-js";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-js/-/dns-js-0.2.1.tgz";
- sha1 = "5d66629b3c0e6a5eb0e14f0ae701d05f6ea46673";
- };
- };
- "qap-3.3.1" = {
- name = "qap";
- packageName = "qap";
- version = "3.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/qap/-/qap-3.3.1.tgz";
- sha1 = "11f9e8fa8890fe7cb99210c0f44d0613b7372cac";
- };
- };
- "base64-js-1.2.0" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-1.2.0.tgz";
- sha1 = "a39992d723584811982be5e290bb6a53d86700f1";
- };
- };
- "xmlbuilder-8.2.2" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "8.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz";
- sha1 = "69248673410b4ba42e1a6136551d2922335aa773";
- };
- };
- "cli-width-1.1.1" = {
- name = "cli-width";
- packageName = "cli-width";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz";
- sha1 = "a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d";
- };
- };
- "figures-1.7.0" = {
- name = "figures";
- packageName = "figures";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz";
- sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e";
- };
- };
- "lodash-3.10.1" = {
- name = "lodash";
- packageName = "lodash";
- version = "3.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz";
- sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6";
- };
- };
- "readline2-0.1.1" = {
- name = "readline2";
- packageName = "readline2";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz";
- sha1 = "99443ba6e83b830ef3051bfd7dc241a82728d568";
- };
- };
- "rx-2.5.3" = {
- name = "rx";
- packageName = "rx";
- version = "2.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/rx/-/rx-2.5.3.tgz";
- sha1 = "21adc7d80f02002af50dae97fd9dbf248755f566";
- };
- };
- "mute-stream-0.0.4" = {
- name = "mute-stream";
- packageName = "mute-stream";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz";
- sha1 = "a9219960a6d5d5d046597aee51252c6655f7177e";
- };
- };
- "wordwrap-0.0.3" = {
- name = "wordwrap";
- packageName = "wordwrap";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz";
- sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107";
- };
- };
- "minimist-0.0.10" = {
- name = "minimist";
- packageName = "minimist";
- version = "0.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz";
- sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf";
- };
- };
- "blob-to-buffer-1.2.6" = {
- name = "blob-to-buffer";
- packageName = "blob-to-buffer";
- version = "1.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.6.tgz";
- sha1 = "089ac264c686b73ead6c539a484a8003bfbb2033";
- };
- };
- "get-stdin-5.0.1" = {
- name = "get-stdin";
- packageName = "get-stdin";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz";
- sha1 = "122e161591e21ff4c52530305693f20e6393a398";
- };
- };
- "magnet-uri-5.1.7" = {
- name = "magnet-uri";
- packageName = "magnet-uri";
- version = "5.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.1.7.tgz";
- sha1 = "8f8016ab74c415f274f4fb1943faaf7e92030eff";
- };
- };
- "parse-torrent-file-4.0.3" = {
- name = "parse-torrent-file";
- packageName = "parse-torrent-file";
- version = "4.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-4.0.3.tgz";
- sha512 = "2shaz6cv4fgbmy1hq6hc59spkja51qg0vvx514r1nqsspdnsq6xzxabk0gs17x3n8s03y9mj8hx1xn5c0bkq9fvx59sxms2a4mlig9r";
- };
- };
- "simple-get-2.7.0" = {
- name = "simple-get";
- packageName = "simple-get";
- version = "2.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-get/-/simple-get-2.7.0.tgz";
- sha512 = "2r1w3cxxmd92r19mjrlzwn6xypjd5vrx0gk21l2bmxcp1x54pavhmifbhq8llxfk6z2lmzly7g3l8rrdl19m65nzlcicwy7cfn3sha6";
- };
- };
- "thirty-two-1.0.2" = {
- name = "thirty-two";
- packageName = "thirty-two";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/thirty-two/-/thirty-two-1.0.2.tgz";
- sha1 = "4ca2fffc02a51290d2744b9e3f557693ca6b627a";
- };
- };
- "uniq-1.0.1" = {
- name = "uniq";
- packageName = "uniq";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz";
- sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff";
- };
- };
- "bencode-1.0.0" = {
- name = "bencode";
- packageName = "bencode";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bencode/-/bencode-1.0.0.tgz";
- sha512 = "1kvjv5hs1c53b5g2vghpnncn4zj397sa0vpbx1pzpn8ngq52s3xq9923gnl2kzkh1mhyrl277jrh87a766yks89qvz8b4jczr44xr9p";
- };
- };
- "simple-sha1-2.1.0" = {
- name = "simple-sha1";
- packageName = "simple-sha1";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-2.1.0.tgz";
- sha1 = "9427bb96ff1263cc10a8414cedd51a18b919e8b3";
- };
- };
- "rusha-0.8.9" = {
- name = "rusha";
- packageName = "rusha";
- version = "0.8.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/rusha/-/rusha-0.8.9.tgz";
- sha1 = "77bd0951608bf81cedb948cec9c44d8ce5662219";
- };
- };
- "decompress-response-3.3.0" = {
- name = "decompress-response";
- packageName = "decompress-response";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz";
- sha1 = "80a4dd323748384bfa248083622aedec982adff3";
- };
- };
- "simple-concat-1.0.0" = {
- name = "simple-concat";
- packageName = "simple-concat";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz";
- sha1 = "7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6";
- };
- };
- "mimic-response-1.0.0" = {
- name = "mimic-response";
- packageName = "mimic-response";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz";
- sha1 = "df3d3652a73fded6b9b0b24146e6fd052353458e";
- };
- };
- "once-1.2.0" = {
- name = "once";
- packageName = "once";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.2.0.tgz";
- sha1 = "de1905c636af874a8fba862d9aabddd1f920461c";
- };
- };
- "end-of-stream-1.0.0" = {
- name = "end-of-stream";
- packageName = "end-of-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz";
- sha1 = "d4596e702734a93e40e9af864319eabd99ff2f0e";
- };
- };
- "once-1.3.3" = {
- name = "once";
- packageName = "once";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz";
- sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20";
- };
- };
- "deep-extend-0.2.11" = {
- name = "deep-extend";
- packageName = "deep-extend";
- version = "0.2.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz";
- sha1 = "7a16ba69729132340506170494bc83f7076fe08f";
- };
- };
- "strip-json-comments-0.1.3" = {
- name = "strip-json-comments";
- packageName = "strip-json-comments";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz";
- sha1 = "164c64e370a8a3cc00c9e01b539e569823f0ee54";
- };
- };
- "ini-1.1.0" = {
- name = "ini";
- packageName = "ini";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ini/-/ini-1.1.0.tgz";
- sha1 = "4e808c2ce144c6c1788918e034d6797bc6cf6281";
- };
- };
- "bitfield-0.1.0" = {
- name = "bitfield";
- packageName = "bitfield";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bitfield/-/bitfield-0.1.0.tgz";
- sha1 = "b05d8b5f0d09f2df35a9db3b3a62d3808c46c457";
- };
- };
- "bncode-0.5.3" = {
- name = "bncode";
- packageName = "bncode";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bncode/-/bncode-0.5.3.tgz";
- sha1 = "e16661697452d436bf9886238cc791b08d66a61a";
- };
- };
- "end-of-stream-0.1.5" = {
- name = "end-of-stream";
- packageName = "end-of-stream";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz";
- sha1 = "8e177206c3c80837d85632e8b9359dfe8b2f6eaf";
- };
- };
- "fs-chunk-store-1.6.5" = {
- name = "fs-chunk-store";
- packageName = "fs-chunk-store";
- version = "1.6.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-1.6.5.tgz";
- sha1 = "fc42c2ff4c7f1688ab5fd41cf17c0f9ece4c6156";
- };
- };
- "hat-0.0.3" = {
- name = "hat";
- packageName = "hat";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/hat/-/hat-0.0.3.tgz";
- sha1 = "bb014a9e64b3788aed8005917413d4ff3d502d8a";
- };
- };
- "immediate-chunk-store-1.0.8" = {
- name = "immediate-chunk-store";
- packageName = "immediate-chunk-store";
- version = "1.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/immediate-chunk-store/-/immediate-chunk-store-1.0.8.tgz";
- sha1 = "0ecdad0c546332672d7b5b511b26bb18ce56e73f";
- };
- };
- "ip-set-1.0.1" = {
- name = "ip-set";
- packageName = "ip-set";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ip-set/-/ip-set-1.0.1.tgz";
- sha1 = "633b66d0bd6c8d0de968d053263c9120d3b6727e";
- };
- };
- "mkdirp-0.3.5" = {
- name = "mkdirp";
- packageName = "mkdirp";
- version = "0.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz";
- sha1 = "de3e5f8961c88c787ee1368df849ac4413eca8d7";
- };
- };
- "parse-torrent-4.1.0" = {
- name = "parse-torrent";
- packageName = "parse-torrent";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-4.1.0.tgz";
- sha1 = "a814bd8505e8b58e88eb8ff3e2daff5d19a711b7";
- };
- };
- "peer-wire-swarm-0.12.1" = {
- name = "peer-wire-swarm";
- packageName = "peer-wire-swarm";
- version = "0.12.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.12.1.tgz";
- sha1 = "51b75da99c335c64c9ba9ef99fe27a4a5951ff42";
- };
- };
- "torrent-discovery-5.4.0" = {
- name = "torrent-discovery";
- packageName = "torrent-discovery";
- version = "5.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-5.4.0.tgz";
- sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29";
- };
- };
- "torrent-piece-1.1.1" = {
- name = "torrent-piece";
- packageName = "torrent-piece";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-1.1.1.tgz";
- sha1 = "50346e42a43b35daf2a86f414afb153629a854be";
- };
- };
- "random-access-file-1.8.1" = {
- name = "random-access-file";
- packageName = "random-access-file";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/random-access-file/-/random-access-file-1.8.1.tgz";
- sha512 = "3pvi9knrjp8krj1hsg8i2qmv5097fid3qnyz4wh2dvpr37x2ga6qqk7afh5f1i5sb9dsw169bara13knccdmjwnivb62xgywz868j7r";
- };
- };
- "run-parallel-1.1.6" = {
- name = "run-parallel";
- packageName = "run-parallel";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.6.tgz";
- sha1 = "29003c9a2163e01e2d2dfc90575f2c6c1d61a039";
- };
- };
- "thunky-1.0.2" = {
- name = "thunky";
- packageName = "thunky";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/thunky/-/thunky-1.0.2.tgz";
- sha1 = "a862e018e3fb1ea2ec3fce5d55605cf57f247371";
- };
- };
- "buffer-alloc-unsafe-1.0.0" = {
- name = "buffer-alloc-unsafe";
- packageName = "buffer-alloc-unsafe";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.0.0.tgz";
- sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe";
- };
- };
- "ip-1.1.5" = {
- name = "ip";
- packageName = "ip";
- version = "1.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz";
- sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
- };
- };
- "magnet-uri-4.2.3" = {
- name = "magnet-uri";
- packageName = "magnet-uri";
- version = "4.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-4.2.3.tgz";
- sha1 = "79cc6d65a00bb5b7ef5c25ae60ebbb5d9a7681a8";
- };
- };
- "parse-torrent-file-2.1.4" = {
- name = "parse-torrent-file";
- packageName = "parse-torrent-file";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-2.1.4.tgz";
- sha1 = "32d4b6afde631420e5f415919a222b774b575707";
- };
- };
- "flatten-0.0.1" = {
- name = "flatten";
- packageName = "flatten";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/flatten/-/flatten-0.0.1.tgz";
- sha1 = "554440766da0a0d603999f433453f6c2fc6a75c1";
- };
- };
- "thirty-two-0.0.2" = {
- name = "thirty-two";
- packageName = "thirty-two";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/thirty-two/-/thirty-two-0.0.2.tgz";
- sha1 = "4253e29d8cb058f0480267c5698c0e4927e54b6a";
- };
- };
- "bencode-0.7.0" = {
- name = "bencode";
- packageName = "bencode";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bencode/-/bencode-0.7.0.tgz";
- sha1 = "811ed647c0118945e41bb4bbbdea9a2c78a17083";
- };
- };
- "fifo-0.1.4" = {
- name = "fifo";
- packageName = "fifo";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/fifo/-/fifo-0.1.4.tgz";
- sha1 = "bf42d87c0ad07b00d0949d12388f6289606ece34";
- };
- };
- "peer-wire-protocol-0.7.0" = {
- name = "peer-wire-protocol";
- packageName = "peer-wire-protocol";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/peer-wire-protocol/-/peer-wire-protocol-0.7.0.tgz";
- sha1 = "6c015abf24b4877ed9eca3822b22d996078011da";
- };
- };
- "speedometer-0.1.4" = {
- name = "speedometer";
- packageName = "speedometer";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz";
- sha1 = "9876dbd2a169d3115402d48e6ea6329c8816a50d";
- };
- };
- "utp-0.0.7" = {
- name = "utp";
- packageName = "utp";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/utp/-/utp-0.0.7.tgz";
- sha1 = "ae43eb7745f5fe63dcc2f277cb4164ad27087f30";
- };
- };
- "bncode-0.2.3" = {
- name = "bncode";
- packageName = "bncode";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bncode/-/bncode-0.2.3.tgz";
- sha1 = "37f851dc8e47188a83fbc0f6fa4775cacc9a3296";
- };
- };
- "cyclist-0.1.1" = {
- name = "cyclist";
- packageName = "cyclist";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cyclist/-/cyclist-0.1.1.tgz";
- sha1 = "1bcfa56b081448cdb5e12bfc1bfad34b47fba8f3";
- };
- };
- "bittorrent-dht-6.4.2" = {
- name = "bittorrent-dht";
- packageName = "bittorrent-dht";
- version = "6.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-6.4.2.tgz";
- sha1 = "8b40f8cee6bea87f2b34fd2ae0bd367a8b1247a6";
- };
- };
- "bittorrent-tracker-7.7.0" = {
- name = "bittorrent-tracker";
- packageName = "bittorrent-tracker";
- version = "7.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-7.7.0.tgz";
- sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c";
- };
- };
- "re-emitter-1.1.3" = {
- name = "re-emitter";
- packageName = "re-emitter";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/re-emitter/-/re-emitter-1.1.3.tgz";
- sha1 = "fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7";
- };
- };
- "buffer-equals-1.0.4" = {
- name = "buffer-equals";
- packageName = "buffer-equals";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz";
- sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
- };
- };
- "k-bucket-0.6.0" = {
- name = "k-bucket";
- packageName = "k-bucket";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-bucket/-/k-bucket-0.6.0.tgz";
- sha1 = "afc532545f69d466293e887b00d5fc73377c3abb";
- };
- };
- "k-rpc-3.7.0" = {
- name = "k-rpc";
- packageName = "k-rpc";
- version = "3.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc/-/k-rpc-3.7.0.tgz";
- sha1 = "641f99b2825be34b6e7984f22b7962dc1a906c23";
- };
- };
- "lru-2.0.1" = {
- name = "lru";
- packageName = "lru";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru/-/lru-2.0.1.tgz";
- sha1 = "f979871e162e3f5ca254be46844c53d4c5364544";
- };
- };
- "buffer-equal-0.0.1" = {
- name = "buffer-equal";
- packageName = "buffer-equal";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz";
- sha1 = "91bc74b11ea405bc916bc6aa908faafa5b4aac4b";
- };
- };
- "k-bucket-2.0.1" = {
- name = "k-bucket";
- packageName = "k-bucket";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-bucket/-/k-bucket-2.0.1.tgz";
- sha1 = "58cccb244f563326ba893bf5c06a35f644846daa";
- };
- };
- "k-rpc-socket-1.7.2" = {
- name = "k-rpc-socket";
- packageName = "k-rpc-socket";
- version = "1.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.7.2.tgz";
- sha512 = "02w1ih1lh86i5ap7c3dy2ml7g5a11r0w300iyxdf6v02qr0j1x3vf78hx5q9dgg3drifab018mgm851m457zzzi05i2z2r1s3zlflc3";
- };
- };
- "bencode-0.8.0" = {
- name = "bencode";
- packageName = "bencode";
- version = "0.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bencode/-/bencode-0.8.0.tgz";
- sha1 = "3143448e82b0fadc745633ecc2a5f8fa87932f19";
- };
- };
- "compact2string-1.4.0" = {
- name = "compact2string";
- packageName = "compact2string";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/compact2string/-/compact2string-1.4.0.tgz";
- sha1 = "a99cd96ea000525684b269683ae2222d6eea7b49";
- };
- };
- "random-iterate-1.0.1" = {
- name = "random-iterate";
- packageName = "random-iterate";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/random-iterate/-/random-iterate-1.0.1.tgz";
- sha1 = "f7d97d92dee6665ec5f6da08c7f963cad4b2ac99";
- };
- };
- "run-series-1.1.4" = {
- name = "run-series";
- packageName = "run-series";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/run-series/-/run-series-1.1.4.tgz";
- sha1 = "89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9";
- };
- };
- "simple-peer-6.4.4" = {
- name = "simple-peer";
- packageName = "simple-peer";
- version = "6.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-peer/-/simple-peer-6.4.4.tgz";
- sha1 = "4e421f485ac7b13b08077a4476934d52c5ba3bb3";
- };
- };
- "simple-websocket-4.3.1" = {
- name = "simple-websocket";
- packageName = "simple-websocket";
- version = "4.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-websocket/-/simple-websocket-4.3.1.tgz";
- sha1 = "5d3d5751bb39aeba2f710d8eec78768df821f38d";
- };
- };
- "string2compact-1.2.2" = {
- name = "string2compact";
- packageName = "string2compact";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/string2compact/-/string2compact-1.2.2.tgz";
- sha1 = "420b3a9ee1c46854919b4a2aeac65c43fa50597b";
- };
- };
- "ws-1.1.5" = {
- name = "ws";
- packageName = "ws";
- version = "1.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz";
- sha512 = "3iv2yz706h7wyg563jsfjdykkkxs8j49vz60r6qx5by0npfhs98rgc114kdqs15sc52mldscc22bkfpkrs08cwlqaxx8lfdjn5alwm3";
- };
- };
- "ipaddr.js-1.5.4" = {
- name = "ipaddr.js";
- packageName = "ipaddr.js";
- version = "1.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.4.tgz";
- sha1 = "962263d9d26132956fc5c630b638a30d3cdffc14";
- };
- };
- "get-browser-rtc-1.0.2" = {
- name = "get-browser-rtc";
- packageName = "get-browser-rtc";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-browser-rtc/-/get-browser-rtc-1.0.2.tgz";
- sha1 = "bbcd40c8451a7ed4ef5c373b8169a409dd1d11d9";
- };
- };
- "ws-2.3.1" = {
- name = "ws";
- packageName = "ws";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-2.3.1.tgz";
- sha1 = "6b94b3e447cb6a363f785eaf94af6359e8e81c80";
- };
- };
- "safe-buffer-5.0.1" = {
- name = "safe-buffer";
- packageName = "safe-buffer";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz";
- sha1 = "d263ca54696cd8a306b5ca6551e92de57918fbe7";
- };
- };
- "ultron-1.1.1" = {
- name = "ultron";
- packageName = "ultron";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz";
- sha512 = "0x78hsv3jykmjl6qdqlqiz7v5nf06li8b5yvzpj6grnzwbcjch8ngyg55lm8g8mg4znvk7qbryvrr2dxacz3cvyb1nsm64qsw21g0ah";
- };
- };
- "addr-to-ip-port-1.4.2" = {
- name = "addr-to-ip-port";
- packageName = "addr-to-ip-port";
- version = "1.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.4.2.tgz";
- sha1 = "7e46ff1f26b7a9f5e33fd839d57aef6303b4c692";
- };
- };
- "options-0.0.6" = {
- name = "options";
- packageName = "options";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/options/-/options-0.0.6.tgz";
- sha1 = "ec22d312806bb53e731773e7cdaefcf1c643128f";
- };
- };
- "ultron-1.0.2" = {
- name = "ultron";
- packageName = "ultron";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz";
- sha1 = "ace116ab557cd197386a4e88f4685378c8b2e4fa";
- };
- };
- "chalk-0.5.1" = {
- name = "chalk";
- packageName = "chalk";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz";
- sha1 = "663b3a648b68b55d04690d49167aa837858f2174";
- };
- };
- "pad-0.0.5" = {
- name = "pad";
- packageName = "pad";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/pad/-/pad-0.0.5.tgz";
- sha1 = "2219ab4db2ac74549a676164bc475d68cb87de05";
- };
- };
- "single-line-log-0.4.1" = {
- name = "single-line-log";
- packageName = "single-line-log";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/single-line-log/-/single-line-log-0.4.1.tgz";
- sha1 = "87a55649f749d783ec0dcd804e8140d9873c7cee";
- };
- };
- "ansi-styles-1.1.0" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz";
- sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de";
- };
- };
- "has-ansi-0.1.0" = {
- name = "has-ansi";
- packageName = "has-ansi";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz";
- sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e";
- };
- };
- "strip-ansi-0.3.0" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz";
- sha1 = "25f48ea22ca79187f3174a4db8759347bb126220";
- };
- };
- "supports-color-0.2.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz";
- sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a";
- };
- };
- "ansi-regex-0.2.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz";
- sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9";
- };
- };
- "magnet-uri-2.0.1" = {
- name = "magnet-uri";
- packageName = "magnet-uri";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-2.0.1.tgz";
- sha1 = "d331d3dfcd3836565ade0fc3ca315e39217bb209";
- };
- };
- "request-2.16.6" = {
- name = "request";
- packageName = "request";
- version = "2.16.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.16.6.tgz";
- sha1 = "872fe445ae72de266b37879d6ad7dc948fa01cad";
- };
- };
- "form-data-0.0.10" = {
- name = "form-data";
- packageName = "form-data";
- version = "0.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz";
- sha1 = "db345a5378d86aeeb1ed5d553b869ac192d2f5ed";
- };
- };
- "mime-1.2.11" = {
- name = "mime";
- packageName = "mime";
- version = "1.2.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz";
- sha1 = "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10";
- };
- };
- "hawk-0.10.2" = {
- name = "hawk";
- packageName = "hawk";
- version = "0.10.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz";
- sha1 = "9b361dee95a931640e6d504e05609a8fc3ac45d2";
- };
- };
- "node-uuid-1.4.8" = {
- name = "node-uuid";
- packageName = "node-uuid";
- version = "1.4.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz";
- sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907";
- };
- };
- "cookie-jar-0.2.0" = {
- name = "cookie-jar";
- packageName = "cookie-jar";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz";
- sha1 = "64ecc06ac978db795e4b5290cbe48ba3781400fa";
- };
- };
- "aws-sign-0.2.0" = {
- name = "aws-sign";
- packageName = "aws-sign";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz";
- sha1 = "c55013856c8194ec854a0cbec90aab5a04ce3ac5";
- };
- };
- "oauth-sign-0.2.0" = {
- name = "oauth-sign";
- packageName = "oauth-sign";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz";
- sha1 = "a0e6a1715daed062f322b622b7fe5afd1035b6e2";
- };
- };
- "forever-agent-0.2.0" = {
- name = "forever-agent";
- packageName = "forever-agent";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz";
- sha1 = "e1c25c7ad44e09c38f233876c76fcc24ff843b1f";
- };
- };
- "tunnel-agent-0.2.0" = {
- name = "tunnel-agent";
- packageName = "tunnel-agent";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz";
- sha1 = "6853c2afb1b2109e45629e492bde35f459ea69e8";
- };
- };
- "json-stringify-safe-3.0.0" = {
- name = "json-stringify-safe";
- packageName = "json-stringify-safe";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz";
- sha1 = "9db7b0e530c7f289c5e8c8432af191c2ff75a5b3";
- };
- };
- "qs-0.5.6" = {
- name = "qs";
- packageName = "qs";
- version = "0.5.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz";
- sha1 = "31b1ad058567651c526921506b9a8793911a0384";
- };
- };
- "combined-stream-0.0.7" = {
- name = "combined-stream";
- packageName = "combined-stream";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz";
- sha1 = "0137e657baa5a7541c57ac37ac5fc07d73b4dc1f";
- };
- };
- "delayed-stream-0.0.5" = {
- name = "delayed-stream";
- packageName = "delayed-stream";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz";
- sha1 = "d4b1f43a93e8296dfe02694f4680bc37a313c73f";
- };
- };
- "hoek-0.7.6" = {
- name = "hoek";
- packageName = "hoek";
- version = "0.7.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz";
- sha1 = "60fbd904557541cd2b8795abf308a1b3770e155a";
- };
- };
- "boom-0.3.8" = {
- name = "boom";
- packageName = "boom";
- version = "0.3.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz";
- sha1 = "c8cdb041435912741628c044ecc732d1d17c09ea";
- };
- };
- "cryptiles-0.1.3" = {
- name = "cryptiles";
- packageName = "cryptiles";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz";
- sha1 = "1a556734f06d24ba34862ae9cb9e709a3afbff1c";
- };
- };
- "sntp-0.1.4" = {
- name = "sntp";
- packageName = "sntp";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz";
- sha1 = "5ef481b951a7b29affdf4afd7f26838fc1120f84";
- };
- };
- "codepage-1.4.0" = {
- name = "codepage";
- packageName = "codepage";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/codepage/-/codepage-1.4.0.tgz";
- sha1 = "ffd5b603ae6a8ebb63559d5fb89a57d12b943837";
- };
- };
- "utfx-1.0.1" = {
- name = "utfx";
- packageName = "utfx";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/utfx/-/utfx-1.0.1.tgz";
- sha1 = "d52b2fd632a99eca8d9d4a39eece014a6a2b0048";
- };
- };
- "voc-1.0.0" = {
- name = "voc";
- packageName = "voc";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/voc/-/voc-1.0.0.tgz";
- sha512 = "1zss1rcd373slj9qjmy4zp7ann95isbkvjlrgp2dirpazvn1sy23hgnw6p72w0mj8hcgqpxvs0ls035zmb8isilqhqqpkmya9d3234r";
- };
- };
- "exit-on-epipe-1.0.1" = {
- name = "exit-on-epipe";
- packageName = "exit-on-epipe";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz";
- sha512 = "2kxcf7dq1q9z2wqwwfjagn77kpzg2zpjqf2kd3vj5drx576gwglbsfly2b1imabj3svgcz5xsx79kspq1xsdgm4wwg1fksfnjdgjv47";
- };
- };
- "sax-1.2.4" = {
- name = "sax";
- packageName = "sax";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
- sha512 = "1dn291mjsda42w8kldlbmngk6dhjxfbvvd5lckyqmwbjaj6069iq3wx0nvcfglwnpddz2qa93lzf4hv77iz43bd2qixa079sjzl799n";
- };
- };
- "xmlbuilder-9.0.4" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "9.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.4.tgz";
- sha1 = "519cb4ca686d005a8420d3496f3f0caeecca580f";
- };
- };
- "axios-0.17.1" = {
- name = "axios";
- packageName = "axios";
- version = "0.17.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/axios/-/axios-0.17.1.tgz";
- sha1 = "2d8e3e5d0bdbd7327f91bc814f5c57660f81824d";
- };
- };
- "cfonts-1.1.3" = {
- name = "cfonts";
- packageName = "cfonts";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cfonts/-/cfonts-1.1.3.tgz";
- sha1 = "5d9a7a6bf1a023fc2d535da7264ea90ecd9dbf48";
- };
- };
- "cli-table2-0.2.0" = {
- name = "cli-table2";
- packageName = "cli-table2";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-table2/-/cli-table2-0.2.0.tgz";
- sha1 = "2d1ef7f218a0e786e214540562d4bd177fe32d97";
- };
- };
- "humanize-plus-1.8.2" = {
- name = "humanize-plus";
- packageName = "humanize-plus";
- version = "1.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/humanize-plus/-/humanize-plus-1.8.2.tgz";
- sha1 = "a65b34459ad6367adbb3707a82a3c9f916167030";
- };
- };
- "ora-1.3.0" = {
- name = "ora";
- packageName = "ora";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ora/-/ora-1.3.0.tgz";
- sha1 = "80078dd2b92a934af66a3ad72a5b910694ede51a";
- };
- };
- "follow-redirects-1.2.6" = {
- name = "follow-redirects";
- packageName = "follow-redirects";
- version = "1.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.2.6.tgz";
- sha512 = "1h8p8m3gkaav4s3l03h3kgg3gi264n9hgaq2yjjdzvvxfq1wrnw6sh2avrazpf7bihh44q8x5b59x551xaygfm3dvkx2djfy5kjmcqn";
- };
- };
- "babel-runtime-6.22.0" = {
- name = "babel-runtime";
- packageName = "babel-runtime";
- version = "6.22.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.22.0.tgz";
- sha1 = "1cf8b4ac67c77a4ddb0db2ae1f74de52ac4ca611";
- };
- };
- "change-case-3.0.0" = {
- name = "change-case";
- packageName = "change-case";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/change-case/-/change-case-3.0.0.tgz";
- sha1 = "6c9c8e35f8790870a82b6b0745be8c3cbef9b081";
- };
- };
- "commander-2.9.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz";
- sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
- };
- };
- "window-size-0.3.0" = {
- name = "window-size";
- packageName = "window-size";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/window-size/-/window-size-0.3.0.tgz";
- sha1 = "b8f0b66e325d22160751e496337e44b45b727546";
- };
- };
- "regenerator-runtime-0.10.5" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.10.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
- sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
- };
- };
- "camel-case-3.0.0" = {
- name = "camel-case";
- packageName = "camel-case";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz";
- sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73";
- };
- };
- "constant-case-2.0.0" = {
- name = "constant-case";
- packageName = "constant-case";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz";
- sha1 = "4175764d389d3fa9c8ecd29186ed6005243b6a46";
- };
- };
- "dot-case-2.1.1" = {
- name = "dot-case";
- packageName = "dot-case";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz";
- sha1 = "34dcf37f50a8e93c2b3bca8bb7fb9155c7da3bee";
- };
- };
- "header-case-1.0.1" = {
- name = "header-case";
- packageName = "header-case";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz";
- sha1 = "9535973197c144b09613cd65d317ef19963bd02d";
- };
- };
- "is-lower-case-1.1.3" = {
- name = "is-lower-case";
- packageName = "is-lower-case";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz";
- sha1 = "7e147be4768dc466db3bfb21cc60b31e6ad69393";
- };
- };
- "is-upper-case-1.1.2" = {
- name = "is-upper-case";
- packageName = "is-upper-case";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz";
- sha1 = "8d0b1fa7e7933a1e58483600ec7d9661cbaf756f";
- };
- };
- "lower-case-1.1.4" = {
- name = "lower-case";
- packageName = "lower-case";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz";
- sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac";
- };
- };
- "lower-case-first-1.0.2" = {
- name = "lower-case-first";
- packageName = "lower-case-first";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz";
- sha1 = "e5da7c26f29a7073be02d52bac9980e5922adfa1";
- };
- };
- "no-case-2.3.2" = {
- name = "no-case";
- packageName = "no-case";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz";
- sha512 = "34msnfifpdmxl414b8rch1p1six59jd9251b7wkb37n78fa84xfa5f5f5cxxp477wb846nfrsg6b1py3rahz4xdpk17lzzy9kvdjr5f";
- };
- };
- "param-case-2.1.1" = {
- name = "param-case";
- packageName = "param-case";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz";
- sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247";
- };
- };
- "pascal-case-2.0.1" = {
- name = "pascal-case";
- packageName = "pascal-case";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz";
- sha1 = "2d578d3455f660da65eca18ef95b4e0de912761e";
- };
- };
- "path-case-2.1.1" = {
- name = "path-case";
- packageName = "path-case";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz";
- sha1 = "94b8037c372d3fe2906e465bb45e25d226e8eea5";
- };
- };
- "sentence-case-2.1.1" = {
- name = "sentence-case";
- packageName = "sentence-case";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sentence-case/-/sentence-case-2.1.1.tgz";
- sha1 = "1f6e2dda39c168bf92d13f86d4a918933f667ed4";
- };
- };
- "snake-case-2.1.0" = {
- name = "snake-case";
- packageName = "snake-case";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snake-case/-/snake-case-2.1.0.tgz";
- sha1 = "41bdb1b73f30ec66a04d4e2cad1b76387d4d6d9f";
- };
- };
- "swap-case-1.1.2" = {
- name = "swap-case";
- packageName = "swap-case";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/swap-case/-/swap-case-1.1.2.tgz";
- sha1 = "c39203a4587385fad3c850a0bd1bcafa081974e3";
- };
- };
- "title-case-2.1.1" = {
- name = "title-case";
- packageName = "title-case";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz";
- sha1 = "3e127216da58d2bc5becf137ab91dae3a7cd8faa";
- };
- };
- "upper-case-1.1.3" = {
- name = "upper-case";
- packageName = "upper-case";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz";
- sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598";
- };
- };
- "upper-case-first-1.1.2" = {
- name = "upper-case-first";
- packageName = "upper-case-first";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.2.tgz";
- sha1 = "5d79bedcff14419518fd2edb0a0507c9b6859115";
- };
- };
- "graceful-readlink-1.0.1" = {
- name = "graceful-readlink";
- packageName = "graceful-readlink";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
- sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
- };
- };
- "string-width-1.0.2" = {
- name = "string-width";
- packageName = "string-width";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
- sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
- };
- };
- "code-point-at-1.1.0" = {
- name = "code-point-at";
- packageName = "code-point-at";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
- sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
- };
- };
- "is-fullwidth-code-point-1.0.0" = {
- name = "is-fullwidth-code-point";
- packageName = "is-fullwidth-code-point";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
- sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
- };
- };
- "cli-cursor-2.1.0" = {
- name = "cli-cursor";
- packageName = "cli-cursor";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz";
- sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5";
- };
- };
- "cli-spinners-1.1.0" = {
- name = "cli-spinners";
- packageName = "cli-spinners";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.1.0.tgz";
- sha1 = "f1847b168844d917a671eb9d147e3df497c90d06";
- };
- };
- "log-symbols-1.0.2" = {
- name = "log-symbols";
- packageName = "log-symbols";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz";
- sha1 = "376ff7b58ea3086a0f09facc74617eca501e1a18";
- };
- };
- "restore-cursor-2.0.0" = {
- name = "restore-cursor";
- packageName = "restore-cursor";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz";
- sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf";
- };
- };
- "onetime-2.0.1" = {
- name = "onetime";
- packageName = "onetime";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz";
- sha1 = "067428230fd67443b2794b22bba528b6867962d4";
- };
- };
- "mimic-fn-1.1.0" = {
- name = "mimic-fn";
- packageName = "mimic-fn";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz";
- sha1 = "e667783d92e89dbd342818b5230b9d62a672ad18";
- };
- };
- "configstore-2.1.0" = {
- name = "configstore";
- packageName = "configstore";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/configstore/-/configstore-2.1.0.tgz";
- sha1 = "737a3a7036e9886102aa6099e47bb33ab1aba1a1";
- };
- };
- "cordova-common-2.2.1" = {
- name = "cordova-common";
- packageName = "cordova-common";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-common/-/cordova-common-2.2.1.tgz";
- sha1 = "7009bc591729caa7285a588cfd6a7b54cd834f0c";
- };
- };
- "cordova-lib-8.0.0" = {
- name = "cordova-lib";
- packageName = "cordova-lib";
- version = "8.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-8.0.0.tgz";
- sha1 = "864bd5de6b79fc4944361460aa3214e59da936f2";
- };
- };
- "editor-1.0.0" = {
- name = "editor";
- packageName = "editor";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/editor/-/editor-1.0.0.tgz";
- sha1 = "60c7f87bd62bcc6a894fa8ccd6afb7823a24f742";
- };
- };
- "insight-0.8.4" = {
- name = "insight";
- packageName = "insight";
- version = "0.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/insight/-/insight-0.8.4.tgz";
- sha1 = "671caf65b47c9fe8c3d1b3206cf45bb211b75884";
- };
- };
- "nopt-3.0.1" = {
- name = "nopt";
- packageName = "nopt";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-3.0.1.tgz";
- sha1 = "bce5c42446a3291f47622a370abbf158fbbacbfd";
- };
- };
- "update-notifier-0.5.0" = {
- name = "update-notifier";
- packageName = "update-notifier";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-0.5.0.tgz";
- sha1 = "07b5dc2066b3627ab3b4f530130f7eddda07a4cc";
- };
- };
- "dot-prop-3.0.0" = {
- name = "dot-prop";
- packageName = "dot-prop";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz";
- sha1 = "1b708af094a49c9a0e7dbcad790aba539dac1177";
- };
- };
- "osenv-0.1.4" = {
- name = "osenv";
- packageName = "osenv";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz";
- sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644";
- };
- };
- "uuid-2.0.3" = {
- name = "uuid";
- packageName = "uuid";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz";
- sha1 = "67e2e863797215530dff318e5bf9dcebfd47b21a";
- };
- };
- "write-file-atomic-1.3.4" = {
- name = "write-file-atomic";
- packageName = "write-file-atomic";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz";
- sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f";
- };
- };
- "xdg-basedir-2.0.0" = {
- name = "xdg-basedir";
- packageName = "xdg-basedir";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz";
- sha1 = "edbc903cc385fc04523d966a335504b5504d1bd2";
- };
- };
- "is-obj-1.0.1" = {
- name = "is-obj";
- packageName = "is-obj";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz";
- sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f";
- };
- };
- "imurmurhash-0.1.4" = {
- name = "imurmurhash";
- packageName = "imurmurhash";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
- sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
- };
- };
- "slide-1.1.6" = {
- name = "slide";
- packageName = "slide";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz";
- sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707";
- };
- };
- "ansi-0.3.1" = {
- name = "ansi";
- packageName = "ansi";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz";
- sha1 = "0c42d4fb17160d5a9af1e484bace1c66922c1b21";
- };
- };
- "bplist-parser-0.1.1" = {
- name = "bplist-parser";
- packageName = "bplist-parser";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz";
- sha1 = "d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6";
- };
- };
- "cordova-registry-mapper-1.1.15" = {
- name = "cordova-registry-mapper";
- packageName = "cordova-registry-mapper";
- version = "1.1.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-registry-mapper/-/cordova-registry-mapper-1.1.15.tgz";
- sha1 = "e244b9185b8175473bff6079324905115f83dc7c";
- };
- };
- "elementtree-0.1.6" = {
- name = "elementtree";
- packageName = "elementtree";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/elementtree/-/elementtree-0.1.6.tgz";
- sha1 = "2ac4c46ea30516c8c4cbdb5e3ac7418e592de20c";
- };
- };
- "glob-5.0.15" = {
- name = "glob";
- packageName = "glob";
- version = "5.0.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz";
- sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1";
- };
- };
- "plist-1.2.0" = {
- name = "plist";
- packageName = "plist";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/plist/-/plist-1.2.0.tgz";
- sha1 = "084b5093ddc92506e259f874b8d9b1afb8c79593";
- };
- };
- "shelljs-0.5.3" = {
- name = "shelljs";
- packageName = "shelljs";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz";
- sha1 = "c54982b996c76ef0c1e6b59fbdc5825f5b713113";
- };
- };
- "underscore-1.8.3" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz";
- sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022";
- };
- };
- "unorm-1.4.1" = {
- name = "unorm";
- packageName = "unorm";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/unorm/-/unorm-1.4.1.tgz";
- sha1 = "364200d5f13646ca8bcd44490271335614792300";
- };
- };
- "big-integer-1.6.26" = {
- name = "big-integer";
- packageName = "big-integer";
- version = "1.6.26";
- src = fetchurl {
- url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.26.tgz";
- sha1 = "3af1672fa62daf2d5ecafacf6e5aa0d25e02c1c8";
- };
- };
- "sax-0.3.5" = {
- name = "sax";
- packageName = "sax";
- version = "0.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/sax/-/sax-0.3.5.tgz";
- sha1 = "88fcfc1f73c0c8bbd5b7c776b6d3f3501eed073d";
- };
- };
- "base64-js-0.0.8" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "0.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz";
- sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978";
- };
- };
- "xmlbuilder-4.0.0" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz";
- sha1 = "98b8f651ca30aa624036f127d11cc66dc7b907a3";
- };
- };
- "aliasify-2.1.0" = {
- name = "aliasify";
- packageName = "aliasify";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aliasify/-/aliasify-2.1.0.tgz";
- sha1 = "7c30825b9450b9e6185ba27533eaf6e2067d4b42";
- };
- };
- "cordova-create-1.1.2" = {
- name = "cordova-create";
- packageName = "cordova-create";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-create/-/cordova-create-1.1.2.tgz";
- sha1 = "83b09271b378d1c03bc7d9a786fedd60485c3ccf";
- };
- };
- "cordova-fetch-1.3.0" = {
- name = "cordova-fetch";
- packageName = "cordova-fetch";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-fetch/-/cordova-fetch-1.3.0.tgz";
- sha1 = "4986d0779b36eb239822c2ab413a47ff9f097fea";
- };
- };
- "cordova-js-4.2.2" = {
- name = "cordova-js";
- packageName = "cordova-js";
- version = "4.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-js/-/cordova-js-4.2.2.tgz";
- sha1 = "a7eb20911e6a59f15ac64e7db6ec543df31c2f92";
- };
- };
- "cordova-serve-2.0.0" = {
- name = "cordova-serve";
- packageName = "cordova-serve";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-serve/-/cordova-serve-2.0.0.tgz";
- sha1 = "d7834b83b186607e2b8f1943e073c0633360ea43";
- };
- };
- "dep-graph-1.1.0" = {
- name = "dep-graph";
- packageName = "dep-graph";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dep-graph/-/dep-graph-1.1.0.tgz";
- sha1 = "fade86a92799a813e9b42511cdf3dfa6cc8dbefe";
- };
- };
- "detect-indent-5.0.0" = {
- name = "detect-indent";
- packageName = "detect-indent";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz";
- sha1 = "3871cc0a6a002e8c3e5b3cf7f336264675f06b9d";
- };
- };
- "dependency-ls-1.1.1" = {
- name = "dependency-ls";
- packageName = "dependency-ls";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dependency-ls/-/dependency-ls-1.1.1.tgz";
- sha1 = "0481b07f023d74ce311192e5c690d13e18600054";
- };
- };
- "glob-7.1.1" = {
- name = "glob";
- packageName = "glob";
- version = "7.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz";
- sha1 = "805211df04faaf1c63a3600306cdf5ade50b2ec8";
- };
- };
- "init-package-json-1.10.1" = {
- name = "init-package-json";
- packageName = "init-package-json";
- version = "1.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.10.1.tgz";
- sha1 = "cd873a167796befb99612b28762a0b6393fd8f6a";
- };
- };
- "nopt-4.0.1" = {
- name = "nopt";
- packageName = "nopt";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
- sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
- };
- };
- "opener-1.4.2" = {
- name = "opener";
- packageName = "opener";
- version = "1.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/opener/-/opener-1.4.2.tgz";
- sha1 = "b32582080042af8680c389a499175b4c54fff523";
- };
- };
- "plist-2.0.1" = {
- name = "plist";
- packageName = "plist";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/plist/-/plist-2.0.1.tgz";
- sha1 = "0a32ca9481b1c364e92e18dc55c876de9d01da8b";
- };
- };
- "properties-parser-0.3.1" = {
- name = "properties-parser";
- packageName = "properties-parser";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/properties-parser/-/properties-parser-0.3.1.tgz";
- sha1 = "1316e9539ffbfd93845e369b211022abd478771a";
- };
- };
- "q-1.0.1" = {
- name = "q";
- packageName = "q";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/q/-/q-1.0.1.tgz";
- sha1 = "11872aeedee89268110b10a718448ffb10112a14";
- };
- };
- "request-2.79.0" = {
- name = "request";
- packageName = "request";
- version = "2.79.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz";
- sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de";
- };
- };
- "shelljs-0.3.0" = {
- name = "shelljs";
- packageName = "shelljs";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz";
- sha1 = "3596e6307a781544f591f37da618360f31db57b1";
- };
- };
- "tar-2.2.1" = {
- name = "tar";
- packageName = "tar";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz";
- sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
- };
- };
- "valid-identifier-0.0.1" = {
- name = "valid-identifier";
- packageName = "valid-identifier";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/valid-identifier/-/valid-identifier-0.0.1.tgz";
- sha1 = "ef1d7093a9d3287e3fce92df916f8616b23f90b4";
- };
- };
- "xcode-1.0.0" = {
- name = "xcode";
- packageName = "xcode";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xcode/-/xcode-1.0.0.tgz";
- sha1 = "e1f5b1443245ded38c180796df1a10fdeda084ec";
- };
- };
- "browserify-transform-tools-1.7.0" = {
- name = "browserify-transform-tools";
- packageName = "browserify-transform-tools";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-transform-tools/-/browserify-transform-tools-1.7.0.tgz";
- sha1 = "83e277221f63259bed2e7eb2a283a970a501f4c4";
- };
- };
- "falafel-2.1.0" = {
- name = "falafel";
- packageName = "falafel";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/falafel/-/falafel-2.1.0.tgz";
- sha1 = "96bb17761daba94f46d001738b3cedf3a67fe06c";
- };
- };
- "foreach-2.0.5" = {
- name = "foreach";
- packageName = "foreach";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz";
- sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99";
- };
- };
- "object-keys-1.0.11" = {
- name = "object-keys";
- packageName = "object-keys";
- version = "1.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz";
- sha1 = "c54601778ad560f1142ce0e01bcca8b56d13426d";
- };
- };
- "cordova-app-hello-world-3.12.0" = {
- name = "cordova-app-hello-world";
- packageName = "cordova-app-hello-world";
- version = "3.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cordova-app-hello-world/-/cordova-app-hello-world-3.12.0.tgz";
- sha1 = "270e06b67b2ae94bcfee6592ed39eb42303d186f";
- };
- };
- "is-url-1.2.2" = {
- name = "is-url";
- packageName = "is-url";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-url/-/is-url-1.2.2.tgz";
- sha1 = "498905a593bf47cc2d9e7f738372bbf7696c7f26";
- };
- };
- "shelljs-0.7.8" = {
- name = "shelljs";
- packageName = "shelljs";
- version = "0.7.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz";
- sha1 = "decbcf874b0d1e5fb72e14b164a9683048e9acb3";
- };
- };
- "interpret-1.1.0" = {
- name = "interpret";
- packageName = "interpret";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
- sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
- };
- };
- "rechoir-0.6.2" = {
- name = "rechoir";
- packageName = "rechoir";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
- sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
- };
- };
- "browserify-14.4.0" = {
- name = "browserify";
- packageName = "browserify";
- version = "14.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify/-/browserify-14.4.0.tgz";
- sha1 = "089a3463af58d0e48d8cd4070b3f74654d5abca9";
- };
- };
- "browserify-zlib-0.1.4" = {
- name = "browserify-zlib";
- packageName = "browserify-zlib";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz";
- sha1 = "bb35f8a519f600e0fa6b8485241c979d0141fb2d";
- };
- };
- "os-browserify-0.1.2" = {
- name = "os-browserify";
- packageName = "os-browserify";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.1.2.tgz";
- sha1 = "49ca0293e0b19590a5f5de10c7f265a617d8fe54";
- };
- };
- "pako-0.2.9" = {
- name = "pako";
- packageName = "pako";
- version = "0.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz";
- sha1 = "f3f7522f4ef782348da8161bad9ecfd51bf83a75";
- };
- };
- "compression-1.7.1" = {
- name = "compression";
- packageName = "compression";
- version = "1.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/compression/-/compression-1.7.1.tgz";
- sha1 = "eff2603efc2e22cf86f35d2eb93589f9875373db";
- };
- };
- "express-4.16.2" = {
- name = "express";
- packageName = "express";
- version = "4.16.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-4.16.2.tgz";
- sha1 = "e35c6dfe2d64b7dca0a5cd4f21781be3299e076c";
- };
- };
- "accepts-1.3.4" = {
- name = "accepts";
- packageName = "accepts";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/accepts/-/accepts-1.3.4.tgz";
- sha1 = "86246758c7dd6d21a6474ff084a4740ec05eb21f";
- };
- };
- "bytes-3.0.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz";
- sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
- };
- };
- "compressible-2.0.12" = {
- name = "compressible";
- packageName = "compressible";
- version = "2.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/compressible/-/compressible-2.0.12.tgz";
- sha1 = "c59a5c99db76767e9876500e271ef63b3493bd66";
- };
- };
- "on-headers-1.0.1" = {
- name = "on-headers";
- packageName = "on-headers";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz";
- sha1 = "928f5d0f470d49342651ea6794b0857c100693f7";
- };
- };
- "vary-1.1.2" = {
- name = "vary";
- packageName = "vary";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz";
- sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc";
- };
- };
- "negotiator-0.6.1" = {
- name = "negotiator";
- packageName = "negotiator";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz";
- sha1 = "2b327184e8992101177b28563fb5e7102acd0ca9";
- };
- };
- "array-flatten-1.1.1" = {
- name = "array-flatten";
- packageName = "array-flatten";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz";
- sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2";
- };
- };
- "body-parser-1.18.2" = {
- name = "body-parser";
- packageName = "body-parser";
- version = "1.18.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz";
- sha1 = "87678a19d84b47d859b83199bd59bce222b10454";
- };
- };
- "content-disposition-0.5.2" = {
- name = "content-disposition";
- packageName = "content-disposition";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz";
- sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4";
- };
- };
- "content-type-1.0.4" = {
- name = "content-type";
- packageName = "content-type";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz";
- sha512 = "1f4y61wc913jrnga7nny83gzf9l2488q6sl1ry9lbwgh5x5d3va0xcc0xrmjk6gdxl6d4r6rsk800xp5bazhjrx05yx1wpc8c8gg0w4";
- };
- };
- "cookie-0.3.1" = {
- name = "cookie";
- packageName = "cookie";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz";
- sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb";
- };
- };
- "cookie-signature-1.0.6" = {
- name = "cookie-signature";
- packageName = "cookie-signature";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz";
- sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c";
- };
- };
- "depd-1.1.1" = {
- name = "depd";
- packageName = "depd";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz";
- sha1 = "5783b4e1c459f06fa5ca27f991f3d06e7a310359";
- };
- };
- "encodeurl-1.0.1" = {
- name = "encodeurl";
- packageName = "encodeurl";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.1.tgz";
- sha1 = "79e3d58655346909fe6f0f45a5de68103b294d20";
- };
- };
- "escape-html-1.0.3" = {
- name = "escape-html";
- packageName = "escape-html";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz";
- sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
- };
- };
- "etag-1.8.1" = {
- name = "etag";
- packageName = "etag";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz";
- sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
- };
- };
- "finalhandler-1.1.0" = {
- name = "finalhandler";
- packageName = "finalhandler";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz";
- sha1 = "ce0b6855b45853e791b2fcc680046d88253dd7f5";
- };
- };
- "fresh-0.5.2" = {
- name = "fresh";
- packageName = "fresh";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz";
- sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
- };
- };
- "merge-descriptors-1.0.1" = {
- name = "merge-descriptors";
- packageName = "merge-descriptors";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz";
- sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61";
- };
- };
- "methods-1.1.2" = {
- name = "methods";
- packageName = "methods";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz";
- sha1 = "5529a4d67654134edcc5266656835b0f851afcee";
- };
- };
- "on-finished-2.3.0" = {
- name = "on-finished";
- packageName = "on-finished";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz";
- sha1 = "20f1336481b083cd75337992a16971aa2d906947";
- };
- };
- "parseurl-1.3.2" = {
- name = "parseurl";
- packageName = "parseurl";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz";
- sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3";
- };
- };
- "path-to-regexp-0.1.7" = {
- name = "path-to-regexp";
- packageName = "path-to-regexp";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz";
- sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
- };
- };
- "proxy-addr-2.0.2" = {
- name = "proxy-addr";
- packageName = "proxy-addr";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz";
- sha1 = "6571504f47bb988ec8180253f85dd7e14952bdec";
- };
- };
- "send-0.16.1" = {
- name = "send";
- packageName = "send";
- version = "0.16.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.16.1.tgz";
- sha512 = "3c9rfxzsayrnka50s3hdbln9sjzad94ll4z2nx83i3rqciy4dxj05x34sjmm64k46zmk99pj8g4bcwk476a3iqzpcxgja28s8jqnl0j";
- };
- };
- "serve-static-1.13.1" = {
- name = "serve-static";
- packageName = "serve-static";
- version = "1.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz";
- sha512 = "2ahchxbzy0wr61gjy85p35cx4rkfb5347fmglk5rb2wawla3nhx6xx8hsgvmvjcsp5vfdilvf84kcnvp832f1anylsg4sqgpdk188w5";
- };
- };
- "setprototypeof-1.1.0" = {
- name = "setprototypeof";
- packageName = "setprototypeof";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz";
- sha512 = "2jlhhawfqdiga1m6if01ks1q3yx56k5vj6wf372589vkswvdflw7224viivxali56b0jjsckpmjy10rj6fcakhw2dbq2psr197kzw86";
- };
- };
- "statuses-1.3.1" = {
- name = "statuses";
- packageName = "statuses";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz";
- sha1 = "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e";
- };
- };
- "type-is-1.6.15" = {
- name = "type-is";
- packageName = "type-is";
- version = "1.6.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz";
- sha1 = "cab10fb4909e441c82842eafe1ad646c81804410";
- };
- };
- "utils-merge-1.0.1" = {
- name = "utils-merge";
- packageName = "utils-merge";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz";
- sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
- };
- };
- "http-errors-1.6.2" = {
- name = "http-errors";
- packageName = "http-errors";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz";
- sha1 = "0a002cc85707192a7e7946ceedc11155f60ec736";
- };
- };
- "iconv-lite-0.4.19" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz";
- sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1";
- };
- };
- "raw-body-2.3.2" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz";
- sha1 = "bcd60c77d3eb93cde0050295c3f379389bc88f89";
- };
- };
- "setprototypeof-1.0.3" = {
- name = "setprototypeof";
- packageName = "setprototypeof";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz";
- sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04";
- };
- };
- "unpipe-1.0.0" = {
- name = "unpipe";
- packageName = "unpipe";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz";
- sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
- };
- };
- "ee-first-1.1.1" = {
- name = "ee-first";
- packageName = "ee-first";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz";
- sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
- };
- };
- "forwarded-0.1.2" = {
- name = "forwarded";
- packageName = "forwarded";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz";
- sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84";
- };
- };
- "ipaddr.js-1.5.2" = {
- name = "ipaddr.js";
- packageName = "ipaddr.js";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz";
- sha1 = "d4b505bde9946987ccf0fc58d9010ff9607e3fa0";
- };
- };
- "destroy-1.0.4" = {
- name = "destroy";
- packageName = "destroy";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz";
- sha1 = "978857442c44749e4206613e37946205826abd80";
- };
- };
- "mime-1.4.1" = {
- name = "mime";
- packageName = "mime";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz";
- sha512 = "2sz22r1xrnyvq6jg0h6b6cab3s3xdsfqa0n6vl9xv9gq3ppcxrcpg2hqfc41xjwnfwfkr6240l5gys7nds61ch6xcb3gr3fwsl7x398";
- };
- };
- "media-typer-0.3.0" = {
- name = "media-typer";
- packageName = "media-typer";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz";
- sha1 = "8710d7af0aa626f8fffa1ce00168545263255748";
- };
- };
- "underscore-1.2.1" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.2.1.tgz";
- sha1 = "fc5c6b0765673d92a2d4ac8b4dc0aa88702e2bd4";
- };
- };
- "q-1.4.1" = {
- name = "q";
- packageName = "q";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/q/-/q-1.4.1.tgz";
- sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e";
- };
- };
- "npm-package-arg-5.1.2" = {
- name = "npm-package-arg";
- packageName = "npm-package-arg";
- version = "5.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-5.1.2.tgz";
- sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460";
- };
- };
- "promzard-0.3.0" = {
- name = "promzard";
- packageName = "promzard";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz";
- sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee";
- };
- };
- "read-package-json-2.0.12" = {
- name = "read-package-json";
- packageName = "read-package-json";
- version = "2.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.12.tgz";
- sha512 = "15w2z3m1iysjf0zwvyc5mix8nypx42shx90alil4sslq6caj3pgk59zsn2ppxn95nls6bs7yw7khl5rmlq9gljv27w3vs2gxg9wigwv";
- };
- };
- "validate-npm-package-name-3.0.0" = {
- name = "validate-npm-package-name";
- packageName = "validate-npm-package-name";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
- sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
- };
- };
- "json-parse-better-errors-1.0.1" = {
- name = "json-parse-better-errors";
- packageName = "json-parse-better-errors";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz";
- sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967";
- };
- };
- "builtins-1.0.3" = {
- name = "builtins";
- packageName = "builtins";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz";
- sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
- };
- };
- "base64-js-1.1.2" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-1.1.2.tgz";
- sha1 = "d6400cac1c4c660976d90d07a04351d89395f5e8";
- };
- };
- "string.prototype.codepointat-0.2.0" = {
- name = "string.prototype.codepointat";
- packageName = "string.prototype.codepointat";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz";
- sha1 = "6b26e9bd3afcaa7be3b4269b526de1b82000ac78";
- };
- };
- "form-data-2.1.4" = {
- name = "form-data";
- packageName = "form-data";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
- sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
- };
- };
- "qs-6.3.2" = {
- name = "qs";
- packageName = "qs";
- version = "6.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz";
- sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c";
- };
- };
- "block-stream-0.0.9" = {
- name = "block-stream";
- packageName = "block-stream";
- version = "0.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
- sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
- };
- };
- "fstream-1.0.11" = {
- name = "fstream";
- packageName = "fstream";
- version = "1.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
- sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
- };
- };
- "pegjs-0.10.0" = {
- name = "pegjs";
- packageName = "pegjs";
- version = "0.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz";
- sha1 = "cf8bafae6eddff4b5a7efb185269eaaf4610ddbd";
- };
- };
- "simple-plist-0.2.1" = {
- name = "simple-plist";
- packageName = "simple-plist";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-plist/-/simple-plist-0.2.1.tgz";
- sha1 = "71766db352326928cf3a807242ba762322636723";
- };
- };
- "uuid-3.0.1" = {
- name = "uuid";
- packageName = "uuid";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz";
- sha1 = "6544bba2dfda8c1cf17e629a3a305e2bb1fee6c1";
+ url = "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.6.tgz";
+ sha1 = "fef069bee85975b2ddcc2264aaa7c50dc17a3c7e";
};
};
"bplist-creator-0.0.7" = {
@@ -7762,1093 +2929,31 @@ let
sha1 = "37df1536092824b87c42f957b01344117372ae45";
};
};
- "stream-buffers-2.2.0" = {
- name = "stream-buffers";
- packageName = "stream-buffers";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz";
- sha1 = "91d5f5130d1cef96dcfa7f726945188741d09ee4";
- };
- };
- "async-1.5.2" = {
- name = "async";
- packageName = "async";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz";
- sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a";
- };
- };
- "configstore-1.4.0" = {
- name = "configstore";
- packageName = "configstore";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/configstore/-/configstore-1.4.0.tgz";
- sha1 = "c35781d0501d268c25c54b8b17f6240e8a4fb021";
- };
- };
- "inquirer-0.10.1" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "0.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-0.10.1.tgz";
- sha1 = "ea25e4ce69ca145e05c99e46dcfec05e4012594a";
- };
- };
- "lodash.debounce-3.1.1" = {
- name = "lodash.debounce";
- packageName = "lodash.debounce";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-3.1.1.tgz";
- sha1 = "812211c378a94cc29d5aa4e3346cf0bfce3a7df5";
- };
- };
- "os-name-1.0.3" = {
- name = "os-name";
- packageName = "os-name";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz";
- sha1 = "1b379f64835af7c5a7f498b357cb95215c159edf";
- };
- };
- "ansi-escapes-1.4.0" = {
- name = "ansi-escapes";
- packageName = "ansi-escapes";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz";
- sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
- };
- };
- "cli-cursor-1.0.2" = {
- name = "cli-cursor";
- packageName = "cli-cursor";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz";
- sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987";
- };
- };
- "readline2-1.0.1" = {
- name = "readline2";
- packageName = "readline2";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz";
- sha1 = "41059608ffc154757b715d9989d199ffbf372e35";
- };
- };
- "run-async-0.1.0" = {
- name = "run-async";
- packageName = "run-async";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz";
- sha1 = "c8ad4a5e110661e402a7d21b530e009f25f8e389";
- };
- };
- "rx-lite-3.1.2" = {
- name = "rx-lite";
- packageName = "rx-lite";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz";
- sha1 = "19ce502ca572665f3b647b10939f97fd1615f102";
- };
- };
- "restore-cursor-1.0.1" = {
- name = "restore-cursor";
- packageName = "restore-cursor";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz";
- sha1 = "34661f46886327fed2991479152252df92daa541";
- };
- };
- "exit-hook-1.1.1" = {
- name = "exit-hook";
- packageName = "exit-hook";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz";
- sha1 = "f05ca233b48c05d54fff07765df8507e95c02ff8";
- };
- };
- "onetime-1.1.0" = {
- name = "onetime";
- packageName = "onetime";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz";
- sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789";
- };
- };
- "mute-stream-0.0.5" = {
- name = "mute-stream";
- packageName = "mute-stream";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz";
- sha1 = "8fbfabb0a98a253d3184331f9e8deb7372fac6c0";
- };
- };
- "lodash._getnative-3.9.1" = {
- name = "lodash._getnative";
- packageName = "lodash._getnative";
- version = "3.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz";
- sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5";
- };
- };
- "osx-release-1.1.0" = {
- name = "osx-release";
- packageName = "osx-release";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/osx-release/-/osx-release-1.1.0.tgz";
- sha1 = "f217911a28136949af1bf9308b241e2737d3cd6c";
- };
- };
- "win-release-1.1.1" = {
- name = "win-release";
- packageName = "win-release";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz";
- sha1 = "5fa55e02be7ca934edfc12665632e849b72e5209";
- };
- };
- "is-npm-1.0.0" = {
- name = "is-npm";
- packageName = "is-npm";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz";
- sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4";
- };
- };
- "latest-version-1.0.1" = {
- name = "latest-version";
- packageName = "latest-version";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/latest-version/-/latest-version-1.0.1.tgz";
- sha1 = "72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb";
- };
- };
- "repeating-1.1.3" = {
- name = "repeating";
- packageName = "repeating";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz";
- sha1 = "3d4114218877537494f97f77f9785fab810fa4ac";
- };
- };
- "semver-diff-2.1.0" = {
- name = "semver-diff";
- packageName = "semver-diff";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz";
- sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36";
- };
- };
- "string-length-1.0.1" = {
- name = "string-length";
- packageName = "string-length";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz";
- sha1 = "56970fb1c38558e9e70b728bf3de269ac45adfac";
- };
- };
- "package-json-1.2.0" = {
- name = "package-json";
- packageName = "package-json";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz";
- sha1 = "c8ecac094227cdf76a316874ed05e27cc939a0e0";
- };
- };
- "got-3.3.1" = {
- name = "got";
- packageName = "got";
- version = "3.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-3.3.1.tgz";
- sha1 = "e5d0ed4af55fc3eef4d56007769d98192bcb2eca";
- };
- };
- "registry-url-3.1.0" = {
- name = "registry-url";
- packageName = "registry-url";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz";
- sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942";
- };
- };
- "duplexify-3.5.1" = {
- name = "duplexify";
- packageName = "duplexify";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz";
- sha512 = "0cyjpkdqc1lkh2fh7z9p2i6va4fvwazvpn4153ndpb2ng8w0q9x9kb0hk07yy0baj50s1kl58m7f7zmx8fqdfcp2vsl0m7hfk22i64g";
- };
- };
- "infinity-agent-2.0.3" = {
- name = "infinity-agent";
- packageName = "infinity-agent";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz";
- sha1 = "45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216";
- };
- };
- "is-redirect-1.0.0" = {
- name = "is-redirect";
- packageName = "is-redirect";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz";
- sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24";
- };
- };
- "lowercase-keys-1.0.0" = {
- name = "lowercase-keys";
- packageName = "lowercase-keys";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz";
- sha1 = "4e3366b39e7f5457e35f1324bdf6f88d0bfc7306";
- };
- };
- "nested-error-stacks-1.0.2" = {
- name = "nested-error-stacks";
- packageName = "nested-error-stacks";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz";
- sha1 = "19f619591519f096769a5ba9a86e6eeec823c3cf";
- };
- };
- "object-assign-3.0.0" = {
- name = "object-assign";
- packageName = "object-assign";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz";
- sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2";
- };
- };
- "prepend-http-1.0.4" = {
- name = "prepend-http";
- packageName = "prepend-http";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz";
- sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc";
- };
- };
- "read-all-stream-3.1.0" = {
- name = "read-all-stream";
- packageName = "read-all-stream";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz";
- sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa";
- };
- };
- "timed-out-2.0.0" = {
- name = "timed-out";
- packageName = "timed-out";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz";
- sha1 = "f38b0ae81d3747d628001f41dafc652ace671c0a";
- };
- };
- "end-of-stream-1.4.0" = {
- name = "end-of-stream";
- packageName = "end-of-stream";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz";
- sha1 = "7a90d833efda6cfa6eac0f4949dbb0fad3a63206";
- };
- };
- "stream-shift-1.0.0" = {
- name = "stream-shift";
- packageName = "stream-shift";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz";
- sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
- };
- };
- "rc-1.2.2" = {
- name = "rc";
- packageName = "rc";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.2.2.tgz";
- sha1 = "d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077";
- };
- };
- "strip-json-comments-2.0.1" = {
- name = "strip-json-comments";
- packageName = "strip-json-comments";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
- sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
- };
- };
- "clone-2.1.1" = {
- name = "clone";
- packageName = "clone";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz";
- sha1 = "d217d1e961118e3ac9a4b8bba3285553bf647cdb";
- };
- };
- "parserlib-1.1.1" = {
- name = "parserlib";
- packageName = "parserlib";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parserlib/-/parserlib-1.1.1.tgz";
- sha1 = "a64cfa724062434fdfc351c9a4ec2d92b94c06f4";
- };
- };
- "chalk-2.3.0" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz";
- sha512 = "3fj8njcdcvyplivm2fj19lqw8qv7gb8v7gd6a223pmn8f3di4zwkhyb09vzlmw3pnk4ib88kp4cg8r9i5k5rskalzdfh1l23ljp6gh3";
- };
- };
- "cli-truncate-1.1.0" = {
- name = "cli-truncate";
- packageName = "cli-truncate";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-1.1.0.tgz";
- sha512 = "1h48346i2bsfvj3h0qfxmyh1770cxb3d9ibk75yjag1xgzk021yqbmkiv30k5c0qgyb0sxkvjc3sckmakf4i7q1d2gh1nmw9fimj2vc";
- };
- };
- "dat-doctor-1.3.1" = {
- name = "dat-doctor";
- packageName = "dat-doctor";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-doctor/-/dat-doctor-1.3.1.tgz";
- sha512 = "19cfxdik2pv94dbfsz4nm6a0v6vfx5s1isaagmsjrb44czbcl55sjj9nf1302hqc8ckijsdmlsrna02hb0mjzzhsy0m6c8r3cv0wabk";
- };
- };
- "dat-encoding-4.0.2" = {
- name = "dat-encoding";
- packageName = "dat-encoding";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-encoding/-/dat-encoding-4.0.2.tgz";
- sha1 = "b01068fe0d080f3d3e4985a0c4ad21b7c14675f6";
- };
- };
- "dat-json-1.0.1" = {
- name = "dat-json";
- packageName = "dat-json";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-json/-/dat-json-1.0.1.tgz";
- sha512 = "13nn20vg6jx1h8ypazv9zn236hvv29wwq52mdbbfl77zrg8d7syni933v2mm3y1jsk25c7dc2gs1876fz0yblniryncnbjxrf0aq0nq";
- };
- };
- "dat-link-resolve-1.1.1" = {
- name = "dat-link-resolve";
- packageName = "dat-link-resolve";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-1.1.1.tgz";
- sha512 = "3a3rmwv687r07qnzdp4k15ng7xbbgibssjiqjvhhhrxq5mc22m34g7hi1h15rqjs3zzlajn291j3xv9af22j3fynpygky13zzvxj367";
- };
- };
- "dat-log-1.1.1" = {
- name = "dat-log";
- packageName = "dat-log";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-log/-/dat-log-1.1.1.tgz";
- sha1 = "69449ac8a368593a8f71902b282390c3655ab4b8";
- };
- };
- "dat-node-3.5.6" = {
- name = "dat-node";
- packageName = "dat-node";
- version = "3.5.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.6.tgz";
- sha512 = "17i7n2n3bappi34pnv2240cr5baawf2ab8wf22bmlxx4xkcb5g0z24ycz542fsx8myn4fyjgfgdhwbv44f5sz1c4z7i7g4q3ah9n7zh";
- };
- };
- "dat-registry-4.0.0" = {
- name = "dat-registry";
- packageName = "dat-registry";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-registry/-/dat-registry-4.0.0.tgz";
- sha512 = "0h84fdzm556p412p1xr0nl6ldf5xjd0qnd37im41bq78zm7lg4j4klcahg9pix1f0qdyd6gqz2a2j67z6vpb776v1bd0n1hr67pp988";
- };
- };
- "neat-log-1.1.2" = {
- name = "neat-log";
- packageName = "neat-log";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/neat-log/-/neat-log-1.1.2.tgz";
- sha512 = "15fbq2bchsjk85zklc34xl74skmdxbipsf0zjf1k6jfq1fr31h5bn7c6438ff55i9yzrhf11k85ahvahyb73khfjl4sj59zjrqksj9d";
- };
- };
- "prettier-bytes-1.0.4" = {
- name = "prettier-bytes";
- packageName = "prettier-bytes";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/prettier-bytes/-/prettier-bytes-1.0.4.tgz";
- sha1 = "994b02aa46f699c50b6257b5faaa7fe2557e62d6";
- };
- };
- "progress-string-1.2.2" = {
- name = "progress-string";
- packageName = "progress-string";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/progress-string/-/progress-string-1.2.2.tgz";
- sha512 = "07n7s98b5fqdx9jspg14zkw0dndfdpbrd12f5nj5c7m6aifvl4nn27qdbrgy6gzb837cs86cakldqh5kwbi7fv6ra9ll9q83qhsya97";
- };
- };
- "prompt-1.0.0" = {
- name = "prompt";
- packageName = "prompt";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/prompt/-/prompt-1.0.0.tgz";
- sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe";
- };
- };
- "pump-1.0.3" = {
- name = "pump";
- packageName = "pump";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz";
- sha512 = "2mj8bx34brvh97wd2xcn5phgyd2wh3l1ma2xfd0m53yf68w1izp46pmz0s9az5f36mhlvl0mvfd6hp5abhi75fhyrz9wyx6jnx0jkgj";
- };
- };
- "speedometer-1.0.0" = {
- name = "speedometer";
- packageName = "speedometer";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz";
- sha1 = "cd671cb06752c22bca3370e2f334440be4fc62e2";
- };
- };
- "subcommand-2.1.0" = {
- name = "subcommand";
- packageName = "subcommand";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/subcommand/-/subcommand-2.1.0.tgz";
- sha1 = "5e4ceca5a3779e3365b1511e05f866877302f760";
- };
- };
- "throttle-1.0.3" = {
- name = "throttle";
- packageName = "throttle";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/throttle/-/throttle-1.0.3.tgz";
- sha1 = "8a32e4a15f1763d997948317c5ebe3ad8a41e4b7";
- };
- };
- "ansi-styles-3.2.0" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
- sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n";
- };
- };
- "supports-color-4.5.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "4.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz";
- sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b";
- };
- };
- "color-convert-1.9.1" = {
- name = "color-convert";
- packageName = "color-convert";
- version = "1.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz";
- sha512 = "32rj1090g95xcvm0d2ya6jbqdhiy9w2wv3picdy33fzrm455v0gi7g4n8lw0n31g37wwbdnz7lxjsisgbsaqz1d10j9nh5hi2f9lccs";
- };
- };
- "color-name-1.1.3" = {
- name = "color-name";
- packageName = "color-name";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
- sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
- };
- };
- "has-flag-2.0.0" = {
- name = "has-flag";
- packageName = "has-flag";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz";
- sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51";
- };
- };
- "slice-ansi-1.0.0" = {
- name = "slice-ansi";
- packageName = "slice-ansi";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz";
- sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw";
- };
- };
- "string-width-2.1.1" = {
- name = "string-width";
- packageName = "string-width";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
- sha512 = "29s1fqgr4mnhfxwczgdghfmmc1f792m9hysvcjxw2h5lfj8ndf2b6gm02m96qk5m75g4aisijvng4pk618anwbr8i9ay2jyszkqgslw";
- };
- };
- "is-fullwidth-code-point-2.0.0" = {
- name = "is-fullwidth-code-point";
- packageName = "is-fullwidth-code-point";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
- sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
- };
- };
- "strip-ansi-4.0.0" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
- sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
- };
- };
- "ansi-regex-3.0.0" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
- sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
- };
- };
- "datland-swarm-defaults-1.0.2" = {
- name = "datland-swarm-defaults";
- packageName = "datland-swarm-defaults";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/datland-swarm-defaults/-/datland-swarm-defaults-1.0.2.tgz";
- sha1 = "277b895a39f1aa7f96a495a02fb3662a5ed9f2e0";
- };
- };
- "discovery-swarm-4.4.2" = {
- name = "discovery-swarm";
- packageName = "discovery-swarm";
- version = "4.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-4.4.2.tgz";
- sha1 = "5d3160a46019e50e874195765df7d601ee55a813";
- };
- };
- "dns-discovery-5.6.1" = {
- name = "dns-discovery";
- packageName = "dns-discovery";
- version = "5.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-discovery/-/dns-discovery-5.6.1.tgz";
- sha512 = "2hda8mbvxc2r10g5p9dsrjk3qdrp7gpk66ps0dikwzcdgn9bvsf8ih9k19kxw7wr299cm7hav2q6rjp5m76zyb6mb19bfa3g6zxyvmg";
- };
- };
- "connections-1.4.2" = {
- name = "connections";
- packageName = "connections";
- version = "1.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/connections/-/connections-1.4.2.tgz";
- sha1 = "7890482bf5c71af6c5ca192be3136aed74428aad";
- };
- };
- "discovery-channel-5.4.6" = {
- name = "discovery-channel";
- packageName = "discovery-channel";
- version = "5.4.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.4.6.tgz";
- sha1 = "1b0f25e58124507e861b6dc3ecb744366bb53cad";
- };
- };
- "length-prefixed-message-3.0.3" = {
- name = "length-prefixed-message";
- packageName = "length-prefixed-message";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/length-prefixed-message/-/length-prefixed-message-3.0.3.tgz";
- sha1 = "245474d69abc0614dca368dc35aa8074982a23ac";
- };
- };
- "to-buffer-1.1.0" = {
- name = "to-buffer";
- packageName = "to-buffer";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.0.tgz";
- sha1 = "375bc03edae5c35a8fa0b3fe95a1f3985db1dcfa";
- };
- };
- "utp-native-1.6.2" = {
- name = "utp-native";
- packageName = "utp-native";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/utp-native/-/utp-native-1.6.2.tgz";
- sha512 = "2mcnn6w5as2dvz6rj4fb33174z3a1rl9bm2cfazrr4084gq7aal0bkmkwr1cjpkvy1zgni3zdk0570fx7cmnd0k0hg18wfb2hvbigfg";
- };
- };
- "bittorrent-dht-7.8.2" = {
- name = "bittorrent-dht";
- packageName = "bittorrent-dht";
- version = "7.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-7.8.2.tgz";
- sha512 = "33jcwf8rh9r7m810lw75s1ij9k0bv1kjmnc24488i6nd1ri9a1p2gmci5z1xdfriyb8j7x8h1ch3aj5a1chdglwn6pbsll7cx4j6wd4";
- };
- };
- "pretty-hash-1.0.1" = {
- name = "pretty-hash";
- packageName = "pretty-hash";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pretty-hash/-/pretty-hash-1.0.1.tgz";
- sha1 = "16e0579188def56bdb565892bcd05a5d65324807";
- };
- };
- "k-bucket-3.3.1" = {
- name = "k-bucket";
- packageName = "k-bucket";
- version = "3.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-bucket/-/k-bucket-3.3.1.tgz";
- sha512 = "2dkl580azs1f5pj72mpygwdcc2mh4p355sxi84ki1w9c6k226nmjfglq5b7zgk5gmpfjammx5xliirzaf2nh9kyhqdb1xpvhjlic34j";
- };
- };
- "k-rpc-4.2.1" = {
- name = "k-rpc";
- packageName = "k-rpc";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc/-/k-rpc-4.2.1.tgz";
- sha512 = "2nbjxg0x7jsa14zhvx68w1vri68hsxzbxz7b7ap76fdp0jkrgna2rq636yxnax04f3f8i2ambj2fpan6qli6vixmfryz78vrapdip8n";
- };
- };
- "lru-3.1.0" = {
- name = "lru";
- packageName = "lru";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru/-/lru-3.1.0.tgz";
- sha1 = "ea7fb8546d83733396a13091d76cfeb4c06837d5";
- };
- };
- "varint-3.0.1" = {
- name = "varint";
- packageName = "varint";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-3.0.1.tgz";
- sha1 = "9d3f53e036c0ab12000a74bc2d24cbf093a581d9";
- };
- };
- "node-gyp-build-3.2.2" = {
- name = "node-gyp-build";
- packageName = "node-gyp-build";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.2.2.tgz";
- sha512 = "34hwi28wvvh5nn8bv71n0fb83xjyk84jsn8j9zgkaqnfigpv2hk6fs9jaffsn7qi3yi4n7iwd9yjyagd1rh74ckzdf5s6l59b8vzidp";
- };
- };
- "dns-socket-1.6.2" = {
- name = "dns-socket";
- packageName = "dns-socket";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-socket/-/dns-socket-1.6.2.tgz";
- sha512 = "0ibd2ndmlqbk96vdcimsl4w1njplh9gplvqa5f7653km79f9kqpd6d7f0f3lq1sz548lqcbjfcgcr7fc9159b4gzzk1g86kjxzxmmk6";
- };
- };
- "dns-txt-2.0.2" = {
- name = "dns-txt";
- packageName = "dns-txt";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz";
- sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6";
- };
- };
- "multicast-dns-6.2.1" = {
- name = "multicast-dns";
- packageName = "multicast-dns";
- version = "6.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.1.tgz";
- sha512 = "3gm760icxiv0bkil78dgsjkss4vwg3ya76jl3v8a5fa86wdv0ksvi1n7lnzisk4x4sa8chxnfxasyfpgay45ilaykqz2zbc8xrgypdr";
- };
- };
- "network-address-1.1.2" = {
- name = "network-address";
- packageName = "network-address";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/network-address/-/network-address-1.1.2.tgz";
- sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e";
- };
- };
- "unordered-set-1.1.0" = {
- name = "unordered-set";
- packageName = "unordered-set";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unordered-set/-/unordered-set-1.1.0.tgz";
- sha1 = "2ba7ef316edd0b9590cc547c74f76a2f164fecca";
- };
- };
- "dns-packet-1.2.2" = {
- name = "dns-packet";
- packageName = "dns-packet";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.2.2.tgz";
- sha512 = "0770ymyc0rv6a11mj3990d0z1jl1b2qxp4bapqa819y269sszfd96wn2y7pb6aw8bdgsn3bvpr7bmig5lcmkrxya13d5vc5y66q7pwh";
- };
- };
- "buffer-indexof-1.1.1" = {
- name = "buffer-indexof";
- packageName = "buffer-indexof";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz";
- sha512 = "3bgz1zhq9ng3gypq825f00p9qi9y6z7wvkkf28nhjlyifnb3lk1dkmbya84k0ja79zv8kmmhvalwcnnz92533ip7pnjp3is1w9cxyp3";
- };
- };
- "toiletdb-1.4.0" = {
- name = "toiletdb";
- packageName = "toiletdb";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.0.tgz";
- sha1 = "6c6f871834b22178c5490f9f832b58c3c7cba852";
- };
- };
- "last-one-wins-1.0.4" = {
- name = "last-one-wins";
- packageName = "last-one-wins";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/last-one-wins/-/last-one-wins-1.0.4.tgz";
- sha1 = "c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a";
- };
- };
- "dat-dns-1.3.2" = {
- name = "dat-dns";
- packageName = "dat-dns";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-dns/-/dat-dns-1.3.2.tgz";
- sha512 = "0yyadc98mdpvqdszc1v26zcgd6zqxink2wrhxw9ax60wk0sxqw6mm3m2jbqvibj54p1gjsmgsf1yhv20xsm77kkb7qwj79jlx8kvfad";
- };
- };
- "nets-3.2.0" = {
- name = "nets";
- packageName = "nets";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nets/-/nets-3.2.0.tgz";
- sha1 = "d511fbab7af11da013f21b97ee91747d33852d38";
- };
- };
- "call-me-maybe-1.0.1" = {
- name = "call-me-maybe";
- packageName = "call-me-maybe";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz";
- sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b";
- };
- };
- "xhr-2.4.1" = {
- name = "xhr";
- packageName = "xhr";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz";
- sha512 = "38f6fgl0n5syagym161b29l5vhyan3azv5zs3vmyd4s80svy9xl7ppczk3rdawjn70s1ws5qvbh5zf1wyrj2ifawnr7ix3by3k180m4";
- };
- };
- "global-4.3.2" = {
- name = "global";
- packageName = "global";
- version = "4.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/global/-/global-4.3.2.tgz";
- sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f";
- };
- };
- "is-function-1.0.1" = {
- name = "is-function";
- packageName = "is-function";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz";
- sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5";
- };
- };
- "parse-headers-2.0.1" = {
- name = "parse-headers";
- packageName = "parse-headers";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.1.tgz";
- sha1 = "6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536";
- };
- };
- "min-document-2.19.0" = {
- name = "min-document";
- packageName = "min-document";
- version = "2.19.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz";
- sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685";
- };
- };
- "process-0.5.2" = {
- name = "process";
- packageName = "process";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz";
- sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf";
- };
- };
- "dom-walk-0.1.1" = {
- name = "dom-walk";
- packageName = "dom-walk";
+ "bplist-parser-0.1.1" = {
+ name = "bplist-parser";
+ packageName = "bplist-parser";
version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz";
- sha1 = "672226dc74c8f799ad35307df936aba11acd6018";
+ url = "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz";
+ sha1 = "d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6";
};
};
- "for-each-0.3.2" = {
- name = "for-each";
- packageName = "for-each";
- version = "0.3.2";
+ "brace-expansion-1.1.8" = {
+ name = "brace-expansion";
+ packageName = "brace-expansion";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz";
- sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4";
+ url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz";
+ sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292";
};
};
- "trim-0.0.1" = {
- name = "trim";
- packageName = "trim";
- version = "0.0.1";
+ "braces-0.1.5" = {
+ name = "braces";
+ packageName = "braces";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz";
- sha1 = "5858547f6b290757ee95cccc666fb50084c460dd";
- };
- };
- "random-access-memory-2.4.0" = {
- name = "random-access-memory";
- packageName = "random-access-memory";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-2.4.0.tgz";
- sha1 = "72f3d865b4b55a259879473e2fb2de3569c69ee2";
- };
- };
- "dat-ignore-2.0.0" = {
- name = "dat-ignore";
- packageName = "dat-ignore";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.0.0.tgz";
- sha512 = "1s78mv3ngs1v1cgpcp97y1xmns97m2r6gjkkrksl63j5d870vpsmmrhsfm1vw4q0dz4c1yfnfcpijlgbqai9c5d2zj1lz56rih0kxk8";
- };
- };
- "dat-link-resolve-2.1.0" = {
- name = "dat-link-resolve";
- packageName = "dat-link-resolve";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.1.0.tgz";
- sha512 = "0dzpf71lpzr1z3g6m3v29xvcs9r12sgjpzzmg2viy3azkgpscl7p2v8im2ibsa22q64abifkibb4nc3nshs19wvai67m3gdqx15qzvn";
- };
- };
- "dat-storage-1.0.3" = {
- name = "dat-storage";
- packageName = "dat-storage";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-storage/-/dat-storage-1.0.3.tgz";
- sha512 = "1n7gszxdkchx0bilz4phnanzmw00fkljwm9rl0z7cndi94xrb6pkzczh6x137xn62j9p7yp6nz24a82q8llsrlk3c1pwvn269cdx97a";
- };
- };
- "dat-swarm-defaults-1.0.0" = {
- name = "dat-swarm-defaults";
- packageName = "dat-swarm-defaults";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-swarm-defaults/-/dat-swarm-defaults-1.0.0.tgz";
- sha1 = "ba7d58c309cf60c3924afad869b75192b61fe354";
- };
- };
- "hyperdrive-9.12.0" = {
- name = "hyperdrive";
- packageName = "hyperdrive";
- version = "9.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.0.tgz";
- sha512 = "285nxd3xfdr51r8av9d7dal8hqa3lfrac1m46gn9b73ljwivlhhsxpbrqyhdf80v7bnmw8vpy61x77gm8cfmwv5z8pffmmnla2p8l5y";
- };
- };
- "hyperdrive-http-4.2.2" = {
- name = "hyperdrive-http";
- packageName = "hyperdrive-http";
- version = "4.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive-http/-/hyperdrive-http-4.2.2.tgz";
- sha512 = "0vl2ibm38gn2xci8byg6s3qwh5zr5777hlj3l2152hm6vcfs5fn0xazxfj7vyc2wpzgacz6k1d81wcbckkvf6p6482858fh2wdxj1rn";
- };
- };
- "hyperdrive-network-speed-2.0.1" = {
- name = "hyperdrive-network-speed";
- packageName = "hyperdrive-network-speed";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive-network-speed/-/hyperdrive-network-speed-2.0.1.tgz";
- sha1 = "40daf82e31b9d753f2ae6dfaf0818661ed24fe15";
- };
- };
- "mirror-folder-2.1.1" = {
- name = "mirror-folder";
- packageName = "mirror-folder";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-2.1.1.tgz";
- sha1 = "1ad3b777b39e403cc27bf52086c23e41ef4c9604";
- };
- };
- "multicb-1.2.2" = {
- name = "multicb";
- packageName = "multicb";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/multicb/-/multicb-1.2.2.tgz";
- sha512 = "2liv9lhcxrlp21524jzp1hxzbd07xmb7qlzma5qfn98bgn63ga0i5jalrhlz6qc08fd4jxh3hj2mi9wm14s95lip5x236052rv3i4rx";
- };
- };
- "sparse-bitfield-3.0.3" = {
- name = "sparse-bitfield";
- packageName = "sparse-bitfield";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz";
- sha1 = "ff4ae6e68656056ba4b3e792ab3334d38273ca11";
- };
- };
- "stream-each-1.2.2" = {
- name = "stream-each";
- packageName = "stream-each";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz";
- sha512 = "2h4ymczmf5aqldga4sj8acqlzc3almazi2vwiv7kx63k28sz1wwkqgzzv1hn47jf49k1x94w25fmmi001h5mj3n6g9in1s6b1n5vkcr";
- };
- };
- "untildify-3.0.2" = {
- name = "untildify";
- packageName = "untildify";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/untildify/-/untildify-3.0.2.tgz";
- sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1";
- };
- };
- "anymatch-1.3.2" = {
- name = "anymatch";
- packageName = "anymatch";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz";
- sha512 = "269dbx666z4ws49vag1dma5kdpjlx83s74c1jlngrn2672rhvbc47i5ay5h40spmrzgvbvcm33i4yrp88rrc6lg70v78k155z45lwyi";
- };
- };
- "micromatch-2.3.11" = {
- name = "micromatch";
- packageName = "micromatch";
- version = "2.3.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz";
- sha1 = "86677c97d1720b363431d04d0d15293bd38c1565";
- };
- };
- "normalize-path-2.1.1" = {
- name = "normalize-path";
- packageName = "normalize-path";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
- sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
- };
- };
- "arr-diff-2.0.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz";
- sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
+ url = "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz";
+ sha1 = "c085711085291d8b75fdd74eab0f8597280711e6";
};
};
"braces-1.8.5" = {
@@ -8860,3833 +2965,13 @@ let
sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7";
};
};
- "expand-brackets-0.1.5" = {
- name = "expand-brackets";
- packageName = "expand-brackets";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz";
- sha1 = "df07284e342a807cd733ac5af72411e581d1177b";
- };
- };
- "extglob-0.3.2" = {
- name = "extglob";
- packageName = "extglob";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz";
- sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1";
- };
- };
- "filename-regex-2.0.1" = {
- name = "filename-regex";
- packageName = "filename-regex";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz";
- sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26";
- };
- };
- "is-extglob-1.0.0" = {
- name = "is-extglob";
- packageName = "is-extglob";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz";
- sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0";
- };
- };
- "is-glob-2.0.1" = {
- name = "is-glob";
- packageName = "is-glob";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz";
- sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863";
- };
- };
- "kind-of-3.2.2" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
- sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
- };
- };
- "object.omit-2.0.1" = {
- name = "object.omit";
- packageName = "object.omit";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz";
- sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa";
- };
- };
- "parse-glob-3.0.4" = {
- name = "parse-glob";
- packageName = "parse-glob";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz";
- sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c";
- };
- };
- "regex-cache-0.4.4" = {
- name = "regex-cache";
- packageName = "regex-cache";
- version = "0.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz";
- sha512 = "1crfmf19zkv0imnbbkj7bwrcyin3zxa88cs86b6apkxj8qrsmkxnydhsy2ia75q4ld10rhi2s2c36h7g77a997mh9c2z453s311jllx";
- };
- };
- "arr-flatten-1.1.0" = {
- name = "arr-flatten";
- packageName = "arr-flatten";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g";
- };
- };
- "expand-range-1.8.2" = {
- name = "expand-range";
- packageName = "expand-range";
- version = "1.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz";
- sha1 = "a299effd335fe2721ebae8e257ec79644fc85337";
- };
- };
- "preserve-0.2.0" = {
- name = "preserve";
- packageName = "preserve";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz";
- sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b";
- };
- };
- "repeat-element-1.1.2" = {
- name = "repeat-element";
- packageName = "repeat-element";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz";
- sha1 = "ef089a178d1483baae4d93eb98b4f9e4e11d990a";
- };
- };
- "fill-range-2.2.3" = {
- name = "fill-range";
- packageName = "fill-range";
- version = "2.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz";
- sha1 = "50b77dfd7e469bc7492470963699fe7a8485a723";
- };
- };
- "is-number-2.1.0" = {
- name = "is-number";
- packageName = "is-number";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz";
- sha1 = "01fcbbb393463a548f2f466cce16dece49db908f";
- };
- };
- "isobject-2.1.0" = {
- name = "isobject";
- packageName = "isobject";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
- sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
- };
- };
- "randomatic-1.1.7" = {
- name = "randomatic";
- packageName = "randomatic";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz";
- sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg";
- };
- };
- "repeat-string-1.6.1" = {
- name = "repeat-string";
- packageName = "repeat-string";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
- sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
- };
- };
- "is-number-3.0.0" = {
- name = "is-number";
- packageName = "is-number";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
- sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
- };
- };
- "kind-of-4.0.0" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
- sha1 = "20813df3d712928b207378691a45066fae72dd57";
- };
- };
- "is-posix-bracket-0.1.1" = {
- name = "is-posix-bracket";
- packageName = "is-posix-bracket";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz";
- sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
- };
- };
- "for-own-0.1.5" = {
- name = "for-own";
- packageName = "for-own";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz";
- sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce";
- };
- };
- "is-extendable-0.1.1" = {
- name = "is-extendable";
- packageName = "is-extendable";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
- sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
- };
- };
- "for-in-1.0.2" = {
- name = "for-in";
- packageName = "for-in";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
- sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
- };
- };
- "glob-base-0.3.0" = {
- name = "glob-base";
- packageName = "glob-base";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz";
- sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4";
- };
- };
- "is-dotfile-1.0.3" = {
- name = "is-dotfile";
- packageName = "is-dotfile";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz";
- sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1";
- };
- };
- "glob-parent-2.0.0" = {
- name = "glob-parent";
- packageName = "glob-parent";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz";
- sha1 = "81383d72db054fcccf5336daa902f182f6edbb28";
- };
- };
- "is-equal-shallow-0.1.3" = {
- name = "is-equal-shallow";
- packageName = "is-equal-shallow";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz";
- sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534";
- };
- };
- "is-primitive-2.0.0" = {
- name = "is-primitive";
- packageName = "is-primitive";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz";
- sha1 = "207bab91638499c07b2adf240a41a87210034575";
- };
- };
- "remove-trailing-separator-1.1.0" = {
- name = "remove-trailing-separator";
- packageName = "remove-trailing-separator";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
- sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
- };
- };
- "dat-encoding-5.0.1" = {
- name = "dat-encoding";
- packageName = "dat-encoding";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-encoding/-/dat-encoding-5.0.1.tgz";
- sha512 = "2lc9p062gaa2xrf07z14xqgid3rw5fg05ak3s13g3mrr5hf8zxmdvp3lq4wggj7k5pc2c43r3d4yyy7rfrqafsdm7hfisdda4zgsi1w";
- };
- };
- "append-tree-2.4.0" = {
- name = "append-tree";
- packageName = "append-tree";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.0.tgz";
- sha512 = "1ym9wsmz3fjv0wf675xclbnjp825cyvxp3a9x8af96yms45dbk8c79jrx5vgdii1zimcnr2pg305g9sw79k5yqah9267k71lsz5vv35";
- };
- };
- "dat-secret-storage-4.0.0" = {
- name = "dat-secret-storage";
- packageName = "dat-secret-storage";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-secret-storage/-/dat-secret-storage-4.0.0.tgz";
- sha1 = "01b219a5bc1619efc0f58122a3c6cebb1eb8b40a";
- };
- };
- "multi-random-access-2.1.1" = {
- name = "multi-random-access";
- packageName = "multi-random-access";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/multi-random-access/-/multi-random-access-2.1.1.tgz";
- sha1 = "6462f1b204109ccc644601650110a828443d66e2";
- };
- };
- "array-lru-1.1.1" = {
- name = "array-lru";
- packageName = "array-lru";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-lru/-/array-lru-1.1.1.tgz";
- sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337";
- };
- };
- "brfs-1.4.3" = {
- name = "brfs";
- packageName = "brfs";
- version = "1.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/brfs/-/brfs-1.4.3.tgz";
- sha1 = "db675d6f5e923e6df087fca5859c9090aaed3216";
- };
- };
- "codecs-1.2.0" = {
- name = "codecs";
- packageName = "codecs";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/codecs/-/codecs-1.2.0.tgz";
- sha1 = "5148549e3d156c5fa053d7cbb419715a0cf43d16";
- };
- };
- "from2-2.3.0" = {
- name = "from2";
- packageName = "from2";
+ "braces-2.3.0" = {
+ name = "braces";
+ packageName = "braces";
version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
- sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
- };
- };
- "mutexify-1.2.0" = {
- name = "mutexify";
- packageName = "mutexify";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mutexify/-/mutexify-1.2.0.tgz";
- sha512 = "2hha5ly9j3v9pqpfvkbq8spn9sz7qz5bv8p303zmdisskhcn6i7ia5dviv8xhs3xlwi9562i4r4rm6mkk5gg0abm34zm1dkvp2z76m2";
- };
- };
- "protocol-buffers-3.2.1" = {
- name = "protocol-buffers";
- packageName = "protocol-buffers";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/protocol-buffers/-/protocol-buffers-3.2.1.tgz";
- sha1 = "37258e17e24a082f06ebb17731e92851d1c76889";
- };
- };
- "varint-5.0.0" = {
- name = "varint";
- packageName = "varint";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz";
- sha1 = "d826b89f7490732fabc0c0ed693ed475dcb29ebf";
- };
- };
- "quote-stream-1.0.2" = {
- name = "quote-stream";
- packageName = "quote-stream";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz";
- sha1 = "84963f8c9c26b942e153feeb53aae74652b7e0b2";
- };
- };
- "static-module-1.5.0" = {
- name = "static-module";
- packageName = "static-module";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/static-module/-/static-module-1.5.0.tgz";
- sha1 = "27da9883c41a8cd09236f842f0c1ebc6edf63d86";
- };
- };
- "duplexer2-0.0.2" = {
- name = "duplexer2";
- packageName = "duplexer2";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz";
- sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db";
- };
- };
- "escodegen-1.3.3" = {
- name = "escodegen";
- packageName = "escodegen";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/escodegen/-/escodegen-1.3.3.tgz";
- sha1 = "f024016f5a88e046fd12005055e939802e6c5f23";
- };
- };
- "object-inspect-0.4.0" = {
- name = "object-inspect";
- packageName = "object-inspect";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-inspect/-/object-inspect-0.4.0.tgz";
- sha1 = "f5157c116c1455b243b06ee97703392c5ad89fec";
- };
- };
- "quote-stream-0.0.0" = {
- name = "quote-stream";
- packageName = "quote-stream";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/quote-stream/-/quote-stream-0.0.0.tgz";
- sha1 = "cde29e94c409b16e19dc7098b89b6658f9721d3b";
- };
- };
- "shallow-copy-0.0.1" = {
- name = "shallow-copy";
- packageName = "shallow-copy";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz";
- sha1 = "415f42702d73d810330292cc5ee86eae1a11a170";
- };
- };
- "static-eval-0.2.4" = {
- name = "static-eval";
- packageName = "static-eval";
- version = "0.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/static-eval/-/static-eval-0.2.4.tgz";
- sha1 = "b7d34d838937b969f9641ca07d48f8ede263ea7b";
- };
- };
- "through2-0.4.2" = {
- name = "through2";
- packageName = "through2";
- version = "0.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz";
- sha1 = "dbf5866031151ec8352bb6c4db64a2292a840b9b";
- };
- };
- "esutils-1.0.0" = {
- name = "esutils";
- packageName = "esutils";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz";
- sha1 = "8151d358e20c8acc7fb745e7472c0025fe496570";
- };
- };
- "estraverse-1.5.1" = {
- name = "estraverse";
- packageName = "estraverse";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz";
- sha1 = "867a3e8e58a9f84618afb6c2ddbcd916b7cbaf71";
- };
- };
- "esprima-1.1.1" = {
- name = "esprima";
- packageName = "esprima";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-1.1.1.tgz";
- sha1 = "5b6f1547f4d102e670e140c509be6771d6aeb549";
- };
- };
- "escodegen-0.0.28" = {
- name = "escodegen";
- packageName = "escodegen";
- version = "0.0.28";
- src = fetchurl {
- url = "https://registry.npmjs.org/escodegen/-/escodegen-0.0.28.tgz";
- sha1 = "0e4ff1715f328775d6cab51ac44a406cd7abffd3";
- };
- };
- "esprima-1.0.4" = {
- name = "esprima";
- packageName = "esprima";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz";
- sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad";
- };
- };
- "estraverse-1.3.2" = {
- name = "estraverse";
- packageName = "estraverse";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/estraverse/-/estraverse-1.3.2.tgz";
- sha1 = "37c2b893ef13d723f276d878d60d8535152a6c42";
- };
- };
- "xtend-2.1.2" = {
- name = "xtend";
- packageName = "xtend";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz";
- sha1 = "6efecc2a4dad8e6962c4901b337ce7ba87b5d28b";
- };
- };
- "object-keys-0.4.0" = {
- name = "object-keys";
- packageName = "object-keys";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz";
- sha1 = "28a6aae7428dd2c3a92f3d95f21335dd204e0336";
- };
- };
- "protocol-buffers-schema-3.3.2" = {
- name = "protocol-buffers-schema";
- packageName = "protocol-buffers-schema";
- version = "3.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.3.2.tgz";
- sha512 = "3rvq2xsb9y9vfy8vgf6ja08362bjcg132kxcwcfdik1j6j17dvlk535agpwiqzj47g1d7shcwq5h6zk5jy1ny25n4z6bzh1rfkv5mjx";
- };
- };
- "signed-varint-2.0.1" = {
- name = "signed-varint";
- packageName = "signed-varint";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/signed-varint/-/signed-varint-2.0.1.tgz";
- sha1 = "50a9989da7c98c2c61dad119bc97470ef8528129";
- };
- };
- "abstract-random-access-1.1.2" = {
- name = "abstract-random-access";
- packageName = "abstract-random-access";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/abstract-random-access/-/abstract-random-access-1.1.2.tgz";
- sha1 = "9a8eac8ff79866f3f9b4bb1443ca778f1598aeda";
- };
- };
- "sorted-array-functions-1.0.0" = {
- name = "sorted-array-functions";
- packageName = "sorted-array-functions";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.0.0.tgz";
- sha1 = "c0b554d9e709affcbe56d34c1b2514197fd38279";
- };
- };
- "hypercore-6.11.0" = {
- name = "hypercore";
- packageName = "hypercore";
- version = "6.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-6.11.0.tgz";
- sha512 = "0q0972kpj73qndhwb3msk3xkfpx1zldfw1ld815kncb0lbr7mdhawjz701y230zji0lamnznrv61cmcnx2zlqjhvcyrf9fyyr93r6ds";
- };
- };
- "sodium-universal-2.0.0" = {
- name = "sodium-universal";
- packageName = "sodium-universal";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sodium-universal/-/sodium-universal-2.0.0.tgz";
- sha512 = "2rd6r7v2i3z76rzvllqx9ywk5f64q23944njcf14vv7x3l0illqn41bgdiifik4kswgys99mxsrqinq8akf3n7b15r9871km74mbivj";
- };
- };
- "stream-collector-1.0.1" = {
- name = "stream-collector";
- packageName = "stream-collector";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-collector/-/stream-collector-1.0.1.tgz";
- sha1 = "4d4e55f171356121b2c5f6559f944705ab28db15";
- };
- };
- "uint64be-2.0.1" = {
- name = "uint64be";
- packageName = "uint64be";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.1.tgz";
- sha1 = "a310d94e4e5e0b02a95d678e33323f802bdc8428";
- };
- };
- "unixify-1.0.0" = {
- name = "unixify";
- packageName = "unixify";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz";
- sha1 = "3a641c8c2ffbce4da683a5c70f03a462940c2090";
- };
- };
- "atomic-batcher-1.0.2" = {
- name = "atomic-batcher";
- packageName = "atomic-batcher";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/atomic-batcher/-/atomic-batcher-1.0.2.tgz";
- sha1 = "d16901d10ccec59516c197b9ccd8930689b813b4";
- };
- };
- "bitfield-rle-2.1.0" = {
- name = "bitfield-rle";
- packageName = "bitfield-rle";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bitfield-rle/-/bitfield-rle-2.1.0.tgz";
- sha1 = "ae29e9382a7ba4898de9f48bb23fd338c4fbdcf8";
- };
- };
- "bulk-write-stream-1.1.3" = {
- name = "bulk-write-stream";
- packageName = "bulk-write-stream";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.3.tgz";
- sha1 = "d29ca385fbd53f357aee5bd3d3028732b62ae275";
- };
- };
- "flat-tree-1.6.0" = {
- name = "flat-tree";
- packageName = "flat-tree";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/flat-tree/-/flat-tree-1.6.0.tgz";
- sha1 = "fca30cddb9006fb656eb5ebc79aeb274e7fde9ed";
- };
- };
- "hypercore-protocol-6.4.2" = {
- name = "hypercore-protocol";
- packageName = "hypercore-protocol";
- version = "6.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.4.2.tgz";
- sha512 = "07lwyavmways0q0ljrvpgvdii96f96a692m4x8dwmdwlfgh604gjz47vs95zk2ryfs9qm5j9msvy955bgyqns2az3ypysi76k51n7y7";
- };
- };
- "memory-pager-1.1.0" = {
- name = "memory-pager";
- packageName = "memory-pager";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/memory-pager/-/memory-pager-1.1.0.tgz";
- sha512 = "376gyi0kksnf6f43vhm339sa39j8nrf9dqvhgmz8y7if7w4r1jssqx2ivqb87dz83jpcjad3yi7i5p1vdzwslrwb2c1xvnqbwflxzri";
- };
- };
- "merkle-tree-stream-3.0.3" = {
- name = "merkle-tree-stream";
- packageName = "merkle-tree-stream";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/merkle-tree-stream/-/merkle-tree-stream-3.0.3.tgz";
- sha1 = "f8a064760d37e7978ad5f9f6d3c119a494f57081";
- };
- };
- "unordered-array-remove-1.0.2" = {
- name = "unordered-array-remove";
- packageName = "unordered-array-remove";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/unordered-array-remove/-/unordered-array-remove-1.0.2.tgz";
- sha1 = "c546e8f88e317a0cf2644c97ecb57dba66d250ef";
- };
- };
- "unordered-set-2.0.0" = {
- name = "unordered-set";
- packageName = "unordered-set";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unordered-set/-/unordered-set-2.0.0.tgz";
- sha1 = "985a27e975baa20b8263aea7a791e9300941a9ec";
- };
- };
- "varint-4.0.1" = {
- name = "varint";
- packageName = "varint";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-4.0.1.tgz";
- sha1 = "490829b942d248463b2b35097995c3bf737198e9";
- };
- };
- "sorted-indexof-1.0.0" = {
- name = "sorted-indexof";
- packageName = "sorted-indexof";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sorted-indexof/-/sorted-indexof-1.0.0.tgz";
- sha1 = "17c742ff7cf187e2f59a15df9b81f17a62ce0899";
- };
- };
- "sodium-javascript-0.5.4" = {
- name = "sodium-javascript";
- packageName = "sodium-javascript";
- version = "0.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.4.tgz";
- sha512 = "1dqdzm0qjk1rwq62b010b649wdpvlzdxpmwc972p0dcwsc86wqfcm8lbdcxlrwypkn2jq5df1xpbxhxfphnpr993ac543p9s212si30";
- };
- };
- "sodium-native-2.1.2" = {
- name = "sodium-native";
- packageName = "sodium-native";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.1.2.tgz";
- sha512 = "3rkm9fyndric0yxx4qsrxmj1wbz7q4ixm6735jlsvkyi8gvibszsc017660p4gdypcikwbzfyvcxl1bpjwnbcd60gbri5xnxqd1m0yl";
- };
- };
- "blake2b-2.1.2" = {
- name = "blake2b";
- packageName = "blake2b";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/blake2b/-/blake2b-2.1.2.tgz";
- sha1 = "6880eddca35cfede92c4fb2724221334f989145a";
- };
- };
- "nanoassert-1.1.0" = {
- name = "nanoassert";
- packageName = "nanoassert";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz";
- sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d";
- };
- };
- "siphash24-1.1.0" = {
- name = "siphash24";
- packageName = "siphash24";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.0.tgz";
- sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w";
- };
- };
- "xsalsa20-1.0.2" = {
- name = "xsalsa20";
- packageName = "xsalsa20";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/xsalsa20/-/xsalsa20-1.0.2.tgz";
- sha512 = "35rg34yxk4ag0qclk7bqxirgr3dgypcvkisqqj2g3y0ma16pkfy81iv79pcwff5p4spygwjh2m9v37llq7367fypqrx89s9kscwal43";
- };
- };
- "blake2b-wasm-1.1.4" = {
- name = "blake2b-wasm";
- packageName = "blake2b-wasm";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.4.tgz";
- sha512 = "3hgcz1c3h2hxgavmlf5r4dwk0wy2sg9y4lfs5ifj4spdlwyy3ki9i1i4hjaw0029c896d6yw424mw2j1nf4qyibkz2lbh1ws6z6rdlg";
- };
- };
- "base64-to-uint8array-1.0.0" = {
- name = "base64-to-uint8array";
- packageName = "base64-to-uint8array";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-to-uint8array/-/base64-to-uint8array-1.0.0.tgz";
- sha512 = "01a4ip2ivflpjsx4flnww5fqvdcsy2sqnjgp2cii6b2gnkkccr02vbf2y8r2wlcab4pb8x47qb3jpahca61v584bmz9xcwyqx0xdf3n";
- };
- };
- "corsify-2.1.0" = {
- name = "corsify";
- packageName = "corsify";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/corsify/-/corsify-2.1.0.tgz";
- sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0";
- };
- };
- "directory-index-html-2.1.0" = {
- name = "directory-index-html";
- packageName = "directory-index-html";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/directory-index-html/-/directory-index-html-2.1.0.tgz";
- sha1 = "4d5afc5187edba67ec6ab0e55f6422a0e2cb7338";
- };
- };
- "http-methods-0.1.0" = {
- name = "http-methods";
- packageName = "http-methods";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-methods/-/http-methods-0.1.0.tgz";
- sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430";
- };
- };
- "content-types-0.1.0" = {
- name = "content-types";
- packageName = "content-types";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/content-types/-/content-types-0.1.0.tgz";
- sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
- };
- };
- "body-0.1.0" = {
- name = "body";
- packageName = "body";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/body/-/body-0.1.0.tgz";
- sha1 = "e714fe28cd8848aa34cdf2c9f242bbe2e15d1cd8";
- };
- };
- "iterators-0.1.0" = {
- name = "iterators";
- packageName = "iterators";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/iterators/-/iterators-0.1.0.tgz";
- sha1 = "d03f666ca4e6130138565997cacea54164203156";
- };
- };
- "ap-0.1.0" = {
- name = "ap";
- packageName = "ap";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ap/-/ap-0.1.0.tgz";
- sha1 = "d8a3f26615379398a1b53ca6cc1a666a0fbfe150";
- };
- };
- "fd-read-stream-1.1.0" = {
- name = "fd-read-stream";
- packageName = "fd-read-stream";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fd-read-stream/-/fd-read-stream-1.1.0.tgz";
- sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1";
- };
- };
- "recursive-watch-1.1.2" = {
- name = "recursive-watch";
- packageName = "recursive-watch";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.2.tgz";
- sha1 = "912e2d62a83c8b388d288c4343495f247bc43f8e";
- };
- };
- "ttl-1.3.1" = {
- name = "ttl";
- packageName = "ttl";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ttl/-/ttl-1.3.1.tgz";
- sha512 = "36d1ph5z6c3p2qqyjq8ckksxs7m0anipm6lzf51dgv59iymac2zwaxj6fablw7zabpjxav32qk8z12fdfx6cdpp97b0van043vb5cgr";
- };
- };
- "township-client-1.3.2" = {
- name = "township-client";
- packageName = "township-client";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/township-client/-/township-client-1.3.2.tgz";
- sha512 = "3da1j7ba37apy5kqlv436dz265b8ni63ca069gy4wrj9krq236j7sp0r259ia6jk1a8d7qqg37kkk8kwmnaqwcy90wnwnjxxp8bnf78";
- };
- };
- "is-string-1.0.4" = {
- name = "is-string";
- packageName = "is-string";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz";
- sha1 = "cc3a9b69857d621e963725a24caeec873b826e64";
- };
- };
- "lodash.throttle-4.1.1" = {
- name = "lodash.throttle";
- packageName = "lodash.throttle";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz";
- sha1 = "c23e91b710242ac70c37f1e1cda9274cc39bf2f4";
- };
- };
- "nanobus-3.3.0" = {
- name = "nanobus";
- packageName = "nanobus";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanobus/-/nanobus-3.3.0.tgz";
- sha1 = "bce5d5d435a5362c7dad7f9e90cd21959589be86";
- };
- };
- "status-logger-3.1.1" = {
- name = "status-logger";
- packageName = "status-logger";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/status-logger/-/status-logger-3.1.1.tgz";
- sha512 = "005i18cgcklklz0gqd9gsck97zwf2zfr9wa26lr9djafcng34nbdlqmhwrm9ixf2qgjb9mm2k72ggscb7v3zvybbkys1xfkzv6immkl";
- };
- };
- "nanotiming-1.0.1" = {
- name = "nanotiming";
- packageName = "nanotiming";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanotiming/-/nanotiming-1.0.1.tgz";
- sha1 = "13e7a2e2767967974fedfff071edd39327f44ec3";
- };
- };
- "ansi-diff-stream-1.2.0" = {
- name = "ansi-diff-stream";
- packageName = "ansi-diff-stream";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-diff-stream/-/ansi-diff-stream-1.2.0.tgz";
- sha1 = "eb325c20ac3623ecd592011a9295d76d97de460e";
- };
- };
- "lodash.flattendeep-4.4.0" = {
- name = "lodash.flattendeep";
- packageName = "lodash.flattendeep";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz";
- sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2";
- };
- };
- "wrap-ansi-3.0.1" = {
- name = "wrap-ansi";
- packageName = "wrap-ansi";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz";
- sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba";
- };
- };
- "utile-0.3.0" = {
- name = "utile";
- packageName = "utile";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/utile/-/utile-0.3.0.tgz";
- sha1 = "1352c340eb820e4d8ddba039a4fbfaa32ed4ef3a";
- };
- };
- "async-0.9.2" = {
- name = "async";
- packageName = "async";
- version = "0.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz";
- sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
- };
- };
- "deep-equal-0.2.2" = {
- name = "deep-equal";
- packageName = "deep-equal";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.2.2.tgz";
- sha1 = "84b745896f34c684e98f2ce0e42abaf43bba017d";
- };
- };
- "ncp-1.0.1" = {
- name = "ncp";
- packageName = "ncp";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz";
- sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246";
- };
- };
- "cliclopts-1.1.1" = {
- name = "cliclopts";
- packageName = "cliclopts";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cliclopts/-/cliclopts-1.1.1.tgz";
- sha1 = "69431c7cb5af723774b0d3911b4c37512431910f";
- };
- };
- "stream-parser-0.3.1" = {
- name = "stream-parser";
- packageName = "stream-parser";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz";
- sha1 = "1618548694420021a1182ff0af1911c129761773";
- };
- };
- "bluebird-2.9.9" = {
- name = "bluebird";
- packageName = "bluebird";
- version = "2.9.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.9.tgz";
- sha1 = "61a26904d43d7f6b19dff7ed917dbc92452ad6d3";
- };
- };
- "bottleneck-1.5.3" = {
- name = "bottleneck";
- packageName = "bottleneck";
- version = "1.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bottleneck/-/bottleneck-1.5.3.tgz";
- sha1 = "55fa64920d9670087d44150404525d59f9511c20";
- };
- };
- "event-stream-3.2.2" = {
- name = "event-stream";
- packageName = "event-stream";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-3.2.2.tgz";
- sha1 = "f79f9984c07ee3fd9b44ffb3cd0422b13e24084d";
- };
- };
- "express-4.11.2" = {
- name = "express";
- packageName = "express";
- version = "4.11.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-4.11.2.tgz";
- sha1 = "8df3d5a9ac848585f00a0777601823faecd3b148";
- };
- };
- "hiredis-0.4.1" = {
- name = "hiredis";
- packageName = "hiredis";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hiredis/-/hiredis-0.4.1.tgz";
- sha1 = "aab4dcfd0fc4cbdb219d268005f2335a3c639e8f";
- };
- };
- "json-rpc2-0.8.1" = {
- name = "json-rpc2";
- packageName = "json-rpc2";
- version = "0.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-rpc2/-/json-rpc2-0.8.1.tgz";
- sha1 = "efe8c9834605b556c488d1ed7bcf24ee381eeeb2";
- };
- };
- "lodash-3.1.0" = {
- name = "lodash";
- packageName = "lodash";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-3.1.0.tgz";
- sha1 = "d41b8b33530cb3be088853208ad30092d2c27961";
- };
- };
- "native-dns-git+https://github.com/okTurtles/node-dns.git#08433ec98f517eed3c6d5e47bdf62603539cd402" = {
- name = "native-dns";
- packageName = "native-dns";
- version = "0.6.1";
- src = fetchgit {
- url = "https://github.com/okTurtles/node-dns.git";
- rev = "08433ec98f517eed3c6d5e47bdf62603539cd402";
- sha256 = "a7342bfd4e952490a8a25a68efcb1d16ecc2391f1044109ebeace89ad284f7a2";
- };
- };
- "native-dns-packet-0.1.1" = {
- name = "native-dns-packet";
- packageName = "native-dns-packet";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/native-dns-packet/-/native-dns-packet-0.1.1.tgz";
- sha1 = "97da90570b8438a00194701ce24d011fd3cc109a";
- };
- };
- "nconf-0.7.1" = {
- name = "nconf";
- packageName = "nconf";
- version = "0.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nconf/-/nconf-0.7.1.tgz";
- sha1 = "ee4b561dd979a3c58db122e38f196d49d61aeb5b";
- };
- };
- "properties-1.2.1" = {
- name = "properties";
- packageName = "properties";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/properties/-/properties-1.2.1.tgz";
- sha1 = "0ee97a7fc020b1a2a55b8659eda4aa8d869094bd";
- };
- };
- "redis-0.12.1" = {
- name = "redis";
- packageName = "redis";
- version = "0.12.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/redis/-/redis-0.12.1.tgz";
- sha1 = "64df76ad0fc8acebaebd2a0645e8a48fac49185e";
- };
- };
- "string-2.0.1" = {
- name = "string";
- packageName = "string";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/string/-/string-2.0.1.tgz";
- sha1 = "ef1473b3e11cb8158671856556959b9aff5fd759";
- };
- };
- "winston-0.8.0" = {
- name = "winston";
- packageName = "winston";
- version = "0.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-0.8.0.tgz";
- sha1 = "61d0830fa699706212206b0a2b5ca69a93043668";
- };
- };
- "superagent-0.21.0" = {
- name = "superagent";
- packageName = "superagent";
- version = "0.21.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/superagent/-/superagent-0.21.0.tgz";
- sha1 = "fb15027984751ee7152200e6cd21cd6e19a5de87";
- };
- };
- "split-0.3.3" = {
- name = "split";
- packageName = "split";
- version = "0.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/split/-/split-0.3.3.tgz";
- sha1 = "cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f";
- };
- };
- "accepts-1.2.13" = {
- name = "accepts";
- packageName = "accepts";
- version = "1.2.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz";
- sha1 = "e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea";
- };
- };
- "content-disposition-0.5.0" = {
- name = "content-disposition";
- packageName = "content-disposition";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.0.tgz";
- sha1 = "4284fe6ae0630874639e44e80a418c2934135e9e";
- };
- };
- "cookie-signature-1.0.5" = {
- name = "cookie-signature";
- packageName = "cookie-signature";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.5.tgz";
- sha1 = "a122e3f1503eca0f5355795b0711bb2368d450f9";
- };
- };
- "debug-2.1.3" = {
- name = "debug";
- packageName = "debug";
- version = "2.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.1.3.tgz";
- sha1 = "ce8ab1b5ee8fbee2bfa3b633cab93d366b63418e";
- };
- };
- "depd-1.0.1" = {
- name = "depd";
- packageName = "depd";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/depd/-/depd-1.0.1.tgz";
- sha1 = "80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa";
- };
- };
- "escape-html-1.0.1" = {
- name = "escape-html";
- packageName = "escape-html";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.1.tgz";
- sha1 = "181a286ead397a39a92857cfb1d43052e356bff0";
- };
- };
- "etag-1.5.1" = {
- name = "etag";
- packageName = "etag";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/etag/-/etag-1.5.1.tgz";
- sha1 = "54c50de04ee42695562925ac566588291be7e9ea";
- };
- };
- "finalhandler-0.3.3" = {
- name = "finalhandler";
- packageName = "finalhandler";
- version = "0.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.3.3.tgz";
- sha1 = "b1a09aa1e6a607b3541669b09bcb727f460cd426";
- };
- };
- "fresh-0.2.4" = {
- name = "fresh";
- packageName = "fresh";
- version = "0.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.2.4.tgz";
- sha1 = "3582499206c9723714190edd74b4604feb4a614c";
- };
- };
- "on-finished-2.2.1" = {
- name = "on-finished";
- packageName = "on-finished";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/on-finished/-/on-finished-2.2.1.tgz";
- sha1 = "5c85c1cc36299f78029653f667f27b6b99ebc029";
- };
- };
- "path-to-regexp-0.1.3" = {
- name = "path-to-regexp";
- packageName = "path-to-regexp";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.3.tgz";
- sha1 = "21b9ab82274279de25b156ea08fd12ca51b8aecb";
- };
- };
- "proxy-addr-1.0.10" = {
- name = "proxy-addr";
- packageName = "proxy-addr";
- version = "1.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.0.10.tgz";
- sha1 = "0d40a82f801fc355567d2ecb65efe3f077f121c5";
- };
- };
- "qs-2.3.3" = {
- name = "qs";
- packageName = "qs";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz";
- sha1 = "e9e85adbe75da0bbe4c8e0476a086290f863b404";
- };
- };
- "range-parser-1.0.3" = {
- name = "range-parser";
- packageName = "range-parser";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/range-parser/-/range-parser-1.0.3.tgz";
- sha1 = "6872823535c692e2c2a0103826afd82c2e0ff175";
- };
- };
- "send-0.11.1" = {
- name = "send";
- packageName = "send";
- version = "0.11.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.11.1.tgz";
- sha1 = "1beabfd42f9e2709f99028af3078ac12b47092d5";
- };
- };
- "serve-static-1.8.1" = {
- name = "serve-static";
- packageName = "serve-static";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.8.1.tgz";
- sha1 = "08fabd39999f050fc311443f46d5888a77ecfc7c";
- };
- };
- "type-is-1.5.7" = {
- name = "type-is";
- packageName = "type-is";
- version = "1.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-is/-/type-is-1.5.7.tgz";
- sha1 = "b9368a593cc6ef7d0645e78b2f4c64cbecd05e90";
- };
- };
- "vary-1.0.1" = {
- name = "vary";
- packageName = "vary";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vary/-/vary-1.0.1.tgz";
- sha1 = "99e4981566a286118dfb2b817357df7993376d10";
- };
- };
- "cookie-0.1.2" = {
- name = "cookie";
- packageName = "cookie";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie/-/cookie-0.1.2.tgz";
- sha1 = "72fec3d24e48a3432073d90c12642005061004b1";
- };
- };
- "merge-descriptors-0.0.2" = {
- name = "merge-descriptors";
- packageName = "merge-descriptors";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-0.0.2.tgz";
- sha1 = "c36a52a781437513c57275f39dd9d317514ac8c7";
- };
- };
- "utils-merge-1.0.0" = {
- name = "utils-merge";
- packageName = "utils-merge";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz";
- sha1 = "0294fb922bb9375153541c4f7096231f287c8af8";
- };
- };
- "negotiator-0.5.3" = {
- name = "negotiator";
- packageName = "negotiator";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/negotiator/-/negotiator-0.5.3.tgz";
- sha1 = "269d5c476810ec92edbe7b6c2f28316384f9a7e8";
- };
- };
- "ms-0.7.0" = {
- name = "ms";
- packageName = "ms";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-0.7.0.tgz";
- sha1 = "865be94c2e7397ad8a57da6a633a6e2f30798b83";
- };
- };
- "crc-3.2.1" = {
- name = "crc";
- packageName = "crc";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/crc/-/crc-3.2.1.tgz";
- sha1 = "5d9c8fb77a245cd5eca291e5d2d005334bab0082";
- };
- };
- "ee-first-1.1.0" = {
- name = "ee-first";
- packageName = "ee-first";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.0.tgz";
- sha1 = "6a0d7c6221e490feefd92ec3f441c9ce8cd097f4";
- };
- };
- "ipaddr.js-1.0.5" = {
- name = "ipaddr.js";
- packageName = "ipaddr.js";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.0.5.tgz";
- sha1 = "5fa78cf301b825c78abc3042d812723049ea23c7";
- };
- };
- "destroy-1.0.3" = {
- name = "destroy";
- packageName = "destroy";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/destroy/-/destroy-1.0.3.tgz";
- sha1 = "b433b4724e71fd8551d9885174851c5fc377e2c9";
- };
- };
- "mime-types-2.0.14" = {
- name = "mime-types";
- packageName = "mime-types";
- version = "2.0.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz";
- sha1 = "310e159db23e077f8bb22b748dabfa4957140aa6";
- };
- };
- "mime-db-1.12.0" = {
- name = "mime-db";
- packageName = "mime-db";
- version = "1.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz";
- sha1 = "3d0c63180f458eb10d325aaa37d7c58ae312e9d7";
- };
- };
- "bindings-1.3.0" = {
- name = "bindings";
- packageName = "bindings";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz";
- sha512 = "15lvjac4av3h7xmks8jgd56vryz5xb27r8xcpfwhfyr9dv305lms5llc1x6nx6nfvha873d4vg04nfi89aj4jkxplrnjiyc9kjf34hf";
- };
- };
- "jsonparse-0.0.6" = {
- name = "jsonparse";
- packageName = "jsonparse";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.6.tgz";
- sha1 = "ab599f19324d4ae178fa21a930192ab11ab61a4e";
- };
- };
- "debug-1.0.5" = {
- name = "debug";
- packageName = "debug";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-1.0.5.tgz";
- sha1 = "f7241217430f99dec4c2b473eab92228e874c2ac";
- };
- };
- "lodash-2.4.2" = {
- name = "lodash";
- packageName = "lodash";
- version = "2.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
- sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
- };
- };
- "es5class-2.3.1" = {
- name = "es5class";
- packageName = "es5class";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/es5class/-/es5class-2.3.1.tgz";
- sha1 = "42c5c18a9016bcb0db28a4d340ebb831f55d1b66";
- };
- };
- "faye-websocket-0.11.1" = {
- name = "faye-websocket";
- packageName = "faye-websocket";
- version = "0.11.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.1.tgz";
- sha1 = "f0efe18c4f56e4f40afc7e06c719fd5ee6188f38";
- };
- };
- "eventemitter3-0.1.6" = {
- name = "eventemitter3";
- packageName = "eventemitter3";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-0.1.6.tgz";
- sha1 = "8c7ac44b87baab55cd50c828dc38778eac052ea5";
- };
- };
- "better-curry-1.6.0" = {
- name = "better-curry";
- packageName = "better-curry";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/better-curry/-/better-curry-1.6.0.tgz";
- sha1 = "38f716b24c8cee07a262abc41c22c314e20e3869";
- };
- };
- "websocket-driver-0.7.0" = {
- name = "websocket-driver";
- packageName = "websocket-driver";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz";
- sha1 = "0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb";
- };
- };
- "http-parser-js-0.4.9" = {
- name = "http-parser-js";
- packageName = "http-parser-js";
- version = "0.4.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.9.tgz";
- sha1 = "ea1a04fb64adff0242e9974f297dd4c3cad271e1";
- };
- };
- "websocket-extensions-0.1.3" = {
- name = "websocket-extensions";
- packageName = "websocket-extensions";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz";
- sha512 = "0d1n4yv45ibxf72hj7qka3j7v53dwn58savfiyvsppqhhrgg3g648ykk5v7fpb53hz85kj87m4f45r7d5iazx4yqgs381z6qnfd98cy";
- };
- };
- "native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" = {
- name = "native-dns-cache";
- packageName = "native-dns-cache";
- version = "0.0.2";
- src = fetchgit {
- url = "https://github.com/okTurtles/native-dns-cache.git";
- rev = "8714196bb9223cc9a4064a4fddf9e82ec50b7d4d";
- sha256 = "3f06b2577afc3c1e428533baae3c51bad44a2e1e02fca147a1303943c214f841";
- };
- };
- "native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#8bf2714c318cfe7d31bca2006385882ccbf503e4" = {
- name = "native-dns-packet";
- packageName = "native-dns-packet";
- version = "0.0.4";
- src = fetchgit {
- url = "https://github.com/okTurtles/native-dns-packet.git";
- rev = "8bf2714c318cfe7d31bca2006385882ccbf503e4";
- sha256 = "1f39a4bd88978a0b51d45c32c777fb7f75b12e220cf7d206aa5a12d1e4e80f9d";
- };
- };
- "binaryheap-0.0.3" = {
- name = "binaryheap";
- packageName = "binaryheap";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/binaryheap/-/binaryheap-0.0.3.tgz";
- sha1 = "0d6136c84e9f1a5a90c0b97178c3e00df59820d6";
- };
- };
- "native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#307e77a47ebba57a5ae9118a284e916e5ebb305a" = {
- name = "native-dns-packet";
- packageName = "native-dns-packet";
- version = "0.0.3";
- src = fetchgit {
- url = "https://github.com/okTurtles/native-dns-packet.git";
- rev = "307e77a47ebba57a5ae9118a284e916e5ebb305a";
- sha256 = "f8aaa7bb3b2a652e52bfe5c13a6531c71d690f621ef4d86d0787838708a50358";
- };
- };
- "buffercursor-0.0.12" = {
- name = "buffercursor";
- packageName = "buffercursor";
- version = "0.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffercursor/-/buffercursor-0.0.12.tgz";
- sha1 = "78a9a7f4343ae7d820a8999acc80de591e25a779";
- };
- };
- "extsprintf-1.4.0" = {
- name = "extsprintf";
- packageName = "extsprintf";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz";
- sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f";
- };
- };
- "qs-1.2.0" = {
- name = "qs";
- packageName = "qs";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-1.2.0.tgz";
- sha1 = "ed079be28682147e6fd9a34cc2b0c1e0ec6453ee";
- };
- };
- "formidable-1.0.14" = {
- name = "formidable";
- packageName = "formidable";
- version = "1.0.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/formidable/-/formidable-1.0.14.tgz";
- sha1 = "2b3f4c411cbb5fdd695c44843e2a23514a43231a";
- };
- };
- "component-emitter-1.1.2" = {
- name = "component-emitter";
- packageName = "component-emitter";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz";
- sha1 = "296594f2753daa63996d2af08d15a95116c9aec3";
- };
- };
- "methods-1.0.1" = {
- name = "methods";
- packageName = "methods";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/methods/-/methods-1.0.1.tgz";
- sha1 = "75bc91943dffd7da037cf3eeb0ed73a0037cd14b";
- };
- };
- "cookiejar-2.0.1" = {
- name = "cookiejar";
- packageName = "cookiejar";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.0.1.tgz";
- sha1 = "3d12752f6adf68a892f332433492bd5812bb668f";
- };
- };
- "reduce-component-1.0.1" = {
- name = "reduce-component";
- packageName = "reduce-component";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/reduce-component/-/reduce-component-1.0.1.tgz";
- sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da";
- };
- };
- "form-data-0.1.3" = {
- name = "form-data";
- packageName = "form-data";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz";
- sha1 = "4ee4346e6eb5362e8344a02075bd8dbd8c7373ea";
- };
- };
- "readable-stream-1.0.27-1" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.0.27-1";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz";
- sha1 = "6b67983c20357cefd07f0165001a16d710d91078";
- };
- };
- "JSONStream-0.8.4" = {
- name = "JSONStream";
- packageName = "JSONStream";
- version = "0.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz";
- sha1 = "91657dfe6ff857483066132b4618b62e8f4887bd";
- };
- };
- "basic-auth-1.1.0" = {
- name = "basic-auth";
- packageName = "basic-auth";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz";
- sha1 = "45221ee429f7ee1e5035be3f51533f1cdfd29884";
- };
- };
- "cors-2.8.4" = {
- name = "cors";
- packageName = "cors";
- version = "2.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cors/-/cors-2.8.4.tgz";
- sha1 = "2bd381f2eb201020105cd50ea59da63090694686";
- };
- };
- "docker-parse-image-3.0.1" = {
- name = "docker-parse-image";
- packageName = "docker-parse-image";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/docker-parse-image/-/docker-parse-image-3.0.1.tgz";
- sha1 = "33dc69291eac3414f84871f2d59d77b6f6948be4";
- };
- };
- "from2-1.3.0" = {
- name = "from2";
- packageName = "from2";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/from2/-/from2-1.3.0.tgz";
- sha1 = "88413baaa5f9a597cfde9221d86986cd3c061dfd";
- };
- };
- "fs-blob-store-5.2.1" = {
- name = "fs-blob-store";
- packageName = "fs-blob-store";
- version = "5.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-blob-store/-/fs-blob-store-5.2.1.tgz";
- sha1 = "2a7db7ef59a5ec548cce8564066508224c9b0457";
- };
- };
- "level-0.18.0" = {
- name = "level";
- packageName = "level";
- version = "0.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/level/-/level-0.18.0.tgz";
- sha1 = "e1a3f4cad65fc02e25070a47d63d7b527361c1cf";
- };
- };
- "level-sublevel-6.6.1" = {
- name = "level-sublevel";
- packageName = "level-sublevel";
- version = "6.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/level-sublevel/-/level-sublevel-6.6.1.tgz";
- sha1 = "f9a77f7521ab70a8f8e92ed56f21a3c7886a4485";
- };
- };
- "leveldown-0.10.6" = {
- name = "leveldown";
- packageName = "leveldown";
- version = "0.10.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/leveldown/-/leveldown-0.10.6.tgz";
- sha1 = "a1bb751c95263ff60f41bde0f973ff8c1e98bbe9";
- };
- };
- "levelup-0.18.6" = {
- name = "levelup";
- packageName = "levelup";
- version = "0.18.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz";
- sha1 = "e6a01cb089616c8ecc0291c2a9bd3f0c44e3e5eb";
- };
- };
- "lexicographic-integer-1.1.0" = {
- name = "lexicographic-integer";
- packageName = "lexicographic-integer";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lexicographic-integer/-/lexicographic-integer-1.1.0.tgz";
- sha1 = "52ca6d998a572e6322b515f5b80e396c6043e9b8";
- };
- };
- "memdown-0.10.2" = {
- name = "memdown";
- packageName = "memdown";
- version = "0.10.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/memdown/-/memdown-0.10.2.tgz";
- sha1 = "a15ed0b6a8f216848d80a75c0fe8dd0bad89b608";
- };
- };
- "minimist-0.2.0" = {
- name = "minimist";
- packageName = "minimist";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz";
- sha1 = "4dffe525dae2b864c66c2e23c6271d7afdecefce";
- };
- };
- "ndjson-1.5.0" = {
- name = "ndjson";
- packageName = "ndjson";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz";
- sha1 = "ae603b36b134bcec347b452422b0bf98d5832ec8";
- };
- };
- "pumpify-1.3.5" = {
- name = "pumpify";
- packageName = "pumpify";
- version = "1.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/pumpify/-/pumpify-1.3.5.tgz";
- sha1 = "1b671c619940abcaeac0ad0e3a3c164be760993b";
- };
- };
- "relative-date-1.1.3" = {
- name = "relative-date";
- packageName = "relative-date";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/relative-date/-/relative-date-1.1.3.tgz";
- sha1 = "120903040588ec7a4a399c6547fd01d0e3d2dc63";
- };
- };
- "root-2.0.0" = {
- name = "root";
- packageName = "root";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/root/-/root-2.0.0.tgz";
- sha1 = "5cde3bc4ee9eb314c9dc64f97d9b9787df22e2f7";
- };
- };
- "sorted-union-stream-1.0.2" = {
- name = "sorted-union-stream";
- packageName = "sorted-union-stream";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/sorted-union-stream/-/sorted-union-stream-1.0.2.tgz";
- sha1 = "558e7f57a5bf6baf6501baf2ae2c9076c4502006";
- };
- };
- "split2-0.2.1" = {
- name = "split2";
- packageName = "split2";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/split2/-/split2-0.2.1.tgz";
- sha1 = "02ddac9adc03ec0bb78c1282ec079ca6e85ae900";
- };
- };
- "tar-stream-1.5.5" = {
- name = "tar-stream";
- packageName = "tar-stream";
- version = "1.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.5.tgz";
- sha512 = "219gn10gvilrq6h3yshbhn25fx46n0wlgg66h0v326jhzz8gmpxsinb8bnhx1py35z0cv2248v91k2vy6vmkajmvpmkfmizywn601wr";
- };
- };
- "through2-0.6.5" = {
- name = "through2";
- packageName = "through2";
- version = "0.6.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz";
- sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48";
- };
- };
- "jsonparse-0.0.5" = {
- name = "jsonparse";
- packageName = "jsonparse";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz";
- sha1 = "330542ad3f0a654665b778f3eb2d9a9fa507ac64";
- };
- };
- "lru-cache-2.7.3" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "2.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
- sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
- };
- };
- "level-packager-0.18.0" = {
- name = "level-packager";
- packageName = "level-packager";
- version = "0.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/level-packager/-/level-packager-0.18.0.tgz";
- sha1 = "c076b087646f1d7dedcc3442f58800dd0a0b45f5";
- };
- };
- "bytewise-1.1.0" = {
- name = "bytewise";
- packageName = "bytewise";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz";
- sha1 = "1d13cbff717ae7158094aa881b35d081b387253e";
- };
- };
- "levelup-0.19.1" = {
- name = "levelup";
- packageName = "levelup";
- version = "0.19.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/levelup/-/levelup-0.19.1.tgz";
- sha1 = "f3a6a7205272c4b5f35e412ff004a03a0aedf50b";
- };
- };
- "ltgt-2.1.3" = {
- name = "ltgt";
- packageName = "ltgt";
- version = "2.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ltgt/-/ltgt-2.1.3.tgz";
- sha1 = "10851a06d9964b971178441c23c9e52698eece34";
- };
- };
- "pull-level-2.0.3" = {
- name = "pull-level";
- packageName = "pull-level";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-level/-/pull-level-2.0.3.tgz";
- sha1 = "9500635e257945d6feede185f5d7a24773455b17";
- };
- };
- "pull-stream-3.6.1" = {
- name = "pull-stream";
- packageName = "pull-stream";
- version = "3.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.1.tgz";
- sha1 = "c5c2ae4a51246efeebcc65c0412a3d725a92ce00";
- };
- };
- "typewiselite-1.0.0" = {
- name = "typewiselite";
- packageName = "typewiselite";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/typewiselite/-/typewiselite-1.0.0.tgz";
- sha1 = "c8882fa1bb1092c06005a97f34ef5c8508e3664e";
- };
- };
- "bytewise-core-1.2.3" = {
- name = "bytewise-core";
- packageName = "bytewise-core";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz";
- sha1 = "3fb410c7e91558eb1ab22a82834577aa6bd61d42";
- };
- };
- "typewise-1.0.3" = {
- name = "typewise";
- packageName = "typewise";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz";
- sha1 = "1067936540af97937cc5dcf9922486e9fa284651";
- };
- };
- "typewise-core-1.2.0" = {
- name = "typewise-core";
- packageName = "typewise-core";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz";
- sha1 = "97eb91805c7f55d2f941748fa50d315d991ef195";
- };
- };
- "bl-0.8.2" = {
- name = "bl";
- packageName = "bl";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz";
- sha1 = "c9b6bca08d1bc2ea00fc8afb4f1a5fd1e1c66e4e";
- };
- };
- "deferred-leveldown-0.2.0" = {
- name = "deferred-leveldown";
- packageName = "deferred-leveldown";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz";
- sha1 = "2cef1f111e1c57870d8bbb8af2650e587cd2f5b4";
- };
- };
- "errno-0.1.6" = {
- name = "errno";
- packageName = "errno";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz";
- sha512 = "0vny3xisd56kx193rhv6vpccjxlajjn9ss5wk96l1ya8zbpkwbjrrgrm9wpfm3xc8apx8z9xb0kjkw0y5qnc6gy1hf2qsas79093hr2";
- };
- };
- "prr-0.0.0" = {
- name = "prr";
- packageName = "prr";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz";
- sha1 = "1a84b85908325501411853d0081ee3fa86e2926a";
- };
- };
- "semver-5.1.1" = {
- name = "semver";
- packageName = "semver";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.1.1.tgz";
- sha1 = "a3292a373e6f3e0798da0b20641b9a9c5bc47e19";
- };
- };
- "xtend-3.0.0" = {
- name = "xtend";
- packageName = "xtend";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz";
- sha1 = "5cce7407baf642cba7becda568111c493f59665a";
- };
- };
- "abstract-leveldown-0.12.4" = {
- name = "abstract-leveldown";
- packageName = "abstract-leveldown";
- version = "0.12.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz";
- sha1 = "29e18e632e60e4e221d5810247852a63d7b2e410";
- };
- };
- "prr-1.0.1" = {
- name = "prr";
- packageName = "prr";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz";
- sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
- };
- };
- "level-post-1.0.5" = {
- name = "level-post";
- packageName = "level-post";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/level-post/-/level-post-1.0.5.tgz";
- sha1 = "2a66390409bf6a1621a444bab6f016444cc9802c";
- };
- };
- "pull-cat-1.1.11" = {
- name = "pull-cat";
- packageName = "pull-cat";
- version = "1.1.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-cat/-/pull-cat-1.1.11.tgz";
- sha1 = "b642dd1255da376a706b6db4fa962f5fdb74c31b";
- };
- };
- "pull-live-1.0.1" = {
- name = "pull-live";
- packageName = "pull-live";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-live/-/pull-live-1.0.1.tgz";
- sha1 = "a4ecee01e330155e9124bbbcf4761f21b38f51f5";
- };
- };
- "pull-pushable-2.1.1" = {
- name = "pull-pushable";
- packageName = "pull-pushable";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-pushable/-/pull-pushable-2.1.1.tgz";
- sha1 = "86666abbe3f5402f1f7ead03eefd69b785eca5b8";
- };
- };
- "pull-window-2.1.4" = {
- name = "pull-window";
- packageName = "pull-window";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/pull-window/-/pull-window-2.1.4.tgz";
- sha1 = "fc3b86feebd1920c7ae297691e23f705f88552f0";
- };
- };
- "stream-to-pull-stream-1.7.2" = {
- name = "stream-to-pull-stream";
- packageName = "stream-to-pull-stream";
- version = "1.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-to-pull-stream/-/stream-to-pull-stream-1.7.2.tgz";
- sha1 = "757609ae1cebd33c7432d4afbe31ff78650b9dde";
- };
- };
- "looper-2.0.0" = {
- name = "looper";
- packageName = "looper";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/looper/-/looper-2.0.0.tgz";
- sha1 = "66cd0c774af3d4fedac53794f742db56da8f09ec";
- };
- };
- "looper-3.0.0" = {
- name = "looper";
- packageName = "looper";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/looper/-/looper-3.0.0.tgz";
- sha1 = "2efa54c3b1cbaba9b94aee2e5914b0be57fbb749";
- };
- };
- "nan-2.1.0" = {
- name = "nan";
- packageName = "nan";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz";
- sha1 = "020a7ccedc63fdee85f85967d5607849e74abbe8";
- };
- };
- "semver-2.3.2" = {
- name = "semver";
- packageName = "semver";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz";
- sha1 = "b9848f25d6cf36333073ec9ef8856d42f1233e52";
- };
- };
- "ltgt-1.0.2" = {
- name = "ltgt";
- packageName = "ltgt";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ltgt/-/ltgt-1.0.2.tgz";
- sha1 = "e6817eb29ad204fc0c9e96ef8b0fee98ef6b9aa3";
- };
- };
- "split2-2.2.0" = {
- name = "split2";
- packageName = "split2";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz";
- sha512 = "1plzy1n554n2gwfpavi4azb4y45dm2mwj7dq8ma99yg1z55xcdxmkibsfhsh1h19qgsrcamm0ha5qi2c3has6skvx4bix5p67czc1j4";
- };
- };
- "murl-0.4.1" = {
- name = "murl";
- packageName = "murl";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/murl/-/murl-0.4.1.tgz";
- sha1 = "489fbcc7f1b2b77e689c84120a51339c3849c939";
- };
- };
- "protein-0.5.0" = {
- name = "protein";
- packageName = "protein";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/protein/-/protein-0.5.0.tgz";
- sha1 = "80ab4e919749351263ef14500d684e57c4202840";
- };
- };
- "bl-1.2.1" = {
- name = "bl";
- packageName = "bl";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-1.2.1.tgz";
- sha1 = "cac328f7bee45730d404b692203fcb590e172d5e";
- };
- };
- "aws-sdk-2.173.0" = {
- name = "aws-sdk";
- packageName = "aws-sdk";
- version = "2.173.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.173.0.tgz";
- sha1 = "2b29486f16e1d04159d0513aa47f5dd70370116d";
- };
- };
- "buffer-4.9.1" = {
- name = "buffer";
- packageName = "buffer";
- version = "4.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz";
- sha1 = "6d1bb601b07a4efced97094132093027c95bc298";
- };
- };
- "crypto-browserify-1.0.9" = {
- name = "crypto-browserify";
- packageName = "crypto-browserify";
- version = "1.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-1.0.9.tgz";
- sha1 = "cc5449685dfb85eb11c9828acc7cb87ab5bbfcc0";
- };
- };
- "jmespath-0.15.0" = {
- name = "jmespath";
- packageName = "jmespath";
- version = "0.15.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz";
- sha1 = "a3f222a9aae9f966f5d27c796510e28091764217";
- };
- };
- "sax-1.2.1" = {
- name = "sax";
- packageName = "sax";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz";
- sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a";
- };
- };
- "url-0.10.3" = {
- name = "url";
- packageName = "url";
- version = "0.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/url/-/url-0.10.3.tgz";
- sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64";
- };
- };
- "xml2js-0.4.17" = {
- name = "xml2js";
- packageName = "xml2js";
- version = "0.4.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.17.tgz";
- sha1 = "17be93eaae3f3b779359c795b419705a8817e868";
- };
- };
- "xmlbuilder-4.2.1" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.2.1.tgz";
- sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5";
- };
- };
- "binstall-1.2.0" = {
- name = "binstall";
- packageName = "binstall";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/binstall/-/binstall-1.2.0.tgz";
- sha1 = "6b2c0f580b9e3c607f50ef7a22a54ce9fdc8d933";
- };
- };
- "chalk-2.1.0" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz";
- sha512 = "1fnn3znivja3xq1lacvsdwkl2s8ki9w95sylnf2pkmaia1mjz3llbdb5r2dxsflqfky3h8f1bh0piv0l5waw2bkdniqnyv0yx5wch9d";
- };
- };
- "chokidar-1.6.0" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-1.6.0.tgz";
- sha1 = "90c32ad4802901d7713de532dc284e96a63ad058";
- };
- };
- "cross-spawn-4.0.0" = {
- name = "cross-spawn";
- packageName = "cross-spawn";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.0.tgz";
- sha1 = "8254774ab4786b8c5b3cf4dfba66ce563932c252";
- };
- };
- "find-parent-dir-0.3.0" = {
- name = "find-parent-dir";
- packageName = "find-parent-dir";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.0.tgz";
- sha1 = "33c44b429ab2b2f0646299c5f9f718f376ff8d54";
- };
- };
- "firstline-1.2.1" = {
- name = "firstline";
- packageName = "firstline";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/firstline/-/firstline-1.2.1.tgz";
- sha1 = "b88673c42009f8821fac2926e99720acee924fae";
- };
- };
- "fs-extra-0.30.0" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "0.30.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz";
- sha1 = "f233ffcc08d4da7d432daa449776989db1df93f0";
- };
- };
- "fsevents-1.1.2" = {
- name = "fsevents";
- packageName = "fsevents";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.2.tgz";
- sha512 = "25k3z64r4fhzjs1crh981lkkvkrhn2xv67k7y00zpnpsl571y5apg0r0kanddirms8kxf2xgf4yx9n2hzs9ml3v3p9qcnqhkh9khzja";
- };
- };
- "lodash-4.13.1" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.13.1.tgz";
- sha1 = "83e4b10913f48496d4d16fec4a560af2ee744b68";
- };
- };
- "murmur-hash-js-1.0.0" = {
- name = "murmur-hash-js";
- packageName = "murmur-hash-js";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/murmur-hash-js/-/murmur-hash-js-1.0.0.tgz";
- sha1 = "5041049269c96633c866386960b2f4289e75e5b0";
- };
- };
- "node-elm-compiler-4.3.3" = {
- name = "node-elm-compiler";
- packageName = "node-elm-compiler";
- version = "4.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-elm-compiler/-/node-elm-compiler-4.3.3.tgz";
- sha512 = "2xwfrbx7s959y63gdiy54y86mp770vkxfgszp5xhwnxr29d3xavf8dnp0ab238732wh1121qwlx6k68wa4wkk4rm4qiswq5h5m9fjhd";
- };
- };
- "split-1.0.1" = {
- name = "split";
- packageName = "split";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz";
- sha512 = "2916kdi862ik0dlvr2wf2kvzmw8i8wk5spbr9wpdcksrkhrl3m0082jj1q4mqzvv50mlah5s4vcy6k18nacbj09kxbzp2pbysh8wg4r";
- };
- };
- "supports-color-4.2.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-4.2.0.tgz";
- sha512 = "158ng0v99ac7csif7v6153bp63nxmlz2a613z8y09sk8jsj2rpalscgg0lfzdlpfdd5612jqsnkvrz0137inka2qjcmcjrmy2xhrkaf";
- };
- };
- "async-each-1.0.1" = {
- name = "async-each";
- packageName = "async-each";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz";
- sha1 = "19d386a1d9edc6e7c1c85d388aedbcc56d33602d";
- };
- };
- "is-binary-path-1.0.1" = {
- name = "is-binary-path";
- packageName = "is-binary-path";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
- sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
- };
- };
- "readdirp-2.1.0" = {
- name = "readdirp";
- packageName = "readdirp";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz";
- sha1 = "4ed0ad060df3073300c48440373f72d1cc642d78";
- };
- };
- "binary-extensions-1.11.0" = {
- name = "binary-extensions";
- packageName = "binary-extensions";
- version = "1.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz";
- sha1 = "46aa1751fb6a2f93ee5e689bb1087d4b14c6c205";
- };
- };
- "set-immediate-shim-1.0.1" = {
- name = "set-immediate-shim";
- packageName = "set-immediate-shim";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz";
- sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61";
- };
- };
- "lru-cache-4.1.1" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz";
- sha512 = "1xz91sizgyzh8plz5jx1labzpygapm6xy3qpxriaj00yvnhy4lnmhqcb20qln4lh80c5g3yzp4j5i6g63njq1r5sl9c0zlkh9xjk2xb";
- };
- };
- "pseudomap-1.0.2" = {
- name = "pseudomap";
- packageName = "pseudomap";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
- sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
- };
- };
- "yallist-2.1.2" = {
- name = "yallist";
- packageName = "yallist";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
- sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
- };
- };
- "find-elm-dependencies-1.0.2" = {
- name = "find-elm-dependencies";
- packageName = "find-elm-dependencies";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-elm-dependencies/-/find-elm-dependencies-1.0.2.tgz";
- sha512 = "2hpc7v115prqkr487hxh0gllwvf0xa90lsb3i1azmrpfclp37vahxvdsqkr9pwvbcr7znccvhfgp1xy26czrmdcxzfl250a63dywyw2";
- };
- };
- "lodash-4.14.2" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.14.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz";
- sha1 = "bbccce6373a400fbfd0a8c67ca42f6d1ef416432";
- };
- };
- "firstline-1.2.0" = {
- name = "firstline";
- packageName = "firstline";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/firstline/-/firstline-1.2.0.tgz";
- sha1 = "c9f4886e7f7fbf0afc12d71941dce06b192aea05";
- };
- };
- "auto-bind-1.1.0" = {
- name = "auto-bind";
- packageName = "auto-bind";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/auto-bind/-/auto-bind-1.1.0.tgz";
- sha1 = "93b864dc7ee01a326281775d5c75ca0a751e5961";
- };
- };
- "clipboardy-1.2.2" = {
- name = "clipboardy";
- packageName = "clipboardy";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/clipboardy/-/clipboardy-1.2.2.tgz";
- sha512 = "2pq14hxz6w4k5yvndrm1fv3iyscdqf5c4nja421gl2661didzh80r08zddd84zny94831qs44biamjhvwmqh40pfy3pjv3vwl2ap8np";
- };
- };
- "conf-1.3.1" = {
- name = "conf";
- packageName = "conf";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/conf/-/conf-1.3.1.tgz";
- sha512 = "0s33rz07rq4r5kf3bgza6gz4157ph97cm2dh8ws0mj7b924prjaqwbsnljx61pvzkl3db82z51i2k41dpg0hqw6srhkx9qx4nb1yrs8";
- };
- };
- "got-7.1.0" = {
- name = "got";
- packageName = "got";
- version = "7.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-7.1.0.tgz";
- sha512 = "0phvycaq4yl6jjpyc9vwmgghfy7a6nnpynscpgpbx74zjaa5dbpl1ag0jf7jvimfk0vf6xfjqgh67xdlvi0ycgvp1kasajapjiqr5b3";
- };
- };
- "has-ansi-3.0.0" = {
- name = "has-ansi";
- packageName = "has-ansi";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-ansi/-/has-ansi-3.0.0.tgz";
- sha1 = "36077ef1d15f333484aa7fa77a28606f1c655b37";
- };
- };
- "import-jsx-1.3.0" = {
- name = "import-jsx";
- packageName = "import-jsx";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/import-jsx/-/import-jsx-1.3.0.tgz";
- sha512 = "26xxz57vqm8p6mg0syr21risma4h5h9n8kn4zv4pcxqap4zxicc210w5m7vz6a4zldhd102sbi7giwzmw0wjlpr6rb1hycr8iv703b1";
- };
- };
- "ink-0.3.1" = {
- name = "ink";
- packageName = "ink";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ink/-/ink-0.3.1.tgz";
- sha512 = "0km0z5smnzrh4c5386h3vbmvps6m45m6hbbf62as9wl4vw370q411gpxxhqz3i83n0qjds7py2ylgjx2y3915m5v77c1sf428w4wwkv";
- };
- };
- "ink-text-input-1.1.1" = {
- name = "ink-text-input";
- packageName = "ink-text-input";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ink-text-input/-/ink-text-input-1.1.1.tgz";
- sha512 = "3zdg79viy9vippnaj942c8scyk2nay9fqv3zbd681hfcvn082pxbhc7vszppd7k0fy74rd20s2ias98mi2qzhc6a6zm0p4vv6yybrkc";
- };
- };
- "lodash.debounce-4.0.8" = {
- name = "lodash.debounce";
- packageName = "lodash.debounce";
- version = "4.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz";
- sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af";
- };
- };
- "mem-1.1.0" = {
- name = "mem";
- packageName = "mem";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz";
- sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76";
- };
- };
- "skin-tone-1.0.0" = {
- name = "skin-tone";
- packageName = "skin-tone";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/skin-tone/-/skin-tone-1.0.0.tgz";
- sha1 = "d4ba3e8e5e92760e4d1d3b603d772805c6cb256f";
- };
- };
- "arch-2.1.0" = {
- name = "arch";
- packageName = "arch";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arch/-/arch-2.1.0.tgz";
- sha1 = "3613aa46149064b3c1f0607919bf1d4786e82889";
- };
- };
- "execa-0.8.0" = {
- name = "execa";
- packageName = "execa";
- version = "0.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz";
- sha1 = "d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da";
- };
- };
- "cross-spawn-5.1.0" = {
- name = "cross-spawn";
- packageName = "cross-spawn";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz";
- sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449";
- };
- };
- "get-stream-3.0.0" = {
- name = "get-stream";
- packageName = "get-stream";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz";
- sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14";
- };
- };
- "npm-run-path-2.0.2" = {
- name = "npm-run-path";
- packageName = "npm-run-path";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
- sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
- };
- };
- "p-finally-1.0.0" = {
- name = "p-finally";
- packageName = "p-finally";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
- sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
- };
- };
- "strip-eof-1.0.0" = {
- name = "strip-eof";
- packageName = "strip-eof";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
- sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
- };
- };
- "shebang-command-1.2.0" = {
- name = "shebang-command";
- packageName = "shebang-command";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
- sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
- };
- };
- "shebang-regex-1.0.0" = {
- name = "shebang-regex";
- packageName = "shebang-regex";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
- sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
- };
- };
- "path-key-2.0.1" = {
- name = "path-key";
- packageName = "path-key";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
- sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
- };
- };
- "dot-prop-4.2.0" = {
- name = "dot-prop";
- packageName = "dot-prop";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz";
- sha512 = "2wyv9brsq3dzp724y1q5z5j5ja83y834hgc193lnarfdycwz1ii3xg02qxx3dg05x3skwjm1di5s5a8hqi8l5v1afx2bia436pifhxm";
- };
- };
- "env-paths-1.0.0" = {
- name = "env-paths";
- packageName = "env-paths";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/env-paths/-/env-paths-1.0.0.tgz";
- sha1 = "4168133b42bb05c38a35b1ae4397c8298ab369e0";
- };
- };
- "make-dir-1.1.0" = {
- name = "make-dir";
- packageName = "make-dir";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz";
- sha512 = "1q7686aqgkxk9l6nqhzbil3599f9pxiz364kdbfy7pdr9sny7zylpm6yf4rwz4i0aa11lmf35mh8jmj7g7vxm37pvqvl9qbij5jxyfh";
- };
- };
- "pkg-up-2.0.0" = {
- name = "pkg-up";
- packageName = "pkg-up";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz";
- sha1 = "c819ac728059a461cab1c3889a2be3c49a004d7f";
- };
- };
- "write-file-atomic-2.3.0" = {
- name = "write-file-atomic";
- packageName = "write-file-atomic";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz";
- sha512 = "2sgqxmcqzjd7nq9gjh6jz7vfb0gs0ag4jvqzdq93afq3bw3jrm88mhxql9sryyb04f3ipw5jkgjfiigsmdwlz9fgsnnm3cxhcmxxqy6";
- };
- };
- "pify-3.0.0" = {
- name = "pify";
- packageName = "pify";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
- sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
- };
- };
- "find-up-2.1.0" = {
- name = "find-up";
- packageName = "find-up";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz";
- sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
- };
- };
- "locate-path-2.0.0" = {
- name = "locate-path";
- packageName = "locate-path";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz";
- sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
- };
- };
- "p-locate-2.0.0" = {
- name = "p-locate";
- packageName = "p-locate";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
- sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
- };
- };
- "path-exists-3.0.0" = {
- name = "path-exists";
- packageName = "path-exists";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
- sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
- };
- };
- "p-limit-1.1.0" = {
- name = "p-limit";
- packageName = "p-limit";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-limit/-/p-limit-1.1.0.tgz";
- sha1 = "b07ff2d9a5d88bec806035895a2bab66a27988bc";
- };
- };
- "duplexer3-0.1.4" = {
- name = "duplexer3";
- packageName = "duplexer3";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz";
- sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2";
- };
- };
- "is-retry-allowed-1.1.0" = {
- name = "is-retry-allowed";
- packageName = "is-retry-allowed";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz";
- sha1 = "11a060568b67339444033d0125a61a20d564fb34";
- };
- };
- "isurl-1.0.0" = {
- name = "isurl";
- packageName = "isurl";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz";
- sha512 = "3vs53bpdrwiwwcql2xs20jmd8qha27k4iypdhr0b3isgdaj18vz80nhxwvvqxk6y3x5vj3slchxl0r91gjhz487xmkkp52gridg5zyl";
- };
- };
- "p-cancelable-0.3.0" = {
- name = "p-cancelable";
- packageName = "p-cancelable";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz";
- sha512 = "35jir2yjv2l3v8aj062w0hfinzgwpb1sbhmaym8h4xn78j498naj7mkf4rpv74n5bfkysxb7l893l2yw3dpqk5dgb2yiwr8pcydjmj5";
- };
- };
- "p-timeout-1.2.1" = {
- name = "p-timeout";
- packageName = "p-timeout";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz";
- sha1 = "5eb3b353b7fce99f101a1038880bb054ebbea386";
- };
- };
- "timed-out-4.0.1" = {
- name = "timed-out";
- packageName = "timed-out";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz";
- sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f";
- };
- };
- "url-parse-lax-1.0.0" = {
- name = "url-parse-lax";
- packageName = "url-parse-lax";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz";
- sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73";
- };
- };
- "url-to-options-1.0.1" = {
- name = "url-to-options";
- packageName = "url-to-options";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz";
- sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9";
- };
- };
- "has-to-string-tag-x-1.4.1" = {
- name = "has-to-string-tag-x";
- packageName = "has-to-string-tag-x";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz";
- sha512 = "0bqvhd628h3lrsydbp1xllh7jp23c58j7d4z0x0v9ddffindkk1zfrqmzm28z47ipjp0zxlmzvmlzk98zf9mzjsc47bmp1ydizcmmmx";
- };
- };
- "is-object-1.0.1" = {
- name = "is-object";
- packageName = "is-object";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz";
- sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470";
- };
- };
- "has-symbol-support-x-1.4.1" = {
- name = "has-symbol-support-x";
- packageName = "has-symbol-support-x";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.1.tgz";
- sha512 = "0qgqbqmrlx51w4ixcln9ljr5hs2jj8fvryq7i8cg9a739p7y2c5z8wpplp9jhnfn4a3xn6li2b2npmhfm2x80khm9di3vllyyv9wii6";
- };
- };
- "babel-plugin-transform-es2015-destructuring-6.23.0" = {
- name = "babel-plugin-transform-es2015-destructuring";
- packageName = "babel-plugin-transform-es2015-destructuring";
- version = "6.23.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz";
- sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d";
- };
- };
- "babel-plugin-transform-object-rest-spread-6.26.0" = {
- name = "babel-plugin-transform-object-rest-spread";
- packageName = "babel-plugin-transform-object-rest-spread";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz";
- sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06";
- };
- };
- "babel-plugin-transform-react-jsx-6.24.1" = {
- name = "babel-plugin-transform-react-jsx";
- packageName = "babel-plugin-transform-react-jsx";
- version = "6.24.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-transform-react-jsx/-/babel-plugin-transform-react-jsx-6.24.1.tgz";
- sha1 = "840a028e7df460dfc3a2d29f0c0d91f6376e66a3";
- };
- };
- "caller-path-2.0.0" = {
- name = "caller-path";
- packageName = "caller-path";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz";
- sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4";
- };
- };
- "require-from-string-1.2.1" = {
- name = "require-from-string";
- packageName = "require-from-string";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz";
- sha1 = "529c9ccef27380adfec9a2f965b649bbee636418";
- };
- };
- "resolve-from-3.0.0" = {
- name = "resolve-from";
- packageName = "resolve-from";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz";
- sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
- };
- };
- "babel-plugin-syntax-object-rest-spread-6.13.0" = {
- name = "babel-plugin-syntax-object-rest-spread";
- packageName = "babel-plugin-syntax-object-rest-spread";
- version = "6.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz";
- sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5";
- };
- };
- "babel-helper-builder-react-jsx-6.26.0" = {
- name = "babel-helper-builder-react-jsx";
- packageName = "babel-helper-builder-react-jsx";
- version = "6.26.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-helper-builder-react-jsx/-/babel-helper-builder-react-jsx-6.26.0.tgz";
- sha1 = "39ff8313b75c8b65dceff1f31d383e0ff2a408a0";
- };
- };
- "babel-plugin-syntax-jsx-6.18.0" = {
- name = "babel-plugin-syntax-jsx";
- packageName = "babel-plugin-syntax-jsx";
- version = "6.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz";
- sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946";
- };
- };
- "caller-callsite-2.0.0" = {
- name = "caller-callsite";
- packageName = "caller-callsite";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz";
- sha1 = "847e0fce0a223750a9a027c54b33731ad3154134";
- };
- };
- "callsites-2.0.0" = {
- name = "callsites";
- packageName = "callsites";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz";
- sha1 = "06eb84f00eea413da86affefacbffb36093b3c50";
- };
- };
- "arrify-1.0.1" = {
- name = "arrify";
- packageName = "arrify";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz";
- sha1 = "898508da2226f380df904728456849c1501a4b0d";
- };
- };
- "indent-string-3.2.0" = {
- name = "indent-string";
- packageName = "indent-string";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz";
- sha1 = "4a5fd6d27cc332f37e5419a504dbb837105c9289";
- };
- };
- "lodash.isequal-4.5.0" = {
- name = "lodash.isequal";
- packageName = "lodash.isequal";
- version = "4.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz";
- sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0";
- };
- };
- "log-update-2.3.0" = {
- name = "log-update";
- packageName = "log-update";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz";
- sha1 = "88328fd7d1ce7938b29283746f0b1bc126b24708";
- };
- };
- "prop-types-15.6.0" = {
- name = "prop-types";
- packageName = "prop-types";
- version = "15.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/prop-types/-/prop-types-15.6.0.tgz";
- sha1 = "ceaf083022fc46b4a35f69e13ef75aed0d639856";
- };
- };
- "ansi-escapes-3.0.0" = {
- name = "ansi-escapes";
- packageName = "ansi-escapes";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz";
- sha512 = "06szfav8g7xywvqsis16nnkjqs2snhv37r4m53l1ax8k2sahvqv9id2klam32jajqd08ylw8g9wbcjr971igx6vh8idan76drrjby9v";
- };
- };
- "fbjs-0.8.16" = {
- name = "fbjs";
- packageName = "fbjs";
- version = "0.8.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz";
- sha1 = "5e67432f550dc41b572bf55847b8aca64e5337db";
- };
- };
- "core-js-1.2.7" = {
- name = "core-js";
- packageName = "core-js";
- version = "1.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz";
- sha1 = "652294c14651db28fa93bd2d5ff2983a4f08c636";
- };
- };
- "isomorphic-fetch-2.2.1" = {
- name = "isomorphic-fetch";
- packageName = "isomorphic-fetch";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz";
- sha1 = "611ae1acf14f5e81f729507472819fe9733558a9";
- };
- };
- "setimmediate-1.0.5" = {
- name = "setimmediate";
- packageName = "setimmediate";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
- sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
- };
- };
- "ua-parser-js-0.7.17" = {
- name = "ua-parser-js";
- packageName = "ua-parser-js";
- version = "0.7.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz";
- sha512 = "39ac4xrr9v9ya7rbn5cz8dss5j3s36yhpj9qrhfxxqzgy1vljns0qfyv7d76lqgdgdbfbrd91kb5x7jlg0fw2r4f3kml0v8xmv545xr";
- };
- };
- "node-fetch-1.7.3" = {
- name = "node-fetch";
- packageName = "node-fetch";
- version = "1.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz";
- sha512 = "0lz5m15w7qaks0a0s3dm0crsjrsd123dy00pn6qwcp50zfjykxkp22i5ymh6smlc0ags38nmdxlxw9yyq509azlv8kcdvdiq857h5in";
- };
- };
- "whatwg-fetch-2.0.3" = {
- name = "whatwg-fetch";
- packageName = "whatwg-fetch";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz";
- sha1 = "9c84ec2dcf68187ff00bc64e1274b442176e1c84";
- };
- };
- "encoding-0.1.12" = {
- name = "encoding";
- packageName = "encoding";
- version = "0.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz";
- sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb";
- };
- };
- "unicode-emoji-modifier-base-1.0.0" = {
- name = "unicode-emoji-modifier-base";
- packageName = "unicode-emoji-modifier-base";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz";
- sha1 = "dbbd5b54ba30f287e2a8d5a249da6c0cef369459";
- };
- };
- "doctrine-2.0.2" = {
- name = "doctrine";
- packageName = "doctrine";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/doctrine/-/doctrine-2.0.2.tgz";
- sha512 = "3q2dym3ya3hkv5x95fzyax46mxfd8bm53y4xhay4a3zl9mvys1sx1bk6n35x1skq8wqfyi865n2gl2mw3rxdn94m5vhmjxszbj6cjyb";
- };
- };
- "eslint-scope-3.7.1" = {
- name = "eslint-scope";
- packageName = "eslint-scope";
- version = "3.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz";
- sha1 = "3d63c3edfda02e06e01a452ad88caacc7cdcb6e8";
- };
- };
- "espree-3.5.2" = {
- name = "espree";
- packageName = "espree";
- version = "3.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/espree/-/espree-3.5.2.tgz";
- sha512 = "04mnrkdqs32w98h9sfkn9i9zkyqj69sz2q1kxpnmsryjnfd9jrpqqlwrik73a80mdz86xckbr7vayw1dwkxhhnbvs4zciqsiiwlm9xi";
- };
- };
- "esquery-1.0.0" = {
- name = "esquery";
- packageName = "esquery";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz";
- sha1 = "cfba8b57d7fba93f17298a8a006a04cda13d80fa";
- };
- };
- "estraverse-4.2.0" = {
- name = "estraverse";
- packageName = "estraverse";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz";
- sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13";
- };
- };
- "file-entry-cache-2.0.0" = {
- name = "file-entry-cache";
- packageName = "file-entry-cache";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz";
- sha1 = "c392990c3e684783d838b8c84a45d8a048458361";
- };
- };
- "functional-red-black-tree-1.0.1" = {
- name = "functional-red-black-tree";
- packageName = "functional-red-black-tree";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz";
- sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
- };
- };
- "globals-11.1.0" = {
- name = "globals";
- packageName = "globals";
- version = "11.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-11.1.0.tgz";
- sha512 = "24q4kgcwq3yjsidaajrrvd529l4yfxzv4icxzwl1y2l1nwpv8898gd4k5clygb2i4gsvyjdzm9xd28gwg0zm8iaq71m6kmav6vrcjxq";
- };
- };
- "ignore-3.3.7" = {
- name = "ignore";
- packageName = "ignore";
- version = "3.3.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/ignore/-/ignore-3.3.7.tgz";
- sha512 = "0f6xhxww989yic6hwdm8mbylcyakfkrrn22a39wdcc9k842xxyyhzfxkmi79s9gjk3rp3h07n265lf4n51z8yafpdm78d617dxbfqb0";
- };
- };
- "inquirer-3.3.0" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz";
- sha512 = "1wsmzzva3rfjb4bfks7ba2nvha9ziwgq2kag6xxibc5cc6mz19xbgj4fm3a7ghvfbfx4am0x13ibc8j2s5m3sv12nph44rq56gnvv47";
- };
- };
- "is-resolvable-1.0.1" = {
- name = "is-resolvable";
- packageName = "is-resolvable";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.1.tgz";
- sha512 = "3kb6apf2r7xkp0saq6lbgg0y18fnqghd18rvmhhmbb537vsbs20rzq5n2xm51wync9igp4kprci8aggcm9iy6b0kp9ph1zgpihrg46b";
- };
- };
- "js-yaml-3.10.0" = {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "3.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz";
- sha512 = "0h26sq1bwxc45bm0hvlcadrbk4bizzaw729wvw690ya7mpys45bqfzdqwhjkdrnq0i44dzxckykz4bix22jfdyfg1asybg3yzczjsrv";
- };
- };
- "json-stable-stringify-without-jsonify-1.0.1" = {
- name = "json-stable-stringify-without-jsonify";
- packageName = "json-stable-stringify-without-jsonify";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz";
- sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651";
- };
- };
- "levn-0.3.0" = {
- name = "levn";
- packageName = "levn";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz";
- sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee";
- };
- };
- "natural-compare-1.4.0" = {
- name = "natural-compare";
- packageName = "natural-compare";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz";
- sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7";
- };
- };
- "optionator-0.8.2" = {
- name = "optionator";
- packageName = "optionator";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz";
- sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64";
- };
- };
- "path-is-inside-1.0.2" = {
- name = "path-is-inside";
- packageName = "path-is-inside";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz";
- sha1 = "365417dede44430d1c11af61027facf074bdfc53";
- };
- };
- "pluralize-7.0.0" = {
- name = "pluralize";
- packageName = "pluralize";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz";
- sha512 = "2ihaln20qjx82jx73wgzirbyp8mfmhxr75am1h0w8n5hy2gsbgvw9dricv7h57ycxzax84bma96wjscmdszs5mr2lsyxpfjvhwl2601";
- };
- };
- "progress-2.0.0" = {
- name = "progress";
- packageName = "progress";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz";
- sha1 = "8a1be366bf8fc23db2bd23f10c6fe920b4389d1f";
- };
- };
- "require-uncached-1.0.3" = {
- name = "require-uncached";
- packageName = "require-uncached";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz";
- sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3";
- };
- };
- "table-4.0.2" = {
- name = "table";
- packageName = "table";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-4.0.2.tgz";
- sha512 = "2q47avrxblc0an2g5ij8sd7ss2bqhdxy2949dk774gyg9vmsivg7fwyn885v2va72sxiv5k59ifvi3hg4ra6z95lr8in6sjyw008jai";
- };
- };
- "text-table-0.2.0" = {
- name = "text-table";
- packageName = "text-table";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz";
- sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4";
- };
- };
- "esrecurse-4.2.0" = {
- name = "esrecurse";
- packageName = "esrecurse";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz";
- sha1 = "fa9568d98d3823f9a41d91e902dcab9ea6e5b163";
- };
- };
- "acorn-jsx-3.0.1" = {
- name = "acorn-jsx";
- packageName = "acorn-jsx";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz";
- sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
- };
- };
- "acorn-3.3.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
- sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
- };
- };
- "flat-cache-1.3.0" = {
- name = "flat-cache";
- packageName = "flat-cache";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz";
- sha1 = "d3030b32b38154f4e3b7e9c709f490f7ef97c481";
- };
- };
- "circular-json-0.3.3" = {
- name = "circular-json";
- packageName = "circular-json";
- version = "0.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz";
- sha512 = "3hadrrn41znfv3gbqjxf0ckzjmns7w7zgsqw73sdz8nclaff9b0cg1mqhz3zxw3ndnmqqvrdcfykkfpv2v1pv4jdyzcccbn3hsbg4ji";
- };
- };
- "del-2.2.2" = {
- name = "del";
- packageName = "del";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/del/-/del-2.2.2.tgz";
- sha1 = "c12c981d067846c84bcaf862cff930d907ffd1a8";
- };
- };
- "write-0.2.1" = {
- name = "write";
- packageName = "write";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/write/-/write-0.2.1.tgz";
- sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757";
- };
- };
- "globby-5.0.0" = {
- name = "globby";
- packageName = "globby";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz";
- sha1 = "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d";
- };
- };
- "is-path-cwd-1.0.0" = {
- name = "is-path-cwd";
- packageName = "is-path-cwd";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz";
- sha1 = "d225ec23132e89edd38fda767472e62e65f1106d";
- };
- };
- "is-path-in-cwd-1.0.0" = {
- name = "is-path-in-cwd";
- packageName = "is-path-in-cwd";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz";
- sha1 = "6477582b8214d602346094567003be8a9eac04dc";
- };
- };
- "array-union-1.0.2" = {
- name = "array-union";
- packageName = "array-union";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
- sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
- };
- };
- "array-uniq-1.0.3" = {
- name = "array-uniq";
- packageName = "array-uniq";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
- sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
- };
- };
- "is-path-inside-1.0.1" = {
- name = "is-path-inside";
- packageName = "is-path-inside";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz";
- sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036";
- };
- };
- "cli-width-2.2.0" = {
- name = "cli-width";
- packageName = "cli-width";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz";
- sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639";
- };
- };
- "external-editor-2.1.0" = {
- name = "external-editor";
- packageName = "external-editor";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz";
- sha512 = "366albydy3glqs8h6y7rdpdhmyffn7vaig5snw8cb1zmn22mgvfywr08jfbmqjiqc9pyjyaaqv6xz5sfy2j1y18590l4f8mji7j53hk";
- };
- };
- "figures-2.0.0" = {
- name = "figures";
- packageName = "figures";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz";
- sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962";
- };
- };
- "run-async-2.3.0" = {
- name = "run-async";
- packageName = "run-async";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz";
- sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0";
- };
- };
- "rx-lite-4.0.8" = {
- name = "rx-lite";
- packageName = "rx-lite";
- version = "4.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz";
- sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444";
- };
- };
- "rx-lite-aggregates-4.0.8" = {
- name = "rx-lite-aggregates";
- packageName = "rx-lite-aggregates";
- version = "4.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz";
- sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be";
- };
- };
- "chardet-0.4.2" = {
- name = "chardet";
- packageName = "chardet";
- version = "0.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz";
- sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2";
- };
- };
- "tmp-0.0.33" = {
- name = "tmp";
- packageName = "tmp";
- version = "0.0.33";
- src = fetchurl {
- url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz";
- sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d";
- };
- };
- "is-promise-2.1.0" = {
- name = "is-promise";
- packageName = "is-promise";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz";
- sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa";
- };
- };
- "argparse-1.0.9" = {
- name = "argparse";
- packageName = "argparse";
- version = "1.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz";
- sha1 = "73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86";
- };
- };
- "esprima-4.0.0" = {
- name = "esprima";
- packageName = "esprima";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz";
- sha512 = "27mkhd94y9vrr8pb97br0ym5h85rawwb0biswgwdfp31x0387y12k9p9598bi4fc83fif6crfzqiqmmjs4x7gcb22ml3z1fldqm7yx1";
- };
- };
- "prelude-ls-1.1.2" = {
- name = "prelude-ls";
- packageName = "prelude-ls";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz";
- sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54";
- };
- };
- "type-check-0.3.2" = {
- name = "type-check";
- packageName = "type-check";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz";
- sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72";
- };
- };
- "deep-is-0.1.3" = {
- name = "deep-is";
- packageName = "deep-is";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz";
- sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34";
- };
- };
- "wordwrap-1.0.0" = {
- name = "wordwrap";
- packageName = "wordwrap";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz";
- sha1 = "27584810891456a4171c8d0226441ade90cbcaeb";
- };
- };
- "fast-levenshtein-2.0.6" = {
- name = "fast-levenshtein";
- packageName = "fast-levenshtein";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz";
- sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
- };
- };
- "caller-path-0.1.0" = {
- name = "caller-path";
- packageName = "caller-path";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz";
- sha1 = "94085ef63581ecd3daa92444a8fe94e82577751f";
- };
- };
- "resolve-from-1.0.1" = {
- name = "resolve-from";
- packageName = "resolve-from";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz";
- sha1 = "26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226";
- };
- };
- "callsites-0.2.0" = {
- name = "callsites";
- packageName = "callsites";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz";
- sha1 = "afab96262910a7f33c19a5775825c69f34e350ca";
- };
- };
- "ajv-keywords-2.1.1" = {
- name = "ajv-keywords";
- packageName = "ajv-keywords";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz";
- sha1 = "617997fc5f60576894c435f940d819e135b80762";
- };
- };
- "eslint-4.13.1" = {
- name = "eslint";
- packageName = "eslint";
- version = "4.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-4.13.1.tgz";
- sha512 = "1zhzyi5ajjmgx37845pnkkvq366jzpnfsq3q52ai98xg3jmf813yrf919r28j7gh3irnm921r553yrh0aghsx8srkcb3d0ikmbma8jh";
- };
- };
- "supports-color-3.2.3" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "3.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz";
- sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6";
- };
- };
- "has-flag-1.0.0" = {
- name = "has-flag";
- packageName = "has-flag";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz";
- sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa";
- };
- };
- "log-update-1.0.2" = {
- name = "log-update";
- packageName = "log-update";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/log-update/-/log-update-1.0.2.tgz";
- sha1 = "19929f64c4093d2d2e7075a1dad8af59c296b8d1";
- };
- };
- "phantomjs-prebuilt-2.1.16" = {
- name = "phantomjs-prebuilt";
- packageName = "phantomjs-prebuilt";
- version = "2.1.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz";
- sha1 = "efd212a4a3966d3647684ea8ba788549be2aefef";
- };
- };
- "promise-phantom-3.1.6" = {
- name = "promise-phantom";
- packageName = "promise-phantom";
- version = "3.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise-phantom/-/promise-phantom-3.1.6.tgz";
- sha1 = "bbcfd248725259f2bb115a27bfa8d65dc420f931";
- };
- };
- "zen-observable-0.5.2" = {
- name = "zen-observable";
- packageName = "zen-observable";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/zen-observable/-/zen-observable-0.5.2.tgz";
- sha512 = "3sy4za4hd6lczig5ah6ksh92i4ds0pk9b8nn4nwjwpsyyabywrnayf78zh41jf7amm6khqyjb3iknbp2mc3nfgvpkvphj3a993py6hf";
- };
- };
- "es6-promise-4.1.1" = {
- name = "es6-promise";
- packageName = "es6-promise";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.1.1.tgz";
- sha512 = "2g2gkw8cxy2lww5lqjbv0imkxkhy684pagbq4qaw6np46xcx1r6rbkg7qy4wjv12b7jy7zs208iilim7clc9v6ws2dzy9g0g223b99r";
- };
- };
- "extract-zip-1.6.6" = {
- name = "extract-zip";
- packageName = "extract-zip";
- version = "1.6.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.6.tgz";
- sha1 = "1290ede8d20d0872b429fd3f351ca128ec5ef85c";
- };
- };
- "fs-extra-1.0.0" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz";
- sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950";
- };
- };
- "hasha-2.2.0" = {
- name = "hasha";
- packageName = "hasha";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz";
- sha1 = "78d7cbfc1e6d66303fe79837365984517b2f6ee1";
- };
- };
- "kew-0.7.0" = {
- name = "kew";
- packageName = "kew";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz";
- sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b";
- };
- };
- "request-progress-2.0.1" = {
- name = "request-progress";
- packageName = "request-progress";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz";
- sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08";
- };
- };
- "mkdirp-0.5.0" = {
- name = "mkdirp";
- packageName = "mkdirp";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz";
- sha1 = "1d73076a6df986cd9344e15e71fcc05a4c9abf12";
- };
- };
- "yauzl-2.4.1" = {
- name = "yauzl";
- packageName = "yauzl";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz";
- sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005";
- };
- };
- "fd-slicer-1.0.1" = {
- name = "fd-slicer";
- packageName = "fd-slicer";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz";
- sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65";
- };
- };
- "pend-1.2.0" = {
- name = "pend";
- packageName = "pend";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz";
- sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50";
- };
- };
- "throttleit-1.0.0" = {
- name = "throttleit";
- packageName = "throttleit";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz";
- sha1 = "9e785836daf46743145a5984b6268d828528ac6c";
- };
- };
- "mkpath-1.0.0" = {
- name = "mkpath";
- packageName = "mkpath";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mkpath/-/mkpath-1.0.0.tgz";
- sha1 = "ebb3a977e7af1c683ae6fda12b545a6ba6c5853d";
- };
- };
- "node-phantom-simple-2.2.4" = {
- name = "node-phantom-simple";
- packageName = "node-phantom-simple";
- version = "2.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-phantom-simple/-/node-phantom-simple-2.2.4.tgz";
- sha1 = "4fc4effbb02f241fb5082bd4fbab398e4aecb64d";
- };
- };
- "tmp-0.0.31" = {
- name = "tmp";
- packageName = "tmp";
- version = "0.0.31";
- src = fetchurl {
- url = "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz";
- sha1 = "8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7";
- };
- };
- "glob-3.2.11" = {
- name = "glob";
- packageName = "glob";
- version = "3.2.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz";
- sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d";
- };
- };
- "minimatch-0.3.0" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz";
- sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd";
- };
- };
- "sigmund-1.0.1" = {
- name = "sigmund";
- packageName = "sigmund";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
- sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
- };
- };
- "cliff-0.1.10" = {
- name = "cliff";
- packageName = "cliff";
- version = "0.1.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/cliff/-/cliff-0.1.10.tgz";
- sha1 = "53be33ea9f59bec85609ee300ac4207603e52013";
- };
- };
- "flatiron-0.4.3" = {
- name = "flatiron";
- packageName = "flatiron";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/flatiron/-/flatiron-0.4.3.tgz";
- sha1 = "248cf79a3da7d7dc379e2a11c92a2719cbb540f6";
- };
- };
- "forever-monitor-1.7.1" = {
- name = "forever-monitor";
- packageName = "forever-monitor";
- version = "1.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/forever-monitor/-/forever-monitor-1.7.1.tgz";
- sha1 = "5d820f4a3a78db2d81ae2671f158b9e86a091bb8";
- };
- };
- "nconf-0.6.9" = {
- name = "nconf";
- packageName = "nconf";
- version = "0.6.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/nconf/-/nconf-0.6.9.tgz";
- sha1 = "9570ef15ed6f9ae6b2b3c8d5e71b66d3193cd661";
- };
- };
- "nssocket-0.5.3" = {
- name = "nssocket";
- packageName = "nssocket";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/nssocket/-/nssocket-0.5.3.tgz";
- sha1 = "883ca2ec605f5ed64a4d5190b2625401928f8f8d";
- };
- };
- "prettyjson-1.2.1" = {
- name = "prettyjson";
- packageName = "prettyjson";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/prettyjson/-/prettyjson-1.2.1.tgz";
- sha1 = "fcffab41d19cab4dfae5e575e64246619b12d289";
- };
- };
- "shush-1.0.0" = {
- name = "shush";
- packageName = "shush";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/shush/-/shush-1.0.0.tgz";
- sha1 = "c27415a9e458f2fed39b27cf8eb37c003782b431";
- };
- };
- "timespan-2.3.0" = {
- name = "timespan";
- packageName = "timespan";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz";
- sha1 = "4902ce040bd13d845c8f59b27e9d59bad6f39929";
+ url = "https://registry.npmjs.org/braces/-/braces-2.3.0.tgz";
+ sha512 = "2ngfivxj9g7knac123y1lk3arpmmzdhfn2g4qf1n4kzpvka4vafp48zcsh2qq7c97fxw2la5q2h6m2xcq5b1cr8b45j66jx0i8vr0rz";
};
};
"broadway-0.3.6" = {
@@ -12698,2381 +2983,229 @@ let
sha1 = "7dbef068b954b7907925fd544963b578a902ba7a";
};
};
- "optimist-0.6.0" = {
- name = "optimist";
- packageName = "optimist";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz";
- sha1 = "69424826f3405f79f142e6fc3d9ae58d4dbb9200";
- };
- };
- "director-1.2.7" = {
- name = "director";
- packageName = "director";
- version = "1.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/director/-/director-1.2.7.tgz";
- sha1 = "bfd3741075fd7fb1a5b2e13658c5f4bec77736f3";
- };
- };
- "cliff-0.1.9" = {
- name = "cliff";
- packageName = "cliff";
- version = "0.1.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/cliff/-/cliff-0.1.9.tgz";
- sha1 = "a211e09c6a3de3ba1af27d049d301250d18812bc";
- };
- };
- "eventemitter2-0.4.14" = {
- name = "eventemitter2";
- packageName = "eventemitter2";
- version = "0.4.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz";
- sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab";
- };
- };
- "chokidar-1.7.0" = {
- name = "chokidar";
- packageName = "chokidar";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz";
- sha1 = "798e689778151c8076b4b360e5edd28cda2bb468";
- };
- };
- "ps-tree-0.0.3" = {
- name = "ps-tree";
- packageName = "ps-tree";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ps-tree/-/ps-tree-0.0.3.tgz";
- sha1 = "dbf8d752a7fe22fa7d58635689499610e9276ddc";
- };
- };
- "fsevents-1.1.3" = {
- name = "fsevents";
- packageName = "fsevents";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.3.tgz";
- sha512 = "3jw51f4iayxvp9wfxczk1xgcvhsydhlgah64jmpl0mqiii2h8i5pp0lrqac5xn7296gxqrvy4lgm4k4hkifk8gipgqxd68x764gp2jq";
- };
- };
- "event-stream-0.5.3" = {
- name = "event-stream";
- packageName = "event-stream";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz";
- sha1 = "b77b9309f7107addfeab63f0c0eafd8db0bd8c1c";
- };
- };
- "optimist-0.2.8" = {
- name = "optimist";
- packageName = "optimist";
- version = "0.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz";
- sha1 = "e981ab7e268b457948593b55674c099a815cac31";
- };
- };
- "async-0.2.9" = {
- name = "async";
- packageName = "async";
- version = "0.2.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.2.9.tgz";
- sha1 = "df63060fbf3d33286a76aaf6d55a2986d9ff8619";
- };
- };
- "lazy-1.0.11" = {
- name = "lazy";
- packageName = "lazy";
- version = "1.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/lazy/-/lazy-1.0.11.tgz";
- sha1 = "daa068206282542c088288e975c297c1ae77b690";
- };
- };
- "caller-0.0.1" = {
- name = "caller";
- packageName = "caller";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/caller/-/caller-0.0.1.tgz";
- sha1 = "f37a1d6ea10e829d94721ae29a90bb4fb52ab767";
- };
- };
- "tape-2.3.3" = {
- name = "tape";
- packageName = "tape";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tape/-/tape-2.3.3.tgz";
- sha1 = "2e7ce0a31df09f8d6851664a71842e0ca5057af7";
- };
- };
- "deep-equal-0.1.2" = {
- name = "deep-equal";
- packageName = "deep-equal";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.1.2.tgz";
- sha1 = "b246c2b80a570a47c11be1d9bd1070ec878b87ce";
- };
- };
- "defined-0.0.0" = {
- name = "defined";
- packageName = "defined";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz";
- sha1 = "f35eea7d705e933baf13b2f03b3f83d921403b3e";
- };
- };
- "resumer-0.0.0" = {
- name = "resumer";
- packageName = "resumer";
- version = "0.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz";
- sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759";
- };
- };
- "lodash.groupby-4.6.0" = {
- name = "lodash.groupby";
- packageName = "lodash.groupby";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz";
- sha1 = "0b08a1dcf68397c397855c3239783832df7403d1";
- };
- };
- "minilog-3.1.0" = {
- name = "minilog";
- packageName = "minilog";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minilog/-/minilog-3.1.0.tgz";
- sha1 = "d2d0f1887ca363d1acf0ea86d5c4df293b3fb675";
- };
- };
- "simple-git-1.85.0" = {
- name = "simple-git";
- packageName = "simple-git";
- version = "1.85.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-git/-/simple-git-1.85.0.tgz";
- sha1 = "563ad291efc8a127735e8fbcd796967377614cd4";
- };
- };
- "tabtab-git+https://github.com/mixu/node-tabtab.git" = {
- name = "tabtab";
- packageName = "tabtab";
- version = "0.0.2";
- src = fetchgit {
- url = "https://github.com/mixu/node-tabtab.git";
- rev = "94af2b878b174527b6636aec88acd46979247755";
- sha256 = "c824206b33da96cf5c01c21f1b133a0e3568e07ee4dcc9beefa8226864cd0272";
- };
- };
- "microee-0.0.6" = {
- name = "microee";
- packageName = "microee";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/microee/-/microee-0.0.6.tgz";
- sha1 = "a12bdb0103681e8b126a9b071eba4c467c78fffe";
- };
- };
- "findup-sync-0.3.0" = {
- name = "findup-sync";
- packageName = "findup-sync";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz";
- sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16";
- };
- };
- "grunt-known-options-1.1.0" = {
- name = "grunt-known-options";
- packageName = "grunt-known-options";
+ "brorand-1.1.0" = {
+ name = "brorand";
+ packageName = "brorand";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz";
- sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149";
+ url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
+ sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
};
};
- "coffee-script-1.12.7" = {
- name = "coffee-script";
- packageName = "coffee-script";
- version = "1.12.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
- sha512 = "29mq40padyvizg4f141b00p0p74hx9v06d7gxk84ggsiyw6rf5bb65gnfwk1i02r276jwqybmi5hx98s943slyazjnqd69jmj389dvw";
- };
- };
- "jade-1.11.0" = {
- name = "jade";
- packageName = "jade";
- version = "1.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jade/-/jade-1.11.0.tgz";
- sha1 = "9c80e538c12d3fb95c8d9bb9559fa0cc040405fd";
- };
- };
- "q-2.0.3" = {
- name = "q";
- packageName = "q";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/q/-/q-2.0.3.tgz";
- sha1 = "75b8db0255a1a5af82f58c3f3aaa1efec7d0d134";
- };
- };
- "msgpack-1.0.2" = {
- name = "msgpack";
- packageName = "msgpack";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/msgpack/-/msgpack-1.0.2.tgz";
- sha1 = "923e2c5cffa65c8418e9b228d1124793969c429c";
- };
- };
- "character-parser-1.2.1" = {
- name = "character-parser";
- packageName = "character-parser";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/character-parser/-/character-parser-1.2.1.tgz";
- sha1 = "c0dde4ab182713b919b970959a123ecc1a30fcd6";
- };
- };
- "clean-css-3.4.28" = {
- name = "clean-css";
- packageName = "clean-css";
- version = "3.4.28";
- src = fetchurl {
- url = "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz";
- sha1 = "bf1945e82fc808f55695e6ddeaec01400efd03ff";
- };
- };
- "commander-2.6.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz";
- sha1 = "9df7e52fb2a0cb0fb89058ee80c3104225f37e1d";
- };
- };
- "constantinople-3.0.2" = {
- name = "constantinople";
- packageName = "constantinople";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/constantinople/-/constantinople-3.0.2.tgz";
- sha1 = "4b945d9937907bcd98ee575122c3817516544141";
- };
- };
- "jstransformer-0.0.2" = {
- name = "jstransformer";
- packageName = "jstransformer";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/jstransformer/-/jstransformer-0.0.2.tgz";
- sha1 = "7aae29a903d196cfa0973d885d3e47947ecd76ab";
- };
- };
- "transformers-2.1.0" = {
- name = "transformers";
- packageName = "transformers";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/transformers/-/transformers-2.1.0.tgz";
- sha1 = "5d23cb35561dd85dc67fb8482309b47d53cce9a7";
- };
- };
- "uglify-js-2.8.29" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "2.8.29";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz";
- sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
- };
- };
- "void-elements-2.0.1" = {
- name = "void-elements";
- packageName = "void-elements";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz";
- sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec";
- };
- };
- "with-4.0.3" = {
- name = "with";
- packageName = "with";
- version = "4.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/with/-/with-4.0.3.tgz";
- sha1 = "eefd154e9e79d2c8d3417b647a8f14d9fecce14e";
- };
- };
- "commander-2.8.1" = {
- name = "commander";
- packageName = "commander";
- version = "2.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz";
- sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4";
- };
- };
- "source-map-0.4.4" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz";
- sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b";
- };
- };
- "acorn-2.7.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "2.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz";
- sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7";
- };
- };
- "promise-6.1.0" = {
- name = "promise";
- packageName = "promise";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz";
- sha1 = "2ce729f6b94b45c26891ad0602c5c90e04c6eef6";
- };
- };
- "asap-1.0.0" = {
- name = "asap";
- packageName = "asap";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz";
- sha1 = "b2a45da5fdfa20b0496fc3768cc27c12fa916a7d";
- };
- };
- "promise-2.0.0" = {
- name = "promise";
- packageName = "promise";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise/-/promise-2.0.0.tgz";
- sha1 = "46648aa9d605af5d2e70c3024bf59436da02b80e";
- };
- };
- "css-1.0.8" = {
- name = "css";
- packageName = "css";
- version = "1.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/css/-/css-1.0.8.tgz";
- sha1 = "9386811ca82bccc9ee7fb5a732b1e2a317c8a3e7";
- };
- };
- "uglify-js-2.2.5" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "2.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.2.5.tgz";
- sha1 = "a6e02a70d839792b9780488b7b8b184c095c99c7";
- };
- };
- "is-promise-1.0.1" = {
- name = "is-promise";
- packageName = "is-promise";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-promise/-/is-promise-1.0.1.tgz";
- sha1 = "31573761c057e33c2e91aab9e96da08cefbe76e5";
- };
- };
- "css-parse-1.0.4" = {
- name = "css-parse";
- packageName = "css-parse";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-parse/-/css-parse-1.0.4.tgz";
- sha1 = "38b0503fbf9da9f54e9c1dbda60e145c77117bdd";
- };
- };
- "css-stringify-1.0.5" = {
- name = "css-stringify";
- packageName = "css-stringify";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-stringify/-/css-stringify-1.0.5.tgz";
- sha1 = "b0d042946db2953bb9d292900a6cb5f6d0122031";
- };
- };
- "optimist-0.3.7" = {
- name = "optimist";
- packageName = "optimist";
- version = "0.3.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz";
- sha1 = "c90941ad59e4273328923074d2cf2e7cbc6ec0d9";
- };
- };
- "yargs-3.10.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "3.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
- sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
- };
- };
- "uglify-to-browserify-1.0.2" = {
- name = "uglify-to-browserify";
- packageName = "uglify-to-browserify";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
- sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
- };
- };
- "camelcase-1.2.1" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
- sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
- };
- };
- "cliui-2.1.0" = {
- name = "cliui";
- packageName = "cliui";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
- sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
- };
- };
- "window-size-0.1.0" = {
- name = "window-size";
- packageName = "window-size";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
- sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
- };
- };
- "center-align-0.1.3" = {
- name = "center-align";
- packageName = "center-align";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
- sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
- };
- };
- "right-align-0.1.3" = {
- name = "right-align";
- packageName = "right-align";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz";
- sha1 = "61339b722fe6a3515689210d24e14c96148613ef";
- };
- };
- "align-text-0.1.4" = {
- name = "align-text";
- packageName = "align-text";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz";
- sha1 = "0cd90a561093f35d0a99256c22b7069433fad117";
- };
- };
- "lazy-cache-1.0.4" = {
- name = "lazy-cache";
- packageName = "lazy-cache";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz";
- sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e";
- };
- };
- "longest-1.0.1" = {
- name = "longest";
- packageName = "longest";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz";
- sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097";
- };
- };
- "acorn-1.2.2" = {
- name = "acorn";
- packageName = "acorn";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz";
- sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014";
- };
- };
- "acorn-globals-1.0.9" = {
- name = "acorn-globals";
- packageName = "acorn-globals";
- version = "1.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz";
- sha1 = "55bb5e98691507b74579d0513413217c380c54cf";
- };
- };
- "pop-iterate-1.0.1" = {
- name = "pop-iterate";
- packageName = "pop-iterate";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pop-iterate/-/pop-iterate-1.0.1.tgz";
- sha1 = "ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3";
- };
- };
- "weak-map-1.0.5" = {
- name = "weak-map";
- packageName = "weak-map";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/weak-map/-/weak-map-1.0.5.tgz";
- sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb";
- };
- };
- "archy-1.0.0" = {
- name = "archy";
- packageName = "archy";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz";
- sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
- };
- };
- "deprecated-0.0.1" = {
- name = "deprecated";
- packageName = "deprecated";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz";
- sha1 = "f9c9af5464afa1e7a971458a8bdef2aa94d5bb19";
- };
- };
- "gulp-util-3.0.8" = {
- name = "gulp-util";
- packageName = "gulp-util";
- version = "3.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz";
- sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f";
- };
- };
- "liftoff-2.5.0" = {
- name = "liftoff";
- packageName = "liftoff";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
- sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
- };
- };
- "orchestrator-0.3.8" = {
- name = "orchestrator";
- packageName = "orchestrator";
- version = "0.3.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz";
- sha1 = "14e7e9e2764f7315fbac184e506c7aa6df94ad7e";
- };
- };
- "pretty-hrtime-1.0.3" = {
- name = "pretty-hrtime";
- packageName = "pretty-hrtime";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz";
- sha1 = "b7e3ea42435a4c9b2759d99e0f201eb195802ee1";
- };
- };
- "semver-4.3.6" = {
- name = "semver";
- packageName = "semver";
- version = "4.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz";
- sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da";
- };
- };
- "tildify-1.2.0" = {
- name = "tildify";
- packageName = "tildify";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz";
- sha1 = "dcec03f55dca9b7aa3e5b04f21817eb56e63588a";
- };
- };
- "v8flags-2.1.1" = {
- name = "v8flags";
- packageName = "v8flags";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz";
- sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4";
- };
- };
- "vinyl-fs-0.3.14" = {
- name = "vinyl-fs";
- packageName = "vinyl-fs";
- version = "0.3.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz";
- sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6";
- };
- };
- "array-differ-1.0.0" = {
- name = "array-differ";
- packageName = "array-differ";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz";
- sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031";
- };
- };
- "beeper-1.1.1" = {
- name = "beeper";
- packageName = "beeper";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz";
- sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809";
- };
- };
- "dateformat-2.2.0" = {
- name = "dateformat";
- packageName = "dateformat";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz";
- sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062";
- };
- };
- "fancy-log-1.3.2" = {
- name = "fancy-log";
- packageName = "fancy-log";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz";
- sha1 = "f41125e3d84f2e7d89a43d06d958c8f78be16be1";
- };
- };
- "gulplog-1.0.0" = {
- name = "gulplog";
- packageName = "gulplog";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz";
- sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5";
- };
- };
- "has-gulplog-0.1.0" = {
- name = "has-gulplog";
- packageName = "has-gulplog";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz";
- sha1 = "6414c82913697da51590397dafb12f22967811ce";
- };
- };
- "lodash._reescape-3.0.0" = {
- name = "lodash._reescape";
- packageName = "lodash._reescape";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz";
- sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a";
- };
- };
- "lodash._reevaluate-3.0.0" = {
- name = "lodash._reevaluate";
- packageName = "lodash._reevaluate";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz";
- sha1 = "58bc74c40664953ae0b124d806996daca431e2ed";
- };
- };
- "lodash._reinterpolate-3.0.0" = {
- name = "lodash._reinterpolate";
- packageName = "lodash._reinterpolate";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz";
- sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d";
- };
- };
- "lodash.template-3.6.2" = {
- name = "lodash.template";
- packageName = "lodash.template";
- version = "3.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz";
- sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f";
- };
- };
- "multipipe-0.1.2" = {
- name = "multipipe";
- packageName = "multipipe";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz";
- sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
- };
- };
- "replace-ext-0.0.1" = {
- name = "replace-ext";
- packageName = "replace-ext";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz";
- sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924";
- };
- };
- "vinyl-0.5.3" = {
- name = "vinyl";
- packageName = "vinyl";
- version = "0.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz";
- sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde";
- };
- };
- "ansi-gray-0.1.1" = {
- name = "ansi-gray";
- packageName = "ansi-gray";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz";
- sha1 = "2962cf54ec9792c48510a3deb524436861ef7251";
- };
- };
- "color-support-1.1.3" = {
- name = "color-support";
- packageName = "color-support";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz";
- sha512 = "13g563h7mrddc3rlljgg75km4zycb8rhzxb5wiiricqvh4n7zgl60psnz39ijkzx5bn93s5qvacwkxbg1cglcmg5z3yyb6cjs96685a";
- };
- };
- "time-stamp-1.1.0" = {
- name = "time-stamp";
- packageName = "time-stamp";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz";
- sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3";
- };
- };
- "ansi-wrap-0.1.0" = {
- name = "ansi-wrap";
- packageName = "ansi-wrap";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz";
- sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf";
- };
- };
- "glogg-1.0.0" = {
- name = "glogg";
- packageName = "glogg";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz";
- sha1 = "7fe0f199f57ac906cf512feead8f90ee4a284fc5";
- };
- };
- "sparkles-1.0.0" = {
- name = "sparkles";
- packageName = "sparkles";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz";
- sha1 = "1acbbfb592436d10bbe8f785b7cc6f82815012c3";
- };
- };
- "lodash._basecopy-3.0.1" = {
- name = "lodash._basecopy";
- packageName = "lodash._basecopy";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz";
- sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36";
- };
- };
- "lodash._basetostring-3.0.1" = {
- name = "lodash._basetostring";
- packageName = "lodash._basetostring";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz";
- sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5";
- };
- };
- "lodash._basevalues-3.0.0" = {
- name = "lodash._basevalues";
- packageName = "lodash._basevalues";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz";
- sha1 = "5b775762802bde3d3297503e26300820fdf661b7";
- };
- };
- "lodash._isiterateecall-3.0.9" = {
- name = "lodash._isiterateecall";
- packageName = "lodash._isiterateecall";
- version = "3.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz";
- sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c";
- };
- };
- "lodash.escape-3.2.0" = {
- name = "lodash.escape";
- packageName = "lodash.escape";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz";
- sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698";
- };
- };
- "lodash.keys-3.1.2" = {
- name = "lodash.keys";
- packageName = "lodash.keys";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz";
- sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a";
- };
- };
- "lodash.restparam-3.6.1" = {
- name = "lodash.restparam";
- packageName = "lodash.restparam";
- version = "3.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz";
- sha1 = "936a4e309ef330a7645ed4145986c85ae5b20805";
- };
- };
- "lodash.templatesettings-3.1.1" = {
- name = "lodash.templatesettings";
- packageName = "lodash.templatesettings";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz";
- sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5";
- };
- };
- "lodash._root-3.0.1" = {
- name = "lodash._root";
- packageName = "lodash._root";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz";
- sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692";
- };
- };
- "lodash.isarguments-3.1.0" = {
- name = "lodash.isarguments";
- packageName = "lodash.isarguments";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz";
- sha1 = "2f573d85c6a24289ff00663b491c1d338ff3458a";
- };
- };
- "lodash.isarray-3.0.4" = {
- name = "lodash.isarray";
- packageName = "lodash.isarray";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz";
- sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55";
- };
- };
- "clone-stats-0.0.1" = {
- name = "clone-stats";
- packageName = "clone-stats";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz";
- sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1";
- };
- };
- "findup-sync-2.0.0" = {
- name = "findup-sync";
- packageName = "findup-sync";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
- sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
- };
- };
- "fined-1.1.0" = {
- name = "fined";
- packageName = "fined";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz";
- sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476";
- };
- };
- "flagged-respawn-1.0.0" = {
- name = "flagged-respawn";
- packageName = "flagged-respawn";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz";
- sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7";
- };
- };
- "is-plain-object-2.0.4" = {
- name = "is-plain-object";
- packageName = "is-plain-object";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
- sha512 = "0xgsjz9m3kg5pm36lcchblxk53qay59ya7wi5jgdmz0dsl5b0j2j7wcd48yyfaip1m70mj9aqf8kib02fn62k0hy0vxg2hng60yk4w7";
- };
- };
- "object.map-1.0.0" = {
- name = "object.map";
- packageName = "object.map";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.map/-/object.map-1.0.0.tgz";
- sha1 = "92aef871cd6dcbced31fe29c0921db8395624597";
- };
- };
- "detect-file-1.0.0" = {
- name = "detect-file";
- packageName = "detect-file";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
- sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
- };
- };
- "is-glob-3.1.0" = {
- name = "is-glob";
- packageName = "is-glob";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
- sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
- };
- };
- "micromatch-3.1.4" = {
- name = "micromatch";
- packageName = "micromatch";
- version = "3.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.4.tgz";
- sha512 = "1z55bzyr3xwhvk8wbclnfjsbzwivqf9whb7k84gd8ljwfzmhsra430ikzd3p0nzxk90ybqas0c4bl6j4l1q5iyyz99h584q4az6sm4h";
- };
- };
- "resolve-dir-1.0.1" = {
- name = "resolve-dir";
- packageName = "resolve-dir";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
- sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
- };
- };
- "is-extglob-2.1.1" = {
- name = "is-extglob";
- packageName = "is-extglob";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
- sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
- };
- };
- "arr-diff-4.0.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz";
- sha1 = "d6461074febfec71e7e15235761a329a5dc7c520";
- };
- };
- "array-unique-0.3.2" = {
- name = "array-unique";
- packageName = "array-unique";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz";
- sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428";
- };
- };
- "braces-2.3.0" = {
- name = "braces";
- packageName = "braces";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/braces/-/braces-2.3.0.tgz";
- sha512 = "2ngfivxj9g7knac123y1lk3arpmmzdhfn2g4qf1n4kzpvka4vafp48zcsh2qq7c97fxw2la5q2h6m2xcq5b1cr8b45j66jx0i8vr0rz";
- };
- };
- "define-property-1.0.0" = {
- name = "define-property";
- packageName = "define-property";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
- sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
- };
- };
- "extend-shallow-2.0.1" = {
- name = "extend-shallow";
- packageName = "extend-shallow";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
- sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
- };
- };
- "extglob-2.0.2" = {
- name = "extglob";
- packageName = "extglob";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/extglob/-/extglob-2.0.2.tgz";
- sha512 = "3bi96hlw84salahixd3vvyzzx1riqlfnrf44qnlhl46yqpl5rad97halvj3vybzvh970jyk50lagp9qys69qhayy25m337y25j9wkr3";
- };
- };
- "fragment-cache-0.2.1" = {
- name = "fragment-cache";
- packageName = "fragment-cache";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
- sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
- };
- };
- "kind-of-6.0.2" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
- sha512 = "2l91vcracq8y3nxacsssb4yhk0ww011gi5sn55wsb6bpnhyds2i1x98512f61r8awxmj602bxky6c7hsyibjvz17f1pmlf7r4whp6dk";
- };
- };
- "nanomatch-1.2.6" = {
- name = "nanomatch";
- packageName = "nanomatch";
- version = "1.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.6.tgz";
- sha512 = "014pd4mh3hhi0gmrpss462ivnr8ic21ihmyjs4rx6v5prf5mw2zqzhsxbinx2mxiy4kc7wlw5w052bi18y6rgxq7l2pangg4r69g7jq";
- };
- };
- "object.pick-1.3.0" = {
- name = "object.pick";
- packageName = "object.pick";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
- sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
- };
- };
- "regex-not-1.0.0" = {
- name = "regex-not";
- packageName = "regex-not";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.0.tgz";
- sha1 = "42f83e39771622df826b02af176525d6a5f157f9";
- };
- };
- "snapdragon-0.8.1" = {
- name = "snapdragon";
- packageName = "snapdragon";
- version = "0.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.1.tgz";
- sha1 = "e12b5487faded3e3dea0ac91e9400bf75b401370";
- };
- };
- "to-regex-3.0.1" = {
- name = "to-regex";
- packageName = "to-regex";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.1.tgz";
- sha1 = "15358bee4a2c83bd76377ba1dc049d0f18837aae";
- };
- };
- "fill-range-4.0.0" = {
- name = "fill-range";
- packageName = "fill-range";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
- sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
- };
- };
- "isobject-3.0.1" = {
- name = "isobject";
- packageName = "isobject";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
- sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
- };
- };
- "snapdragon-node-2.1.1" = {
- name = "snapdragon-node";
- packageName = "snapdragon-node";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
- sha512 = "2gk18pdld8ij1bpa2mdwl8f7i4rl5d4ys3qw31hipj56wslnsfhp1vxp3q36kj1m4f34wzzlvj0282qx5xlflqf978xyqlc2viyaviv";
- };
- };
- "split-string-3.1.0" = {
- name = "split-string";
- packageName = "split-string";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
- sha512 = "25ih1dx2qb3lawqjxj85znd4l3x8nnigrcdlpfw8064gh2mwxic9bgg5ylgxm9gjl3v8dmyc47rycp8xvqz78jqalg0g9yqj225acrp";
- };
- };
- "to-regex-range-2.1.1" = {
- name = "to-regex-range";
- packageName = "to-regex-range";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
- sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
- };
- };
- "snapdragon-util-3.0.1" = {
- name = "snapdragon-util";
- packageName = "snapdragon-util";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
- sha512 = "1jsaqma4ycl2iq0761i1w7758z1kq7gbsij4xfb7p5cnw0qa62pszv6pr3j856n3pbxww7wwxs5wvcg2cb6vy020kw3bchashqs9clr";
- };
- };
- "extend-shallow-3.0.2" = {
- name = "extend-shallow";
- packageName = "extend-shallow";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
- sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
- };
- };
- "assign-symbols-1.0.0" = {
- name = "assign-symbols";
- packageName = "assign-symbols";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz";
- sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
- };
- };
- "is-extendable-1.0.1" = {
- name = "is-extendable";
- packageName = "is-extendable";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
- sha512 = "0w73qlx9ynmv2iznw1kll86yd04z4rsz3788nzgh7amcnpsbyxbrs734im9dibqgps6pjyz61s8kp4lcsbjsdfrlc51m1pm2hrxgfba";
- };
- };
- "is-descriptor-1.0.1" = {
- name = "is-descriptor";
- packageName = "is-descriptor";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.1.tgz";
- sha512 = "1s669mqvckcwsqrnni08lac1anx00q82rkfplnq6zl9inaqzlq8n9ln8j8m49a9gaxjrwgkl8wjw4188whbj65yxspalzgaaiacaxqv";
- };
- };
- "is-accessor-descriptor-0.1.6" = {
- name = "is-accessor-descriptor";
- packageName = "is-accessor-descriptor";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
- sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
- };
- };
- "is-data-descriptor-0.1.4" = {
- name = "is-data-descriptor";
- packageName = "is-data-descriptor";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
- sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
- };
- };
- "kind-of-5.1.0" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
- sha512 = "0zk87sccrjx6pgf9n74v4msnqwq5siyhrkpaklx7yk85ygy5ypcgmyfhbd5mmcyd53x8zcw0gzvp9bhbglziqbhp7a6n5zsf6p08q9l";
- };
- };
- "expand-brackets-2.1.4" = {
- name = "expand-brackets";
- packageName = "expand-brackets";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
- sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
- };
- };
- "define-property-0.2.5" = {
- name = "define-property";
- packageName = "define-property";
- version = "0.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
- sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
- };
- };
- "posix-character-classes-0.1.1" = {
- name = "posix-character-classes";
- packageName = "posix-character-classes";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
- sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
- };
- };
- "is-descriptor-0.1.6" = {
- name = "is-descriptor";
- packageName = "is-descriptor";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
- sha512 = "0gbflcxmd30gzj91y19fylsfalirl6qg71sxjximc8lc2vxkg5h9scnahvxsczymchlx742i8ai489843ys431vyw73rp418jpxiw3a";
- };
- };
- "map-cache-0.2.2" = {
- name = "map-cache";
- packageName = "map-cache";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
- sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
- };
- };
- "is-odd-1.0.0" = {
- name = "is-odd";
- packageName = "is-odd";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-odd/-/is-odd-1.0.0.tgz";
- sha1 = "3b8a932eb028b3775c39bb09e91767accdb69088";
- };
- };
- "base-0.11.2" = {
- name = "base";
- packageName = "base";
- version = "0.11.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz";
- sha512 = "11dwi4v72034dqafp0qxsg8h6cpn92vv4vf909a9fybd69yfg6gqn4hhav6x59r1wbi8h1qlgfh9np0340mpljv1hc9v9p02giqygp5";
- };
- };
- "source-map-resolve-0.5.1" = {
- name = "source-map-resolve";
- packageName = "source-map-resolve";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz";
- sha512 = "3ccyfzn4imm9m891wy0bqh85lxrsf82snlh7dlgvjc28rpd2m6n95x8kjmm2crcpqv6234xc2lqzp1h1cyx7xrn146nzinzzk1bd9fh";
- };
- };
- "use-2.0.2" = {
- name = "use";
- packageName = "use";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/use/-/use-2.0.2.tgz";
- sha1 = "ae28a0d72f93bf22422a18a2e379993112dec8e8";
- };
- };
- "cache-base-1.0.1" = {
- name = "cache-base";
- packageName = "cache-base";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
- sha512 = "36i943khi87af4gif9r6imjgybqxq9cbd69z2h8p2s2j6scfbhrv7j3n591xl982fmyq29rkwh70a6qdcf3v0piwzfh8n2jf571v9q0";
- };
- };
- "class-utils-0.3.5" = {
- name = "class-utils";
- packageName = "class-utils";
- version = "0.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.5.tgz";
- sha1 = "17e793103750f9627b2176ea34cfd1b565903c80";
- };
- };
- "component-emitter-1.2.1" = {
- name = "component-emitter";
- packageName = "component-emitter";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
- sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
- };
- };
- "mixin-deep-1.3.0" = {
- name = "mixin-deep";
- packageName = "mixin-deep";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.0.tgz";
- sha512 = "016isy937hd503fn41ivc4j267cr1brp7f65waxkk2ijslc1gyh7r815xk4g27cjrgjzydwqbpwk5yj4nyjj085n3l5k2vsi2z841kn";
- };
- };
- "pascalcase-0.1.1" = {
- name = "pascalcase";
- packageName = "pascalcase";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
- sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
- };
- };
- "collection-visit-1.0.0" = {
- name = "collection-visit";
- packageName = "collection-visit";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
- sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
- };
- };
- "get-value-2.0.6" = {
- name = "get-value";
- packageName = "get-value";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
- sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
- };
- };
- "has-value-1.0.0" = {
- name = "has-value";
- packageName = "has-value";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
- sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
- };
- };
- "set-value-2.0.0" = {
- name = "set-value";
- packageName = "set-value";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
- sha512 = "1xdxg14zh452ih8f7826ki7xpq8wk8a831pm5zngqf8cbc4qv6mr9npks863bfqylfrhm161whf9199rmqn4i12wzmz2ks69z3343c7";
- };
- };
- "to-object-path-0.3.0" = {
- name = "to-object-path";
- packageName = "to-object-path";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
- sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
- };
- };
- "union-value-1.0.0" = {
- name = "union-value";
- packageName = "union-value";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
- sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
- };
- };
- "unset-value-1.0.0" = {
- name = "unset-value";
- packageName = "unset-value";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
- sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
- };
- };
- "map-visit-1.0.0" = {
- name = "map-visit";
- packageName = "map-visit";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
- sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
- };
- };
- "object-visit-1.0.1" = {
- name = "object-visit";
- packageName = "object-visit";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
- sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
- };
- };
- "has-values-1.0.0" = {
- name = "has-values";
- packageName = "has-values";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
- sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
- };
- };
- "arr-union-3.1.0" = {
- name = "arr-union";
- packageName = "arr-union";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz";
- sha1 = "e39b09aea9def866a8f206e288af63919bae39c4";
- };
- };
- "set-value-0.4.3" = {
- name = "set-value";
- packageName = "set-value";
- version = "0.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
- sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
- };
- };
- "has-value-0.3.1" = {
- name = "has-value";
- packageName = "has-value";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
- sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
- };
- };
- "has-values-0.1.4" = {
- name = "has-values";
- packageName = "has-values";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
- sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
- };
- };
- "lazy-cache-2.0.2" = {
- name = "lazy-cache";
- packageName = "lazy-cache";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz";
- sha1 = "b9190a4f913354694840859f8a8f7084d8822264";
- };
- };
- "static-extend-0.1.2" = {
- name = "static-extend";
- packageName = "static-extend";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
- sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
- };
- };
- "set-getter-0.1.0" = {
- name = "set-getter";
- packageName = "set-getter";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz";
- sha1 = "d769c182c9d5a51f409145f2fba82e5e86e80376";
- };
- };
- "object-copy-0.1.0" = {
- name = "object-copy";
- packageName = "object-copy";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
- sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
- };
- };
- "copy-descriptor-0.1.1" = {
- name = "copy-descriptor";
- packageName = "copy-descriptor";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
- sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
- };
- };
- "decode-uri-component-0.2.0" = {
- name = "decode-uri-component";
- packageName = "decode-uri-component";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
- sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
- };
- };
- "source-map-url-0.4.0" = {
- name = "source-map-url";
- packageName = "source-map-url";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
- sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
- };
- };
- "atob-2.0.3" = {
- name = "atob";
- packageName = "atob";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/atob/-/atob-2.0.3.tgz";
- sha1 = "19c7a760473774468f20b2d2d03372ad7d4cbf5d";
- };
- };
- "urix-0.1.0" = {
- name = "urix";
- packageName = "urix";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
- sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
- };
- };
- "resolve-url-0.2.1" = {
- name = "resolve-url";
- packageName = "resolve-url";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
- sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
- };
- };
- "expand-tilde-2.0.2" = {
- name = "expand-tilde";
- packageName = "expand-tilde";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
- sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
- };
- };
- "global-modules-1.0.0" = {
- name = "global-modules";
- packageName = "global-modules";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
- sha512 = "1pgpsvm0rm1fnqmblx77xs67gh8c80nf4dsgcgalhh9phmlp8ahn5w7vzx3xkwyxw3fg33h8vhh3plsycw6fd7c2r76mm7m8w9fkb5h";
- };
- };
- "global-prefix-1.0.2" = {
- name = "global-prefix";
- packageName = "global-prefix";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
- sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
- };
- };
- "is-windows-1.0.1" = {
- name = "is-windows";
- packageName = "is-windows";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.1.tgz";
- sha1 = "310db70f742d259a16a369202b51af84233310d9";
- };
- };
- "object.defaults-1.1.0" = {
- name = "object.defaults";
- packageName = "object.defaults";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
- sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
- };
- };
- "parse-filepath-1.0.2" = {
- name = "parse-filepath";
- packageName = "parse-filepath";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
- sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
- };
- };
- "array-each-1.0.1" = {
- name = "array-each";
- packageName = "array-each";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz";
- sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f";
- };
- };
- "array-slice-1.1.0" = {
- name = "array-slice";
- packageName = "array-slice";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz";
- sha512 = "3myjiz16qi117x0k52sisqyn0cqx6yxvpgr43bkil9shgs7yhs8wpdgd3wjwfzgwxsw330yqwhp880gsyx2kxj1lfyb6gs1fh7qqnh7";
- };
- };
- "for-own-1.0.0" = {
- name = "for-own";
- packageName = "for-own";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
- sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
- };
- };
- "is-absolute-1.0.0" = {
- name = "is-absolute";
- packageName = "is-absolute";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
- sha512 = "02g5p9wfcx3f1p0zq01ycrx5biwg79qg1mdw1cv6li7kxpny5hxsp34ynam7w2g6nvah73f0kzdkh6pxxmx1ymd8m02fwvgz6lsirbl";
- };
- };
- "path-root-0.1.1" = {
- name = "path-root";
- packageName = "path-root";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
- sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
- };
- };
- "is-relative-1.0.0" = {
- name = "is-relative";
- packageName = "is-relative";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
- sha512 = "0c1pd4414iy40xq652p1zgqgmncmm7xcns96pfazd63v439vyc1z93bvzvbw5r2qc4fp24414ydnj4gdsqlq223pfg05ar2mmwd23rb";
- };
- };
- "is-unc-path-1.0.0" = {
- name = "is-unc-path";
- packageName = "is-unc-path";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
- sha512 = "2asak63h3kc1vackrpai7qfiv15ndr231w1yc753m1dy7fd6ywxsr0rvh88b9ppyxhmc373fqk89a0pw3dllv7m5nbbbcqzvmaskccs";
- };
- };
- "unc-path-regex-0.1.2" = {
- name = "unc-path-regex";
- packageName = "unc-path-regex";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
- sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
- };
- };
- "path-root-regex-0.1.2" = {
- name = "path-root-regex";
- packageName = "path-root-regex";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
- sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
- };
- };
- "make-iterator-1.0.0" = {
- name = "make-iterator";
- packageName = "make-iterator";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.0.tgz";
- sha1 = "57bef5dc85d23923ba23767324d8e8f8f3d9694b";
- };
- };
- "sequencify-0.0.7" = {
- name = "sequencify";
- packageName = "sequencify";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz";
- sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c";
- };
- };
- "stream-consume-0.1.0" = {
- name = "stream-consume";
- packageName = "stream-consume";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz";
- sha1 = "a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f";
- };
- };
- "user-home-1.1.1" = {
- name = "user-home";
- packageName = "user-home";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz";
- sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190";
- };
- };
- "glob-stream-3.1.18" = {
- name = "glob-stream";
- packageName = "glob-stream";
- version = "3.1.18";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz";
- sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b";
- };
- };
- "glob-watcher-0.0.6" = {
- name = "glob-watcher";
- packageName = "glob-watcher";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz";
- sha1 = "b95b4a8df74b39c83298b0c05c978b4d9a3b710b";
- };
- };
- "strip-bom-1.0.0" = {
- name = "strip-bom";
- packageName = "strip-bom";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz";
- sha1 = "85b8862f3844b5a6d5ec8467a93598173a36f794";
- };
- };
- "vinyl-0.4.6" = {
- name = "vinyl";
- packageName = "vinyl";
+ "browser-launcher2-0.4.6" = {
+ name = "browser-launcher2";
+ packageName = "browser-launcher2";
version = "0.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz";
- sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847";
+ url = "https://registry.npmjs.org/browser-launcher2/-/browser-launcher2-0.4.6.tgz";
+ sha1 = "51598408a13f4c9c5b20eba44554b2c0b0ae4074";
};
};
- "glob-4.5.3" = {
- name = "glob";
- packageName = "glob";
- version = "4.5.3";
+ "browser-pack-6.0.3" = {
+ name = "browser-pack";
+ packageName = "browser-pack";
+ version = "6.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz";
- sha1 = "c6cb73d3226c1efef04de3c56d012f03377ee15f";
+ url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.0.3.tgz";
+ sha512 = "3rbr2j80zl8099hjgsqkizp276cg4q60zjkd481fvnj66k8gmm5w0wbvvqdzpsipgaa3xxsypcr3ryjw1sk2vgzr2hw6pzwr5i933r6";
};
};
- "minimatch-2.0.10" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "2.0.10";
+ "browser-resolve-1.11.2" = {
+ name = "browser-resolve";
+ packageName = "browser-resolve";
+ version = "1.11.2";
src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz";
- sha1 = "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7";
+ url = "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz";
+ sha1 = "8ff09b0a2c421718a1051c260b32e48f442938ce";
};
};
- "ordered-read-streams-0.1.0" = {
- name = "ordered-read-streams";
- packageName = "ordered-read-streams";
- version = "0.1.0";
+ "browser-stdout-1.3.0" = {
+ name = "browser-stdout";
+ packageName = "browser-stdout";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz";
- sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126";
+ url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz";
+ sha1 = "f351d32969d32fa5d7a5567154263d928ae3bd1f";
};
};
- "glob2base-0.0.12" = {
- name = "glob2base";
- packageName = "glob2base";
- version = "0.0.12";
+ "browserify-13.3.0" = {
+ name = "browserify";
+ packageName = "browserify";
+ version = "13.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz";
- sha1 = "9d419b3e28f12e83a362164a277055922c9c0d56";
+ url = "https://registry.npmjs.org/browserify/-/browserify-13.3.0.tgz";
+ sha1 = "b5a9c9020243f0c70e4675bec8223bc627e415ce";
};
};
- "unique-stream-1.0.0" = {
- name = "unique-stream";
- packageName = "unique-stream";
+ "browserify-14.4.0" = {
+ name = "browserify";
+ packageName = "browserify";
+ version = "14.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify/-/browserify-14.4.0.tgz";
+ sha1 = "089a3463af58d0e48d8cd4070b3f74654d5abca9";
+ };
+ };
+ "browserify-14.5.0" = {
+ name = "browserify";
+ packageName = "browserify";
+ version = "14.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify/-/browserify-14.5.0.tgz";
+ sha512 = "3p941rcrmn44115ylbnq53sdsnfm08rlvckdbkrnxvl00ibis5sxyhgrx33vm8sfyb5vgbk8x4b0fv3vwirvd7frwbdmzigsjqcx9w0";
+ };
+ };
+ "browserify-aes-1.1.1" = {
+ name = "browserify-aes";
+ packageName = "browserify-aes";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.1.1.tgz";
+ sha512 = "0b874c5j68a6h1smd9avnc98zpjy2b4sykkhfpn97lzg7k5aq3ab0jdsmxjafifm0sa3srwscfpcl70gwnlg242p7cavnf115hd6sah";
+ };
+ };
+ "browserify-cache-api-3.0.1" = {
+ name = "browserify-cache-api";
+ packageName = "browserify-cache-api";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-cache-api/-/browserify-cache-api-3.0.1.tgz";
+ sha1 = "96247e853f068fd6e0d45cc73f0bb2cd9778ef02";
+ };
+ };
+ "browserify-cipher-1.0.0" = {
+ name = "browserify-cipher";
+ packageName = "browserify-cipher";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz";
- sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b";
+ url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz";
+ sha1 = "9988244874bf5ed4e28da95666dcd66ac8fc363a";
};
};
- "find-index-0.1.1" = {
- name = "find-index";
- packageName = "find-index";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz";
- sha1 = "675d358b2ca3892d795a1ab47232f8b6e2e0dde4";
- };
- };
- "gaze-0.5.2" = {
- name = "gaze";
- packageName = "gaze";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
- sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
- };
- };
- "globule-0.1.0" = {
- name = "globule";
- packageName = "globule";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
- sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
- };
- };
- "lodash-1.0.2" = {
- name = "lodash";
- packageName = "lodash";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
- sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
- };
- };
- "glob-3.1.21" = {
- name = "glob";
- packageName = "glob";
- version = "3.1.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
- sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
- };
- };
- "minimatch-0.2.14" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "0.2.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
- sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
- };
- };
- "graceful-fs-1.2.3" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
- sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
- };
- };
- "inherits-1.0.2" = {
- name = "inherits";
- packageName = "inherits";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
- sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
- };
- };
- "first-chunk-stream-1.0.0" = {
- name = "first-chunk-stream";
- packageName = "first-chunk-stream";
+ "browserify-des-1.0.0" = {
+ name = "browserify-des";
+ packageName = "browserify-des";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz";
- sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e";
+ url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz";
+ sha1 = "daa277717470922ed2fe18594118a175439721dd";
};
};
- "clone-0.2.0" = {
- name = "clone";
- packageName = "clone";
+ "browserify-incremental-3.1.1" = {
+ name = "browserify-incremental";
+ packageName = "browserify-incremental";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-incremental/-/browserify-incremental-3.1.1.tgz";
+ sha1 = "0713cb7587247a632a9f08cf1bd169b878b62a8a";
+ };
+ };
+ "browserify-mime-1.2.9" = {
+ name = "browserify-mime";
+ packageName = "browserify-mime";
+ version = "1.2.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-mime/-/browserify-mime-1.2.9.tgz";
+ sha1 = "aeb1af28de6c0d7a6a2ce40adb68ff18422af31f";
+ };
+ };
+ "browserify-rsa-4.0.1" = {
+ name = "browserify-rsa";
+ packageName = "browserify-rsa";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz";
+ sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
+ };
+ };
+ "browserify-sign-4.0.4" = {
+ name = "browserify-sign";
+ packageName = "browserify-sign";
+ version = "4.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
+ sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
+ };
+ };
+ "browserify-transform-tools-1.7.0" = {
+ name = "browserify-transform-tools";
+ packageName = "browserify-transform-tools";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-transform-tools/-/browserify-transform-tools-1.7.0.tgz";
+ sha1 = "83e277221f63259bed2e7eb2a283a970a501f4c4";
+ };
+ };
+ "browserify-zlib-0.1.4" = {
+ name = "browserify-zlib";
+ packageName = "browserify-zlib";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz";
+ sha1 = "bb35f8a519f600e0fa6b8485241c979d0141fb2d";
+ };
+ };
+ "browserify-zlib-0.2.0" = {
+ name = "browserify-zlib";
+ packageName = "browserify-zlib";
version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz";
- sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f";
+ url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz";
+ sha512 = "24488d4s6d901hj9d9jdddapmcvmibbdpjq6nv3bpyjx72546fcqa0vripy0ydsrw1jk6bakfzvynh5i9cz0g59hrmn4ph75d3kdpk7";
};
};
- "http-proxy-1.0.2" = {
- name = "http-proxy";
- packageName = "http-proxy";
- version = "1.0.2";
+ "bson-0.1.8" = {
+ name = "bson";
+ packageName = "bson";
+ version = "0.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.0.2.tgz";
- sha1 = "08060ff2edb2189e57aa3a152d3ac63ed1af7254";
+ url = "https://registry.npmjs.org/bson/-/bson-0.1.8.tgz";
+ sha1 = "cf34fdcff081a189b589b4b3e5e9309cd6506c81";
};
};
- "redis-0.10.3" = {
- name = "redis";
- packageName = "redis";
- version = "0.10.3";
+ "buffer-4.9.1" = {
+ name = "buffer";
+ packageName = "buffer";
+ version = "4.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/redis/-/redis-0.10.3.tgz";
- sha1 = "8927fe2110ee39617bcf3fd37b89d8e123911bb6";
+ url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz";
+ sha1 = "6d1bb601b07a4efced97094132093027c95bc298";
};
};
- "lru-cache-2.5.2" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "2.5.2";
+ "buffer-5.0.8" = {
+ name = "buffer";
+ packageName = "buffer";
+ version = "5.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.2.tgz";
- sha1 = "1fddad938aae1263ce138680be1b3f591c0ab41c";
+ url = "https://registry.npmjs.org/buffer/-/buffer-5.0.8.tgz";
+ sha512 = "0capij8lgps5fzc5hikkkdsn58lmzfdpni7v2m0ham5r67q24kln1spwz4dnk3nh6zkiqmgz0cqnq591pms1pkkv8prvksd2m1f6yy5";
};
};
- "eventemitter3-3.0.0" = {
- name = "eventemitter3";
- packageName = "eventemitter3";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.0.0.tgz";
- sha512 = "0jijxlrlxb3vf5xqxibisd132qzlh9ag6ckxgvz791d4rqrzvzc2mzzn86jx1bgbsym1wi0pgm017i4rd5m84g1d38n56zqvh5g2r7b";
- };
- };
- "csslint-0.10.0" = {
- name = "csslint";
- packageName = "csslint";
- version = "0.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/csslint/-/csslint-0.10.0.tgz";
- sha1 = "3a6a04e7565c8e9d19beb49767c7ec96e8365805";
- };
- };
- "jshint-2.8.0" = {
- name = "jshint";
- packageName = "jshint";
- version = "2.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jshint/-/jshint-2.8.0.tgz";
- sha1 = "1d09a3bd913c4cadfa81bf18d582bd85bffe0d44";
- };
- };
- "strip-json-comments-1.0.4" = {
- name = "strip-json-comments";
- packageName = "strip-json-comments";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz";
- sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91";
- };
- };
- "xml-1.0.0" = {
- name = "xml";
- packageName = "xml";
+ "buffer-alloc-unsafe-1.0.0" = {
+ name = "buffer-alloc-unsafe";
+ packageName = "buffer-alloc-unsafe";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xml/-/xml-1.0.0.tgz";
- sha1 = "de3ee912477be2f250b60f612f34a8c4da616efe";
+ url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.0.0.tgz";
+ sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe";
};
};
- "parserlib-0.2.5" = {
- name = "parserlib";
- packageName = "parserlib";
- version = "0.2.5";
+ "buffer-crc32-0.1.1" = {
+ name = "buffer-crc32";
+ packageName = "buffer-crc32";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/parserlib/-/parserlib-0.2.5.tgz";
- sha1 = "85907dd8605aa06abb3dd295d50bb2b8fa4dd117";
+ url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.1.1.tgz";
+ sha1 = "7e110dc9953908ab7c32acdc70c9f945b1cbc526";
};
};
- "cli-0.6.6" = {
- name = "cli";
- packageName = "cli";
- version = "0.6.6";
+ "buffer-crc32-0.2.1" = {
+ name = "buffer-crc32";
+ packageName = "buffer-crc32";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cli/-/cli-0.6.6.tgz";
- sha1 = "02ad44a380abf27adac5e6f0cdd7b043d74c53e3";
- };
- };
- "exit-0.1.2" = {
- name = "exit";
- packageName = "exit";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz";
- sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
- };
- };
- "htmlparser2-3.8.3" = {
- name = "htmlparser2";
- packageName = "htmlparser2";
- version = "3.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz";
- sha1 = "996c28b191516a8be86501a7d79757e5c70c1068";
- };
- };
- "lodash-3.7.0" = {
- name = "lodash";
- packageName = "lodash";
- version = "3.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz";
- sha1 = "3678bd8ab995057c07ade836ed2ef087da811d45";
- };
- };
- "domhandler-2.3.0" = {
- name = "domhandler";
- packageName = "domhandler";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz";
- sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738";
- };
- };
- "domutils-1.5.1" = {
- name = "domutils";
- packageName = "domutils";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz";
- sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
- };
- };
- "domelementtype-1.3.0" = {
- name = "domelementtype";
- packageName = "domelementtype";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz";
- sha1 = "b17aed82e8ab59e52dd9c19b1756e0fc187204c2";
- };
- };
- "entities-1.0.0" = {
- name = "entities";
- packageName = "entities";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz";
- sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26";
- };
- };
- "dom-serializer-0.1.0" = {
- name = "dom-serializer";
- packageName = "dom-serializer";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz";
- sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82";
- };
- };
- "domelementtype-1.1.3" = {
- name = "domelementtype";
- packageName = "domelementtype";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz";
- sha1 = "bd28773e2642881aec51544924299c5cd822185b";
- };
- };
- "entities-1.1.1" = {
- name = "entities";
- packageName = "entities";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz";
- sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0";
- };
- };
- "clean-css-4.1.9" = {
- name = "clean-css";
- packageName = "clean-css";
- version = "4.1.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/clean-css/-/clean-css-4.1.9.tgz";
- sha1 = "35cee8ae7687a49b98034f70de00c4edd3826301";
- };
- };
- "he-1.1.1" = {
- name = "he";
- packageName = "he";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/he/-/he-1.1.1.tgz";
- sha1 = "93410fd21b009735151f8868c2f271f3427e23fd";
- };
- };
- "ncname-1.0.0" = {
- name = "ncname";
- packageName = "ncname";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ncname/-/ncname-1.0.0.tgz";
- sha1 = "5b57ad18b1ca092864ef62b0b1ed8194f383b71c";
- };
- };
- "relateurl-0.2.7" = {
- name = "relateurl";
- packageName = "relateurl";
- version = "0.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz";
- sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9";
- };
- };
- "uglify-js-3.2.2" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.2.2.tgz";
- sha512 = "22ibn4zyyrqi1gxr94xs4kaq1y402sxwp68z9w87r4g66wgkashr3fvgrp19w01aidqma2jgmghz5283rkj00x7gxb4f86rzhxlvvgv";
- };
- };
- "xml-char-classes-1.0.0" = {
- name = "xml-char-classes";
- packageName = "xml-char-classes";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml-char-classes/-/xml-char-classes-1.0.0.tgz";
- sha1 = "64657848a20ffc5df583a42ad8a277b4512bbc4d";
- };
- };
- "@ionic/cli-framework-0.1.2" = {
- name = "_at_ionic_slash_cli-framework";
- packageName = "@ionic/cli-framework";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/cli-framework/-/cli-framework-0.1.2.tgz";
- sha512 = "265kszf17mdz60zpfrj5i47lqwwgp6h1b7i8vymig1pnlqd3lnljibxvd2d1rfa3827ks435k9wws458z3dk7fyq8wfmzmv8fk9qjhh";
- };
- };
- "@ionic/cli-utils-1.19.0" = {
- name = "_at_ionic_slash_cli-utils";
- packageName = "@ionic/cli-utils";
- version = "1.19.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/cli-utils/-/cli-utils-1.19.0.tgz";
- sha512 = "24v61p6kqm6l6b5p58y5f4qgf7svxqnwpygz7bw1b7102p6hv6hkcnfgh32vf0nypd8fgdhyyhci5sz342ksdg11q6nj8snnqgd1gss";
- };
- };
- "opn-5.1.0" = {
- name = "opn";
- packageName = "opn";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/opn/-/opn-5.1.0.tgz";
- sha512 = "2k8g3x11xbm64r7bbyad08cjv27vaparkigq11w2v8kg8h73k2rzdr3q6f5i2klidgpaq9rbhfv45rf9dkqqv3d8vsbvw4c5knnbww8";
- };
- };
- "tslib-1.8.1" = {
- name = "tslib";
- packageName = "tslib";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tslib/-/tslib-1.8.1.tgz";
- sha1 = "6946af2d1d651a7b1863b531d6e5afa41aa44eac";
- };
- };
- "ncp-2.0.0" = {
- name = "ncp";
- packageName = "ncp";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz";
- sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3";
- };
- };
- "superagent-3.8.2" = {
- name = "superagent";
- packageName = "superagent";
- version = "3.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/superagent/-/superagent-3.8.2.tgz";
- sha512 = "0sxwwjllf26hx079lw1w3c1zywq2af9ssi7f0n334xzz1mgnfx2lr5l532a988zyi3bigzmfidqgdrfmwv6ghgzs77qsw87yr0zhlc1";
- };
- };
- "cookiejar-2.1.1" = {
- name = "cookiejar";
- packageName = "cookiejar";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz";
- sha1 = "41ad57b1b555951ec171412a81942b1e8200d34a";
- };
- };
- "formidable-1.1.1" = {
- name = "formidable";
- packageName = "formidable";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/formidable/-/formidable-1.1.1.tgz";
- sha1 = "96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9";
- };
- };
- "@ionic/discover-0.4.0" = {
- name = "_at_ionic_slash_discover";
- packageName = "@ionic/discover";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/@ionic/discover/-/discover-0.4.0.tgz";
- sha512 = "0x6yxaj489n9lbq0kfvdnpj1pacgv3r0vk5cnlla7w1jkvxzwaf0vbcnwd9gdaj6zkq69wm1g4zjvj37pyn1lajjkzl1f50l7cnr2ad";
- };
- };
- "archiver-2.1.0" = {
- name = "archiver";
- packageName = "archiver";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/archiver/-/archiver-2.1.0.tgz";
- sha1 = "d2df2e8d5773a82c1dcce925ccc41450ea999afd";
- };
- };
- "ci-info-1.1.2" = {
- name = "ci-info";
- packageName = "ci-info";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ci-info/-/ci-info-1.1.2.tgz";
- sha512 = "1jbmihk48iby72h0b6k4rvhrnaydml49qyjcb83ix310ivjzd4zmdk3yxx1ssn6ryjblm7xzaswnwj53rxwcyn1fr0jm7bzvhy8hcdr";
- };
- };
- "dargs-5.1.0" = {
- name = "dargs";
- packageName = "dargs";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dargs/-/dargs-5.1.0.tgz";
- sha1 = "ec7ea50c78564cd36c9d5ec18f66329fade27829";
- };
- };
- "diff-3.4.0" = {
- name = "diff";
- packageName = "diff";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-3.4.0.tgz";
- sha512 = "1qawya1qhgy4q0bgx0s9ryfz70ddrgyj33rdnnppzszi7x31iir66y7v89kc82lr7prkafrax9sa6w5ssxykqmcf1xw291864qnx5a2";
- };
- };
- "elementtree-0.1.7" = {
- name = "elementtree";
- packageName = "elementtree";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/elementtree/-/elementtree-0.1.7.tgz";
- sha1 = "9ac91be6e52fb6e6244c4e54a4ac3ed8ae8e29c0";
- };
- };
- "http-proxy-middleware-0.17.4" = {
- name = "http-proxy-middleware";
- packageName = "http-proxy-middleware";
- version = "0.17.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz";
- sha1 = "642e8848851d66f09d4f124912846dbaeb41b833";
- };
- };
- "leek-0.0.24" = {
- name = "leek";
- packageName = "leek";
- version = "0.0.24";
- src = fetchurl {
- url = "https://registry.npmjs.org/leek/-/leek-0.0.24.tgz";
- sha1 = "e400e57f0e60d8ef2bd4d068dc428a54345dbcda";
- };
- };
- "os-name-2.0.1" = {
- name = "os-name";
- packageName = "os-name";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-name/-/os-name-2.0.1.tgz";
- sha1 = "b9a386361c17ae3a21736ef0599405c9a8c5dc5e";
- };
- };
- "ssh-config-1.1.3" = {
- name = "ssh-config";
- packageName = "ssh-config";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ssh-config/-/ssh-config-1.1.3.tgz";
- sha1 = "2b19630af85b1666688b9d68f6e4218900f81f8c";
- };
- };
- "tar-4.2.0" = {
- name = "tar";
- packageName = "tar";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.2.0.tgz";
- sha512 = "2gxmbyhp1fl504kj9lkj0p7fx6z7ixvnjkvww945i6dbhc76lci537p5jpw1g64w5yj2npcyfspbg2dfzpcvbmn0a55z16yi670pkpi";
- };
- };
- "tiny-lr-1.0.5" = {
- name = "tiny-lr";
- packageName = "tiny-lr";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.0.5.tgz";
- sha512 = "2b8y1xdv7szw0hvad64rghp2zdahs6qhx0k79c0s9xa0a35zbcrb9b9gywixhcxqi1c9ab7ah8ibra22k8baakh7rvmhf904d559g32";
- };
- };
- "ws-3.3.3" = {
- name = "ws";
- packageName = "ws";
- version = "3.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz";
- sha512 = "2887c18dlvnvc62pqgwhihzxnnj9mzbnjqa0gqg3n94k5b6fx6nm1wggisy2bg3mi7dl81vk11i49wl319yfvh255w2nrbhydmqnxcy";
- };
- };
- "netmask-1.0.6" = {
- name = "netmask";
- packageName = "netmask";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz";
- sha1 = "20297e89d86f6f6400f250d9f4f6b4c1945fcd35";
- };
- };
- "archiver-utils-1.3.0" = {
- name = "archiver-utils";
- packageName = "archiver-utils";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz";
- sha1 = "e50b4c09c70bf3d680e32ff1b7994e9f9d895174";
+ url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz";
+ sha1 = "be3e5382fc02b6d6324956ac1af98aa98b08534c";
};
};
"buffer-crc32-0.2.13" = {
@@ -15084,265 +3217,238 @@ let
sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242";
};
};
- "zip-stream-1.2.0" = {
- name = "zip-stream";
- packageName = "zip-stream";
- version = "1.2.0";
+ "buffer-equal-0.0.1" = {
+ name = "buffer-equal";
+ packageName = "buffer-equal";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz";
- sha1 = "a8bc45f4c1b49699c6b90198baacaacdbcd4ba04";
+ url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz";
+ sha1 = "91bc74b11ea405bc916bc6aa908faafa5b4aac4b";
};
};
- "lazystream-1.0.0" = {
- name = "lazystream";
- packageName = "lazystream";
- version = "1.0.0";
+ "buffer-equal-constant-time-1.0.1" = {
+ name = "buffer-equal-constant-time";
+ packageName = "buffer-equal-constant-time";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz";
- sha1 = "f6995fe0f820392f61396be89462407bb77168e4";
+ url = "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz";
+ sha1 = "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819";
};
};
- "compress-commons-1.2.2" = {
- name = "compress-commons";
- packageName = "compress-commons";
- version = "1.2.2";
+ "buffer-equals-1.0.4" = {
+ name = "buffer-equals";
+ packageName = "buffer-equals";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz";
- sha1 = "524a9f10903f3a813389b0225d27c48bb751890f";
+ url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz";
+ sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
};
};
- "crc32-stream-2.0.0" = {
- name = "crc32-stream";
- packageName = "crc32-stream";
+ "buffer-indexof-1.1.1" = {
+ name = "buffer-indexof";
+ packageName = "buffer-indexof";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz";
+ sha512 = "3bgz1zhq9ng3gypq825f00p9qi9y6z7wvkkf28nhjlyifnb3lk1dkmbya84k0ja79zv8kmmhvalwcnnz92533ip7pnjp3is1w9cxyp3";
+ };
+ };
+ "buffer-more-ints-0.0.2" = {
+ name = "buffer-more-ints";
+ packageName = "buffer-more-ints";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-more-ints/-/buffer-more-ints-0.0.2.tgz";
+ sha1 = "26b3885d10fa13db7fc01aae3aab870199e0124c";
+ };
+ };
+ "buffer-xor-1.0.3" = {
+ name = "buffer-xor";
+ packageName = "buffer-xor";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz";
+ sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9";
+ };
+ };
+ "buffercursor-0.0.12" = {
+ name = "buffercursor";
+ packageName = "buffercursor";
+ version = "0.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffercursor/-/buffercursor-0.0.12.tgz";
+ sha1 = "78a9a7f4343ae7d820a8999acc80de591e25a779";
+ };
+ };
+ "buffers-0.1.1" = {
+ name = "buffers";
+ packageName = "buffers";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz";
+ sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb";
+ };
+ };
+ "bufferutil-2.0.1" = {
+ name = "bufferutil";
+ packageName = "bufferutil";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bufferutil/-/bufferutil-2.0.1.tgz";
+ sha1 = "8de37f5a300730c305fc3edd9f93348ee8a46288";
+ };
+ };
+ "bufferview-1.0.1" = {
+ name = "bufferview";
+ packageName = "bufferview";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bufferview/-/bufferview-1.0.1.tgz";
+ sha1 = "7afd74a45f937fa422a1d338c08bbfdc76cd725d";
+ };
+ };
+ "bufrw-1.2.1" = {
+ name = "bufrw";
+ packageName = "bufrw";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bufrw/-/bufrw-1.2.1.tgz";
+ sha1 = "93f222229b4f5f5e2cd559236891407f9853663b";
+ };
+ };
+ "buildmail-2.0.0" = {
+ name = "buildmail";
+ packageName = "buildmail";
version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz";
- sha1 = "e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4";
+ url = "https://registry.npmjs.org/buildmail/-/buildmail-2.0.0.tgz";
+ sha1 = "f0b7b0a59e9a4a1b5066bbfa051d248f3832eece";
};
};
- "crc-3.5.0" = {
- name = "crc";
- packageName = "crc";
- version = "3.5.0";
+ "buildmail-4.0.1" = {
+ name = "buildmail";
+ packageName = "buildmail";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/crc/-/crc-3.5.0.tgz";
- sha1 = "98b8ba7d489665ba3979f59b21381374101a1964";
+ url = "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz";
+ sha1 = "877f7738b78729871c9a105e3b837d2be11a7a72";
};
};
- "statuses-1.4.0" = {
- name = "statuses";
- packageName = "statuses";
- version = "1.4.0";
+ "builtin-modules-1.1.1" = {
+ name = "builtin-modules";
+ packageName = "builtin-modules";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz";
- sha512 = "1xxwqpj713rq1idbmp7mj7cj9dl52lazgpd5x8a9g88jawbkn9xpwbgljl7cvnd0jqkll2zpdj5xy63dlis9l2k8vmx1n1gvyv8456f";
+ url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz";
+ sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f";
};
};
- "sax-1.1.4" = {
- name = "sax";
- packageName = "sax";
- version = "1.1.4";
+ "builtin-status-codes-3.0.0" = {
+ name = "builtin-status-codes";
+ packageName = "builtin-status-codes";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sax/-/sax-1.1.4.tgz";
- sha1 = "74b6d33c9ae1e001510f179a91168588f1aedaa9";
+ url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz";
+ sha1 = "85982878e21b98e1c66425e03d0174788f569ee8";
};
};
- "http-proxy-1.16.2" = {
- name = "http-proxy";
- packageName = "http-proxy";
- version = "1.16.2";
+ "builtins-1.0.3" = {
+ name = "builtins";
+ packageName = "builtins";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz";
- sha1 = "06dff292952bf64dbe8471fa9df73066d4f37742";
+ url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz";
+ sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
};
};
- "eventemitter3-1.2.0" = {
- name = "eventemitter3";
- packageName = "eventemitter3";
- version = "1.2.0";
+ "bulk-write-stream-1.1.3" = {
+ name = "bulk-write-stream";
+ packageName = "bulk-write-stream";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz";
- sha1 = "1c86991d816ad1e504750e73874224ecf3bec508";
+ url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.3.tgz";
+ sha1 = "d29ca385fbd53f357aee5bd3d3028732b62ae275";
};
};
- "requires-port-1.0.0" = {
- name = "requires-port";
- packageName = "requires-port";
- version = "1.0.0";
+ "bunyan-1.5.1" = {
+ name = "bunyan";
+ packageName = "bunyan";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz";
- sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff";
+ url = "https://registry.npmjs.org/bunyan/-/bunyan-1.5.1.tgz";
+ sha1 = "5f6e7d44c43b952f56b0f41309e3ab12391b4e2d";
};
};
- "lodash.assign-3.2.0" = {
- name = "lodash.assign";
- packageName = "lodash.assign";
- version = "3.2.0";
+ "bunyan-1.8.12" = {
+ name = "bunyan";
+ packageName = "bunyan";
+ version = "1.8.12";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz";
- sha1 = "3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa";
+ url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz";
+ sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797";
};
};
- "rsvp-3.6.2" = {
- name = "rsvp";
- packageName = "rsvp";
- version = "3.6.2";
+ "bunyan-syslog-udp-0.1.0" = {
+ name = "bunyan-syslog-udp";
+ packageName = "bunyan-syslog-udp";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz";
- sha512 = "2bjwzsigk7685syp50amryj0sx08l155azg1z4ldx95gadlwfm07y0iyv0vfwgfchbripn2a5r04qhv546djh0biw8prgpx6r0qdx9r";
+ url = "https://registry.npmjs.org/bunyan-syslog-udp/-/bunyan-syslog-udp-0.1.0.tgz";
+ sha1 = "fbfaee03a81cd2a95abc18f92c99f2bb87e2429c";
};
};
- "lodash._baseassign-3.2.0" = {
- name = "lodash._baseassign";
- packageName = "lodash._baseassign";
- version = "3.2.0";
+ "busboy-0.2.14" = {
+ name = "busboy";
+ packageName = "busboy";
+ version = "0.2.14";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz";
- sha1 = "8c38a099500f215ad09e59f1722fd0c52bfe0a4e";
+ url = "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz";
+ sha1 = "6c2a622efcf47c57bbbe1e2a9c37ad36c7925453";
};
};
- "lodash._createassigner-3.1.1" = {
- name = "lodash._createassigner";
- packageName = "lodash._createassigner";
- version = "3.1.1";
+ "byline-5.0.0" = {
+ name = "byline";
+ packageName = "byline";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz";
- sha1 = "838a5bae2fdaca63ac22dee8e19fa4e6d6970b11";
+ url = "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz";
+ sha1 = "741c5216468eadc457b03410118ad77de8c1ddb1";
};
};
- "lodash._bindcallback-3.0.1" = {
- name = "lodash._bindcallback";
- packageName = "lodash._bindcallback";
- version = "3.0.1";
+ "bytebuffer-3.5.5" = {
+ name = "bytebuffer";
+ packageName = "bytebuffer";
+ version = "3.5.5";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz";
- sha1 = "e531c27644cf8b57a99e17ed95b35c748789392e";
+ url = "https://registry.npmjs.org/bytebuffer/-/bytebuffer-3.5.5.tgz";
+ sha1 = "7a6faf1a13514b083f1fcf9541c4c9bfbe7e7fd3";
};
};
- "macos-release-1.1.0" = {
- name = "macos-release";
- packageName = "macos-release";
- version = "1.1.0";
+ "bytes-0.1.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/macos-release/-/macos-release-1.1.0.tgz";
- sha512 = "260gwv2k1svhzfxs50g921jbhrqlbfr94mcs9ak0dip7i2331nqc7ip0fgdkfl3r1b30w1s87qh2ssq6wxzd08pbmkjwchqc6xdnqls";
+ url = "https://registry.npmjs.org/bytes/-/bytes-0.1.0.tgz";
+ sha1 = "c574812228126d6369d1576925a8579db3f8e5a2";
};
};
- "chownr-1.0.1" = {
- name = "chownr";
- packageName = "chownr";
- version = "1.0.1";
+ "bytes-0.2.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz";
- sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181";
+ url = "https://registry.npmjs.org/bytes/-/bytes-0.2.0.tgz";
+ sha1 = "aad33ec14e3dc2ca74e8e7d451f9ba053ad4f7a0";
};
};
- "fs-minipass-1.2.3" = {
- name = "fs-minipass";
- packageName = "fs-minipass";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.3.tgz";
- sha512 = "3jin38c3wsayawcxqs83qk9072fxypi41y16zhkak9l0fxsn92d4cgbw5s4rwaf69n9ix8sarpsychdhy3vi0nfghjj3y7if04lfnmv";
- };
- };
- "minipass-2.2.1" = {
- name = "minipass";
- packageName = "minipass";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-2.2.1.tgz";
- sha512 = "3yy9s65iwrx5hndcqbxrks88xi9cf8hra6zalgf8xfr4ahpp31s0i8lv6jpyb42p0y7z55ac3390sbqxcgcvan3xls449agbjb98mmv";
- };
- };
- "minizlib-1.1.0" = {
- name = "minizlib";
- packageName = "minizlib";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz";
- sha512 = "2agpbdf9h90nhafdam3jwrw8gcz3jw1i40cx6bhwaw8qaf2s863gi2b77l73dc3hmf5dx491hv5km1rqzabgsbpkjxrvdcwy6pr8gp1";
- };
- };
- "yallist-3.0.2" = {
- name = "yallist";
- packageName = "yallist";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz";
- sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9";
- };
- };
- "body-5.1.0" = {
- name = "body";
- packageName = "body";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/body/-/body-5.1.0.tgz";
- sha1 = "e4ba0ce410a46936323367609ecb4e6553125069";
- };
- };
- "faye-websocket-0.10.0" = {
- name = "faye-websocket";
- packageName = "faye-websocket";
- version = "0.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz";
- sha1 = "4e492f8d04dfb6f89003507f6edbf2d501e7c6f4";
- };
- };
- "livereload-js-2.2.2" = {
- name = "livereload-js";
- packageName = "livereload-js";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/livereload-js/-/livereload-js-2.2.2.tgz";
- sha1 = "6c87257e648ab475bc24ea257457edcc1f8d0bc2";
- };
- };
- "continuable-cache-0.3.1" = {
- name = "continuable-cache";
- packageName = "continuable-cache";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz";
- sha1 = "bd727a7faed77e71ff3985ac93351a912733ad0f";
- };
- };
- "error-7.0.2" = {
- name = "error";
- packageName = "error";
- version = "7.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/error/-/error-7.0.2.tgz";
- sha1 = "a5f75fff4d9926126ddac0ea5dc38e689153cb02";
- };
- };
- "raw-body-1.1.7" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz";
- sha1 = "1d027c2bfa116acc6623bca8f00016572a87d425";
- };
- };
- "safe-json-parse-1.0.1" = {
- name = "safe-json-parse";
- packageName = "safe-json-parse";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz";
- sha1 = "3e76723e38dfdda13c9b1d29a1e07ffee4b30b57";
- };
- };
- "string-template-0.2.1" = {
- name = "string-template";
- packageName = "string-template";
+ "bytes-0.2.1" = {
+ name = "bytes";
+ packageName = "bytes";
version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz";
- sha1 = "42932e598a352d01fc22ec3367d9d84eec6c9add";
+ url = "https://registry.npmjs.org/bytes/-/bytes-0.2.1.tgz";
+ sha1 = "555b08abcb063f8975905302523e4cd4ffdfdf31";
};
};
"bytes-1.0.0" = {
@@ -15354,76 +3460,301 @@ let
sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8";
};
};
- "async-limiter-1.0.0" = {
- name = "async-limiter";
- packageName = "async-limiter";
- version = "1.0.0";
+ "bytes-2.1.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz";
- sha512 = "1ddib7nbyayhldvsyrfdpxk7khyi6s72570gkf3qqf4b1xwzdh52w0vlj6bknl40imispychhwfjb2bm29pjxbd5yz26fi8g8bfx7wf";
+ url = "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz";
+ sha1 = "ac93c410e2ffc9cc7cf4b464b38289067f5e47b4";
};
};
- "is-wsl-1.1.0" = {
- name = "is-wsl";
- packageName = "is-wsl";
+ "bytes-2.4.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz";
+ sha1 = "7d97196f9d5baf7f6935e25985549edd2a6c2339";
+ };
+ };
+ "bytes-3.0.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz";
+ sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
+ };
+ };
+ "bytewise-1.1.0" = {
+ name = "bytewise";
+ packageName = "bytewise";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz";
- sha1 = "1f16e4aa22b04d1336b66188a66af3c600c3a66d";
+ url = "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz";
+ sha1 = "1d13cbff717ae7158094aa881b35d081b387253e";
};
};
- "abbrev-1.0.9" = {
- name = "abbrev";
- packageName = "abbrev";
- version = "1.0.9";
+ "bytewise-core-1.2.3" = {
+ name = "bytewise-core";
+ packageName = "bytewise-core";
+ version = "1.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz";
- sha1 = "91b4792588a7738c25f35dd6f63752a2f8776135";
+ url = "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz";
+ sha1 = "3fb410c7e91558eb1ab22a82834577aa6bd61d42";
};
};
- "escodegen-1.8.1" = {
- name = "escodegen";
- packageName = "escodegen";
- version = "1.8.1";
+ "cache-base-1.0.1" = {
+ name = "cache-base";
+ packageName = "cache-base";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz";
- sha1 = "5a5b53af4693110bebb0867aa3430dd3b70a1018";
+ url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz";
+ sha512 = "36i943khi87af4gif9r6imjgybqxq9cbd69z2h8p2s2j6scfbhrv7j3n591xl982fmyq29rkwh70a6qdcf3v0piwzfh8n2jf571v9q0";
};
};
- "esprima-2.7.3" = {
- name = "esprima";
- packageName = "esprima";
- version = "2.7.3";
+ "cacheable-request-2.1.4" = {
+ name = "cacheable-request";
+ packageName = "cacheable-request";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz";
- sha1 = "96e3b70d5779f6ad49cd032673d1c312767ba581";
+ url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz";
+ sha1 = "0d808801b6342ad33c91df9d0b44dc09b91e5c3d";
};
};
- "handlebars-4.0.11" = {
- name = "handlebars";
- packageName = "handlebars";
- version = "4.0.11";
+ "cached-path-relative-1.0.1" = {
+ name = "cached-path-relative";
+ packageName = "cached-path-relative";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz";
- sha1 = "630a35dfe0294bc281edae6ffc5d329fc7982dcc";
+ url = "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.1.tgz";
+ sha1 = "d09c4b52800aa4c078e2dd81a869aac90d2e54e7";
};
};
- "estraverse-1.9.3" = {
- name = "estraverse";
- packageName = "estraverse";
- version = "1.9.3";
+ "call-me-maybe-1.0.1" = {
+ name = "call-me-maybe";
+ packageName = "call-me-maybe";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz";
- sha1 = "af67f2dc922582415950926091a4005d29c9bb44";
+ url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz";
+ sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b";
};
};
- "source-map-0.2.0" = {
- name = "source-map";
- packageName = "source-map";
+ "callback-stream-1.1.0" = {
+ name = "callback-stream";
+ packageName = "callback-stream";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/callback-stream/-/callback-stream-1.1.0.tgz";
+ sha1 = "4701a51266f06e06eaa71fc17233822d875f4908";
+ };
+ };
+ "caller-0.0.1" = {
+ name = "caller";
+ packageName = "caller";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caller/-/caller-0.0.1.tgz";
+ sha1 = "f37a1d6ea10e829d94721ae29a90bb4fb52ab767";
+ };
+ };
+ "caller-callsite-2.0.0" = {
+ name = "caller-callsite";
+ packageName = "caller-callsite";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz";
+ sha1 = "847e0fce0a223750a9a027c54b33731ad3154134";
+ };
+ };
+ "caller-id-0.1.0" = {
+ name = "caller-id";
+ packageName = "caller-id";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caller-id/-/caller-id-0.1.0.tgz";
+ sha1 = "59bdac0893d12c3871408279231f97458364f07b";
+ };
+ };
+ "caller-path-0.1.0" = {
+ name = "caller-path";
+ packageName = "caller-path";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz";
+ sha1 = "94085ef63581ecd3daa92444a8fe94e82577751f";
+ };
+ };
+ "caller-path-2.0.0" = {
+ name = "caller-path";
+ packageName = "caller-path";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz";
+ sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4";
+ };
+ };
+ "callsite-1.0.0" = {
+ name = "callsite";
+ packageName = "callsite";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz";
+ sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20";
+ };
+ };
+ "callsites-0.2.0" = {
+ name = "callsites";
+ packageName = "callsites";
version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz";
- sha1 = "dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d";
+ url = "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz";
+ sha1 = "afab96262910a7f33c19a5775825c69f34e350ca";
+ };
+ };
+ "callsites-2.0.0" = {
+ name = "callsites";
+ packageName = "callsites";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz";
+ sha1 = "06eb84f00eea413da86affefacbffb36093b3c50";
+ };
+ };
+ "camel-case-3.0.0" = {
+ name = "camel-case";
+ packageName = "camel-case";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz";
+ sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73";
+ };
+ };
+ "camelcase-1.2.1" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz";
+ sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39";
+ };
+ };
+ "camelcase-2.1.1" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz";
+ sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f";
+ };
+ };
+ "camelcase-3.0.0" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz";
+ sha1 = "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a";
+ };
+ };
+ "camelcase-4.1.0" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz";
+ sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
+ };
+ };
+ "camelcase-keys-2.1.0" = {
+ name = "camelcase-keys";
+ packageName = "camelcase-keys";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz";
+ sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7";
+ };
+ };
+ "camelo-1.1.11" = {
+ name = "camelo";
+ packageName = "camelo";
+ version = "1.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelo/-/camelo-1.1.11.tgz";
+ sha512 = "39qf2hdriyb5zn5bc62wgj59whx06nmzij9yylv0mrjnivgpqg2z3ksxl035nn35lnavi1b20qi062l41xah3b3nnbw42dh6b4qk34i";
+ };
+ };
+ "capture-stack-trace-1.0.0" = {
+ name = "capture-stack-trace";
+ packageName = "capture-stack-trace";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz";
+ sha1 = "4a6fa07399c26bba47f0b2496b4d0fb408c5550d";
+ };
+ };
+ "caseless-0.11.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz";
+ sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7";
+ };
+ };
+ "caseless-0.12.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
+ sha1 = "1b681c21ff84033c826543090689420d187151dc";
+ };
+ };
+ "castv2-0.1.9" = {
+ name = "castv2";
+ packageName = "castv2";
+ version = "0.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/castv2/-/castv2-0.1.9.tgz";
+ sha1 = "d0b0fab1fd06b0d9cca636886716ec1293a5905a";
+ };
+ };
+ "castv2-client-1.2.0" = {
+ name = "castv2-client";
+ packageName = "castv2-client";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/castv2-client/-/castv2-client-1.2.0.tgz";
+ sha1 = "a9193b1a5448b8cb9a0415bd021c8811ed7b0544";
+ };
+ };
+ "catharsis-0.8.9" = {
+ name = "catharsis";
+ packageName = "catharsis";
+ version = "0.8.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/catharsis/-/catharsis-0.8.9.tgz";
+ sha1 = "98cc890ca652dd2ef0e70b37925310ff9e90fc8b";
+ };
+ };
+ "ccount-1.0.2" = {
+ name = "ccount";
+ packageName = "ccount";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ccount/-/ccount-1.0.2.tgz";
+ sha1 = "53b6a2f815bb77b9c2871f7b9a72c3a25f1d8e89";
+ };
+ };
+ "center-align-0.1.3" = {
+ name = "center-align";
+ packageName = "center-align";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz";
+ sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad";
};
};
"chai-4.1.2" = {
@@ -15444,130 +3775,130 @@ let
sha512 = "1lf4xj5gc7gxbqjx1pmshsddaqah4zlvzm1r4rbrf4rsgjgf2zj9lx8rccgy0y7ps7wv2i1wf259dwd6mj8aaryxdpfryi2rb2glckb";
};
};
- "fast-json-patch-2.0.6" = {
- name = "fast-json-patch";
- packageName = "fast-json-patch";
- version = "2.0.6";
+ "chainsaw-0.1.0" = {
+ name = "chainsaw";
+ packageName = "chainsaw";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-2.0.6.tgz";
- sha1 = "86fff8f8662391aa819722864d632e603e6ee605";
+ url = "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz";
+ sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98";
};
};
- "iterare-0.0.8" = {
- name = "iterare";
- packageName = "iterare";
- version = "0.0.8";
+ "chalk-0.4.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/iterare/-/iterare-0.0.8.tgz";
- sha1 = "a969a80a1fbff6b78f28776594d7bc2bdfab6aad";
+ url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz";
+ sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f";
};
};
- "jaeger-client-3.7.0" = {
- name = "jaeger-client";
- packageName = "jaeger-client";
- version = "3.7.0";
+ "chalk-0.5.1" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "0.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jaeger-client/-/jaeger-client-3.7.0.tgz";
- sha1 = "65ec79e33fc6aaeb5acf36064d08acf4ec47da96";
+ url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz";
+ sha1 = "663b3a648b68b55d04690d49167aa837858f2174";
};
};
- "mz-2.7.0" = {
- name = "mz";
- packageName = "mz";
- version = "2.7.0";
+ "chalk-1.0.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz";
- sha512 = "3cpmwzmngnmxhklvicnsbl5dchvsy0yikzgf705cq1cplyps3waa03xbjp306bjf167wnplibwki0csnavz98dihq2877g7xqs4dkfg";
+ url = "https://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz";
+ sha1 = "b3cf4ed0ff5397c99c75b8f679db2f52831f96dc";
};
};
- "object-hash-1.2.0" = {
- name = "object-hash";
- packageName = "object-hash";
- version = "1.2.0";
+ "chalk-1.1.3" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/object-hash/-/object-hash-1.2.0.tgz";
- sha512 = "19310wpjhfybr8gslg93qybbsrf3fjlmdgsgvn7d9yim1nmpcgjn5az280w4p8spvhq1djly7naa9434166gcmbavv0xirg75gmcr5j";
+ url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
+ sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
};
};
- "opentracing-0.14.1" = {
- name = "opentracing";
- packageName = "opentracing";
- version = "0.14.1";
+ "chalk-2.1.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/opentracing/-/opentracing-0.14.1.tgz";
- sha1 = "40d278beea417660a35dd9d3ee76511ffa911dcd";
+ url = "https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz";
+ sha512 = "1fnn3znivja3xq1lacvsdwkl2s8ki9w95sylnf2pkmaia1mjz3llbdb5r2dxsflqfky3h8f1bh0piv0l5waw2bkdniqnyv0yx5wch9d";
};
};
- "rxjs-5.5.5" = {
- name = "rxjs";
- packageName = "rxjs";
- version = "5.5.5";
+ "chalk-2.3.0" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.5.tgz";
- sha512 = "3j1cki70sa6rg0klw9jlz0k20a0mj44f2p91ayqrng42kqa65nci3519x2gvzy4a3fnxwdrq42rdrljq8dipw07y87ly1ncfd11zwqg";
+ url = "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz";
+ sha512 = "3fj8njcdcvyplivm2fj19lqw8qv7gb8v7gd6a223pmn8f3di4zwkhyb09vzlmw3pnk4ib88kp4cg8r9i5k5rskalzdfh1l23ljp6gh3";
};
};
- "semaphore-async-await-1.5.1" = {
- name = "semaphore-async-await";
- packageName = "semaphore-async-await";
- version = "1.5.1";
+ "character-entities-1.2.1" = {
+ name = "character-entities";
+ packageName = "character-entities";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/semaphore-async-await/-/semaphore-async-await-1.5.1.tgz";
- sha1 = "857bef5e3644601ca4b9570b87e9df5ca12974fa";
+ url = "https://registry.npmjs.org/character-entities/-/character-entities-1.2.1.tgz";
+ sha1 = "f76871be5ef66ddb7f8f8e3478ecc374c27d6dca";
};
};
- "string-similarity-1.2.0" = {
- name = "string-similarity";
- packageName = "string-similarity";
- version = "1.2.0";
+ "character-entities-html4-1.1.1" = {
+ name = "character-entities-html4";
+ packageName = "character-entities-html4";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/string-similarity/-/string-similarity-1.2.0.tgz";
- sha1 = "d75153cb383846318b7a39a8d9292bb4db4e9c30";
+ url = "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.1.tgz";
+ sha1 = "359a2a4a0f7e29d3dc2ac99bdbe21ee39438ea50";
};
};
- "typescript-2.4.2" = {
- name = "typescript";
- packageName = "typescript";
- version = "2.4.2";
+ "character-entities-legacy-1.1.1" = {
+ name = "character-entities-legacy";
+ packageName = "character-entities-legacy";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.4.2.tgz";
- sha1 = "f8395f85d459276067c988aa41837a8f82870844";
+ url = "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.1.tgz";
+ sha1 = "f40779df1a101872bb510a3d295e1fccf147202f";
};
};
- "vscode-jsonrpc-3.5.0" = {
- name = "vscode-jsonrpc";
- packageName = "vscode-jsonrpc";
- version = "3.5.0";
+ "character-parser-1.2.1" = {
+ name = "character-parser";
+ packageName = "character-parser";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.5.0.tgz";
- sha1 = "87239d9e166b2d7352245b8a813597804c1d63aa";
+ url = "https://registry.npmjs.org/character-parser/-/character-parser-1.2.1.tgz";
+ sha1 = "c0dde4ab182713b919b970959a123ecc1a30fcd6";
};
};
- "vscode-languageserver-3.5.0" = {
- name = "vscode-languageserver";
- packageName = "vscode-languageserver";
- version = "3.5.0";
+ "character-parser-2.2.0" = {
+ name = "character-parser";
+ packageName = "character-parser";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.5.0.tgz";
- sha1 = "d28099bc6ddda8c1dd16b707e454e1b1ddae0dba";
+ url = "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz";
+ sha1 = "c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0";
};
};
- "vscode-languageserver-types-3.5.0" = {
- name = "vscode-languageserver-types";
- packageName = "vscode-languageserver-types";
- version = "3.5.0";
+ "character-reference-invalid-1.1.1" = {
+ name = "character-reference-invalid";
+ packageName = "character-reference-invalid";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.5.0.tgz";
- sha1 = "e48d79962f0b8e02de955e3f524908e2b19c0374";
+ url = "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.1.tgz";
+ sha1 = "942835f750e4ec61a308e60c2ef8cc1011202efc";
};
};
- "assertion-error-1.0.2" = {
- name = "assertion-error";
- packageName = "assertion-error";
- version = "1.0.2";
+ "chardet-0.4.2" = {
+ name = "chardet";
+ packageName = "chardet";
+ version = "0.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.2.tgz";
- sha1 = "13ca515d86206da0bac66e834dd397d87581094c";
+ url = "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz";
+ sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2";
};
};
"check-error-1.0.2" = {
@@ -15579,247 +3910,211 @@ let
sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82";
};
};
- "deep-eql-3.0.1" = {
- name = "deep-eql";
- packageName = "deep-eql";
- version = "3.0.1";
+ "cheerio-0.17.0" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "0.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz";
- sha512 = "1rrbk0h0a836gj1x6lalzgqfs0v34d4fswq23c8lxzmb6k7pna45zd509h1r1fr312n4qml94xqlmzzga40sfa9vnzf6rkr4d1qh1zr";
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-0.17.0.tgz";
+ sha1 = "fa5ae42cc60121133d296d0b46d983215f7268ea";
};
};
- "get-func-name-2.0.0" = {
- name = "get-func-name";
- packageName = "get-func-name";
- version = "2.0.0";
+ "cheerio-0.22.0" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "0.22.0";
src = fetchurl {
- url = "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz";
- sha1 = "ead774abee72e20409433a066366023dd6887a41";
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz";
+ sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e";
};
};
- "pathval-1.1.0" = {
- name = "pathval";
- packageName = "pathval";
- version = "1.1.0";
+ "cheerio-1.0.0-rc.2" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "1.0.0-rc.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz";
- sha1 = "b942e6d4bde653005ef6b71361def8727d0645e0";
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz";
+ sha1 = "4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db";
};
};
- "type-detect-4.0.5" = {
- name = "type-detect";
- packageName = "type-detect";
- version = "4.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/type-detect/-/type-detect-4.0.5.tgz";
- sha512 = "08z0fl5f7kx0fhjbj75cvshf4j5j3zzk04766g04rlwcjqr2i3z84qla0ci1h2iv014qkmsh9z7vbvd6ncr04bf1c36cl151f8jzlip";
- };
- };
- "node-int64-0.4.0" = {
- name = "node-int64";
- packageName = "node-int64";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz";
- sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b";
- };
- };
- "thriftrw-3.11.1" = {
- name = "thriftrw";
- packageName = "thriftrw";
- version = "3.11.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/thriftrw/-/thriftrw-3.11.1.tgz";
- sha1 = "5a2f5165d665bb195e665e5b5b9f8897dac23acc";
- };
- };
- "xorshift-0.2.1" = {
- name = "xorshift";
- packageName = "xorshift";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/xorshift/-/xorshift-0.2.1.tgz";
- sha1 = "fcd82267e9351c13f0fb9c73307f25331d29c63a";
- };
- };
- "opentracing-0.13.0" = {
- name = "opentracing";
- packageName = "opentracing";
- version = "0.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/opentracing/-/opentracing-0.13.0.tgz";
- sha1 = "6a341442f09d7d866bc11ed03de1e3828e3d6aab";
- };
- };
- "bufrw-1.2.1" = {
- name = "bufrw";
- packageName = "bufrw";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bufrw/-/bufrw-1.2.1.tgz";
- sha1 = "93f222229b4f5f5e2cd559236891407f9853663b";
- };
- };
- "ansi-color-0.2.1" = {
- name = "ansi-color";
- packageName = "ansi-color";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-color/-/ansi-color-0.2.1.tgz";
- sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a";
- };
- };
- "any-promise-1.3.0" = {
- name = "any-promise";
- packageName = "any-promise";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz";
- sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f";
- };
- };
- "thenify-all-1.6.0" = {
- name = "thenify-all";
- packageName = "thenify-all";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz";
- sha1 = "1a1918d402d8fc3f98fbf234db0bcc8cc10e9726";
- };
- };
- "thenify-3.3.0" = {
- name = "thenify";
- packageName = "thenify";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/thenify/-/thenify-3.3.0.tgz";
- sha1 = "e69e38a1babe969b0108207978b9f62b88604839";
- };
- };
- "symbol-observable-1.0.1" = {
- name = "symbol-observable";
- packageName = "symbol-observable";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz";
- sha1 = "8340fc4702c3122df5d22288f88283f513d3fdd4";
- };
- };
- "vscode-uri-1.0.1" = {
- name = "vscode-uri";
- packageName = "vscode-uri";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.1.tgz";
- sha1 = "11a86befeac3c4aa3ec08623651a3c81a6d0bbc8";
- };
- };
- "vscode-languageserver-protocol-3.5.0" = {
- name = "vscode-languageserver-protocol";
- packageName = "vscode-languageserver-protocol";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.5.0.tgz";
- sha1 = "067c5cbe27709795398d119692c97ebba1452209";
- };
- };
- "when-3.4.6" = {
- name = "when";
- packageName = "when";
- version = "3.4.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/when/-/when-3.4.6.tgz";
- sha1 = "8fbcb7cc1439d2c3a68c431f1516e6dcce9ad28c";
- };
- };
- "babylon-7.0.0-beta.19" = {
- name = "babylon";
- packageName = "babylon";
- version = "7.0.0-beta.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.19.tgz";
- sha512 = "3y91819zra4jxfjqqdvbi44fr34m68vk7j76rkqkxvayhxmcmrvmxpk7rz16r2s3riql0xs322mkzm61asxzkc5b2zpw4firzv043an";
- };
- };
- "bluebird-3.5.1" = {
- name = "bluebird";
- packageName = "bluebird";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz";
- sha512 = "2631bhp784qng0ifbypsmvijn6kjfvkhq2335kdz8ix5qi3wb3lbpg94xjn1av2s6i95ygr5a4y9j1721dw6zdbywwh1m48by4qpa1h";
- };
- };
- "catharsis-0.8.9" = {
- name = "catharsis";
- packageName = "catharsis";
- version = "0.8.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/catharsis/-/catharsis-0.8.9.tgz";
- sha1 = "98cc890ca652dd2ef0e70b37925310ff9e90fc8b";
- };
- };
- "js2xmlparser-3.0.0" = {
- name = "js2xmlparser";
- packageName = "js2xmlparser";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-3.0.0.tgz";
- sha1 = "3fb60eaa089c5440f9319f51760ccd07e2499733";
- };
- };
- "klaw-2.0.0" = {
- name = "klaw";
- packageName = "klaw";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/klaw/-/klaw-2.0.0.tgz";
- sha1 = "59c128e0dc5ce410201151194eeb9cbf858650f6";
- };
- };
- "marked-0.3.7" = {
- name = "marked";
- packageName = "marked";
- version = "0.3.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/marked/-/marked-0.3.7.tgz";
- sha512 = "2yx1jx6vzjxzhhq2qcsrh0300d452bdl8pvsj0w1ajsxhcqvsba8mmx1lawxx025mzqbvwp5pvay8sff0pg3vbid5whlqdmlgi0y4fc";
- };
- };
- "requizzle-0.2.1" = {
- name = "requizzle";
- packageName = "requizzle";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.1.tgz";
- sha1 = "6943c3530c4d9a7e46f1cddd51c158fc670cdbde";
- };
- };
- "taffydb-2.6.2" = {
- name = "taffydb";
- packageName = "taffydb";
- version = "2.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz";
- sha1 = "7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268";
- };
- };
- "underscore-contrib-0.3.0" = {
- name = "underscore-contrib";
- packageName = "underscore-contrib";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz";
- sha1 = "665b66c24783f8fa2b18c9f8cbb0e2c7d48c26c7";
- };
- };
- "xmlcreate-1.0.2" = {
- name = "xmlcreate";
- packageName = "xmlcreate";
+ "chmodr-1.0.2" = {
+ name = "chmodr";
+ packageName = "chmodr";
version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/xmlcreate/-/xmlcreate-1.0.2.tgz";
- sha1 = "fa6bf762a60a413fb3dd8f4b03c5b269238d308f";
+ url = "https://registry.npmjs.org/chmodr/-/chmodr-1.0.2.tgz";
+ sha1 = "04662b932d0f02ec66deaa2b0ea42811968e3eb9";
+ };
+ };
+ "chokidar-1.6.0" = {
+ name = "chokidar";
+ packageName = "chokidar";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-1.6.0.tgz";
+ sha1 = "90c32ad4802901d7713de532dc284e96a63ad058";
+ };
+ };
+ "chokidar-1.7.0" = {
+ name = "chokidar";
+ packageName = "chokidar";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz";
+ sha1 = "798e689778151c8076b4b360e5edd28cda2bb468";
+ };
+ };
+ "chokidar-2.0.0" = {
+ name = "chokidar";
+ packageName = "chokidar";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chokidar/-/chokidar-2.0.0.tgz";
+ sha512 = "01y5j8xkkzlzc4yzh4f8gbshbs6i3hb4wlz5nd48xcmm3vmawah9jj052km463v3d2vqx9kbrnxvjw2fkcbdxw0sg33ksclzlvc419s";
+ };
+ };
+ "chownr-0.0.2" = {
+ name = "chownr";
+ packageName = "chownr";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chownr/-/chownr-0.0.2.tgz";
+ sha1 = "2f9aebf746f90808ce00607b72ba73b41604c485";
+ };
+ };
+ "chownr-1.0.1" = {
+ name = "chownr";
+ packageName = "chownr";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz";
+ sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181";
+ };
+ };
+ "chromecast-player-0.2.3" = {
+ name = "chromecast-player";
+ packageName = "chromecast-player";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chromecast-player/-/chromecast-player-0.2.3.tgz";
+ sha1 = "fe9ce69911c88096d681e4242c1902ad30787216";
+ };
+ };
+ "chromecast-scanner-0.5.0" = {
+ name = "chromecast-scanner";
+ packageName = "chromecast-scanner";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chromecast-scanner/-/chromecast-scanner-0.5.0.tgz";
+ sha1 = "01296a3e5d130cce34974eb509cbbc7d6f78dd3d";
+ };
+ };
+ "chromium-pickle-js-0.2.0" = {
+ name = "chromium-pickle-js";
+ packageName = "chromium-pickle-js";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz";
+ sha1 = "04a106672c18b085ab774d983dfa3ea138f22205";
+ };
+ };
+ "ci-info-1.1.2" = {
+ name = "ci-info";
+ packageName = "ci-info";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ci-info/-/ci-info-1.1.2.tgz";
+ sha512 = "1jbmihk48iby72h0b6k4rvhrnaydml49qyjcb83ix310ivjzd4zmdk3yxx1ssn6ryjblm7xzaswnwj53rxwcyn1fr0jm7bzvhy8hcdr";
+ };
+ };
+ "cint-8.2.1" = {
+ name = "cint";
+ packageName = "cint";
+ version = "8.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cint/-/cint-8.2.1.tgz";
+ sha1 = "70386b1b48e2773d0d63166a55aff94ef4456a12";
+ };
+ };
+ "cipher-base-1.0.4" = {
+ name = "cipher-base";
+ packageName = "cipher-base";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz";
+ sha512 = "3cm9kdc1sv7pakzlhrc1pazdvg9lk4hv31lximwbcrgmwfzg6imxrndszgx9yzlizknfh2b73cr7b5mfcv50bldpyq6jr5s4zknsj1a";
+ };
+ };
+ "circular-json-0.3.3" = {
+ name = "circular-json";
+ packageName = "circular-json";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz";
+ sha512 = "3hadrrn41znfv3gbqjxf0ckzjmns7w7zgsqw73sdz8nclaff9b0cg1mqhz3zxw3ndnmqqvrdcfykkfpv2v1pv4jdyzcccbn3hsbg4ji";
+ };
+ };
+ "circular-json-0.5.1" = {
+ name = "circular-json";
+ packageName = "circular-json";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/circular-json/-/circular-json-0.5.1.tgz";
+ sha512 = "1myzlq58v42dc2b1i17rcmvj7529spwcqgzc7j2q663a7xkk4nhzqk6hpw20lvp99iaq0k0zg5p0jzf19n7p0vrg45hk160ai31qf2j";
+ };
+ };
+ "clarinet-0.11.0" = {
+ name = "clarinet";
+ packageName = "clarinet";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clarinet/-/clarinet-0.11.0.tgz";
+ sha1 = "6cc912b93138dc867fc273cd34ea90e83e054719";
+ };
+ };
+ "class-utils-0.3.6" = {
+ name = "class-utils";
+ packageName = "class-utils";
+ version = "0.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz";
+ sha512 = "1xcqwmfmsbrm2ck76brwiqjmcza655khgh5szh6wngk357i37sgwsga1pbarwzaz9hvzkriqhq6j0z5mv0pmz61cf9wxvk3y5mlzs58";
+ };
+ };
+ "clean-css-3.4.28" = {
+ name = "clean-css";
+ packageName = "clean-css";
+ version = "3.4.28";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz";
+ sha1 = "bf1945e82fc808f55695e6ddeaec01400efd03ff";
+ };
+ };
+ "clean-css-4.1.9" = {
+ name = "clean-css";
+ packageName = "clean-css";
+ version = "4.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clean-css/-/clean-css-4.1.9.tgz";
+ sha1 = "35cee8ae7687a49b98034f70de00c4edd3826301";
+ };
+ };
+ "clean-stack-1.3.0" = {
+ name = "clean-stack";
+ packageName = "clean-stack";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clean-stack/-/clean-stack-1.3.0.tgz";
+ sha1 = "9e821501ae979986c46b1d66d2d432db2fd4ae31";
+ };
+ };
+ "cli-0.6.6" = {
+ name = "cli";
+ packageName = "cli";
+ version = "0.6.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli/-/cli-0.6.6.tgz";
+ sha1 = "02ad44a380abf27adac5e6f0cdd7b043d74c53e3";
};
};
"cli-1.0.1" = {
@@ -15831,312 +4126,6 @@ let
sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
};
};
- "config-chain-1.1.11" = {
- name = "config-chain";
- packageName = "config-chain";
- version = "1.1.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz";
- sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2";
- };
- };
- "editorconfig-0.13.3" = {
- name = "editorconfig";
- packageName = "editorconfig";
- version = "0.13.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.3.tgz";
- sha512 = "08ysphnfa9fynh31z9sbxq8nyw0v2w2q6xkvqpy13xr16mh58na9xrxjxj0r6vwr01xjna3jyz6njwbxw0dvyrq509y5fs2sm8fqj2s";
- };
- };
- "proto-list-1.2.4" = {
- name = "proto-list";
- packageName = "proto-list";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz";
- sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
- };
- };
- "lru-cache-3.2.0" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-3.2.0.tgz";
- sha1 = "71789b3b7f5399bec8565dda38aa30d2a097efee";
- };
- };
- "graphlib-2.1.1" = {
- name = "graphlib";
- packageName = "graphlib";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/graphlib/-/graphlib-2.1.1.tgz";
- sha1 = "42352c52ba2f4d035cb566eb91f7395f76ebc951";
- };
- };
- "native-promise-only-0.8.1" = {
- name = "native-promise-only";
- packageName = "native-promise-only";
- version = "0.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/native-promise-only/-/native-promise-only-0.8.1.tgz";
- sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11";
- };
- };
- "path-loader-1.0.4" = {
- name = "path-loader";
- packageName = "path-loader";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.4.tgz";
- sha512 = "1ss8fmalfnf2hx07sbbf2nzcf1z85m7jksnaf18i5lp85mylav3wckypakqq7lb93nbrpsj50ajhx0wl63w0q7y9k08gjlnsfihzwlk";
- };
- };
- "uri-js-3.0.2" = {
- name = "uri-js";
- packageName = "uri-js";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uri-js/-/uri-js-3.0.2.tgz";
- sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa";
- };
- };
- "punycode-2.1.0" = {
- name = "punycode";
- packageName = "punycode";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz";
- sha1 = "5f863edc89b96db09074bad7947bf09056ca4e7d";
- };
- };
- "connect-pause-0.1.1" = {
- name = "connect-pause";
- packageName = "connect-pause";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz";
- sha1 = "b269b2bb82ddb1ac3db5099c0fb582aba99fb37a";
- };
- };
- "errorhandler-1.5.0" = {
- name = "errorhandler";
- packageName = "errorhandler";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.0.tgz";
- sha1 = "eaba64ca5d542a311ac945f582defc336165d9f4";
- };
- };
- "express-urlrewrite-1.2.0" = {
- name = "express-urlrewrite";
- packageName = "express-urlrewrite";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.2.0.tgz";
- sha1 = "8e667b7761ff1c7ffdb0efa05d64035387c823eb";
- };
- };
- "json-parse-helpfulerror-1.0.3" = {
- name = "json-parse-helpfulerror";
- packageName = "json-parse-helpfulerror";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz";
- sha1 = "13f14ce02eed4e981297b64eb9e3b932e2dd13dc";
- };
- };
- "lodash-id-0.14.0" = {
- name = "lodash-id";
- packageName = "lodash-id";
- version = "0.14.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.0.tgz";
- sha1 = "baf48934e543a1b5d6346f8c84698b1a8c803896";
- };
- };
- "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";
- };
- };
- "method-override-2.3.10" = {
- name = "method-override";
- packageName = "method-override";
- version = "2.3.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/method-override/-/method-override-2.3.10.tgz";
- sha1 = "e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4";
- };
- };
- "morgan-1.9.0" = {
- name = "morgan";
- packageName = "morgan";
- version = "1.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/morgan/-/morgan-1.9.0.tgz";
- sha1 = "d01fa6c65859b76fcf31b3cb53a3821a311d8051";
- };
- };
- "nanoid-1.0.1" = {
- name = "nanoid";
- packageName = "nanoid";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanoid/-/nanoid-1.0.1.tgz";
- sha512 = "3dh8fdgynnii8rgdpyk69z99y49bnl60244wsaw8mk2lzhfhczgf7nxgmm0qakmgzbvqqqfngq03z3j8hp70smh7ka0il806w7ajxh5";
- };
- };
- "please-upgrade-node-3.0.1" = {
- name = "please-upgrade-node";
- packageName = "please-upgrade-node";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.0.1.tgz";
- sha1 = "0a681f2c18915e5433a5ca2cd94e0b8206a782db";
- };
- };
- "server-destroy-1.0.1" = {
- name = "server-destroy";
- packageName = "server-destroy";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz";
- sha1 = "f13bf928e42b9c3e79383e61cc3998b5d14e6cdd";
- };
- };
- "update-notifier-2.3.0" = {
- name = "update-notifier";
- packageName = "update-notifier";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.3.0.tgz";
- sha1 = "4e8827a6bb915140ab093559d7014e3ebb837451";
- };
- };
- "yargs-10.0.3" = {
- name = "yargs";
- packageName = "yargs";
- version = "10.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-10.0.3.tgz";
- sha512 = "1vn6jsqrhybxddyhmvkh0d43n2lk1z8081glfq80zpjfs4xgwpk0mmgdiry9zgsihmv9a2qidmp5hhyqqq8mzzkr037wla0qd1nk80f";
- };
- };
- "path-to-regexp-1.7.0" = {
- name = "path-to-regexp";
- packageName = "path-to-regexp";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.7.0.tgz";
- sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d";
- };
- };
- "jju-1.3.0" = {
- name = "jju";
- packageName = "jju";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jju/-/jju-1.3.0.tgz";
- sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa";
- };
- };
- "steno-0.4.4" = {
- name = "steno";
- packageName = "steno";
- version = "0.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz";
- sha1 = "071105bdfc286e6615c0403c27e9d7b5dcb855cb";
- };
- };
- "basic-auth-2.0.0" = {
- name = "basic-auth";
- packageName = "basic-auth";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.0.tgz";
- sha1 = "015db3f353e02e56377755f962742e8981e7bbba";
- };
- };
- "boxen-1.3.0" = {
- name = "boxen";
- packageName = "boxen";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz";
- sha512 = "0pmn5jcnph7yfgfhlncg1lys066cq44kavj4d9qhmyy9705w61pabpwlma09xg4xplzbxh78d3m4xwvjwk478r3xyqnmpzq79yy7lsc";
- };
- };
- "configstore-3.1.1" = {
- name = "configstore";
- packageName = "configstore";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz";
- sha512 = "2zmidvkp20q25yv6a5d7k1daawdg0w6ppgayxzpwfhyvmgwybkkv7ni0j4b2j9c8wjn8z33zf5d4bjr8jywb5qixc75vypyy87n90z6";
- };
- };
- "import-lazy-2.1.0" = {
- name = "import-lazy";
- packageName = "import-lazy";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz";
- sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43";
- };
- };
- "is-installed-globally-0.1.0" = {
- name = "is-installed-globally";
- packageName = "is-installed-globally";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz";
- sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80";
- };
- };
- "latest-version-3.1.0" = {
- name = "latest-version";
- packageName = "latest-version";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz";
- sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15";
- };
- };
- "xdg-basedir-3.0.0" = {
- name = "xdg-basedir";
- packageName = "xdg-basedir";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz";
- sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4";
- };
- };
- "ansi-align-2.0.0" = {
- name = "ansi-align";
- packageName = "ansi-align";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz";
- sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f";
- };
- };
- "camelcase-4.1.0" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz";
- sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
- };
- };
"cli-boxes-1.0.0" = {
name = "cli-boxes";
packageName = "cli-boxes";
@@ -16146,112 +4135,139 @@ let
sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143";
};
};
- "term-size-1.2.0" = {
- name = "term-size";
- packageName = "term-size";
- version = "1.2.0";
+ "cli-cursor-1.0.2" = {
+ name = "cli-cursor";
+ packageName = "cli-cursor";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz";
- sha1 = "458b83887f288fc56d6fffbfad262e26638efa69";
+ url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz";
+ sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987";
};
};
- "widest-line-2.0.0" = {
- name = "widest-line";
- packageName = "widest-line";
- version = "2.0.0";
+ "cli-cursor-2.1.0" = {
+ name = "cli-cursor";
+ packageName = "cli-cursor";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/widest-line/-/widest-line-2.0.0.tgz";
- sha1 = "0142a4e8a243f8882c0233aa0e0281aa76152273";
+ url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz";
+ sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5";
};
};
- "execa-0.7.0" = {
- name = "execa";
- packageName = "execa";
- version = "0.7.0";
+ "cli-list-0.2.0" = {
+ name = "cli-list";
+ packageName = "cli-list";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz";
- sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777";
+ url = "https://registry.npmjs.org/cli-list/-/cli-list-0.2.0.tgz";
+ sha1 = "7e673ee0dd39a611a486476e53f3c6b3941cb582";
};
};
- "unique-string-1.0.0" = {
- name = "unique-string";
- packageName = "unique-string";
- version = "1.0.0";
+ "cli-spinners-1.1.0" = {
+ name = "cli-spinners";
+ packageName = "cli-spinners";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz";
- sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a";
+ url = "https://registry.npmjs.org/cli-spinners/-/cli-spinners-1.1.0.tgz";
+ sha1 = "f1847b168844d917a671eb9d147e3df497c90d06";
};
};
- "crypto-random-string-1.0.0" = {
- name = "crypto-random-string";
- packageName = "crypto-random-string";
- version = "1.0.0";
+ "cli-table-0.3.1" = {
+ name = "cli-table";
+ packageName = "cli-table";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz";
- sha1 = "a230f64f568310e1498009940790ec99545bca7e";
+ url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz";
+ sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23";
};
};
- "global-dirs-0.1.1" = {
- name = "global-dirs";
- packageName = "global-dirs";
- version = "0.1.1";
+ "cli-table2-0.2.0" = {
+ name = "cli-table2";
+ packageName = "cli-table2";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz";
- sha1 = "b319c0dd4607f353f3be9cca4c72fc148c49f445";
+ url = "https://registry.npmjs.org/cli-table2/-/cli-table2-0.2.0.tgz";
+ sha1 = "2d1ef7f218a0e786e214540562d4bd177fe32d97";
};
};
- "package-json-4.0.1" = {
- name = "package-json";
- packageName = "package-json";
- version = "4.0.1";
+ "cli-truncate-1.1.0" = {
+ name = "cli-truncate";
+ packageName = "cli-truncate";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz";
- sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed";
+ url = "https://registry.npmjs.org/cli-truncate/-/cli-truncate-1.1.0.tgz";
+ sha512 = "1h48346i2bsfvj3h0qfxmyh1770cxb3d9ibk75yjag1xgzk021yqbmkiv30k5c0qgyb0sxkvjc3sckmakf4i7q1d2gh1nmw9fimj2vc";
};
};
- "got-6.7.1" = {
- name = "got";
- packageName = "got";
- version = "6.7.1";
+ "cli-width-1.1.1" = {
+ name = "cli-width";
+ packageName = "cli-width";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz";
- sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0";
+ url = "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz";
+ sha1 = "a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d";
};
};
- "registry-auth-token-3.3.1" = {
- name = "registry-auth-token";
- packageName = "registry-auth-token";
- version = "3.3.1";
+ "cli-width-2.2.0" = {
+ name = "cli-width";
+ packageName = "cli-width";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz";
- sha1 = "fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006";
+ url = "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz";
+ sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639";
};
};
- "create-error-class-3.0.2" = {
- name = "create-error-class";
- packageName = "create-error-class";
- version = "3.0.2";
+ "cliclopts-1.1.1" = {
+ name = "cliclopts";
+ packageName = "cliclopts";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz";
- sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
+ url = "https://registry.npmjs.org/cliclopts/-/cliclopts-1.1.1.tgz";
+ sha1 = "69431c7cb5af723774b0d3911b4c37512431910f";
};
};
- "unzip-response-2.0.1" = {
- name = "unzip-response";
- packageName = "unzip-response";
- version = "2.0.1";
+ "cliff-0.1.10" = {
+ name = "cliff";
+ packageName = "cliff";
+ version = "0.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz";
- sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97";
+ url = "https://registry.npmjs.org/cliff/-/cliff-0.1.10.tgz";
+ sha1 = "53be33ea9f59bec85609ee300ac4207603e52013";
};
};
- "capture-stack-trace-1.0.0" = {
- name = "capture-stack-trace";
- packageName = "capture-stack-trace";
- version = "1.0.0";
+ "cliff-0.1.9" = {
+ name = "cliff";
+ packageName = "cliff";
+ version = "0.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz";
- sha1 = "4a6fa07399c26bba47f0b2496b4d0fb408c5550d";
+ url = "https://registry.npmjs.org/cliff/-/cliff-0.1.9.tgz";
+ sha1 = "a211e09c6a3de3ba1af27d049d301250d18812bc";
+ };
+ };
+ "clipboardy-1.2.2" = {
+ name = "clipboardy";
+ packageName = "clipboardy";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clipboardy/-/clipboardy-1.2.2.tgz";
+ sha512 = "2pq14hxz6w4k5yvndrm1fv3iyscdqf5c4nja421gl2661didzh80r08zddd84zny94831qs44biamjhvwmqh40pfy3pjv3vwl2ap8np";
+ };
+ };
+ "clite-0.3.0" = {
+ name = "clite";
+ packageName = "clite";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clite/-/clite-0.3.0.tgz";
+ sha1 = "e7fcbc8cc5bd3e7f8b84ed48db12e9474cc73441";
+ };
+ };
+ "cliui-2.1.0" = {
+ name = "cliui";
+ packageName = "cliui";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz";
+ sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1";
};
};
"cliui-3.2.0" = {
@@ -16263,1093 +4279,112 @@ let
sha1 = "120601537a916d29940f934da3b48d585a39213d";
};
};
- "get-caller-file-1.0.2" = {
- name = "get-caller-file";
- packageName = "get-caller-file";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz";
- sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5";
- };
- };
- "os-locale-2.1.0" = {
- name = "os-locale";
- packageName = "os-locale";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz";
- sha512 = "0lafrp0i2ajapsnma0x74q7zscn97a56i5hh58a0nyig2igfx9fqn4ain9kvjrr06as5gzdrv2wdf52qc5m861fd0f4cv69ghdjbjyy";
- };
- };
- "require-directory-2.1.1" = {
- name = "require-directory";
- packageName = "require-directory";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
- sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
- };
- };
- "require-main-filename-1.0.1" = {
- name = "require-main-filename";
- packageName = "require-main-filename";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
- sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
- };
- };
- "set-blocking-2.0.0" = {
- name = "set-blocking";
- packageName = "set-blocking";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
- };
- };
- "which-module-2.0.0" = {
- name = "which-module";
- packageName = "which-module";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
- sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
- };
- };
- "y18n-3.2.1" = {
- name = "y18n";
- packageName = "y18n";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz";
- sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41";
- };
- };
- "yargs-parser-8.1.0" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "8.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-8.1.0.tgz";
- sha512 = "0jyff04yy5xlrgvccky4f7phgp99lk2r1n7dk67hkb0picdjpa2ap27g4jrm94cw1d31vw8sh2b5cvnvga2w838bgh6l1kwld1bmzy8";
- };
- };
- "wrap-ansi-2.1.0" = {
- name = "wrap-ansi";
- packageName = "wrap-ansi";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
- sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
- };
- };
- "lcid-1.0.0" = {
- name = "lcid";
- packageName = "lcid";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz";
- sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835";
- };
- };
- "invert-kv-1.0.0" = {
- name = "invert-kv";
- packageName = "invert-kv";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz";
- sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6";
- };
- };
- "combine-lists-1.0.1" = {
- name = "combine-lists";
- packageName = "combine-lists";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz";
- sha1 = "458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6";
- };
- };
- "connect-3.6.5" = {
- name = "connect";
- packageName = "connect";
- version = "3.6.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-3.6.5.tgz";
- sha1 = "fb8dde7ba0763877d0ec9df9dac0b4b40e72c7da";
- };
- };
- "di-0.0.1" = {
- name = "di";
- packageName = "di";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/di/-/di-0.0.1.tgz";
- sha1 = "806649326ceaa7caa3306d75d985ea2748ba913c";
- };
- };
- "dom-serialize-2.2.1" = {
- name = "dom-serialize";
- packageName = "dom-serialize";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz";
- sha1 = "562ae8999f44be5ea3076f5419dcd59eb43ac95b";
- };
- };
- "expand-braces-0.1.2" = {
- name = "expand-braces";
- packageName = "expand-braces";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz";
- sha1 = "488b1d1d2451cb3d3a6b192cfc030f44c5855fea";
- };
- };
- "isbinaryfile-3.0.2" = {
- name = "isbinaryfile";
- packageName = "isbinaryfile";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.2.tgz";
- sha1 = "4a3e974ec0cba9004d3fc6cde7209ea69368a621";
- };
- };
- "log4js-0.6.38" = {
- name = "log4js";
- packageName = "log4js";
- version = "0.6.38";
- src = fetchurl {
- url = "https://registry.npmjs.org/log4js/-/log4js-0.6.38.tgz";
- sha1 = "2c494116695d6fb25480943d3fc872e662a522fd";
- };
- };
- "qjobs-1.1.5" = {
- name = "qjobs";
- packageName = "qjobs";
- version = "1.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/qjobs/-/qjobs-1.1.5.tgz";
- sha1 = "659de9f2cf8dcc27a1481276f205377272382e73";
- };
- };
- "socket.io-1.7.3" = {
- name = "socket.io";
- packageName = "socket.io";
- version = "1.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz";
- sha1 = "b8af9caba00949e568e369f1327ea9be9ea2461b";
- };
- };
- "useragent-2.2.1" = {
- name = "useragent";
- packageName = "useragent";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/useragent/-/useragent-2.2.1.tgz";
- sha1 = "cf593ef4f2d175875e8bb658ea92e18a4fd06d8e";
- };
- };
- "finalhandler-1.0.6" = {
- name = "finalhandler";
- packageName = "finalhandler";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.6.tgz";
- sha1 = "007aea33d1a4d3e42017f624848ad58d212f814f";
- };
- };
- "custom-event-1.0.1" = {
- name = "custom-event";
- packageName = "custom-event";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz";
- sha1 = "5d02a46850adf1b4a317946a3928fccb5bfd0425";
- };
- };
- "ent-2.2.0" = {
- name = "ent";
- packageName = "ent";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz";
- sha1 = "e964219325a21d05f44466a2f686ed6ce5f5dd1d";
- };
- };
- "array-slice-0.2.3" = {
- name = "array-slice";
- packageName = "array-slice";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz";
- sha1 = "dd3cfb80ed7973a75117cdac69b0b99ec86186f5";
- };
- };
- "braces-0.1.5" = {
- name = "braces";
- packageName = "braces";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz";
- sha1 = "c085711085291d8b75fdd74eab0f8597280711e6";
- };
- };
- "expand-range-0.1.1" = {
- name = "expand-range";
- packageName = "expand-range";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz";
- sha1 = "4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044";
- };
- };
- "is-number-0.1.1" = {
- name = "is-number";
- packageName = "is-number";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz";
- sha1 = "69a7af116963d47206ec9bd9b48a14216f1e3806";
- };
- };
- "repeat-string-0.2.2" = {
- name = "repeat-string";
- packageName = "repeat-string";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz";
- sha1 = "c7a8d3236068362059a7e4651fc6884e8b1fb4ae";
- };
- };
- "debug-2.3.3" = {
- name = "debug";
- packageName = "debug";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz";
- sha1 = "40c453e67e6e13c901ddec317af8986cda9eff8c";
- };
- };
- "engine.io-1.8.3" = {
- name = "engine.io";
- packageName = "engine.io";
- version = "1.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-1.8.3.tgz";
- sha1 = "8de7f97895d20d39b85f88eeee777b2bd42b13d4";
- };
- };
- "has-binary-0.1.7" = {
- name = "has-binary";
- packageName = "has-binary";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz";
- sha1 = "68e61eb16210c9545a0a5cce06a873912fe1e68c";
- };
- };
- "object-assign-4.1.0" = {
- name = "object-assign";
- packageName = "object-assign";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz";
- sha1 = "7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0";
- };
- };
- "socket.io-adapter-0.5.0" = {
- name = "socket.io-adapter";
- packageName = "socket.io-adapter";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz";
- sha1 = "cb6d4bb8bec81e1078b99677f9ced0046066bb8b";
- };
- };
- "socket.io-client-1.7.3" = {
- name = "socket.io-client";
- packageName = "socket.io-client";
- version = "1.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.3.tgz";
- sha1 = "b30e86aa10d5ef3546601c09cde4765e381da377";
- };
- };
- "socket.io-parser-2.3.1" = {
- name = "socket.io-parser";
- packageName = "socket.io-parser";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz";
- sha1 = "dd532025103ce429697326befd64005fcfe5b4a0";
- };
- };
- "ms-0.7.2" = {
- name = "ms";
- packageName = "ms";
- version = "0.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz";
- sha1 = "ae25cf2512b3885a1d95d7f037868d8431124765";
- };
- };
- "accepts-1.3.3" = {
- name = "accepts";
- packageName = "accepts";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz";
- sha1 = "c3ca7434938648c3e0d9c1e328dd68b622c284ca";
- };
- };
- "base64id-1.0.0" = {
- name = "base64id";
- packageName = "base64id";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz";
- sha1 = "47688cb99bb6804f0e06d3e763b1c32e57d8e6b6";
- };
- };
- "engine.io-parser-1.3.2" = {
- name = "engine.io-parser";
- packageName = "engine.io-parser";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz";
- sha1 = "937b079f0007d0893ec56d46cb220b8cb435220a";
- };
- };
- "ws-1.1.2" = {
- name = "ws";
- packageName = "ws";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-1.1.2.tgz";
- sha1 = "8a244fa052401e08c9886cf44a85189e1fd4067f";
- };
- };
- "after-0.8.2" = {
- name = "after";
- packageName = "after";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz";
- sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f";
- };
- };
- "arraybuffer.slice-0.0.6" = {
- name = "arraybuffer.slice";
- packageName = "arraybuffer.slice";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz";
- sha1 = "f33b2159f0532a3f3107a272c0ccfbd1ad2979ca";
- };
- };
- "base64-arraybuffer-0.1.5" = {
- name = "base64-arraybuffer";
- packageName = "base64-arraybuffer";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz";
- sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8";
- };
- };
- "blob-0.0.4" = {
- name = "blob";
- packageName = "blob";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz";
- sha1 = "bcf13052ca54463f30f9fc7e95b9a47630a94921";
- };
- };
- "wtf-8-1.0.0" = {
- name = "wtf-8";
- packageName = "wtf-8";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz";
- sha1 = "392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a";
- };
- };
- "backo2-1.0.2" = {
- name = "backo2";
- packageName = "backo2";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz";
- sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947";
- };
- };
- "component-bind-1.0.0" = {
- name = "component-bind";
- packageName = "component-bind";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz";
- sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1";
- };
- };
- "engine.io-client-1.8.3" = {
- name = "engine.io-client";
- packageName = "engine.io-client";
- version = "1.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.3.tgz";
- sha1 = "1798ed93451246453d4c6f635d7a201fe940d5ab";
- };
- };
- "object-component-0.0.3" = {
- name = "object-component";
- packageName = "object-component";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz";
- sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291";
- };
- };
- "parseuri-0.0.5" = {
- name = "parseuri";
- packageName = "parseuri";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz";
- sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a";
- };
- };
- "to-array-0.1.4" = {
- name = "to-array";
- packageName = "to-array";
- version = "0.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz";
- sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890";
- };
- };
- "component-inherit-0.0.3" = {
- name = "component-inherit";
- packageName = "component-inherit";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz";
- sha1 = "645fc4adf58b72b649d5cae65135619db26ff143";
- };
- };
- "has-cors-1.1.0" = {
- name = "has-cors";
- packageName = "has-cors";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz";
- sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39";
- };
- };
- "parsejson-0.0.3" = {
- name = "parsejson";
- packageName = "parsejson";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/parsejson/-/parsejson-0.0.3.tgz";
- sha1 = "ab7e3759f209ece99437973f7d0f1f64ae0e64ab";
- };
- };
- "parseqs-0.0.5" = {
- name = "parseqs";
- packageName = "parseqs";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz";
- sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d";
- };
- };
- "xmlhttprequest-ssl-1.5.3" = {
- name = "xmlhttprequest-ssl";
- packageName = "xmlhttprequest-ssl";
- version = "1.5.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz";
- sha1 = "185a888c04eca46c3e4070d99f7b49de3528992d";
- };
- };
- "yeast-0.1.2" = {
- name = "yeast";
- packageName = "yeast";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz";
- sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419";
- };
- };
- "better-assert-1.0.2" = {
- name = "better-assert";
- packageName = "better-assert";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz";
- sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522";
- };
- };
- "callsite-1.0.0" = {
- name = "callsite";
- packageName = "callsite";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz";
- sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20";
- };
- };
- "debug-2.2.0" = {
- name = "debug";
- packageName = "debug";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz";
- sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da";
- };
- };
- "json3-3.3.2" = {
- name = "json3";
- packageName = "json3";
- version = "3.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz";
- sha1 = "3c0434743df93e2f5c42aee7b19bcb483575f4e1";
- };
- };
- "ms-0.7.1" = {
- name = "ms";
- packageName = "ms";
- version = "0.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz";
- sha1 = "9cd13c03adbff25b65effde7ce864ee952017098";
- };
- };
- "lru-cache-2.2.4" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "2.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz";
- sha1 = "6c658619becf14031d0d0b594b16042ce4dc063d";
- };
- };
- "express-3.21.2" = {
- name = "express";
- packageName = "express";
- version = "3.21.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-3.21.2.tgz";
- sha1 = "0c2903ee5c54e63d65a96170764703550665a3de";
- };
- };
- "passport-0.4.0" = {
- name = "passport";
- packageName = "passport";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport/-/passport-0.4.0.tgz";
- sha1 = "c5095691347bd5ad3b5e180238c3914d16f05811";
- };
- };
- "passport-google-oauth-1.0.0" = {
- name = "passport-google-oauth";
- packageName = "passport-google-oauth";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport-google-oauth/-/passport-google-oauth-1.0.0.tgz";
- sha1 = "65f50633192ad0627a18b08960077109d84eb76d";
- };
- };
- "connect-restreamer-1.0.3" = {
- name = "connect-restreamer";
- packageName = "connect-restreamer";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect-restreamer/-/connect-restreamer-1.0.3.tgz";
- sha1 = "a73f04d88e7292d7fd2f2d7d691a0cdeeed141a9";
- };
- };
- "basic-auth-1.0.4" = {
- name = "basic-auth";
- packageName = "basic-auth";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.4.tgz";
- sha1 = "030935b01de7c9b94a824b29f3fccb750d3a5290";
- };
- };
- "connect-2.30.2" = {
- name = "connect";
- packageName = "connect";
- version = "2.30.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-2.30.2.tgz";
- sha1 = "8da9bcbe8a054d3d318d74dfec903b5c39a1b609";
- };
- };
- "cookie-0.1.3" = {
- name = "cookie";
- packageName = "cookie";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie/-/cookie-0.1.3.tgz";
- sha1 = "e734a5c1417fce472d5aef82c381cabb64d1a435";
- };
- };
- "escape-html-1.0.2" = {
- name = "escape-html";
- packageName = "escape-html";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.2.tgz";
- sha1 = "d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c";
- };
- };
- "etag-1.7.0" = {
- name = "etag";
- packageName = "etag";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz";
- sha1 = "03d30b5f67dd6e632d2945d30d6652731a34d5d8";
- };
- };
- "fresh-0.3.0" = {
- name = "fresh";
- packageName = "fresh";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz";
- sha1 = "651f838e22424e7566de161d8358caa199f83d4f";
- };
- };
- "merge-descriptors-1.0.0" = {
- name = "merge-descriptors";
- packageName = "merge-descriptors";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.0.tgz";
- sha1 = "2169cf7538e1b0cc87fb88e1502d8474bbf79864";
- };
- };
- "send-0.13.0" = {
- name = "send";
- packageName = "send";
- version = "0.13.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.13.0.tgz";
- sha1 = "518f921aeb0560aec7dcab2990b14cf6f3cce5de";
- };
- };
- "basic-auth-connect-1.0.0" = {
- name = "basic-auth-connect";
- packageName = "basic-auth-connect";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz";
- sha1 = "fdb0b43962ca7b40456a7c2bb48fe173da2d2122";
- };
- };
- "body-parser-1.13.3" = {
- name = "body-parser";
- packageName = "body-parser";
- version = "1.13.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/body-parser/-/body-parser-1.13.3.tgz";
- sha1 = "c08cf330c3358e151016a05746f13f029c97fa97";
- };
- };
- "bytes-2.1.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz";
- sha1 = "ac93c410e2ffc9cc7cf4b464b38289067f5e47b4";
- };
- };
- "cookie-parser-1.3.5" = {
- name = "cookie-parser";
- packageName = "cookie-parser";
- version = "1.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.3.5.tgz";
- sha1 = "9d755570fb5d17890771227a02314d9be7cf8356";
- };
- };
- "compression-1.5.2" = {
- name = "compression";
- packageName = "compression";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz";
- sha1 = "b03b8d86e6f8ad29683cba8df91ddc6ffc77b395";
- };
- };
- "connect-timeout-1.6.2" = {
- name = "connect-timeout";
- packageName = "connect-timeout";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.2.tgz";
- sha1 = "de9a5ec61e33a12b6edaab7b5f062e98c599b88e";
- };
- };
- "csurf-1.8.3" = {
- name = "csurf";
- packageName = "csurf";
- version = "1.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/csurf/-/csurf-1.8.3.tgz";
- sha1 = "23f2a13bf1d8fce1d0c996588394442cba86a56a";
- };
- };
- "errorhandler-1.4.3" = {
- name = "errorhandler";
- packageName = "errorhandler";
- version = "1.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/errorhandler/-/errorhandler-1.4.3.tgz";
- sha1 = "b7b70ed8f359e9db88092f2d20c0f831420ad83f";
- };
- };
- "express-session-1.11.3" = {
- name = "express-session";
- packageName = "express-session";
- version = "1.11.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz";
- sha1 = "5cc98f3f5ff84ed835f91cbf0aabd0c7107400af";
- };
- };
- "finalhandler-0.4.0" = {
- name = "finalhandler";
- packageName = "finalhandler";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz";
- sha1 = "965a52d9e8d05d2b857548541fb89b53a2497d9b";
- };
- };
- "http-errors-1.3.1" = {
- name = "http-errors";
- packageName = "http-errors";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz";
- sha1 = "197e22cdebd4198585e8694ef6786197b91ed942";
- };
- };
- "morgan-1.6.1" = {
- name = "morgan";
- packageName = "morgan";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz";
- sha1 = "5fd818398c6819cba28a7cd6664f292fe1c0bbf2";
- };
- };
- "multiparty-3.3.2" = {
- name = "multiparty";
- packageName = "multiparty";
- version = "3.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/multiparty/-/multiparty-3.3.2.tgz";
- sha1 = "35de6804dc19643e5249f3d3e3bdc6c8ce301d3f";
- };
- };
- "pause-0.1.0" = {
- name = "pause";
- packageName = "pause";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/pause/-/pause-0.1.0.tgz";
- sha1 = "ebc8a4a8619ff0b8a81ac1513c3434ff469fdb74";
- };
- };
- "qs-4.0.0" = {
- name = "qs";
- packageName = "qs";
+ "cliui-4.0.0" = {
+ name = "cliui";
+ packageName = "cliui";
version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz";
- sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607";
+ url = "https://registry.npmjs.org/cliui/-/cliui-4.0.0.tgz";
+ sha512 = "0mh539939k4z2nhj5h1m8kdr3bfy2f1kmdkss02cdbyabmpdkc6m22llyykymriahf54gpx6qg9v3vrs51gqgrrfhpsgbdndgjdd3cx";
};
};
- "response-time-2.3.2" = {
- name = "response-time";
- packageName = "response-time";
- version = "2.3.2";
+ "clivas-0.1.4" = {
+ name = "clivas";
+ packageName = "clivas";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz";
- sha1 = "ffa71bab952d62f7c1d49b7434355fbc68dffc5a";
+ url = "https://registry.npmjs.org/clivas/-/clivas-0.1.4.tgz";
+ sha1 = "e1c1e481d1273d57f1752132b0e4410a0d88235a";
};
};
- "serve-favicon-2.3.2" = {
- name = "serve-favicon";
- packageName = "serve-favicon";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.3.2.tgz";
- sha1 = "dd419e268de012ab72b319d337f2105013f9381f";
- };
- };
- "serve-index-1.7.3" = {
- name = "serve-index";
- packageName = "serve-index";
- version = "1.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-index/-/serve-index-1.7.3.tgz";
- sha1 = "7a057fc6ee28dc63f64566e5fa57b111a86aecd2";
- };
- };
- "serve-static-1.10.3" = {
- name = "serve-static";
- packageName = "serve-static";
- version = "1.10.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.10.3.tgz";
- sha1 = "ce5a6ecd3101fed5ec09827dac22a9c29bfb0535";
- };
- };
- "vhost-3.0.2" = {
- name = "vhost";
- packageName = "vhost";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vhost/-/vhost-3.0.2.tgz";
- sha1 = "2fb1decd4c466aa88b0f9341af33dc1aff2478d5";
- };
- };
- "iconv-lite-0.4.11" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz";
- sha1 = "2ecb42fd294744922209a2e7c404dac8793d8ade";
- };
- };
- "raw-body-2.1.7" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "2.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-2.1.7.tgz";
- sha1 = "adfeace2e4fb3098058014d08c072dcc59758774";
- };
- };
- "bytes-2.4.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz";
- sha1 = "7d97196f9d5baf7f6935e25985549edd2a6c2339";
- };
- };
- "iconv-lite-0.4.13" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.13";
- src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz";
- sha1 = "1f88aba4ab0b1508e8312acc39345f36e992e2f2";
- };
- };
- "csrf-3.0.6" = {
- name = "csrf";
- packageName = "csrf";
- version = "3.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/csrf/-/csrf-3.0.6.tgz";
- sha1 = "b61120ddceeafc91e76ed5313bb5c0b2667b710a";
- };
- };
- "rndm-1.2.0" = {
- name = "rndm";
- packageName = "rndm";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz";
- sha1 = "f33fe9cfb52bbfd520aa18323bc65db110a1b76c";
- };
- };
- "tsscmp-1.0.5" = {
- name = "tsscmp";
- packageName = "tsscmp";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz";
- sha1 = "7dc4a33af71581ab4337da91d85ca5427ebd9a97";
- };
- };
- "uid-safe-2.1.4" = {
- name = "uid-safe";
- packageName = "uid-safe";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz";
- sha1 = "3ad6f38368c6d4c8c75ec17623fb79aa1d071d81";
- };
- };
- "random-bytes-1.0.0" = {
- name = "random-bytes";
- packageName = "random-bytes";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz";
- sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b";
- };
- };
- "crc-3.3.0" = {
- name = "crc";
- packageName = "crc";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/crc/-/crc-3.3.0.tgz";
- sha1 = "fa622e1bc388bf257309082d6b65200ce67090ba";
- };
- };
- "uid-safe-2.0.0" = {
- name = "uid-safe";
- packageName = "uid-safe";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.0.0.tgz";
- sha1 = "a7f3c6ca64a1f6a5d04ec0ef3e4c3d5367317137";
- };
- };
- "base64-url-1.2.1" = {
- name = "base64-url";
- packageName = "base64-url";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-url/-/base64-url-1.2.1.tgz";
- sha1 = "199fd661702a0e7b7dcae6e0698bb089c52f6d78";
- };
- };
- "stream-counter-0.2.0" = {
- name = "stream-counter";
- packageName = "stream-counter";
+ "clivas-0.2.0" = {
+ name = "clivas";
+ packageName = "clivas";
version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz";
- sha1 = "ded266556319c8b0e222812b9cf3b26fa7d947de";
+ url = "https://registry.npmjs.org/clivas/-/clivas-0.2.0.tgz";
+ sha1 = "b8d19188b3243e390f302410bd0cb1622db82649";
};
};
- "batch-0.5.3" = {
- name = "batch";
- packageName = "batch";
- version = "0.5.3";
+ "clone-0.1.5" = {
+ name = "clone";
+ packageName = "clone";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz";
- sha1 = "3f3414f380321743bfc1042f9a83ff1d5824d464";
+ url = "https://registry.npmjs.org/clone/-/clone-0.1.5.tgz";
+ sha1 = "46f29143d0766d663dbd7f80b7520a15783d2042";
};
};
- "send-0.13.2" = {
- name = "send";
- packageName = "send";
- version = "0.13.2";
+ "clone-0.1.6" = {
+ name = "clone";
+ packageName = "clone";
+ version = "0.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.13.2.tgz";
- sha1 = "765e7607c8055452bba6f0b052595350986036de";
+ url = "https://registry.npmjs.org/clone/-/clone-0.1.6.tgz";
+ sha1 = "4af2296d4a23a64168c2f5fb0a2aa65e80517000";
};
};
- "mime-1.3.4" = {
- name = "mime";
- packageName = "mime";
- version = "1.3.4";
+ "clone-0.2.0" = {
+ name = "clone";
+ packageName = "clone";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz";
- sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53";
+ url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz";
+ sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f";
};
};
- "statuses-1.2.1" = {
- name = "statuses";
- packageName = "statuses";
- version = "1.2.1";
+ "clone-1.0.3" = {
+ name = "clone";
+ packageName = "clone";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz";
- sha1 = "dded45cc18256d51ed40aec142489d5c61026d28";
+ url = "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz";
+ sha1 = "298d7e2231660f40c003c2ed3140decf3f53085f";
};
};
- "passport-strategy-1.0.0" = {
- name = "passport-strategy";
- packageName = "passport-strategy";
+ "clone-2.1.1" = {
+ name = "clone";
+ packageName = "clone";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz";
+ sha1 = "d217d1e961118e3ac9a4b8bba3285553bf647cdb";
+ };
+ };
+ "clone-deep-0.3.0" = {
+ name = "clone-deep";
+ packageName = "clone-deep";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone-deep/-/clone-deep-0.3.0.tgz";
+ sha1 = "348c61ae9cdbe0edfe053d91ff4cc521d790ede8";
+ };
+ };
+ "clone-regexp-1.0.0" = {
+ name = "clone-regexp";
+ packageName = "clone-regexp";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz";
- sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4";
+ url = "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.0.tgz";
+ sha1 = "eae0a2413f55c0942f818c229fefce845d7f3b1c";
};
};
- "pause-0.0.1" = {
- name = "pause";
- packageName = "pause";
+ "clone-response-1.0.2" = {
+ name = "clone-response";
+ packageName = "clone-response";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz";
+ sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b";
+ };
+ };
+ "clone-stats-0.0.1" = {
+ name = "clone-stats";
+ packageName = "clone-stats";
version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz";
- sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d";
- };
- };
- "passport-google-oauth1-1.0.0" = {
- name = "passport-google-oauth1";
- packageName = "passport-google-oauth1";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport-google-oauth1/-/passport-google-oauth1-1.0.0.tgz";
- sha1 = "af74a803df51ec646f66a44d82282be6f108e0cc";
- };
- };
- "passport-google-oauth20-1.0.0" = {
- name = "passport-google-oauth20";
- packageName = "passport-google-oauth20";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport-google-oauth20/-/passport-google-oauth20-1.0.0.tgz";
- sha1 = "3b960e8a1d70d1dbe794615c827c68c40392a5d0";
- };
- };
- "passport-oauth1-1.1.0" = {
- name = "passport-oauth1";
- packageName = "passport-oauth1";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport-oauth1/-/passport-oauth1-1.1.0.tgz";
- sha1 = "a7de988a211f9cf4687377130ea74df32730c918";
- };
- };
- "oauth-0.9.15" = {
- name = "oauth";
- packageName = "oauth";
- version = "0.9.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz";
- sha1 = "bd1fefaf686c96b75475aed5196412ff60cfb9c1";
- };
- };
- "passport-oauth2-1.4.0" = {
- name = "passport-oauth2";
- packageName = "passport-oauth2";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.4.0.tgz";
- sha1 = "f62f81583cbe12609be7ce6f160b9395a27b86ad";
- };
- };
- "uid2-0.0.3" = {
- name = "uid2";
- packageName = "uid2";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz";
- sha1 = "483126e11774df2f71b8b639dcd799c376162b82";
+ url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz";
+ sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1";
};
};
"cmd-shim-2.0.2" = {
@@ -17361,6 +4396,204 @@ let
sha1 = "6fcbda99483a8fd15d7d30a196ca69d688a2efdb";
};
};
+ "cmdln-3.2.1" = {
+ name = "cmdln";
+ packageName = "cmdln";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cmdln/-/cmdln-3.2.1.tgz";
+ sha1 = "8d21967625b25ee35fca8e8453ccf10fccd04e45";
+ };
+ };
+ "co-3.0.6" = {
+ name = "co";
+ packageName = "co";
+ version = "3.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co/-/co-3.0.6.tgz";
+ sha1 = "1445f226c5eb956138e68c9ac30167ea7d2e6bda";
+ };
+ };
+ "co-3.1.0" = {
+ name = "co";
+ packageName = "co";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co/-/co-3.1.0.tgz";
+ sha1 = "4ea54ea5a08938153185e15210c68d9092bc1b78";
+ };
+ };
+ "co-4.6.0" = {
+ name = "co";
+ packageName = "co";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
+ sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
+ };
+ };
+ "coa-2.0.1" = {
+ name = "coa";
+ packageName = "coa";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coa/-/coa-2.0.1.tgz";
+ sha512 = "2nxlq1p7l0446g1hnmpgv37c0m2jqnzfddgsa4ys4p5sapd43mx6p7yas925hjimzzx41jvxr36fvllsziwaliiwbdginq4xx6d61z7";
+ };
+ };
+ "code-point-at-1.1.0" = {
+ name = "code-point-at";
+ packageName = "code-point-at";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
+ sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
+ };
+ };
+ "codecs-1.2.0" = {
+ name = "codecs";
+ packageName = "codecs";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/codecs/-/codecs-1.2.0.tgz";
+ sha1 = "5148549e3d156c5fa053d7cbb419715a0cf43d16";
+ };
+ };
+ "codepage-1.4.0" = {
+ name = "codepage";
+ packageName = "codepage";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/codepage/-/codepage-1.4.0.tgz";
+ sha1 = "ffd5b603ae6a8ebb63559d5fb89a57d12b943837";
+ };
+ };
+ "coffee-script-1.12.7" = {
+ name = "coffee-script";
+ packageName = "coffee-script";
+ version = "1.12.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.12.7.tgz";
+ sha512 = "29mq40padyvizg4f141b00p0p74hx9v06d7gxk84ggsiyw6rf5bb65gnfwk1i02r276jwqybmi5hx98s943slyazjnqd69jmj389dvw";
+ };
+ };
+ "coffee-script-1.6.3" = {
+ name = "coffee-script";
+ packageName = "coffee-script";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.6.3.tgz";
+ sha1 = "6355d32cf1b04cdff6b484e5e711782b2f0c39be";
+ };
+ };
+ "collapse-white-space-1.0.3" = {
+ name = "collapse-white-space";
+ packageName = "collapse-white-space";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.3.tgz";
+ sha1 = "4b906f670e5a963a87b76b0e1689643341b6023c";
+ };
+ };
+ "collection-visit-1.0.0" = {
+ name = "collection-visit";
+ packageName = "collection-visit";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz";
+ sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0";
+ };
+ };
+ "color-2.0.1" = {
+ name = "color";
+ packageName = "color";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/color/-/color-2.0.1.tgz";
+ sha512 = "1gir7mfj6033amg78p7jvpj0nk2hw61hqd81r6x3a2qmgizbw3d89k0qk62680zhm9ypcx6c9p2cgwjvb8smxv0qgvblkwza9ah5ddr";
+ };
+ };
+ "color-convert-1.9.1" = {
+ name = "color-convert";
+ packageName = "color-convert";
+ version = "1.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz";
+ sha512 = "32rj1090g95xcvm0d2ya6jbqdhiy9w2wv3picdy33fzrm455v0gi7g4n8lw0n31g37wwbdnz7lxjsisgbsaqz1d10j9nh5hi2f9lccs";
+ };
+ };
+ "color-name-1.1.3" = {
+ name = "color-name";
+ packageName = "color-name";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
+ sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
+ };
+ };
+ "color-string-1.5.2" = {
+ name = "color-string";
+ packageName = "color-string";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/color-string/-/color-string-1.5.2.tgz";
+ sha1 = "26e45814bc3c9a7cbd6751648a41434514a773a9";
+ };
+ };
+ "color-support-1.1.3" = {
+ name = "color-support";
+ packageName = "color-support";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz";
+ sha512 = "13g563h7mrddc3rlljgg75km4zycb8rhzxb5wiiricqvh4n7zgl60psnz39ijkzx5bn93s5qvacwkxbg1cglcmg5z3yyb6cjs96685a";
+ };
+ };
+ "colors-0.5.1" = {
+ name = "colors";
+ packageName = "colors";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz";
+ sha1 = "7d0023eaeb154e8ee9fce75dcb923d0ed1667774";
+ };
+ };
+ "colors-0.6.2" = {
+ name = "colors";
+ packageName = "colors";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz";
+ sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc";
+ };
+ };
+ "colors-1.0.3" = {
+ name = "colors";
+ packageName = "colors";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
+ sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
+ };
+ };
+ "colors-1.1.2" = {
+ name = "colors";
+ packageName = "colors";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
+ sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
+ };
+ };
+ "colour-0.7.1" = {
+ name = "colour";
+ packageName = "colour";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colour/-/colour-0.7.1.tgz";
+ sha1 = "9cb169917ec5d12c0736d3e8685746df1cadf778";
+ };
+ };
"columnify-1.5.4" = {
name = "columnify";
packageName = "columnify";
@@ -17370,6 +4603,51 @@ let
sha1 = "4737ddf1c7b69a8a7c340570782e947eec8e78bb";
};
};
+ "combine-lists-1.0.1" = {
+ name = "combine-lists";
+ packageName = "combine-lists";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz";
+ sha1 = "458c07e09e0d900fc28b70a3fec2dacd1d2cb7f6";
+ };
+ };
+ "combine-source-map-0.7.2" = {
+ name = "combine-source-map";
+ packageName = "combine-source-map";
+ version = "0.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.7.2.tgz";
+ sha1 = "0870312856b307a87cc4ac486f3a9a62aeccc09e";
+ };
+ };
+ "combine-source-map-0.8.0" = {
+ name = "combine-source-map";
+ packageName = "combine-source-map";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.8.0.tgz";
+ sha1 = "a58d0df042c186fcf822a8e8015f5450d2d79a8b";
+ };
+ };
+ "combined-stream-0.0.7" = {
+ name = "combined-stream";
+ packageName = "combined-stream";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz";
+ sha1 = "0137e657baa5a7541c57ac37ac5fc07d73b4dc1f";
+ };
+ };
+ "combined-stream-1.0.5" = {
+ name = "combined-stream";
+ packageName = "combined-stream";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz";
+ sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009";
+ };
+ };
"command-join-2.0.0" = {
name = "command-join";
packageName = "command-join";
@@ -17379,166 +4657,581 @@ let
sha1 = "52e8b984f4872d952ff1bdc8b98397d27c7144cf";
};
};
- "conventional-changelog-cli-1.3.5" = {
- name = "conventional-changelog-cli";
- packageName = "conventional-changelog-cli";
- version = "1.3.5";
+ "commander-0.6.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "0.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-1.3.5.tgz";
- sha1 = "46c51496216b7406588883defa6fac589e9bb31e";
+ url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz";
+ sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06";
};
};
- "conventional-recommended-bump-1.1.0" = {
- name = "conventional-recommended-bump";
- packageName = "conventional-recommended-bump";
- version = "1.1.0";
+ "commander-1.0.4" = {
+ name = "commander";
+ packageName = "commander";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-1.1.0.tgz";
- sha512 = "3gh833x8hqmnxfmacs3ryrb2gh3y397ddkiwisv6g3dfz6j617i1fm22yq3r83y40pidmf1n77qzvwmbx4ws7jn4yydfxypi6fhgbaq";
+ url = "https://registry.npmjs.org/commander/-/commander-1.0.4.tgz";
+ sha1 = "5edeb1aee23c4fb541a6b70d692abef19669a2d3";
};
};
- "dedent-0.7.0" = {
- name = "dedent";
- packageName = "dedent";
- version = "0.7.0";
+ "commander-1.1.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz";
- sha1 = "2495ddbaf6eb874abb0e1be9df22d2e5a544326c";
+ url = "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz";
+ sha1 = "50d1651868ae60eccff0a2d9f34595376bc6b041";
};
};
- "fs-extra-4.0.3" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "4.0.3";
+ "commander-1.3.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz";
- sha512 = "05bphjab1lk12dz3qf87dywgpsjsx0f59kpligxqph53yicigij2gsmvkppgyhpi70h3q3id3ymz30c02v3pphakn06k8vm6xsdpamb";
+ url = "https://registry.npmjs.org/commander/-/commander-1.3.1.tgz";
+ sha1 = "02443e02db96f4b32b674225451abb6e9510000e";
};
};
- "get-port-3.2.0" = {
- name = "get-port";
- packageName = "get-port";
- version = "3.2.0";
+ "commander-1.3.2" = {
+ name = "commander";
+ packageName = "commander";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz";
- sha1 = "dd7ce7de187c06c8bf353796ac71e099f0980ebc";
+ url = "https://registry.npmjs.org/commander/-/commander-1.3.2.tgz";
+ sha1 = "8a8f30ec670a6fdd64af52f1914b907d79ead5b5";
};
};
- "glob-parent-3.1.0" = {
- name = "glob-parent";
- packageName = "glob-parent";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
- sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
- };
- };
- "globby-6.1.0" = {
- name = "globby";
- packageName = "globby";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz";
- sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c";
- };
- };
- "is-ci-1.0.10" = {
- name = "is-ci";
- packageName = "is-ci";
- version = "1.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-ci/-/is-ci-1.0.10.tgz";
- sha1 = "f739336b2632365061a9d48270cd56ae3369318e";
- };
- };
- "load-json-file-3.0.0" = {
- name = "load-json-file";
- packageName = "load-json-file";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/load-json-file/-/load-json-file-3.0.0.tgz";
- sha1 = "7eb3735d983a7ed2262ade4ff769af5369c5c440";
- };
- };
- "npmlog-4.1.2" = {
- name = "npmlog";
- packageName = "npmlog";
- version = "4.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
- sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs";
- };
- };
- "read-cmd-shim-1.0.1" = {
- name = "read-cmd-shim";
- packageName = "read-cmd-shim";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz";
- sha1 = "2d5d157786a37c055d22077c32c53f8329e91c7b";
- };
- };
- "read-pkg-2.0.0" = {
- name = "read-pkg";
- packageName = "read-pkg";
+ "commander-2.0.0" = {
+ name = "commander";
+ packageName = "commander";
version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz";
- sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8";
+ url = "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz";
+ sha1 = "d1b86f901f8b64bd941bdeadaf924530393be928";
};
};
- "strong-log-transformer-1.0.6" = {
- name = "strong-log-transformer";
- packageName = "strong-log-transformer";
- version = "1.0.6";
+ "commander-2.1.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-1.0.6.tgz";
- sha1 = "f7fb93758a69a571140181277eea0c2eb1301fa3";
+ url = "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz";
+ sha1 = "d121bbae860d9992a3d517ba96f56588e47c6781";
};
};
- "temp-write-3.3.0" = {
- name = "temp-write";
- packageName = "temp-write";
- version = "3.3.0";
+ "commander-2.11.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/temp-write/-/temp-write-3.3.0.tgz";
- sha1 = "c1a96de2b36061342eae81f44ff001aec8f615a9";
+ url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz";
+ sha512 = "2yi2hwf0bghfnv1fdgd4wvh7s0acjrgqbgww97ncm6i6s6ffs1zahnj48f6gqpqj6fsf0jigvnr0civ25k2160c38281r80wvg7jkkg";
};
};
- "write-json-file-2.3.0" = {
- name = "write-json-file";
- packageName = "write-json-file";
- version = "2.3.0";
+ "commander-2.12.2" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.12.2";
src = fetchurl {
- url = "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz";
- sha1 = "2b64c8a33004d54b8698c76d585a77ceb61da32f";
+ url = "https://registry.npmjs.org/commander/-/commander-2.12.2.tgz";
+ sha512 = "007wb3baahjcrv17kgxryqjlsyr3c3kl2y07p85m4ia78pba9xyjr3cgi95jjrwq8qq550s78hj06f7z0ab8ssrxk6w06afjsmxln84";
};
};
- "write-pkg-3.1.0" = {
- name = "write-pkg";
- packageName = "write-pkg";
- version = "3.1.0";
+ "commander-2.13.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz";
- sha1 = "030a9994cc9993d25b4e75a9f1a1923607291ce9";
+ url = "https://registry.npmjs.org/commander/-/commander-2.13.0.tgz";
+ sha512 = "1h27ar13gbld2jk6wk84irqmyz6ya6b4dzmxb6nq8azyi48iq8pqqyq90jwzxqb3i7j167y5fpiys6v7vvjzhm8bbd8rya1kzgr4nri";
};
};
- "yargs-8.0.2" = {
- name = "yargs";
- packageName = "yargs";
- version = "8.0.2";
+ "commander-2.6.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz";
- sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360";
+ url = "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz";
+ sha1 = "9df7e52fb2a0cb0fb89058ee80c3104225f37e1d";
};
};
- "add-stream-1.0.0" = {
- name = "add-stream";
- packageName = "add-stream";
+ "commander-2.8.1" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz";
+ sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4";
+ };
+ };
+ "commander-2.9.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz";
+ sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
+ };
+ };
+ "commist-1.0.0" = {
+ name = "commist";
+ packageName = "commist";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz";
- sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa";
+ url = "https://registry.npmjs.org/commist/-/commist-1.0.0.tgz";
+ sha1 = "c0c352501cf6f52e9124e3ef89c9806e2022ebef";
+ };
+ };
+ "common-tags-1.7.2" = {
+ name = "common-tags";
+ packageName = "common-tags";
+ version = "1.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/common-tags/-/common-tags-1.7.2.tgz";
+ sha512 = "0jx2cncv7x5ms1gg2vks5bhxi9c5jbwymfk42dzmp9vrxrmhrl9vaw4wsh4lvf65shxmq1v8f8s0i3rkyk2x8mrfpq2m30famkgv24f";
+ };
+ };
+ "commoner-0.10.8" = {
+ name = "commoner";
+ packageName = "commoner";
+ version = "0.10.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commoner/-/commoner-0.10.8.tgz";
+ sha1 = "34fc3672cd24393e8bb47e70caa0293811f4f2c5";
+ };
+ };
+ "compact2string-1.4.0" = {
+ name = "compact2string";
+ packageName = "compact2string";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/compact2string/-/compact2string-1.4.0.tgz";
+ sha1 = "a99cd96ea000525684b269683ae2222d6eea7b49";
+ };
+ };
+ "compare-func-1.3.2" = {
+ name = "compare-func";
+ packageName = "compare-func";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/compare-func/-/compare-func-1.3.2.tgz";
+ sha1 = "99dd0ba457e1f9bc722b12c08ec33eeab31fa648";
+ };
+ };
+ "component-bind-1.0.0" = {
+ name = "component-bind";
+ packageName = "component-bind";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz";
+ sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1";
+ };
+ };
+ "component-emitter-1.1.2" = {
+ name = "component-emitter";
+ packageName = "component-emitter";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz";
+ sha1 = "296594f2753daa63996d2af08d15a95116c9aec3";
+ };
+ };
+ "component-emitter-1.2.1" = {
+ name = "component-emitter";
+ packageName = "component-emitter";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz";
+ sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6";
+ };
+ };
+ "component-inherit-0.0.3" = {
+ name = "component-inherit";
+ packageName = "component-inherit";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz";
+ sha1 = "645fc4adf58b72b649d5cae65135619db26ff143";
+ };
+ };
+ "compress-commons-1.2.2" = {
+ name = "compress-commons";
+ packageName = "compress-commons";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz";
+ sha1 = "524a9f10903f3a813389b0225d27c48bb751890f";
+ };
+ };
+ "compressible-2.0.12" = {
+ name = "compressible";
+ packageName = "compressible";
+ version = "2.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/compressible/-/compressible-2.0.12.tgz";
+ sha1 = "c59a5c99db76767e9876500e271ef63b3493bd66";
+ };
+ };
+ "compression-1.5.2" = {
+ name = "compression";
+ packageName = "compression";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz";
+ sha1 = "b03b8d86e6f8ad29683cba8df91ddc6ffc77b395";
+ };
+ };
+ "compression-1.7.1" = {
+ name = "compression";
+ packageName = "compression";
+ version = "1.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/compression/-/compression-1.7.1.tgz";
+ sha1 = "eff2603efc2e22cf86f35d2eb93589f9875373db";
+ };
+ };
+ "concat-map-0.0.1" = {
+ name = "concat-map";
+ packageName = "concat-map";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
+ sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
+ };
+ };
+ "concat-stream-1.5.0" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz";
+ sha1 = "53f7d43c51c5e43f81c8fdd03321c631be68d611";
+ };
+ };
+ "concat-stream-1.5.2" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz";
+ sha1 = "708978624d856af41a5a741defdd261da752c266";
+ };
+ };
+ "concat-stream-1.6.0" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz";
+ sha1 = "0aac662fd52be78964d5532f694784e70110acf7";
+ };
+ };
+ "conf-1.4.0" = {
+ name = "conf";
+ packageName = "conf";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/conf/-/conf-1.4.0.tgz";
+ sha512 = "07g80zfanxf96as7ikxbv6csskj2033zw2hj8jpii0s3wqxjyq1x73fk1bqnj833clsmmiz6khcvid668gji5vsnhgb67ck5mcmafbg";
+ };
+ };
+ "config-0.4.15" = {
+ name = "config";
+ packageName = "config";
+ version = "0.4.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/config/-/config-0.4.15.tgz";
+ sha1 = "d43ddf58b8df5637fdd1314fc816ccae7bfbcd18";
+ };
+ };
+ "config-chain-1.1.11" = {
+ name = "config-chain";
+ packageName = "config-chain";
+ version = "1.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz";
+ sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2";
+ };
+ };
+ "configstore-1.4.0" = {
+ name = "configstore";
+ packageName = "configstore";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/configstore/-/configstore-1.4.0.tgz";
+ sha1 = "c35781d0501d268c25c54b8b17f6240e8a4fb021";
+ };
+ };
+ "configstore-2.1.0" = {
+ name = "configstore";
+ packageName = "configstore";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/configstore/-/configstore-2.1.0.tgz";
+ sha1 = "737a3a7036e9886102aa6099e47bb33ab1aba1a1";
+ };
+ };
+ "configstore-3.1.1" = {
+ name = "configstore";
+ packageName = "configstore";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz";
+ sha512 = "2zmidvkp20q25yv6a5d7k1daawdg0w6ppgayxzpwfhyvmgwybkkv7ni0j4b2j9c8wjn8z33zf5d4bjr8jywb5qixc75vypyy87n90z6";
+ };
+ };
+ "connect-1.9.2" = {
+ name = "connect";
+ packageName = "connect";
+ version = "1.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect/-/connect-1.9.2.tgz";
+ sha1 = "42880a22e9438ae59a8add74e437f58ae8e52807";
+ };
+ };
+ "connect-2.11.0" = {
+ name = "connect";
+ packageName = "connect";
+ version = "2.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect/-/connect-2.11.0.tgz";
+ sha1 = "9991ce09ff9b85d9ead27f9d41d0b2a2df2f9284";
+ };
+ };
+ "connect-2.3.9" = {
+ name = "connect";
+ packageName = "connect";
+ version = "2.3.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect/-/connect-2.3.9.tgz";
+ sha1 = "4d26ddc485c32e5a1cf1b35854823b4720d25a52";
+ };
+ };
+ "connect-2.30.2" = {
+ name = "connect";
+ packageName = "connect";
+ version = "2.30.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect/-/connect-2.30.2.tgz";
+ sha1 = "8da9bcbe8a054d3d318d74dfec903b5c39a1b609";
+ };
+ };
+ "connect-2.7.6" = {
+ name = "connect";
+ packageName = "connect";
+ version = "2.7.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect/-/connect-2.7.6.tgz";
+ sha1 = "b83b68fa6f245c5020e2395472cc8322b0060738";
+ };
+ };
+ "connect-3.5.1" = {
+ name = "connect";
+ packageName = "connect";
+ version = "3.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect/-/connect-3.5.1.tgz";
+ sha1 = "6d30d7a63c7f170857a6b3aa6b363d973dca588e";
+ };
+ };
+ "connect-3.6.5" = {
+ name = "connect";
+ packageName = "connect";
+ version = "3.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect/-/connect-3.6.5.tgz";
+ sha1 = "fb8dde7ba0763877d0ec9df9dac0b4b40e72c7da";
+ };
+ };
+ "connect-busboy-0.0.2" = {
+ name = "connect-busboy";
+ packageName = "connect-busboy";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect-busboy/-/connect-busboy-0.0.2.tgz";
+ sha1 = "ac5c9c96672171885e576c66b2bfd95d3bb11097";
+ };
+ };
+ "connect-flash-0.1.0" = {
+ name = "connect-flash";
+ packageName = "connect-flash";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.0.tgz";
+ sha1 = "82b381d61a12b651437df1c259c1f1c841239b88";
+ };
+ };
+ "connect-multiparty-2.1.0" = {
+ name = "connect-multiparty";
+ packageName = "connect-multiparty";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect-multiparty/-/connect-multiparty-2.1.0.tgz";
+ sha512 = "2im4bqk3xwxwilkg8gli3pblmalbhsd4wl5w10p63bvl0jd3m0qp5by840k5s7dr8wi0krixp2297bn76v38dwgznja4h4wp6my3g0c";
+ };
+ };
+ "connect-pause-0.1.1" = {
+ name = "connect-pause";
+ packageName = "connect-pause";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect-pause/-/connect-pause-0.1.1.tgz";
+ sha1 = "b269b2bb82ddb1ac3db5099c0fb582aba99fb37a";
+ };
+ };
+ "connect-restreamer-1.0.3" = {
+ name = "connect-restreamer";
+ packageName = "connect-restreamer";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect-restreamer/-/connect-restreamer-1.0.3.tgz";
+ sha1 = "a73f04d88e7292d7fd2f2d7d691a0cdeeed141a9";
+ };
+ };
+ "connect-timeout-1.6.2" = {
+ name = "connect-timeout";
+ packageName = "connect-timeout";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.2.tgz";
+ sha1 = "de9a5ec61e33a12b6edaab7b5f062e98c599b88e";
+ };
+ };
+ "connection-parse-0.0.7" = {
+ name = "connection-parse";
+ packageName = "connection-parse";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connection-parse/-/connection-parse-0.0.7.tgz";
+ sha1 = "18e7318aab06a699267372b10c5226d25a1c9a69";
+ };
+ };
+ "connections-1.4.2" = {
+ name = "connections";
+ packageName = "connections";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connections/-/connections-1.4.2.tgz";
+ sha1 = "7890482bf5c71af6c5ca192be3136aed74428aad";
+ };
+ };
+ "console-browserify-1.1.0" = {
+ name = "console-browserify";
+ packageName = "console-browserify";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz";
+ sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10";
+ };
+ };
+ "console-control-strings-1.1.0" = {
+ name = "console-control-strings";
+ packageName = "console-control-strings";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
+ sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
+ };
+ };
+ "constantinople-3.0.2" = {
+ name = "constantinople";
+ packageName = "constantinople";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/constantinople/-/constantinople-3.0.2.tgz";
+ sha1 = "4b945d9937907bcd98ee575122c3817516544141";
+ };
+ };
+ "constantinople-3.1.0" = {
+ name = "constantinople";
+ packageName = "constantinople";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/constantinople/-/constantinople-3.1.0.tgz";
+ sha1 = "7569caa8aa3f8d5935d62e1fa96f9f702cd81c79";
+ };
+ };
+ "constants-browserify-1.0.0" = {
+ name = "constants-browserify";
+ packageName = "constants-browserify";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz";
+ sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75";
+ };
+ };
+ "consume-http-header-1.0.0" = {
+ name = "consume-http-header";
+ packageName = "consume-http-header";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/consume-http-header/-/consume-http-header-1.0.0.tgz";
+ sha1 = "95976d74f7f1b38dfb13fd9b3b68b91a0240556f";
+ };
+ };
+ "consume-until-1.0.0" = {
+ name = "consume-until";
+ packageName = "consume-until";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/consume-until/-/consume-until-1.0.0.tgz";
+ sha1 = "75b91fa9f16663e51f98e863af995b9164068c1a";
+ };
+ };
+ "content-disposition-0.5.0" = {
+ name = "content-disposition";
+ packageName = "content-disposition";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.0.tgz";
+ sha1 = "4284fe6ae0630874639e44e80a418c2934135e9e";
+ };
+ };
+ "content-disposition-0.5.2" = {
+ name = "content-disposition";
+ packageName = "content-disposition";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz";
+ sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4";
+ };
+ };
+ "content-type-1.0.4" = {
+ name = "content-type";
+ packageName = "content-type";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz";
+ sha512 = "1f4y61wc913jrnga7nny83gzf9l2488q6sl1ry9lbwgh5x5d3va0xcc0xrmjk6gdxl6d4r6rsk800xp5bazhjrx05yx1wpc8c8gg0w4";
+ };
+ };
+ "content-type-git+https://github.com/wikimedia/content-type.git#master" = {
+ name = "content-type";
+ packageName = "content-type";
+ version = "1.0.1";
+ src = fetchgit {
+ url = "https://github.com/wikimedia/content-type.git";
+ rev = "47b2632d0a2ee79a7d67268e2f6621becd95d05b";
+ sha256 = "e583031138b98e2a09ce14dbd72afa0377201894092c941ef4cc07206c35ed04";
+ };
+ };
+ "content-types-0.1.0" = {
+ name = "content-types";
+ packageName = "content-types";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/content-types/-/content-types-0.1.0.tgz";
+ sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
+ };
+ };
+ "continuable-cache-0.3.1" = {
+ name = "continuable-cache";
+ packageName = "continuable-cache";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/continuable-cache/-/continuable-cache-0.3.1.tgz";
+ sha1 = "bd727a7faed77e71ff3985ac93351a912733ad0f";
};
};
"conventional-changelog-1.1.7" = {
@@ -17550,15 +5243,6 @@ let
sha1 = "9151a62b1d8edb2d82711dabf5b7cf71041f82b1";
};
};
- "tempfile-1.1.1" = {
- name = "tempfile";
- packageName = "tempfile";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz";
- sha1 = "5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2";
- };
- };
"conventional-changelog-angular-1.6.0" = {
name = "conventional-changelog-angular";
packageName = "conventional-changelog-angular";
@@ -17577,6 +5261,15 @@ let
sha1 = "12595ad5267a6937c34cf900281b1c65198a4c63";
};
};
+ "conventional-changelog-cli-1.3.5" = {
+ name = "conventional-changelog-cli";
+ packageName = "conventional-changelog-cli";
+ version = "1.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/conventional-changelog-cli/-/conventional-changelog-cli-1.3.5.tgz";
+ sha1 = "46c51496216b7406588883defa6fac589e9bb31e";
+ };
+ };
"conventional-changelog-codemirror-0.2.1" = {
name = "conventional-changelog-codemirror";
packageName = "conventional-changelog-codemirror";
@@ -17649,24 +5342,6 @@ let
sha1 = "86139bb3ac99899f2b177e9617e09b37d99bcf3a";
};
};
- "compare-func-1.3.2" = {
- name = "compare-func";
- packageName = "compare-func";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/compare-func/-/compare-func-1.3.2.tgz";
- sha1 = "99dd0ba457e1f9bc722b12c08ec33eeab31fa648";
- };
- };
- "array-ify-1.0.0" = {
- name = "array-ify";
- packageName = "array-ify";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz";
- sha1 = "9e528762b4a9066ad163a6962a364418e9626ece";
- };
- };
"conventional-changelog-writer-2.0.3" = {
name = "conventional-changelog-writer";
packageName = "conventional-changelog-writer";
@@ -17676,6 +5351,15 @@ let
sha512 = "1nchhqyp5qmrwqn9yxrkn8zjhlk1ph5jgnky26lzkrd1j4lh2n93602xw1zm6gv7qg48r61qzk5qh74v480nx4q7d8zilfb8pnn2kfq";
};
};
+ "conventional-commits-filter-1.1.1" = {
+ name = "conventional-commits-filter";
+ packageName = "conventional-commits-filter";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-1.1.1.tgz";
+ sha512 = "0jrsm3hlyq0a425d320l1rghxmmb621r0bcvlsfbdichzbyimflwn7wz1mhw62kdnr3wxskdpaq11f5qpdsz5g2d5f7ha4d4jvrl33d";
+ };
+ };
"conventional-commits-parser-2.1.0" = {
name = "conventional-commits-parser";
packageName = "conventional-commits-parser";
@@ -17685,6 +5369,978 @@ let
sha512 = "0mnckb77dj8jk9xspzh6q0kaybc5wyb2ny94qgnvbj5f1yjnk7s2sak86b0h3dhrfk4y9nncwfjpvsg8iyiary68sdbwrbl4gkz9h7h";
};
};
+ "conventional-recommended-bump-1.1.0" = {
+ name = "conventional-recommended-bump";
+ packageName = "conventional-recommended-bump";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-1.1.0.tgz";
+ sha512 = "3gh833x8hqmnxfmacs3ryrb2gh3y397ddkiwisv6g3dfz6j617i1fm22yq3r83y40pidmf1n77qzvwmbx4ws7jn4yydfxypi6fhgbaq";
+ };
+ };
+ "convert-source-map-1.1.3" = {
+ name = "convert-source-map";
+ packageName = "convert-source-map";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz";
+ sha1 = "4829c877e9fe49b3161f3bf3673888e204699860";
+ };
+ };
+ "convert-source-map-1.5.1" = {
+ name = "convert-source-map";
+ packageName = "convert-source-map";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.1.tgz";
+ sha1 = "b8278097b9bc229365de5c62cf5fcaed8b5599e5";
+ };
+ };
+ "cookie-0.0.4" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.0.4.tgz";
+ sha1 = "5456bd47aee2666eac976ea80a6105940483fe98";
+ };
+ };
+ "cookie-0.0.5" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.0.5.tgz";
+ sha1 = "f9acf9db57eb7568c9fcc596256b7bb22e307c81";
+ };
+ };
+ "cookie-0.1.0" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.1.0.tgz";
+ sha1 = "90eb469ddce905c866de687efc43131d8801f9d0";
+ };
+ };
+ "cookie-0.1.2" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.1.2.tgz";
+ sha1 = "72fec3d24e48a3432073d90c12642005061004b1";
+ };
+ };
+ "cookie-0.1.3" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.1.3.tgz";
+ sha1 = "e734a5c1417fce472d5aef82c381cabb64d1a435";
+ };
+ };
+ "cookie-0.3.1" = {
+ name = "cookie";
+ packageName = "cookie";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz";
+ sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb";
+ };
+ };
+ "cookie-jar-0.2.0" = {
+ name = "cookie-jar";
+ packageName = "cookie-jar";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz";
+ sha1 = "64ecc06ac978db795e4b5290cbe48ba3781400fa";
+ };
+ };
+ "cookie-parser-1.3.5" = {
+ name = "cookie-parser";
+ packageName = "cookie-parser";
+ version = "1.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.3.5.tgz";
+ sha1 = "9d755570fb5d17890771227a02314d9be7cf8356";
+ };
+ };
+ "cookie-parser-1.4.3" = {
+ name = "cookie-parser";
+ packageName = "cookie-parser";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.3.tgz";
+ sha1 = "0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5";
+ };
+ };
+ "cookie-signature-1.0.1" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz";
+ sha1 = "44e072148af01e6e8e24afbf12690d68ae698ecb";
+ };
+ };
+ "cookie-signature-1.0.5" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.5.tgz";
+ sha1 = "a122e3f1503eca0f5355795b0711bb2368d450f9";
+ };
+ };
+ "cookie-signature-1.0.6" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz";
+ sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c";
+ };
+ };
+ "cookie-signature-1.1.0" = {
+ name = "cookie-signature";
+ packageName = "cookie-signature";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.1.0.tgz";
+ sha512 = "3h44zl7m31c7zzyyc3lxzckqyz6rmg5xydp2clpnf2vm3928garan768x7pmh1n52xnpgwdlkz78cfsy9spg93wpbg4xav0spbyqnq2";
+ };
+ };
+ "cookiejar-2.0.1" = {
+ name = "cookiejar";
+ packageName = "cookiejar";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.0.1.tgz";
+ sha1 = "3d12752f6adf68a892f332433492bd5812bb668f";
+ };
+ };
+ "cookiejar-2.1.1" = {
+ name = "cookiejar";
+ packageName = "cookiejar";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz";
+ sha1 = "41ad57b1b555951ec171412a81942b1e8200d34a";
+ };
+ };
+ "cookies-0.7.1" = {
+ name = "cookies";
+ packageName = "cookies";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cookies/-/cookies-0.7.1.tgz";
+ sha1 = "7c8a615f5481c61ab9f16c833731bcb8f663b99b";
+ };
+ };
+ "copy-descriptor-0.1.1" = {
+ name = "copy-descriptor";
+ packageName = "copy-descriptor";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz";
+ sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
+ };
+ };
+ "cordova-app-hello-world-3.12.0" = {
+ name = "cordova-app-hello-world";
+ packageName = "cordova-app-hello-world";
+ version = "3.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova-app-hello-world/-/cordova-app-hello-world-3.12.0.tgz";
+ sha1 = "270e06b67b2ae94bcfee6592ed39eb42303d186f";
+ };
+ };
+ "cordova-common-2.2.1" = {
+ name = "cordova-common";
+ packageName = "cordova-common";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova-common/-/cordova-common-2.2.1.tgz";
+ sha1 = "7009bc591729caa7285a588cfd6a7b54cd834f0c";
+ };
+ };
+ "cordova-create-1.1.2" = {
+ name = "cordova-create";
+ packageName = "cordova-create";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova-create/-/cordova-create-1.1.2.tgz";
+ sha1 = "83b09271b378d1c03bc7d9a786fedd60485c3ccf";
+ };
+ };
+ "cordova-fetch-1.3.0" = {
+ name = "cordova-fetch";
+ packageName = "cordova-fetch";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova-fetch/-/cordova-fetch-1.3.0.tgz";
+ sha1 = "4986d0779b36eb239822c2ab413a47ff9f097fea";
+ };
+ };
+ "cordova-js-4.2.2" = {
+ name = "cordova-js";
+ packageName = "cordova-js";
+ version = "4.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova-js/-/cordova-js-4.2.2.tgz";
+ sha1 = "a7eb20911e6a59f15ac64e7db6ec543df31c2f92";
+ };
+ };
+ "cordova-lib-8.0.0" = {
+ name = "cordova-lib";
+ packageName = "cordova-lib";
+ version = "8.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-8.0.0.tgz";
+ sha1 = "864bd5de6b79fc4944361460aa3214e59da936f2";
+ };
+ };
+ "cordova-registry-mapper-1.1.15" = {
+ name = "cordova-registry-mapper";
+ packageName = "cordova-registry-mapper";
+ version = "1.1.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova-registry-mapper/-/cordova-registry-mapper-1.1.15.tgz";
+ sha1 = "e244b9185b8175473bff6079324905115f83dc7c";
+ };
+ };
+ "cordova-serve-2.0.0" = {
+ name = "cordova-serve";
+ packageName = "cordova-serve";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cordova-serve/-/cordova-serve-2.0.0.tgz";
+ sha1 = "d7834b83b186607e2b8f1943e073c0633360ea43";
+ };
+ };
+ "core-js-1.2.7" = {
+ name = "core-js";
+ packageName = "core-js";
+ version = "1.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz";
+ sha1 = "652294c14651db28fa93bd2d5ff2983a4f08c636";
+ };
+ };
+ "core-js-2.5.3" = {
+ name = "core-js";
+ packageName = "core-js";
+ version = "2.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz";
+ sha1 = "8acc38345824f16d8365b7c9b4259168e8ed603e";
+ };
+ };
+ "core-util-is-1.0.2" = {
+ name = "core-util-is";
+ packageName = "core-util-is";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
+ sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
+ };
+ };
+ "cors-2.8.3" = {
+ name = "cors";
+ packageName = "cors";
+ version = "2.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cors/-/cors-2.8.3.tgz";
+ sha1 = "4cf78e1d23329a7496b2fc2225b77ca5bb5eb802";
+ };
+ };
+ "cors-2.8.4" = {
+ name = "cors";
+ packageName = "cors";
+ version = "2.8.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cors/-/cors-2.8.4.tgz";
+ sha1 = "2bd381f2eb201020105cd50ea59da63090694686";
+ };
+ };
+ "corsify-2.1.0" = {
+ name = "corsify";
+ packageName = "corsify";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/corsify/-/corsify-2.1.0.tgz";
+ sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0";
+ };
+ };
+ "couch-login-0.1.20" = {
+ name = "couch-login";
+ packageName = "couch-login";
+ version = "0.1.20";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/couch-login/-/couch-login-0.1.20.tgz";
+ sha1 = "007c70ef80089dbae6f59eeeec37480799b39595";
+ };
+ };
+ "crc-0.2.0" = {
+ name = "crc";
+ packageName = "crc";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crc/-/crc-0.2.0.tgz";
+ sha1 = "f4486b9bf0a12df83c3fca14e31e030fdabd9454";
+ };
+ };
+ "crc-3.2.1" = {
+ name = "crc";
+ packageName = "crc";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crc/-/crc-3.2.1.tgz";
+ sha1 = "5d9c8fb77a245cd5eca291e5d2d005334bab0082";
+ };
+ };
+ "crc-3.3.0" = {
+ name = "crc";
+ packageName = "crc";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crc/-/crc-3.3.0.tgz";
+ sha1 = "fa622e1bc388bf257309082d6b65200ce67090ba";
+ };
+ };
+ "crc-3.4.4" = {
+ name = "crc";
+ packageName = "crc";
+ version = "3.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz";
+ sha1 = "9da1e980e3bd44fc5c93bf5ab3da3378d85e466b";
+ };
+ };
+ "crc-3.5.0" = {
+ name = "crc";
+ packageName = "crc";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crc/-/crc-3.5.0.tgz";
+ sha1 = "98b8ba7d489665ba3979f59b21381374101a1964";
+ };
+ };
+ "crc32-stream-2.0.0" = {
+ name = "crc32-stream";
+ packageName = "crc32-stream";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz";
+ sha1 = "e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4";
+ };
+ };
+ "create-ecdh-4.0.0" = {
+ name = "create-ecdh";
+ packageName = "create-ecdh";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz";
+ sha1 = "888c723596cdf7612f6498233eebd7a35301737d";
+ };
+ };
+ "create-error-class-3.0.2" = {
+ name = "create-error-class";
+ packageName = "create-error-class";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz";
+ sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
+ };
+ };
+ "create-hash-1.1.3" = {
+ name = "create-hash";
+ packageName = "create-hash";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-hash/-/create-hash-1.1.3.tgz";
+ sha1 = "606042ac8b9262750f483caddab0f5819172d8fd";
+ };
+ };
+ "create-hmac-1.1.6" = {
+ name = "create-hmac";
+ packageName = "create-hmac";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.6.tgz";
+ sha1 = "acb9e221a4e17bdb076e90657c42b93e3726cf06";
+ };
+ };
+ "cron-1.2.1" = {
+ name = "cron";
+ packageName = "cron";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cron/-/cron-1.2.1.tgz";
+ sha1 = "3a86c09b41b8f261ac863a7cc85ea4735857eab2";
+ };
+ };
+ "cross-spawn-4.0.0" = {
+ name = "cross-spawn";
+ packageName = "cross-spawn";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.0.tgz";
+ sha1 = "8254774ab4786b8c5b3cf4dfba66ce563932c252";
+ };
+ };
+ "cross-spawn-5.1.0" = {
+ name = "cross-spawn";
+ packageName = "cross-spawn";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz";
+ sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449";
+ };
+ };
+ "cross-spawn-async-2.2.5" = {
+ name = "cross-spawn-async";
+ packageName = "cross-spawn-async";
+ version = "2.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz";
+ sha1 = "845ff0c0834a3ded9d160daca6d390906bb288cc";
+ };
+ };
+ "crossroads-0.12.2" = {
+ name = "crossroads";
+ packageName = "crossroads";
+ version = "0.12.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crossroads/-/crossroads-0.12.2.tgz";
+ sha1 = "b1d5f9c1d98af3bdd61f1bda6a86dd1aee4ff8f2";
+ };
+ };
+ "crx-parser-0.1.2" = {
+ name = "crx-parser";
+ packageName = "crx-parser";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crx-parser/-/crx-parser-0.1.2.tgz";
+ sha1 = "7eeeed9eddc95e22c189382e34624044a89a5a6d";
+ };
+ };
+ "crypt3-0.2.0" = {
+ name = "crypt3";
+ packageName = "crypt3";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crypt3/-/crypt3-0.2.0.tgz";
+ sha1 = "4bd28e0770fad421fc807745c1ef3010905b2332";
+ };
+ };
+ "cryptiles-0.1.3" = {
+ name = "cryptiles";
+ packageName = "cryptiles";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz";
+ sha1 = "1a556734f06d24ba34862ae9cb9e709a3afbff1c";
+ };
+ };
+ "cryptiles-2.0.5" = {
+ name = "cryptiles";
+ packageName = "cryptiles";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
+ sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
+ };
+ };
+ "cryptiles-3.1.2" = {
+ name = "cryptiles";
+ packageName = "cryptiles";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz";
+ sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe";
+ };
+ };
+ "crypto-0.0.3" = {
+ name = "crypto";
+ packageName = "crypto";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crypto/-/crypto-0.0.3.tgz";
+ sha1 = "470a81b86be4c5ee17acc8207a1f5315ae20dbb0";
+ };
+ };
+ "crypto-browserify-3.12.0" = {
+ name = "crypto-browserify";
+ packageName = "crypto-browserify";
+ version = "3.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz";
+ sha512 = "1d3mrhqlay037azmjp2ml5a8yyls9ijdhilv6f0znz0ajgfm972yr9bhm78wqi09p4crc3shgflk50jc63zijsqv777ikkyi2j2qgkz";
+ };
+ };
+ "crypto-random-string-1.0.0" = {
+ name = "crypto-random-string";
+ packageName = "crypto-random-string";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz";
+ sha1 = "a230f64f568310e1498009940790ec99545bca7e";
+ };
+ };
+ "csrf-3.0.6" = {
+ name = "csrf";
+ packageName = "csrf";
+ version = "3.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csrf/-/csrf-3.0.6.tgz";
+ sha1 = "b61120ddceeafc91e76ed5313bb5c0b2667b710a";
+ };
+ };
+ "css-1.0.8" = {
+ name = "css";
+ packageName = "css";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css/-/css-1.0.8.tgz";
+ sha1 = "9386811ca82bccc9ee7fb5a732b1e2a317c8a3e7";
+ };
+ };
+ "css-parse-1.0.4" = {
+ name = "css-parse";
+ packageName = "css-parse";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-parse/-/css-parse-1.0.4.tgz";
+ sha1 = "38b0503fbf9da9f54e9c1dbda60e145c77117bdd";
+ };
+ };
+ "css-parse-1.7.0" = {
+ name = "css-parse";
+ packageName = "css-parse";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz";
+ sha1 = "321f6cf73782a6ff751111390fc05e2c657d8c9b";
+ };
+ };
+ "css-select-1.2.0" = {
+ name = "css-select";
+ packageName = "css-select";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz";
+ sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
+ };
+ };
+ "css-select-1.3.0-rc0" = {
+ name = "css-select";
+ packageName = "css-select";
+ version = "1.3.0-rc0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-select/-/css-select-1.3.0-rc0.tgz";
+ sha1 = "6f93196aaae737666ea1036a8cb14a8fcb7a9231";
+ };
+ };
+ "css-select-base-adapter-0.1.0" = {
+ name = "css-select-base-adapter";
+ packageName = "css-select-base-adapter";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.0.tgz";
+ sha1 = "0102b3d14630df86c3eb9fa9f5456270106cf990";
+ };
+ };
+ "css-stringify-1.0.5" = {
+ name = "css-stringify";
+ packageName = "css-stringify";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-stringify/-/css-stringify-1.0.5.tgz";
+ sha1 = "b0d042946db2953bb9d292900a6cb5f6d0122031";
+ };
+ };
+ "css-tree-1.0.0-alpha.27" = {
+ name = "css-tree";
+ packageName = "css-tree";
+ version = "1.0.0-alpha.27";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.27.tgz";
+ sha512 = "08x63k8gxl9wgq7lljw7q5mlhwbcifkg7f6yakqcj8wfwv3xq5vj2glhrq826pbxi4az53akc76a6c4vhqablgvipbk5qldbks2j1h4";
+ };
+ };
+ "css-tree-1.0.0-alpha25" = {
+ name = "css-tree";
+ packageName = "css-tree";
+ version = "1.0.0-alpha25";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha25.tgz";
+ sha512 = "3a7768nyac729dk372kmbf8f28j0pajy699g45bs8vrlx605wiad3i692a8y58x437bvnfy7015lx08sxhm2vknmsi83a69dwnv2bjw";
+ };
+ };
+ "css-url-regex-1.1.0" = {
+ name = "css-url-regex";
+ packageName = "css-url-regex";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz";
+ sha1 = "83834230cc9f74c457de59eebd1543feeb83b7ec";
+ };
+ };
+ "css-what-2.1.0" = {
+ name = "css-what";
+ packageName = "css-what";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz";
+ sha1 = "9467d032c38cfaefb9f2d79501253062f87fa1bd";
+ };
+ };
+ "csslint-0.10.0" = {
+ name = "csslint";
+ packageName = "csslint";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csslint/-/csslint-0.10.0.tgz";
+ sha1 = "3a6a04e7565c8e9d19beb49767c7ec96e8365805";
+ };
+ };
+ "csso-3.5.0" = {
+ name = "csso";
+ packageName = "csso";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csso/-/csso-3.5.0.tgz";
+ sha512 = "0rxlhy2ha4xjnw27ha5q8crvpqwydnhb4xnnsj2ba8i1r09n864ygl76lcjgnpnqp1qj5930qz8gnq76pwy6sr6hrb2gcfrzla67ljs";
+ };
+ };
+ "csurf-1.8.3" = {
+ name = "csurf";
+ packageName = "csurf";
+ version = "1.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csurf/-/csurf-1.8.3.tgz";
+ sha1 = "23f2a13bf1d8fce1d0c996588394442cba86a56a";
+ };
+ };
+ "csv-0.4.6" = {
+ name = "csv";
+ packageName = "csv";
+ version = "0.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csv/-/csv-0.4.6.tgz";
+ sha1 = "8dbae7ddfdbaae62c1ea987c3e0f8a9ac737b73d";
+ };
+ };
+ "csv-generate-0.0.6" = {
+ name = "csv-generate";
+ packageName = "csv-generate";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csv-generate/-/csv-generate-0.0.6.tgz";
+ sha1 = "97e4e63ae46b21912cd9475bc31469d26f5ade66";
+ };
+ };
+ "csv-parse-1.3.3" = {
+ name = "csv-parse";
+ packageName = "csv-parse";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csv-parse/-/csv-parse-1.3.3.tgz";
+ sha1 = "d1cfd8743c2f849a0abb2fd544db56695d19a490";
+ };
+ };
+ "csv-stringify-0.0.8" = {
+ name = "csv-stringify";
+ packageName = "csv-stringify";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csv-stringify/-/csv-stringify-0.0.8.tgz";
+ sha1 = "52cc3b3dfc197758c55ad325a95be85071f9e51b";
+ };
+ };
+ "ctype-0.5.2" = {
+ name = "ctype";
+ packageName = "ctype";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ctype/-/ctype-0.5.2.tgz";
+ sha1 = "fe8091d468a373a0b0c9ff8bbfb3425c00973a1d";
+ };
+ };
+ "ctype-0.5.3" = {
+ name = "ctype";
+ packageName = "ctype";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz";
+ sha1 = "82c18c2461f74114ef16c135224ad0b9144ca12f";
+ };
+ };
+ "cuint-0.2.2" = {
+ name = "cuint";
+ packageName = "cuint";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz";
+ sha1 = "408086d409550c2631155619e9fa7bcadc3b991b";
+ };
+ };
+ "currently-unhandled-0.4.1" = {
+ name = "currently-unhandled";
+ packageName = "currently-unhandled";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz";
+ sha1 = "988df33feab191ef799a61369dd76c17adf957ea";
+ };
+ };
+ "custom-event-1.0.1" = {
+ name = "custom-event";
+ packageName = "custom-event";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz";
+ sha1 = "5d02a46850adf1b4a317946a3928fccb5bfd0425";
+ };
+ };
+ "cvss-1.0.2" = {
+ name = "cvss";
+ packageName = "cvss";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cvss/-/cvss-1.0.2.tgz";
+ sha1 = "df67e92bf12a796f49e928799c8db3ba74b9fcd6";
+ };
+ };
+ "cycle-1.0.3" = {
+ name = "cycle";
+ packageName = "cycle";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz";
+ sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
+ };
+ };
+ "cyclist-0.1.1" = {
+ name = "cyclist";
+ packageName = "cyclist";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cyclist/-/cyclist-0.1.1.tgz";
+ sha1 = "1bcfa56b081448cdb5e12bfc1bfad34b47fba8f3";
+ };
+ };
+ "d-1.0.0" = {
+ name = "d";
+ packageName = "d";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/d/-/d-1.0.0.tgz";
+ sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f";
+ };
+ };
+ "dargs-4.1.0" = {
+ name = "dargs";
+ packageName = "dargs";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dargs/-/dargs-4.1.0.tgz";
+ sha1 = "03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17";
+ };
+ };
+ "dargs-5.1.0" = {
+ name = "dargs";
+ packageName = "dargs";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dargs/-/dargs-5.1.0.tgz";
+ sha1 = "ec7ea50c78564cd36c9d5ec18f66329fade27829";
+ };
+ };
+ "dashdash-1.10.1" = {
+ name = "dashdash";
+ packageName = "dashdash";
+ version = "1.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dashdash/-/dashdash-1.10.1.tgz";
+ sha1 = "0abf1af89a8f5129a81f18c2b35b21df22622f60";
+ };
+ };
+ "dashdash-1.14.1" = {
+ name = "dashdash";
+ packageName = "dashdash";
+ version = "1.14.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
+ sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
+ };
+ };
+ "dashdash-1.7.3" = {
+ name = "dashdash";
+ packageName = "dashdash";
+ version = "1.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dashdash/-/dashdash-1.7.3.tgz";
+ sha1 = "bf533fedaa455ed8fee11519ebfb9ad66170dcdf";
+ };
+ };
+ "dat-dns-1.3.2" = {
+ name = "dat-dns";
+ packageName = "dat-dns";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-dns/-/dat-dns-1.3.2.tgz";
+ sha512 = "0yyadc98mdpvqdszc1v26zcgd6zqxink2wrhxw9ax60wk0sxqw6mm3m2jbqvibj54p1gjsmgsf1yhv20xsm77kkb7qwj79jlx8kvfad";
+ };
+ };
+ "dat-doctor-1.3.1" = {
+ name = "dat-doctor";
+ packageName = "dat-doctor";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-doctor/-/dat-doctor-1.3.1.tgz";
+ sha512 = "19cfxdik2pv94dbfsz4nm6a0v6vfx5s1isaagmsjrb44czbcl55sjj9nf1302hqc8ckijsdmlsrna02hb0mjzzhsy0m6c8r3cv0wabk";
+ };
+ };
+ "dat-encoding-4.0.2" = {
+ name = "dat-encoding";
+ packageName = "dat-encoding";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-encoding/-/dat-encoding-4.0.2.tgz";
+ sha1 = "b01068fe0d080f3d3e4985a0c4ad21b7c14675f6";
+ };
+ };
+ "dat-encoding-5.0.1" = {
+ name = "dat-encoding";
+ packageName = "dat-encoding";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-encoding/-/dat-encoding-5.0.1.tgz";
+ sha512 = "2lc9p062gaa2xrf07z14xqgid3rw5fg05ak3s13g3mrr5hf8zxmdvp3lq4wggj7k5pc2c43r3d4yyy7rfrqafsdm7hfisdda4zgsi1w";
+ };
+ };
+ "dat-ignore-2.0.0" = {
+ name = "dat-ignore";
+ packageName = "dat-ignore";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.0.0.tgz";
+ sha512 = "1s78mv3ngs1v1cgpcp97y1xmns97m2r6gjkkrksl63j5d870vpsmmrhsfm1vw4q0dz4c1yfnfcpijlgbqai9c5d2zj1lz56rih0kxk8";
+ };
+ };
+ "dat-json-1.0.1" = {
+ name = "dat-json";
+ packageName = "dat-json";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-json/-/dat-json-1.0.1.tgz";
+ sha512 = "13nn20vg6jx1h8ypazv9zn236hvv29wwq52mdbbfl77zrg8d7syni933v2mm3y1jsk25c7dc2gs1876fz0yblniryncnbjxrf0aq0nq";
+ };
+ };
+ "dat-link-resolve-2.1.0" = {
+ name = "dat-link-resolve";
+ packageName = "dat-link-resolve";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.1.0.tgz";
+ sha512 = "0dzpf71lpzr1z3g6m3v29xvcs9r12sgjpzzmg2viy3azkgpscl7p2v8im2ibsa22q64abifkibb4nc3nshs19wvai67m3gdqx15qzvn";
+ };
+ };
+ "dat-log-1.1.1" = {
+ name = "dat-log";
+ packageName = "dat-log";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-log/-/dat-log-1.1.1.tgz";
+ sha1 = "69449ac8a368593a8f71902b282390c3655ab4b8";
+ };
+ };
+ "dat-node-3.5.6" = {
+ name = "dat-node";
+ packageName = "dat-node";
+ version = "3.5.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.6.tgz";
+ sha512 = "17i7n2n3bappi34pnv2240cr5baawf2ab8wf22bmlxx4xkcb5g0z24ycz542fsx8myn4fyjgfgdhwbv44f5sz1c4z7i7g4q3ah9n7zh";
+ };
+ };
+ "dat-registry-4.0.0" = {
+ name = "dat-registry";
+ packageName = "dat-registry";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-registry/-/dat-registry-4.0.0.tgz";
+ sha512 = "0h84fdzm556p412p1xr0nl6ldf5xjd0qnd37im41bq78zm7lg4j4klcahg9pix1f0qdyd6gqz2a2j67z6vpb776v1bd0n1hr67pp988";
+ };
+ };
+ "dat-secret-storage-4.0.0" = {
+ name = "dat-secret-storage";
+ packageName = "dat-secret-storage";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-secret-storage/-/dat-secret-storage-4.0.0.tgz";
+ sha1 = "01b219a5bc1619efc0f58122a3c6cebb1eb8b40a";
+ };
+ };
+ "dat-storage-1.0.3" = {
+ name = "dat-storage";
+ packageName = "dat-storage";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-storage/-/dat-storage-1.0.3.tgz";
+ sha512 = "1n7gszxdkchx0bilz4phnanzmw00fkljwm9rl0z7cndi94xrb6pkzczh6x137xn62j9p7yp6nz24a82q8llsrlk3c1pwvn269cdx97a";
+ };
+ };
+ "dat-swarm-defaults-1.0.0" = {
+ name = "dat-swarm-defaults";
+ packageName = "dat-swarm-defaults";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-swarm-defaults/-/dat-swarm-defaults-1.0.0.tgz";
+ sha1 = "ba7d58c309cf60c3924afad869b75192b61fe354";
+ };
+ };
+ "data-uri-to-buffer-1.2.0" = {
+ name = "data-uri-to-buffer";
+ packageName = "data-uri-to-buffer";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-1.2.0.tgz";
+ sha512 = "18vh45y1sdi44vwca9js1hpy9mjwb641dwnc0fm9y2x3pgivzjndjksrlpk65kp5g99lsy2z2m8a4907bj11118c95m2dqg6h6kv95w";
+ };
+ };
+ "date-format-1.2.0" = {
+ name = "date-format";
+ packageName = "date-format";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/date-format/-/date-format-1.2.0.tgz";
+ sha1 = "615e828e233dd1ab9bb9ae0950e0ceccfa6ecad8";
+ };
+ };
+ "date-now-0.1.4" = {
+ name = "date-now";
+ packageName = "date-now";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz";
+ sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b";
+ };
+ };
+ "date-utils-1.2.21" = {
+ name = "date-utils";
+ packageName = "date-utils";
+ version = "1.2.21";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/date-utils/-/date-utils-1.2.21.tgz";
+ sha1 = "61fb16cdc1274b3c9acaaffe9fc69df8720a2b64";
+ };
+ };
"dateformat-1.0.12" = {
name = "dateformat";
packageName = "dateformat";
@@ -17694,6 +6350,3661 @@ let
sha1 = "9f124b67594c937ff706932e4a642cca8dbbfee9";
};
};
+ "dateformat-1.0.2-1.2.3" = {
+ name = "dateformat";
+ packageName = "dateformat";
+ version = "1.0.2-1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz";
+ sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9";
+ };
+ };
+ "dateformat-2.2.0" = {
+ name = "dateformat";
+ packageName = "dateformat";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz";
+ sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062";
+ };
+ };
+ "datland-swarm-defaults-1.0.2" = {
+ name = "datland-swarm-defaults";
+ packageName = "datland-swarm-defaults";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/datland-swarm-defaults/-/datland-swarm-defaults-1.0.2.tgz";
+ sha1 = "277b895a39f1aa7f96a495a02fb3662a5ed9f2e0";
+ };
+ };
+ "deasync-0.1.12" = {
+ name = "deasync";
+ packageName = "deasync";
+ version = "0.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deasync/-/deasync-0.1.12.tgz";
+ sha512 = "1vnaqczk6nr30xzzf6qxsaa2fj00z80rr6xrb7mxwn0d41zdwrgffk5vizwf6b17bps2zdr4f87s2mdmnixhsfh41vrh185ixi9r5l2";
+ };
+ };
+ "debounce-1.1.0" = {
+ name = "debounce";
+ packageName = "debounce";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debounce/-/debounce-1.1.0.tgz";
+ sha512 = "10r1pg8azrc8k3sfc6kslhcnpjl0acgv0fvpmd6q01vxbi496hnxnjx1i7fs66f598g4qzy2h079kzh18qpf9wxsz1ighb52myll1b5";
+ };
+ };
+ "debounced-seeker-1.0.0" = {
+ name = "debounced-seeker";
+ packageName = "debounced-seeker";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debounced-seeker/-/debounced-seeker-1.0.0.tgz";
+ sha1 = "e74befcd1a62ae7a5e5fbfbfa6f5d2bacd962bdd";
+ };
+ };
+ "debug-0.5.0" = {
+ name = "debug";
+ packageName = "debug";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-0.5.0.tgz";
+ sha1 = "9d48c946fb7d7d59807ffe07822f515fd76d7a9e";
+ };
+ };
+ "debug-0.6.0" = {
+ name = "debug";
+ packageName = "debug";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-0.6.0.tgz";
+ sha1 = "ce9d5d025d5294b3f0748a494bebaf3c9fd8734f";
+ };
+ };
+ "debug-0.7.4" = {
+ name = "debug";
+ packageName = "debug";
+ version = "0.7.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz";
+ sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39";
+ };
+ };
+ "debug-1.0.5" = {
+ name = "debug";
+ packageName = "debug";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-1.0.5.tgz";
+ sha1 = "f7241217430f99dec4c2b473eab92228e874c2ac";
+ };
+ };
+ "debug-2.1.3" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.1.3.tgz";
+ sha1 = "ce8ab1b5ee8fbee2bfa3b633cab93d366b63418e";
+ };
+ };
+ "debug-2.2.0" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz";
+ sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da";
+ };
+ };
+ "debug-2.3.3" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz";
+ sha1 = "40c453e67e6e13c901ddec317af8986cda9eff8c";
+ };
+ };
+ "debug-2.6.3" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.3.tgz";
+ sha1 = "0f7eb8c30965ec08c72accfa0130c8b79984141d";
+ };
+ };
+ "debug-2.6.7" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz";
+ sha1 = "92bad1f6d05bbb6bba22cca88bcd0ec894c2861e";
+ };
+ };
+ "debug-2.6.9" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
+ sha512 = "0q0fsr8bk1m83z0am0h2xn09vyfcf18adscxms8hclznwks1aihsisd96h8npx0idq5wwnypnqrkyk25m5d9zh3dk7rjs29nybc8bkc";
+ };
+ };
+ "debug-3.1.0" = {
+ name = "debug";
+ packageName = "debug";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz";
+ sha512 = "3g1hqsahr1ks2kpvdxrwzr57fj90nnr0hvwwrw8yyyzcv3i11sym8zwibxx67bl1mln0acddrzpkkdjjxnc6n2cm9fazmgzzsl1fzrr";
+ };
+ };
+ "decamelize-1.2.0" = {
+ name = "decamelize";
+ packageName = "decamelize";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
+ sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
+ };
+ };
+ "decamelize-2.0.0" = {
+ name = "decamelize";
+ packageName = "decamelize";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz";
+ sha512 = "0zc3slyk7cc9xjfcnw3nk2d1vkq4kxrjalavqgp3zykbgnp5v12xcs47kr436k0izbzyxhkrdww94p5g1lcmzcdqncc9p0mqzk6jji2";
+ };
+ };
+ "decode-uri-component-0.2.0" = {
+ name = "decode-uri-component";
+ packageName = "decode-uri-component";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
+ sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
+ };
+ };
+ "decompress-response-3.3.0" = {
+ name = "decompress-response";
+ packageName = "decompress-response";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz";
+ sha1 = "80a4dd323748384bfa248083622aedec982adff3";
+ };
+ };
+ "decompress-zip-0.3.0" = {
+ name = "decompress-zip";
+ packageName = "decompress-zip";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-zip/-/decompress-zip-0.3.0.tgz";
+ sha1 = "ae3bcb7e34c65879adfe77e19c30f86602b4bdb0";
+ };
+ };
+ "dedent-0.7.0" = {
+ name = "dedent";
+ packageName = "dedent";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz";
+ sha1 = "2495ddbaf6eb874abb0e1be9df22d2e5a544326c";
+ };
+ };
+ "deep-eql-3.0.1" = {
+ name = "deep-eql";
+ packageName = "deep-eql";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz";
+ sha512 = "1rrbk0h0a836gj1x6lalzgqfs0v34d4fswq23c8lxzmb6k7pna45zd509h1r1fr312n4qml94xqlmzzga40sfa9vnzf6rkr4d1qh1zr";
+ };
+ };
+ "deep-equal-0.1.2" = {
+ name = "deep-equal";
+ packageName = "deep-equal";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.1.2.tgz";
+ sha1 = "b246c2b80a570a47c11be1d9bd1070ec878b87ce";
+ };
+ };
+ "deep-equal-0.2.2" = {
+ name = "deep-equal";
+ packageName = "deep-equal";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.2.2.tgz";
+ sha1 = "84b745896f34c684e98f2ce0e42abaf43bba017d";
+ };
+ };
+ "deep-equal-1.0.1" = {
+ name = "deep-equal";
+ packageName = "deep-equal";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz";
+ sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5";
+ };
+ };
+ "deep-extend-0.2.11" = {
+ name = "deep-extend";
+ packageName = "deep-extend";
+ version = "0.2.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz";
+ sha1 = "7a16ba69729132340506170494bc83f7076fe08f";
+ };
+ };
+ "deep-extend-0.4.2" = {
+ name = "deep-extend";
+ packageName = "deep-extend";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz";
+ sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f";
+ };
+ };
+ "deep-is-0.1.3" = {
+ name = "deep-is";
+ packageName = "deep-is";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz";
+ sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34";
+ };
+ };
+ "deepcopy-0.6.3" = {
+ name = "deepcopy";
+ packageName = "deepcopy";
+ version = "0.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deepcopy/-/deepcopy-0.6.3.tgz";
+ sha1 = "634780f2f8656ab771af8fa8431ed1ccee55c7b0";
+ };
+ };
+ "deepmerge-1.5.2" = {
+ name = "deepmerge";
+ packageName = "deepmerge";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deepmerge/-/deepmerge-1.5.2.tgz";
+ sha512 = "2sylzgq5rwi12ac5y4fbvyyhs128zlcrp1q1i0bkp27fvlg60hr1slxzckk22x2rzgmwsqqlvzyylm9v0gwzbsbprd3c1mg78c396gp";
+ };
+ };
+ "default-browser-id-1.0.4" = {
+ name = "default-browser-id";
+ packageName = "default-browser-id";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/default-browser-id/-/default-browser-id-1.0.4.tgz";
+ sha1 = "e59d09a5d157b828b876c26816e61c3d2a2c203a";
+ };
+ };
+ "default-uid-1.0.0" = {
+ name = "default-uid";
+ packageName = "default-uid";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/default-uid/-/default-uid-1.0.0.tgz";
+ sha1 = "fcefa9df9f5ac40c8916d912dd1fe1146aa3c59e";
+ };
+ };
+ "defaults-1.0.3" = {
+ name = "defaults";
+ packageName = "defaults";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz";
+ sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d";
+ };
+ };
+ "deferred-leveldown-0.2.0" = {
+ name = "deferred-leveldown";
+ packageName = "deferred-leveldown";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz";
+ sha1 = "2cef1f111e1c57870d8bbb8af2650e587cd2f5b4";
+ };
+ };
+ "define-properties-1.1.2" = {
+ name = "define-properties";
+ packageName = "define-properties";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz";
+ sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94";
+ };
+ };
+ "define-property-0.2.5" = {
+ name = "define-property";
+ packageName = "define-property";
+ version = "0.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz";
+ sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116";
+ };
+ };
+ "define-property-1.0.0" = {
+ name = "define-property";
+ packageName = "define-property";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz";
+ sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6";
+ };
+ };
+ "defined-0.0.0" = {
+ name = "defined";
+ packageName = "defined";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz";
+ sha1 = "f35eea7d705e933baf13b2f03b3f83d921403b3e";
+ };
+ };
+ "defined-1.0.0" = {
+ name = "defined";
+ packageName = "defined";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz";
+ sha1 = "c98d9bcef75674188e110969151199e39b1fa693";
+ };
+ };
+ "degenerator-1.0.4" = {
+ name = "degenerator";
+ packageName = "degenerator";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/degenerator/-/degenerator-1.0.4.tgz";
+ sha1 = "fcf490a37ece266464d9cc431ab98c5819ced095";
+ };
+ };
+ "del-2.2.2" = {
+ name = "del";
+ packageName = "del";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/del/-/del-2.2.2.tgz";
+ sha1 = "c12c981d067846c84bcaf862cff930d907ffd1a8";
+ };
+ };
+ "delayed-stream-0.0.5" = {
+ name = "delayed-stream";
+ packageName = "delayed-stream";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz";
+ sha1 = "d4b1f43a93e8296dfe02694f4680bc37a313c73f";
+ };
+ };
+ "delayed-stream-1.0.0" = {
+ name = "delayed-stream";
+ packageName = "delayed-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
+ sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
+ };
+ };
+ "delegates-1.0.0" = {
+ name = "delegates";
+ packageName = "delegates";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
+ sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
+ };
+ };
+ "dep-graph-1.1.0" = {
+ name = "dep-graph";
+ packageName = "dep-graph";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dep-graph/-/dep-graph-1.1.0.tgz";
+ sha1 = "fade86a92799a813e9b42511cdf3dfa6cc8dbefe";
+ };
+ };
+ "depd-1.0.1" = {
+ name = "depd";
+ packageName = "depd";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/depd/-/depd-1.0.1.tgz";
+ sha1 = "80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa";
+ };
+ };
+ "depd-1.1.1" = {
+ name = "depd";
+ packageName = "depd";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/depd/-/depd-1.1.1.tgz";
+ sha1 = "5783b4e1c459f06fa5ca27f991f3d06e7a310359";
+ };
+ };
+ "depd-1.1.2" = {
+ name = "depd";
+ packageName = "depd";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz";
+ sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9";
+ };
+ };
+ "dependency-ls-1.1.1" = {
+ name = "dependency-ls";
+ packageName = "dependency-ls";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dependency-ls/-/dependency-ls-1.1.1.tgz";
+ sha1 = "0481b07f023d74ce311192e5c690d13e18600054";
+ };
+ };
+ "deprecated-0.0.1" = {
+ name = "deprecated";
+ packageName = "deprecated";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz";
+ sha1 = "f9c9af5464afa1e7a971458a8bdef2aa94d5bb19";
+ };
+ };
+ "deps-sort-2.0.0" = {
+ name = "deps-sort";
+ packageName = "deps-sort";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz";
+ sha1 = "091724902e84658260eb910748cccd1af6e21fb5";
+ };
+ };
+ "des.js-1.0.0" = {
+ name = "des.js";
+ packageName = "des.js";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz";
+ sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc";
+ };
+ };
+ "destroy-1.0.3" = {
+ name = "destroy";
+ packageName = "destroy";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/destroy/-/destroy-1.0.3.tgz";
+ sha1 = "b433b4724e71fd8551d9885174851c5fc377e2c9";
+ };
+ };
+ "destroy-1.0.4" = {
+ name = "destroy";
+ packageName = "destroy";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz";
+ sha1 = "978857442c44749e4206613e37946205826abd80";
+ };
+ };
+ "detect-file-1.0.0" = {
+ name = "detect-file";
+ packageName = "detect-file";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz";
+ sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7";
+ };
+ };
+ "detect-indent-4.0.0" = {
+ name = "detect-indent";
+ packageName = "detect-indent";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz";
+ sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208";
+ };
+ };
+ "detect-indent-5.0.0" = {
+ name = "detect-indent";
+ packageName = "detect-indent";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz";
+ sha1 = "3871cc0a6a002e8c3e5b3cf7f336264675f06b9d";
+ };
+ };
+ "detect-libc-1.0.3" = {
+ name = "detect-libc";
+ packageName = "detect-libc";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz";
+ sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
+ };
+ };
+ "detect-port-1.2.2" = {
+ name = "detect-port";
+ packageName = "detect-port";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-port/-/detect-port-1.2.2.tgz";
+ sha512 = "2q44vf4c9rqz21wc7a1pj1xz6pa2s7sp2fz9zxksmz679xh8sbfzyzhgkkbyznsgbnif013n0a6387dppcs370gdkc0dhh2jgsgv8fk";
+ };
+ };
+ "detective-4.7.1" = {
+ name = "detective";
+ packageName = "detective";
+ version = "4.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detective/-/detective-4.7.1.tgz";
+ sha512 = "259c687nsmq5ni5q79081s6lpd2srwn7xlwipxwbrqkq9bq0zsvwb0n1d99jc7c6kvpm95bhvvlncfb0l4hqy6vnlb5lrhwwmwyd8qz";
+ };
+ };
+ "detective-5.0.2" = {
+ name = "detective";
+ packageName = "detective";
+ version = "5.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detective/-/detective-5.0.2.tgz";
+ sha512 = "0q6jv51mrwjp7ws5xdfpi49rq6ywl0fcl70hllsxiyqy4c89k14v0g9fj5g4y690n8yqw9vxxq6zgnw8lpwbsdvlgyhdqz3xjhhnjrm";
+ };
+ };
+ "di-0.0.1" = {
+ name = "di";
+ packageName = "di";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/di/-/di-0.0.1.tgz";
+ sha1 = "806649326ceaa7caa3306d75d985ea2748ba913c";
+ };
+ };
+ "dicer-0.2.5" = {
+ name = "dicer";
+ packageName = "dicer";
+ version = "0.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz";
+ sha1 = "5996c086bb33218c812c090bddc09cd12facb70f";
+ };
+ };
+ "diff-1.0.8" = {
+ name = "diff";
+ packageName = "diff";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-1.0.8.tgz";
+ sha1 = "343276308ec991b7bc82267ed55bc1411f971666";
+ };
+ };
+ "diff-1.4.0" = {
+ name = "diff";
+ packageName = "diff";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz";
+ sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf";
+ };
+ };
+ "diff-3.2.0" = {
+ name = "diff";
+ packageName = "diff";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz";
+ sha1 = "c9ce393a4b7cbd0b058a725c93df299027868ff9";
+ };
+ };
+ "diff-3.3.1" = {
+ name = "diff";
+ packageName = "diff";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-3.3.1.tgz";
+ sha512 = "31pj7v5gg5igmvwzk6zxw1wbvwjg6m9sfl0h3bs1x4q6idcw98vr8z8wcqk2603q0blpqkmkxp659kjj91wksr03yr8xlh16djcg8rh";
+ };
+ };
+ "diff-3.4.0" = {
+ name = "diff";
+ packageName = "diff";
+ version = "3.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-3.4.0.tgz";
+ sha512 = "1qawya1qhgy4q0bgx0s9ryfz70ddrgyj33rdnnppzszi7x31iir66y7v89kc82lr7prkafrax9sa6w5ssxykqmcf1xw291864qnx5a2";
+ };
+ };
+ "diff2html-2.3.3" = {
+ name = "diff2html";
+ packageName = "diff2html";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff2html/-/diff2html-2.3.3.tgz";
+ sha1 = "31bb815881c975634c7f3907a5e789341e1560bc";
+ };
+ };
+ "diffie-hellman-5.0.2" = {
+ name = "diffie-hellman";
+ packageName = "diffie-hellman";
+ version = "5.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.2.tgz";
+ sha1 = "b5835739270cfe26acf632099fded2a07f209e5e";
+ };
+ };
+ "director-1.2.7" = {
+ name = "director";
+ packageName = "director";
+ version = "1.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/director/-/director-1.2.7.tgz";
+ sha1 = "bfd3741075fd7fb1a5b2e13658c5f4bec77736f3";
+ };
+ };
+ "directory-index-html-2.1.0" = {
+ name = "directory-index-html";
+ packageName = "directory-index-html";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/directory-index-html/-/directory-index-html-2.1.0.tgz";
+ sha1 = "4d5afc5187edba67ec6ab0e55f6422a0e2cb7338";
+ };
+ };
+ "discovery-channel-5.4.7" = {
+ name = "discovery-channel";
+ packageName = "discovery-channel";
+ version = "5.4.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.4.7.tgz";
+ sha512 = "3c8npbdr7r6725kkj76h5zy72l3gd8ndb3dy4dwbapxapfzccl9f6iy0zdy3wxywcfb6cc64w4mf089v00rcr1aqcjdlvn483pnzs78";
+ };
+ };
+ "discovery-swarm-4.4.2" = {
+ name = "discovery-swarm";
+ packageName = "discovery-swarm";
+ version = "4.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-4.4.2.tgz";
+ sha1 = "5d3160a46019e50e874195765df7d601ee55a813";
+ };
+ };
+ "dispensary-0.12.0" = {
+ name = "dispensary";
+ packageName = "dispensary";
+ version = "0.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dispensary/-/dispensary-0.12.0.tgz";
+ sha1 = "cc491bbbfa66a57414c958c68582a4c8703ff159";
+ };
+ };
+ "diveSync-0.3.0" = {
+ name = "diveSync";
+ packageName = "diveSync";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diveSync/-/diveSync-0.3.0.tgz";
+ sha1 = "d9980493ae33beec36f4fec6f171ff218130cc12";
+ };
+ };
+ "dns-discovery-5.6.1" = {
+ name = "dns-discovery";
+ packageName = "dns-discovery";
+ version = "5.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-discovery/-/dns-discovery-5.6.1.tgz";
+ sha512 = "2hda8mbvxc2r10g5p9dsrjk3qdrp7gpk66ps0dikwzcdgn9bvsf8ih9k19kxw7wr299cm7hav2q6rjp5m76zyb6mb19bfa3g6zxyvmg";
+ };
+ };
+ "dns-equal-1.0.0" = {
+ name = "dns-equal";
+ packageName = "dns-equal";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz";
+ sha1 = "b39e7f1da6eb0a75ba9c17324b34753c47e0654d";
+ };
+ };
+ "dns-js-0.2.1" = {
+ name = "dns-js";
+ packageName = "dns-js";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-js/-/dns-js-0.2.1.tgz";
+ sha1 = "5d66629b3c0e6a5eb0e14f0ae701d05f6ea46673";
+ };
+ };
+ "dns-packet-1.3.1" = {
+ name = "dns-packet";
+ packageName = "dns-packet";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz";
+ sha512 = "19g682cvkba33mwrism28hibd2nv9xd16k5bj807jx3ih1cc7ff9dn8chmfjnqgglzl6lq3m3jarxng9vbarccgchd0aq118d15yk6i";
+ };
+ };
+ "dns-socket-1.6.3" = {
+ name = "dns-socket";
+ packageName = "dns-socket";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-socket/-/dns-socket-1.6.3.tgz";
+ sha512 = "2g9g9jqx44qpiawlxfn1g647dqwwz2djjpy350c83d1z79d5wa21cknh1jz4wrwsjkvgn14vhmjjxqxf5n8fqq6fjyzw85aa7fk4rgy";
+ };
+ };
+ "dns-txt-2.0.2" = {
+ name = "dns-txt";
+ packageName = "dns-txt";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz";
+ sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6";
+ };
+ };
+ "dnscache-1.0.1" = {
+ name = "dnscache";
+ packageName = "dnscache";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dnscache/-/dnscache-1.0.1.tgz";
+ sha1 = "42cb2b9bfb5e8fbdfa395aac74e127fc05074d31";
+ };
+ };
+ "docker-parse-image-3.0.1" = {
+ name = "docker-parse-image";
+ packageName = "docker-parse-image";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/docker-parse-image/-/docker-parse-image-3.0.1.tgz";
+ sha1 = "33dc69291eac3414f84871f2d59d77b6f6948be4";
+ };
+ };
+ "doctoc-1.3.0" = {
+ name = "doctoc";
+ packageName = "doctoc";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/doctoc/-/doctoc-1.3.0.tgz";
+ sha1 = "7f0839851dd58c808a2cae55d9504e012d08ee30";
+ };
+ };
+ "doctrine-2.1.0" = {
+ name = "doctrine";
+ packageName = "doctrine";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz";
+ sha512 = "0iz6zh5d0kqs0ndd1ydsj4vaf2x3k3p0k5a7b75gsbhkqaqqq93dgsa2bpifvw7svck2sndd21mv7mp60q111rbghpssp0rxs9956fz";
+ };
+ };
+ "doctypes-1.1.0" = {
+ name = "doctypes";
+ packageName = "doctypes";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz";
+ sha1 = "ea80b106a87538774e8a3a4a5afe293de489e0a9";
+ };
+ };
+ "dom-serialize-2.2.1" = {
+ name = "dom-serialize";
+ packageName = "dom-serialize";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz";
+ sha1 = "562ae8999f44be5ea3076f5419dcd59eb43ac95b";
+ };
+ };
+ "dom-serializer-0.0.1" = {
+ name = "dom-serializer";
+ packageName = "dom-serializer";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.0.1.tgz";
+ sha1 = "9589827f1e32d22c37c829adabd59b3247af8eaf";
+ };
+ };
+ "dom-serializer-0.1.0" = {
+ name = "dom-serializer";
+ packageName = "dom-serializer";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz";
+ sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82";
+ };
+ };
+ "dom-storage-2.0.2" = {
+ name = "dom-storage";
+ packageName = "dom-storage";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom-storage/-/dom-storage-2.0.2.tgz";
+ sha1 = "ed17cbf68abd10e0aef8182713e297c5e4b500b0";
+ };
+ };
+ "dom-walk-0.1.1" = {
+ name = "dom-walk";
+ packageName = "dom-walk";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz";
+ sha1 = "672226dc74c8f799ad35307df936aba11acd6018";
+ };
+ };
+ "domain-browser-1.1.7" = {
+ name = "domain-browser";
+ packageName = "domain-browser";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz";
+ sha1 = "867aa4b093faa05f1de08c06f4d7b21fdf8698bc";
+ };
+ };
+ "domain-browser-1.2.0" = {
+ name = "domain-browser";
+ packageName = "domain-browser";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz";
+ sha512 = "1fcxv8rzfhs99afvhji7bs5ppxwn9mw040ixdgvkm6iabz72q61arly2lr57086rjn4g2vkb3rkih1cyc7z35kzv1jjciwyrs4g4y4f";
+ };
+ };
+ "domelementtype-1.1.3" = {
+ name = "domelementtype";
+ packageName = "domelementtype";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz";
+ sha1 = "bd28773e2642881aec51544924299c5cd822185b";
+ };
+ };
+ "domelementtype-1.3.0" = {
+ name = "domelementtype";
+ packageName = "domelementtype";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz";
+ sha1 = "b17aed82e8ab59e52dd9c19b1756e0fc187204c2";
+ };
+ };
+ "domhandler-2.2.1" = {
+ name = "domhandler";
+ packageName = "domhandler";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domhandler/-/domhandler-2.2.1.tgz";
+ sha1 = "59df9dcd227e808b365ae73e1f6684ac3d946fc2";
+ };
+ };
+ "domhandler-2.3.0" = {
+ name = "domhandler";
+ packageName = "domhandler";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz";
+ sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738";
+ };
+ };
+ "domhandler-2.4.1" = {
+ name = "domhandler";
+ packageName = "domhandler";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz";
+ sha1 = "892e47000a99be55bbf3774ffea0561d8879c259";
+ };
+ };
+ "domino-1.0.30" = {
+ name = "domino";
+ packageName = "domino";
+ version = "1.0.30";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domino/-/domino-1.0.30.tgz";
+ sha512 = "1g3pbkg3gg3kjffah03vil47662ra58gckz5z8qymfgb9xq97k7vsd83410fmncbbll1p40rs0s4r0pgdypfvj9j2fq146j41dbqjla";
+ };
+ };
+ "domutils-1.4.3" = {
+ name = "domutils";
+ packageName = "domutils";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domutils/-/domutils-1.4.3.tgz";
+ sha1 = "0865513796c6b306031850e175516baf80b72a6f";
+ };
+ };
+ "domutils-1.5.1" = {
+ name = "domutils";
+ packageName = "domutils";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz";
+ sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
+ };
+ };
+ "domutils-1.6.2" = {
+ name = "domutils";
+ packageName = "domutils";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/domutils/-/domutils-1.6.2.tgz";
+ sha1 = "1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff";
+ };
+ };
+ "dot-prop-3.0.0" = {
+ name = "dot-prop";
+ packageName = "dot-prop";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dot-prop/-/dot-prop-3.0.0.tgz";
+ sha1 = "1b708af094a49c9a0e7dbcad790aba539dac1177";
+ };
+ };
+ "dot-prop-4.2.0" = {
+ name = "dot-prop";
+ packageName = "dot-prop";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz";
+ sha512 = "2wyv9brsq3dzp724y1q5z5j5ja83y834hgc193lnarfdycwz1ii3xg02qxx3dg05x3skwjm1di5s5a8hqi8l5v1afx2bia436pifhxm";
+ };
+ };
+ "double-ended-queue-2.1.0-0" = {
+ name = "double-ended-queue";
+ packageName = "double-ended-queue";
+ version = "2.1.0-0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz";
+ sha1 = "103d3527fd31528f40188130c841efdd78264e5c";
+ };
+ };
+ "downgrade-root-1.2.2" = {
+ name = "downgrade-root";
+ packageName = "downgrade-root";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/downgrade-root/-/downgrade-root-1.2.2.tgz";
+ sha1 = "531319715b0e81ffcc22eb28478ba27643e12c6c";
+ };
+ };
+ "dtrace-provider-0.6.0" = {
+ name = "dtrace-provider";
+ packageName = "dtrace-provider";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.6.0.tgz";
+ sha1 = "0b078d5517937d873101452d9146737557b75e51";
+ };
+ };
+ "dtrace-provider-0.8.6" = {
+ name = "dtrace-provider";
+ packageName = "dtrace-provider";
+ version = "0.8.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.6.tgz";
+ sha1 = "428a223afe03425d2cd6d6347fdf40c66903563d";
+ };
+ };
+ "duplexer-0.1.1" = {
+ name = "duplexer";
+ packageName = "duplexer";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz";
+ sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1";
+ };
+ };
+ "duplexer2-0.0.2" = {
+ name = "duplexer2";
+ packageName = "duplexer2";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz";
+ sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db";
+ };
+ };
+ "duplexer2-0.1.4" = {
+ name = "duplexer2";
+ packageName = "duplexer2";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz";
+ sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1";
+ };
+ };
+ "duplexer3-0.1.4" = {
+ name = "duplexer3";
+ packageName = "duplexer3";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz";
+ sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2";
+ };
+ };
+ "duplexify-3.5.3" = {
+ name = "duplexify";
+ packageName = "duplexify";
+ version = "3.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexify/-/duplexify-3.5.3.tgz";
+ sha512 = "0c611ik2kv5wiqwfi5zjyx70dnw117lbr0wwqxqxc0hldnnfigiqyh5xr7x6267vs63jgvqkzvvwb3b1g37zkk3nx5dh5z8xbs07hl3";
+ };
+ };
+ "each-async-1.1.1" = {
+ name = "each-async";
+ packageName = "each-async";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/each-async/-/each-async-1.1.1.tgz";
+ sha1 = "dee5229bdf0ab6ba2012a395e1b869abf8813473";
+ };
+ };
+ "eachr-3.2.0" = {
+ name = "eachr";
+ packageName = "eachr";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eachr/-/eachr-3.2.0.tgz";
+ sha1 = "2c35e43ea086516f7997cf80b7aa64d55a4a4484";
+ };
+ };
+ "easy-table-1.1.0" = {
+ name = "easy-table";
+ packageName = "easy-table";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz";
+ sha1 = "86f9ab4c102f0371b7297b92a651d5824bc8cb73";
+ };
+ };
+ "ecc-jsbn-0.1.1" = {
+ name = "ecc-jsbn";
+ packageName = "ecc-jsbn";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz";
+ sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505";
+ };
+ };
+ "ecdsa-sig-formatter-1.0.9" = {
+ name = "ecdsa-sig-formatter";
+ packageName = "ecdsa-sig-formatter";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.9.tgz";
+ sha1 = "4bc926274ec3b5abb5016e7e1d60921ac262b2a1";
+ };
+ };
+ "editions-1.3.3" = {
+ name = "editions";
+ packageName = "editions";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/editions/-/editions-1.3.3.tgz";
+ sha1 = "0907101bdda20fac3cbe334c27cbd0688dc99a5b";
+ };
+ };
+ "editor-1.0.0" = {
+ name = "editor";
+ packageName = "editor";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/editor/-/editor-1.0.0.tgz";
+ sha1 = "60c7f87bd62bcc6a894fa8ccd6afb7823a24f742";
+ };
+ };
+ "editorconfig-0.13.3" = {
+ name = "editorconfig";
+ packageName = "editorconfig";
+ version = "0.13.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.13.3.tgz";
+ sha512 = "08ysphnfa9fynh31z9sbxq8nyw0v2w2q6xkvqpy13xr16mh58na9xrxjxj0r6vwr01xjna3jyz6njwbxw0dvyrq509y5fs2sm8fqj2s";
+ };
+ };
+ "ee-first-1.1.0" = {
+ name = "ee-first";
+ packageName = "ee-first";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.0.tgz";
+ sha1 = "6a0d7c6221e490feefd92ec3f441c9ce8cd097f4";
+ };
+ };
+ "ee-first-1.1.1" = {
+ name = "ee-first";
+ packageName = "ee-first";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz";
+ sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
+ };
+ };
+ "ejs-0.8.3" = {
+ name = "ejs";
+ packageName = "ejs";
+ version = "0.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ejs/-/ejs-0.8.3.tgz";
+ sha1 = "db8aac47ff80a7df82b4c82c126fe8970870626f";
+ };
+ };
+ "ejs-2.5.7" = {
+ name = "ejs";
+ packageName = "ejs";
+ version = "2.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz";
+ sha1 = "cc872c168880ae3c7189762fd5ffc00896c9518a";
+ };
+ };
+ "elegant-spinner-1.0.1" = {
+ name = "elegant-spinner";
+ packageName = "elegant-spinner";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz";
+ sha1 = "db043521c95d7e303fd8f345bedc3349cfb0729e";
+ };
+ };
+ "elementtree-0.1.6" = {
+ name = "elementtree";
+ packageName = "elementtree";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/elementtree/-/elementtree-0.1.6.tgz";
+ sha1 = "2ac4c46ea30516c8c4cbdb5e3ac7418e592de20c";
+ };
+ };
+ "elementtree-0.1.7" = {
+ name = "elementtree";
+ packageName = "elementtree";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/elementtree/-/elementtree-0.1.7.tgz";
+ sha1 = "9ac91be6e52fb6e6244c4e54a4ac3ed8ae8e29c0";
+ };
+ };
+ "elliptic-6.4.0" = {
+ name = "elliptic";
+ packageName = "elliptic";
+ version = "6.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz";
+ sha1 = "cac9af8762c85836187003c8dfe193e5e2eae5df";
+ };
+ };
+ "email-validator-1.1.1" = {
+ name = "email-validator";
+ packageName = "email-validator";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/email-validator/-/email-validator-1.1.1.tgz";
+ sha512 = "3ydmy134p48c4zswbvjllak53h545dmzsz77bwpfxjf7aw510yyg4w58pazc2yz9agm93rphfgglrlj9cfkfdygcg1rbv0vj4jhjixy";
+ };
+ };
+ "emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" = {
+ name = "emitter";
+ packageName = "emitter";
+ version = "1.0.1";
+ src = fetchurl {
+ name = "emitter-1.0.1.tar.gz";
+ url = https://codeload.github.com/component/emitter/tar.gz/1.0.1;
+ sha256 = "0eae744826723877457f7a7ac7f31d68a5a060673b3a883f6a8e325bf48f313d";
+ };
+ };
+ "emoji-regex-6.1.1" = {
+ name = "emoji-regex";
+ packageName = "emoji-regex";
+ version = "6.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz";
+ sha1 = "c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e";
+ };
+ };
+ "emoji-regex-6.1.3" = {
+ name = "emoji-regex";
+ packageName = "emoji-regex";
+ version = "6.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.3.tgz";
+ sha1 = "ec79a3969b02d2ecf2b72254279bf99bc7a83932";
+ };
+ };
+ "emojic-1.1.14" = {
+ name = "emojic";
+ packageName = "emojic";
+ version = "1.1.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emojic/-/emojic-1.1.14.tgz";
+ sha512 = "0j0wbbcyvx0qklz7xvqbv2w2n2vqzq5vhyv3jrnsvb775c0zr2bh7m3k7mh0aw6i4rbmgf8x6rw7bfvgzsh5hvlgj01w61xfml89b4z";
+ };
+ };
+ "emojilib-2.2.12" = {
+ name = "emojilib";
+ packageName = "emojilib";
+ version = "2.2.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emojilib/-/emojilib-2.2.12.tgz";
+ sha512 = "2z6nk0nin1cmj81c54pxjyxgpa61d0g61sdn3swykk4j8n8mnba95m1s1cpjcr4wr96jhgyal1z4swd8pcazzp3a50msqir0vj4vcwq";
+ };
+ };
+ "emojis-list-2.1.0" = {
+ name = "emojis-list";
+ packageName = "emojis-list";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz";
+ sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389";
+ };
+ };
+ "encodeurl-1.0.2" = {
+ name = "encodeurl";
+ packageName = "encodeurl";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz";
+ sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59";
+ };
+ };
+ "encoding-0.1.12" = {
+ name = "encoding";
+ packageName = "encoding";
+ version = "0.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz";
+ sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb";
+ };
+ };
+ "end-of-stream-0.1.5" = {
+ name = "end-of-stream";
+ packageName = "end-of-stream";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz";
+ sha1 = "8e177206c3c80837d85632e8b9359dfe8b2f6eaf";
+ };
+ };
+ "end-of-stream-1.0.0" = {
+ name = "end-of-stream";
+ packageName = "end-of-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz";
+ sha1 = "d4596e702734a93e40e9af864319eabd99ff2f0e";
+ };
+ };
+ "end-of-stream-1.1.0" = {
+ name = "end-of-stream";
+ packageName = "end-of-stream";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz";
+ sha1 = "e9353258baa9108965efc41cb0ef8ade2f3cfb07";
+ };
+ };
+ "end-of-stream-1.4.1" = {
+ name = "end-of-stream";
+ packageName = "end-of-stream";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz";
+ sha512 = "3cjrpi6n5i6gf8jaiwg31y2xkgx59szhhcj9myqwmdw16s9r6yvwznxd2lhqf96mpm6knyb3w2bcnksg5nzkrq6iada0k6nvdj2pjfl";
+ };
+ };
+ "ends-with-0.2.0" = {
+ name = "ends-with";
+ packageName = "ends-with";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ends-with/-/ends-with-0.2.0.tgz";
+ sha1 = "2f9da98d57a50cfda4571ce4339000500f4e6b8a";
+ };
+ };
+ "engine.io-1.3.1" = {
+ name = "engine.io";
+ packageName = "engine.io";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-1.3.1.tgz";
+ sha1 = "2d968308fffae5d17f5209b6775246e90d8a705e";
+ };
+ };
+ "engine.io-1.8.5" = {
+ name = "engine.io";
+ packageName = "engine.io";
+ version = "1.8.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-1.8.5.tgz";
+ sha512 = "3ff3a0anvy48mmpay3jkzlrjvxmlclq823j8jmjfdhy48xpz1syz44bwr13zdh161x1vqzsclgwb6gvgrn9vymvq98qihrdr4hxcl4g";
+ };
+ };
+ "engine.io-3.1.4" = {
+ name = "engine.io";
+ packageName = "engine.io";
+ version = "3.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io/-/engine.io-3.1.4.tgz";
+ sha1 = "3d0211b70a552ce841ffc7da8627b301a9a4162e";
+ };
+ };
+ "engine.io-client-1.3.1" = {
+ name = "engine.io-client";
+ packageName = "engine.io-client";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.3.1.tgz";
+ sha1 = "1c5a65d5c5af6d04b44c22c3dbcd95c39ed1c989";
+ };
+ };
+ "engine.io-client-1.8.5" = {
+ name = "engine.io-client";
+ packageName = "engine.io-client";
+ version = "1.8.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.5.tgz";
+ sha512 = "1kfc2cmjw891x0i9cm9alm93db5s40h3n4a3zcpjha7nrvz0s7ggzpp2x2v8zmnhp9278amjdm0j5lfkn3qxan7nanzhl4m4wgy1101";
+ };
+ };
+ "engine.io-client-3.1.4" = {
+ name = "engine.io-client";
+ packageName = "engine.io-client";
+ version = "3.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.1.4.tgz";
+ sha1 = "4fcf1370b47163bd2ce9be2733972430350d4ea1";
+ };
+ };
+ "engine.io-parser-1.0.6" = {
+ name = "engine.io-parser";
+ packageName = "engine.io-parser";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.0.6.tgz";
+ sha1 = "d38813143a411cb3b914132ab05bf99e6f7a248e";
+ };
+ };
+ "engine.io-parser-1.3.2" = {
+ name = "engine.io-parser";
+ packageName = "engine.io-parser";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz";
+ sha1 = "937b079f0007d0893ec56d46cb220b8cb435220a";
+ };
+ };
+ "engine.io-parser-2.1.2" = {
+ name = "engine.io-parser";
+ packageName = "engine.io-parser";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.2.tgz";
+ sha512 = "0rjbixsn5qvjwklnvvjdfz4wy85dk82zkvh6lk3znbd3p3isgr57a5kikgndr3xhhkv5zzvh4bfxbz7gqfsgijscyiiilgw78bwp2bl";
+ };
+ };
+ "enhanced-resolve-2.3.0" = {
+ name = "enhanced-resolve";
+ packageName = "enhanced-resolve";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-2.3.0.tgz";
+ sha1 = "a115c32504b6302e85a76269d7a57ccdd962e359";
+ };
+ };
+ "enhanced-resolve-3.4.1" = {
+ name = "enhanced-resolve";
+ packageName = "enhanced-resolve";
+ version = "3.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz";
+ sha1 = "0421e339fd71419b3da13d129b3979040230476e";
+ };
+ };
+ "ensure-posix-path-1.0.2" = {
+ name = "ensure-posix-path";
+ packageName = "ensure-posix-path";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz";
+ sha1 = "a65b3e42d0b71cfc585eb774f9943c8d9b91b0c2";
+ };
+ };
+ "ent-2.2.0" = {
+ name = "ent";
+ packageName = "ent";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz";
+ sha1 = "e964219325a21d05f44466a2f686ed6ce5f5dd1d";
+ };
+ };
+ "entities-1.0.0" = {
+ name = "entities";
+ packageName = "entities";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz";
+ sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26";
+ };
+ };
+ "entities-1.1.1" = {
+ name = "entities";
+ packageName = "entities";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz";
+ sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0";
+ };
+ };
+ "env-paths-1.0.0" = {
+ name = "env-paths";
+ packageName = "env-paths";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/env-paths/-/env-paths-1.0.0.tgz";
+ sha1 = "4168133b42bb05c38a35b1ae4397c8298ab369e0";
+ };
+ };
+ "envconf-0.0.4" = {
+ name = "envconf";
+ packageName = "envconf";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/envconf/-/envconf-0.0.4.tgz";
+ sha1 = "85675afba237c43f98de2d46adc0e532a4dcf48b";
+ };
+ };
+ "errno-0.1.6" = {
+ name = "errno";
+ packageName = "errno";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz";
+ sha512 = "0vny3xisd56kx193rhv6vpccjxlajjn9ss5wk96l1ya8zbpkwbjrrgrm9wpfm3xc8apx8z9xb0kjkw0y5qnc6gy1hf2qsas79093hr2";
+ };
+ };
+ "error-7.0.2" = {
+ name = "error";
+ packageName = "error";
+ version = "7.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/error/-/error-7.0.2.tgz";
+ sha1 = "a5f75fff4d9926126ddac0ea5dc38e689153cb02";
+ };
+ };
+ "error-ex-1.3.1" = {
+ name = "error-ex";
+ packageName = "error-ex";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz";
+ sha1 = "f855a86ce61adc4e8621c3cda21e7a7612c3a8dc";
+ };
+ };
+ "errorhandler-1.4.3" = {
+ name = "errorhandler";
+ packageName = "errorhandler";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/errorhandler/-/errorhandler-1.4.3.tgz";
+ sha1 = "b7b70ed8f359e9db88092f2d20c0f831420ad83f";
+ };
+ };
+ "errorhandler-1.5.0" = {
+ name = "errorhandler";
+ packageName = "errorhandler";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/errorhandler/-/errorhandler-1.5.0.tgz";
+ sha1 = "eaba64ca5d542a311ac945f582defc336165d9f4";
+ };
+ };
+ "es-abstract-1.10.0" = {
+ name = "es-abstract";
+ packageName = "es-abstract";
+ version = "1.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz";
+ sha512 = "04nd5ylkfffc08vn5kjhz0saqh44nj19f5j3ahrrhf3zvc9da5rf6snnh63xv4gfhacjbax1jajzgqv4zpm77v806jf883a2w77zs7y";
+ };
+ };
+ "es-to-primitive-1.1.1" = {
+ name = "es-to-primitive";
+ packageName = "es-to-primitive";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz";
+ sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d";
+ };
+ };
+ "es5-ext-0.10.38" = {
+ name = "es5-ext";
+ packageName = "es5-ext";
+ version = "0.10.38";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.38.tgz";
+ sha512 = "0m7d1yd67hb93gsxv7790h9ayxg3pwf3vgih9v2kxqvsg073wim7jgwf3z57lksdczxnqv2d8gm4mfk4b29f6rc27a7c09vz9w348wc";
+ };
+ };
+ "es5class-2.3.1" = {
+ name = "es5class";
+ packageName = "es5class";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es5class/-/es5class-2.3.1.tgz";
+ sha1 = "42c5c18a9016bcb0db28a4d340ebb831f55d1b66";
+ };
+ };
+ "es6-error-4.0.0" = {
+ name = "es6-error";
+ packageName = "es6-error";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-error/-/es6-error-4.0.0.tgz";
+ sha1 = "f094c7041f662599bb12720da059d6b9c7ff0f40";
+ };
+ };
+ "es6-error-4.1.1" = {
+ name = "es6-error";
+ packageName = "es6-error";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz";
+ sha512 = "1b98y4j9fy6c2wm7ys3csnyfg8cn40sy2g958i45fdh5bnx1lkl19d4508aldabga5rm1q5hzxq68yjdyb8n6qxb8925x1b2cbzwvsj";
+ };
+ };
+ "es6-iterator-2.0.3" = {
+ name = "es6-iterator";
+ packageName = "es6-iterator";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz";
+ sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7";
+ };
+ };
+ "es6-map-0.1.5" = {
+ name = "es6-map";
+ packageName = "es6-map";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz";
+ sha1 = "9136e0503dcc06a301690f0bb14ff4e364e949f0";
+ };
+ };
+ "es6-promise-2.3.0" = {
+ name = "es6-promise";
+ packageName = "es6-promise";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz";
+ sha1 = "96edb9f2fdb01995822b263dd8aadab6748181bc";
+ };
+ };
+ "es6-promise-3.3.1" = {
+ name = "es6-promise";
+ packageName = "es6-promise";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz";
+ sha1 = "a08cdde84ccdbf34d027a1451bc91d4bcd28a613";
+ };
+ };
+ "es6-promise-4.2.4" = {
+ name = "es6-promise";
+ packageName = "es6-promise";
+ version = "4.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz";
+ sha512 = "10hlgvxhshjxlbwvm1gnf1b01sv1fmh191a97l0h5gmcs9am1b6x937wnhkvvj5fkin10qscii8pcwnp9rlnpkgnrhfdyk0a9jlvmzw";
+ };
+ };
+ "es6-promisify-5.0.0" = {
+ name = "es6-promisify";
+ packageName = "es6-promisify";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz";
+ sha1 = "5109d62f3e56ea967c4b63505aef08291c8a5203";
+ };
+ };
+ "es6-set-0.1.5" = {
+ name = "es6-set";
+ packageName = "es6-set";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz";
+ sha1 = "d2b3ec5d4d800ced818db538d28974db0a73ccb1";
+ };
+ };
+ "es6-shim-0.21.1" = {
+ name = "es6-shim";
+ packageName = "es6-shim";
+ version = "0.21.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-shim/-/es6-shim-0.21.1.tgz";
+ sha1 = "6621bce72e1ac80a6e1f002abd4e789f12489fd2";
+ };
+ };
+ "es6-symbol-3.1.1" = {
+ name = "es6-symbol";
+ packageName = "es6-symbol";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz";
+ sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77";
+ };
+ };
+ "es6-weak-map-2.0.2" = {
+ name = "es6-weak-map";
+ packageName = "es6-weak-map";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz";
+ sha1 = "5e3ab32251ffd1538a1f8e5ffa1357772f92d96f";
+ };
+ };
+ "escape-html-1.0.1" = {
+ name = "escape-html";
+ packageName = "escape-html";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.1.tgz";
+ sha1 = "181a286ead397a39a92857cfb1d43052e356bff0";
+ };
+ };
+ "escape-html-1.0.2" = {
+ name = "escape-html";
+ packageName = "escape-html";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.2.tgz";
+ sha1 = "d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c";
+ };
+ };
+ "escape-html-1.0.3" = {
+ name = "escape-html";
+ packageName = "escape-html";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz";
+ sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
+ };
+ };
+ "escape-regexp-component-1.0.2" = {
+ name = "escape-regexp-component";
+ packageName = "escape-regexp-component";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-regexp-component/-/escape-regexp-component-1.0.2.tgz";
+ sha1 = "9c63b6d0b25ff2a88c3adbd18c5b61acc3b9faa2";
+ };
+ };
+ "escape-string-regexp-1.0.5" = {
+ name = "escape-string-regexp";
+ packageName = "escape-string-regexp";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
+ sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
+ };
+ };
+ "escodegen-1.8.1" = {
+ name = "escodegen";
+ packageName = "escodegen";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz";
+ sha1 = "5a5b53af4693110bebb0867aa3430dd3b70a1018";
+ };
+ };
+ "escodegen-1.9.0" = {
+ name = "escodegen";
+ packageName = "escodegen";
+ version = "1.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escodegen/-/escodegen-1.9.0.tgz";
+ sha512 = "0il8dp1bh3n1am3xx5pazmpjb5m8wzdn9xg1lgh4j8axvsy8v24i1171c04qafx0j4xsaq76j29ljq2srf4i3kdl3qbrn9psjy1hhxz";
+ };
+ };
+ "escope-3.6.0" = {
+ name = "escope";
+ packageName = "escope";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz";
+ sha1 = "e01975e812781a163a6dadfdd80398dc64c889c3";
+ };
+ };
+ "eslint-3.19.0" = {
+ name = "eslint";
+ packageName = "eslint";
+ version = "3.19.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint/-/eslint-3.19.0.tgz";
+ sha1 = "c8fc6201c7f40dd08941b87c085767386a679acc";
+ };
+ };
+ "eslint-4.15.0" = {
+ name = "eslint";
+ packageName = "eslint";
+ version = "4.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint/-/eslint-4.15.0.tgz";
+ sha512 = "3l1j4qy0gqa8rkwpdsmkkbqcmbx23ym8h64d1bbj5i5ds5ks0g91myldzp0y25r6b3ba9646hy4i2jiad2jmm8h68z89i2larkvyhyc";
+ };
+ };
+ "eslint-4.16.0" = {
+ name = "eslint";
+ packageName = "eslint";
+ version = "4.16.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint/-/eslint-4.16.0.tgz";
+ sha512 = "330nda1zwh0sqsxsfmlmhbg903gz6n9n4zy870gc2k95wrg1bc7jysfyn98nk2bd8p821xszpygp1vs1i7csapxfb3q2dp1n3hxamb1";
+ };
+ };
+ "eslint-plugin-no-unsafe-innerhtml-1.0.16" = {
+ name = "eslint-plugin-no-unsafe-innerhtml";
+ packageName = "eslint-plugin-no-unsafe-innerhtml";
+ version = "1.0.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-plugin-no-unsafe-innerhtml/-/eslint-plugin-no-unsafe-innerhtml-1.0.16.tgz";
+ sha1 = "7d02878c8e9bf7916b88836d5ac122b42f151932";
+ };
+ };
+ "eslint-scope-3.7.1" = {
+ name = "eslint-scope";
+ packageName = "eslint-scope";
+ version = "3.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz";
+ sha1 = "3d63c3edfda02e06e01a452ad88caacc7cdcb6e8";
+ };
+ };
+ "eslint-visitor-keys-1.0.0" = {
+ name = "eslint-visitor-keys";
+ packageName = "eslint-visitor-keys";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz";
+ sha512 = "02hr99x8cnc80p9hn5si7mngqpzvvjkxmdv8sch68z0qpqwjdlx3j1w6d9rhr6wgcnqf1mrxyji8wvfddbf7xr13z2nzihv29gvyfdb";
+ };
+ };
+ "espree-3.5.2" = {
+ name = "espree";
+ packageName = "espree";
+ version = "3.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/espree/-/espree-3.5.2.tgz";
+ sha512 = "04mnrkdqs32w98h9sfkn9i9zkyqj69sz2q1kxpnmsryjnfd9jrpqqlwrik73a80mdz86xckbr7vayw1dwkxhhnbvs4zciqsiiwlm9xi";
+ };
+ };
+ "esprima-1.0.4" = {
+ name = "esprima";
+ packageName = "esprima";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz";
+ sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad";
+ };
+ };
+ "esprima-2.7.3" = {
+ name = "esprima";
+ packageName = "esprima";
+ version = "2.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz";
+ sha1 = "96e3b70d5779f6ad49cd032673d1c312767ba581";
+ };
+ };
+ "esprima-3.1.3" = {
+ name = "esprima";
+ packageName = "esprima";
+ version = "3.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz";
+ sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633";
+ };
+ };
+ "esprima-4.0.0" = {
+ name = "esprima";
+ packageName = "esprima";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz";
+ sha512 = "27mkhd94y9vrr8pb97br0ym5h85rawwb0biswgwdfp31x0387y12k9p9598bi4fc83fif6crfzqiqmmjs4x7gcb22ml3z1fldqm7yx1";
+ };
+ };
+ "esprima-fb-13001.1001.0-dev-harmony-fb" = {
+ name = "esprima-fb";
+ packageName = "esprima-fb";
+ version = "13001.1001.0-dev-harmony-fb";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima-fb/-/esprima-fb-13001.1001.0-dev-harmony-fb.tgz";
+ sha1 = "633acdb40d9bd4db8a1c1d68c06a942959fad2b0";
+ };
+ };
+ "esquery-1.0.0" = {
+ name = "esquery";
+ packageName = "esquery";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz";
+ sha1 = "cfba8b57d7fba93f17298a8a006a04cda13d80fa";
+ };
+ };
+ "esrecurse-4.2.0" = {
+ name = "esrecurse";
+ packageName = "esrecurse";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.0.tgz";
+ sha1 = "fa9568d98d3823f9a41d91e902dcab9ea6e5b163";
+ };
+ };
+ "estraverse-1.9.3" = {
+ name = "estraverse";
+ packageName = "estraverse";
+ version = "1.9.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz";
+ sha1 = "af67f2dc922582415950926091a4005d29c9bb44";
+ };
+ };
+ "estraverse-4.2.0" = {
+ name = "estraverse";
+ packageName = "estraverse";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz";
+ sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13";
+ };
+ };
+ "esutils-2.0.2" = {
+ name = "esutils";
+ packageName = "esutils";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz";
+ sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b";
+ };
+ };
+ "etag-1.5.1" = {
+ name = "etag";
+ packageName = "etag";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/etag/-/etag-1.5.1.tgz";
+ sha1 = "54c50de04ee42695562925ac566588291be7e9ea";
+ };
+ };
+ "etag-1.7.0" = {
+ name = "etag";
+ packageName = "etag";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz";
+ sha1 = "03d30b5f67dd6e632d2945d30d6652731a34d5d8";
+ };
+ };
+ "etag-1.8.1" = {
+ name = "etag";
+ packageName = "etag";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz";
+ sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887";
+ };
+ };
+ "eve-0.5.4" = {
+ name = "eve";
+ packageName = "eve";
+ version = "0.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eve/-/eve-0.5.4.tgz";
+ sha1 = "67d080b9725291d7e389e34c26860dd97f1debaa";
+ };
+ };
+ "event-emitter-0.3.5" = {
+ name = "event-emitter";
+ packageName = "event-emitter";
+ version = "0.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz";
+ sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39";
+ };
+ };
+ "event-stream-0.5.3" = {
+ name = "event-stream";
+ packageName = "event-stream";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz";
+ sha1 = "b77b9309f7107addfeab63f0c0eafd8db0bd8c1c";
+ };
+ };
+ "event-stream-3.1.5" = {
+ name = "event-stream";
+ packageName = "event-stream";
+ version = "3.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-stream/-/event-stream-3.1.5.tgz";
+ sha1 = "6cba5a3ae02a7e4967d65ad04ef12502a2fff66c";
+ };
+ };
+ "event-stream-3.2.2" = {
+ name = "event-stream";
+ packageName = "event-stream";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-stream/-/event-stream-3.2.2.tgz";
+ sha1 = "f79f9984c07ee3fd9b44ffb3cd0422b13e24084d";
+ };
+ };
+ "event-stream-3.3.4" = {
+ name = "event-stream";
+ packageName = "event-stream";
+ version = "3.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz";
+ sha1 = "4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571";
+ };
+ };
+ "event-to-promise-0.8.0" = {
+ name = "event-to-promise";
+ packageName = "event-to-promise";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/event-to-promise/-/event-to-promise-0.8.0.tgz";
+ sha1 = "4b84f11772b6f25f7752fc74d971531ac6f5b626";
+ };
+ };
+ "eventemitter2-0.4.14" = {
+ name = "eventemitter2";
+ packageName = "eventemitter2";
+ version = "0.4.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz";
+ sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab";
+ };
+ };
+ "eventemitter2-3.0.2" = {
+ name = "eventemitter2";
+ packageName = "eventemitter2";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-3.0.2.tgz";
+ sha1 = "81c0edb739ffa64fb9f21bbcb1d2b419a5133512";
+ };
+ };
+ "eventemitter3-0.1.6" = {
+ name = "eventemitter3";
+ packageName = "eventemitter3";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-0.1.6.tgz";
+ sha1 = "8c7ac44b87baab55cd50c828dc38778eac052ea5";
+ };
+ };
+ "eventemitter3-1.2.0" = {
+ name = "eventemitter3";
+ packageName = "eventemitter3";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz";
+ sha1 = "1c86991d816ad1e504750e73874224ecf3bec508";
+ };
+ };
+ "eventemitter3-3.0.0" = {
+ name = "eventemitter3";
+ packageName = "eventemitter3";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.0.0.tgz";
+ sha512 = "0jijxlrlxb3vf5xqxibisd132qzlh9ag6ckxgvz791d4rqrzvzc2mzzn86jx1bgbsym1wi0pgm017i4rd5m84g1d38n56zqvh5g2r7b";
+ };
+ };
+ "events-1.1.1" = {
+ name = "events";
+ packageName = "events";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/events/-/events-1.1.1.tgz";
+ sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924";
+ };
+ };
+ "events.node-0.4.9" = {
+ name = "events.node";
+ packageName = "events.node";
+ version = "0.4.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/events.node/-/events.node-0.4.9.tgz";
+ sha1 = "82998ea749501145fd2da7cf8ecbe6420fac02a4";
+ };
+ };
+ "everyauth-0.4.5" = {
+ name = "everyauth";
+ packageName = "everyauth";
+ version = "0.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/everyauth/-/everyauth-0.4.5.tgz";
+ sha1 = "282d358439d91c30fb4aa2320dc362edac7dd189";
+ };
+ };
+ "evp_bytestokey-1.0.3" = {
+ name = "evp_bytestokey";
+ packageName = "evp_bytestokey";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz";
+ sha512 = "1wd18zxd7n42asa63aa4k1bdf58warg29c7c8cdzzkd4r1wva7qwzqnn52h8g8hqwj7bxjkk3ryghajrvz4i27h5bzp30p8hjiqdzgx";
+ };
+ };
+ "execa-0.4.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.4.0.tgz";
+ sha1 = "4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3";
+ };
+ };
+ "execa-0.6.3" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.6.3.tgz";
+ sha1 = "57b69a594f081759c69e5370f0d17b9cb11658fe";
+ };
+ };
+ "execa-0.7.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz";
+ sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777";
+ };
+ };
+ "execa-0.8.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz";
+ sha1 = "d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da";
+ };
+ };
+ "execall-1.0.0" = {
+ name = "execall";
+ packageName = "execall";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz";
+ sha1 = "73d0904e395b3cab0658b08d09ec25307f29bb73";
+ };
+ };
+ "exit-0.1.2" = {
+ name = "exit";
+ packageName = "exit";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz";
+ sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c";
+ };
+ };
+ "exit-hook-1.1.1" = {
+ name = "exit-hook";
+ packageName = "exit-hook";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz";
+ sha1 = "f05ca233b48c05d54fff07765df8507e95c02ff8";
+ };
+ };
+ "exit-on-epipe-1.0.1" = {
+ name = "exit-on-epipe";
+ packageName = "exit-on-epipe";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz";
+ sha512 = "2kxcf7dq1q9z2wqwwfjagn77kpzg2zpjqf2kd3vj5drx576gwglbsfly2b1imabj3svgcz5xsx79kspq1xsdgm4wwg1fksfnjdgjv47";
+ };
+ };
+ "expand-braces-0.1.2" = {
+ name = "expand-braces";
+ packageName = "expand-braces";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz";
+ sha1 = "488b1d1d2451cb3d3a6b192cfc030f44c5855fea";
+ };
+ };
+ "expand-brackets-0.1.5" = {
+ name = "expand-brackets";
+ packageName = "expand-brackets";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz";
+ sha1 = "df07284e342a807cd733ac5af72411e581d1177b";
+ };
+ };
+ "expand-brackets-2.1.4" = {
+ name = "expand-brackets";
+ packageName = "expand-brackets";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz";
+ sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622";
+ };
+ };
+ "expand-range-0.1.1" = {
+ name = "expand-range";
+ packageName = "expand-range";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz";
+ sha1 = "4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044";
+ };
+ };
+ "expand-range-1.8.2" = {
+ name = "expand-range";
+ packageName = "expand-range";
+ version = "1.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz";
+ sha1 = "a299effd335fe2721ebae8e257ec79644fc85337";
+ };
+ };
+ "expand-template-1.1.0" = {
+ name = "expand-template";
+ packageName = "expand-template";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-template/-/expand-template-1.1.0.tgz";
+ sha512 = "34i2f4clwy5bpzgl137zwplybp5hn6ncxq0p794cx9m0crhgk31nfy0s8wp1v6hvw90h20c268r040g892dixy6zqq1xlm3ra8g0j4j";
+ };
+ };
+ "expand-tilde-2.0.2" = {
+ name = "expand-tilde";
+ packageName = "expand-tilde";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz";
+ sha1 = "97e801aa052df02454de46b02bf621642cdc8502";
+ };
+ };
+ "express-2.5.11" = {
+ name = "express";
+ packageName = "express";
+ version = "2.5.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-2.5.11.tgz";
+ sha1 = "4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0";
+ };
+ };
+ "express-3.2.0" = {
+ name = "express";
+ packageName = "express";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-3.2.0.tgz";
+ sha1 = "7b66d6c66b038038eedf452804222b3077374ae0";
+ };
+ };
+ "express-3.21.2" = {
+ name = "express";
+ packageName = "express";
+ version = "3.21.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-3.21.2.tgz";
+ sha1 = "0c2903ee5c54e63d65a96170764703550665a3de";
+ };
+ };
+ "express-3.4.4" = {
+ name = "express";
+ packageName = "express";
+ version = "3.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-3.4.4.tgz";
+ sha1 = "0b63ae626c96b71b78d13dfce079c10351635a86";
+ };
+ };
+ "express-4.11.2" = {
+ name = "express";
+ packageName = "express";
+ version = "4.11.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-4.11.2.tgz";
+ sha1 = "8df3d5a9ac848585f00a0777601823faecd3b148";
+ };
+ };
+ "express-4.15.3" = {
+ name = "express";
+ packageName = "express";
+ version = "4.15.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-4.15.3.tgz";
+ sha1 = "bab65d0f03aa80c358408972fc700f916944b662";
+ };
+ };
+ "express-4.16.2" = {
+ name = "express";
+ packageName = "express";
+ version = "4.16.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-4.16.2.tgz";
+ sha1 = "e35c6dfe2d64b7dca0a5cd4f21781be3299e076c";
+ };
+ };
+ "express-5.0.0-alpha.6" = {
+ name = "express";
+ packageName = "express";
+ version = "5.0.0-alpha.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-5.0.0-alpha.6.tgz";
+ sha1 = "85dc44d7e90d4809041407f388f239b5bd2f681e";
+ };
+ };
+ "express-handlebars-3.0.0" = {
+ name = "express-handlebars";
+ packageName = "express-handlebars";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-handlebars/-/express-handlebars-3.0.0.tgz";
+ sha1 = "80a070bb819b09e4af2ca6d0780f75ce05e75c2f";
+ };
+ };
+ "express-json5-0.1.0" = {
+ name = "express-json5";
+ packageName = "express-json5";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-json5/-/express-json5-0.1.0.tgz";
+ sha1 = "114a514bd734b319e018a1bde337923cc455b836";
+ };
+ };
+ "express-partials-0.0.6" = {
+ name = "express-partials";
+ packageName = "express-partials";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-partials/-/express-partials-0.0.6.tgz";
+ sha1 = "b2664f15c636d5248e60fdbe29131c4440552eda";
+ };
+ };
+ "express-session-1.11.3" = {
+ name = "express-session";
+ packageName = "express-session";
+ version = "1.11.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz";
+ sha1 = "5cc98f3f5ff84ed835f91cbf0aabd0c7107400af";
+ };
+ };
+ "express-session-1.15.2" = {
+ name = "express-session";
+ packageName = "express-session";
+ version = "1.15.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-session/-/express-session-1.15.2.tgz";
+ sha1 = "d98516443a4ccb8688e1725ae584c02daa4093d4";
+ };
+ };
+ "express-session-1.15.6" = {
+ name = "express-session";
+ packageName = "express-session";
+ version = "1.15.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-session/-/express-session-1.15.6.tgz";
+ sha512 = "100j4z1046rpprbjyf9gkbq2nzj9z8g0a5sfkrdzxv929j11l2p1a3mz2isr4pi58fhvbymsfzbaxhiv4f90x062wmh7d4q60fynjdg";
+ };
+ };
+ "express-urlrewrite-1.2.0" = {
+ name = "express-urlrewrite";
+ packageName = "express-urlrewrite";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express-urlrewrite/-/express-urlrewrite-1.2.0.tgz";
+ sha1 = "8e667b7761ff1c7ffdb0efa05d64035387c823eb";
+ };
+ };
+ "ext-list-2.2.2" = {
+ name = "ext-list";
+ packageName = "ext-list";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz";
+ sha512 = "0a77zmipy5silq8yx7adj0hw82ccvshbs5alv3h8l0vk83lkm5m7pw6y2781wnbks8h98ixyn2q3q065l6m8pwbrhxa3bcvrf191r5v";
+ };
+ };
+ "ext-name-3.0.0" = {
+ name = "ext-name";
+ packageName = "ext-name";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ext-name/-/ext-name-3.0.0.tgz";
+ sha1 = "07e4418737cb1f513c32c6ea48d8b8c8e0471abb";
+ };
+ };
+ "extend-1.2.1" = {
+ name = "extend";
+ packageName = "extend";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend/-/extend-1.2.1.tgz";
+ sha1 = "a0f5fd6cfc83a5fe49ef698d60ec8a624dd4576c";
+ };
+ };
+ "extend-3.0.1" = {
+ name = "extend";
+ packageName = "extend";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz";
+ sha1 = "a755ea7bc1adfcc5a31ce7e762dbaadc5e636444";
+ };
+ };
+ "extend-shallow-2.0.1" = {
+ name = "extend-shallow";
+ packageName = "extend-shallow";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz";
+ sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
+ };
+ };
+ "extend-shallow-3.0.2" = {
+ name = "extend-shallow";
+ packageName = "extend-shallow";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz";
+ sha1 = "26a71aaf073b39fb2127172746131c2704028db8";
+ };
+ };
+ "external-editor-1.1.1" = {
+ name = "external-editor";
+ packageName = "external-editor";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/external-editor/-/external-editor-1.1.1.tgz";
+ sha1 = "12d7b0db850f7ff7e7081baf4005700060c4600b";
+ };
+ };
+ "external-editor-2.1.0" = {
+ name = "external-editor";
+ packageName = "external-editor";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/external-editor/-/external-editor-2.1.0.tgz";
+ sha512 = "366albydy3glqs8h6y7rdpdhmyffn7vaig5snw8cb1zmn22mgvfywr08jfbmqjiqc9pyjyaaqv6xz5sfy2j1y18590l4f8mji7j53hk";
+ };
+ };
+ "extglob-0.3.2" = {
+ name = "extglob";
+ packageName = "extglob";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz";
+ sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1";
+ };
+ };
+ "extglob-2.0.4" = {
+ name = "extglob";
+ packageName = "extglob";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz";
+ sha512 = "2klp0045k4wnaspb9khqx90ddv7rjg997mlyp5qz41sl2yqdrpw8g8wji77qq16aawl4yhvg0f993ln48lja0kfmy0wnbh4g50zlrin";
+ };
+ };
+ "extract-opts-3.3.1" = {
+ name = "extract-opts";
+ packageName = "extract-opts";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extract-opts/-/extract-opts-3.3.1.tgz";
+ sha1 = "5abbedc98c0d5202e3278727f9192d7e086c6be1";
+ };
+ };
+ "extract-zip-1.5.0" = {
+ name = "extract-zip";
+ packageName = "extract-zip";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz";
+ sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4";
+ };
+ };
+ "extract-zip-1.6.6" = {
+ name = "extract-zip";
+ packageName = "extract-zip";
+ version = "1.6.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.6.tgz";
+ sha1 = "1290ede8d20d0872b429fd3f351ca128ec5ef85c";
+ };
+ };
+ "extsprintf-1.0.0" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.0.tgz";
+ sha1 = "4d58b815ace5bebfc4ebf03cf98b0a7604a99b86";
+ };
+ };
+ "extsprintf-1.2.0" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz";
+ sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529";
+ };
+ };
+ "extsprintf-1.3.0" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
+ sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
+ };
+ };
+ "extsprintf-1.4.0" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz";
+ sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f";
+ };
+ };
+ "eyes-0.1.8" = {
+ name = "eyes";
+ packageName = "eyes";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz";
+ sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0";
+ };
+ };
+ "falafel-2.1.0" = {
+ name = "falafel";
+ packageName = "falafel";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/falafel/-/falafel-2.1.0.tgz";
+ sha1 = "96bb17761daba94f46d001738b3cedf3a67fe06c";
+ };
+ };
+ "fancy-log-1.3.2" = {
+ name = "fancy-log";
+ packageName = "fancy-log";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.2.tgz";
+ sha1 = "f41125e3d84f2e7d89a43d06d958c8f78be16be1";
+ };
+ };
+ "fast-deep-equal-1.0.0" = {
+ name = "fast-deep-equal";
+ packageName = "fast-deep-equal";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz";
+ sha1 = "96256a3bc975595eb36d82e9929d060d893439ff";
+ };
+ };
+ "fast-diff-1.1.2" = {
+ name = "fast-diff";
+ packageName = "fast-diff";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz";
+ sha512 = "2550z1qvyfv9js9vg2aaj57ji5d9hhg4f6zl4rf483d6xswv23ac6ipj8gbapv4sjx14dpcslqmnx1z78vvx4np4ad5mdrxwfvm98i9";
+ };
+ };
+ "fast-json-parse-1.0.3" = {
+ name = "fast-json-parse";
+ packageName = "fast-json-parse";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz";
+ sha512 = "01vq6bwp36yjvywlw5jniq4ainn8jrwxsab76bv02j77ky26qm99097g7x6j8dqrjrhfgd0vs9q6nh2milhsnsk9529s42njilsq58m";
+ };
+ };
+ "fast-json-patch-0.5.6" = {
+ name = "fast-json-patch";
+ packageName = "fast-json-patch";
+ version = "0.5.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-0.5.6.tgz";
+ sha1 = "66e4028e381eaa002edeb280d10238f3a46c3402";
+ };
+ };
+ "fast-json-patch-2.0.6" = {
+ name = "fast-json-patch";
+ packageName = "fast-json-patch";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-2.0.6.tgz";
+ sha1 = "86fff8f8662391aa819722864d632e603e6ee605";
+ };
+ };
+ "fast-json-stable-stringify-2.0.0" = {
+ name = "fast-json-stable-stringify";
+ packageName = "fast-json-stable-stringify";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
+ sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
+ };
+ };
+ "fast-levenshtein-2.0.6" = {
+ name = "fast-levenshtein";
+ packageName = "fast-levenshtein";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz";
+ sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917";
+ };
+ };
+ "fast-safe-stringify-1.2.3" = {
+ name = "fast-safe-stringify";
+ packageName = "fast-safe-stringify";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz";
+ sha512 = "2bhxs6r2hxpjfxj7ycbs3blbwbmq9nmwar4swzvhbiwcbmn721l8wk0ndyw9n3i1508rlhhm70a8fn9bpy8mx8f0ncqhqhh5pz175j0";
+ };
+ };
+ "faye-websocket-0.10.0" = {
+ name = "faye-websocket";
+ packageName = "faye-websocket";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz";
+ sha1 = "4e492f8d04dfb6f89003507f6edbf2d501e7c6f4";
+ };
+ };
+ "faye-websocket-0.11.1" = {
+ name = "faye-websocket";
+ packageName = "faye-websocket";
+ version = "0.11.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.1.tgz";
+ sha1 = "f0efe18c4f56e4f40afc7e06c719fd5ee6188f38";
+ };
+ };
+ "fbjs-0.8.16" = {
+ name = "fbjs";
+ packageName = "fbjs";
+ version = "0.8.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fbjs/-/fbjs-0.8.16.tgz";
+ sha1 = "5e67432f550dc41b572bf55847b8aca64e5337db";
+ };
+ };
+ "fd-read-stream-1.1.0" = {
+ name = "fd-read-stream";
+ packageName = "fd-read-stream";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fd-read-stream/-/fd-read-stream-1.1.0.tgz";
+ sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1";
+ };
+ };
+ "fd-slicer-1.0.1" = {
+ name = "fd-slicer";
+ packageName = "fd-slicer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz";
+ sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65";
+ };
+ };
+ "feedparser-1.1.3" = {
+ name = "feedparser";
+ packageName = "feedparser";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/feedparser/-/feedparser-1.1.3.tgz";
+ sha1 = "0b725f6b4cbe4b26d518baec0d010ad020156c8b";
+ };
+ };
+ "fibers-1.0.15" = {
+ name = "fibers";
+ packageName = "fibers";
+ version = "1.0.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fibers/-/fibers-1.0.15.tgz";
+ sha1 = "22f039c8f18b856190fbbe4decf056154c1eae9c";
+ };
+ };
+ "fields-0.1.24" = {
+ name = "fields";
+ packageName = "fields";
+ version = "0.1.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fields/-/fields-0.1.24.tgz";
+ sha1 = "bed93b1c2521f4705fe764f4209267fdfd89f5d3";
+ };
+ };
+ "fifo-0.1.4" = {
+ name = "fifo";
+ packageName = "fifo";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fifo/-/fifo-0.1.4.tgz";
+ sha1 = "bf42d87c0ad07b00d0949d12388f6289606ece34";
+ };
+ };
+ "figures-1.7.0" = {
+ name = "figures";
+ packageName = "figures";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz";
+ sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e";
+ };
+ };
+ "figures-2.0.0" = {
+ name = "figures";
+ packageName = "figures";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz";
+ sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962";
+ };
+ };
+ "file-entry-cache-2.0.0" = {
+ name = "file-entry-cache";
+ packageName = "file-entry-cache";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz";
+ sha1 = "c392990c3e684783d838b8c84a45d8a048458361";
+ };
+ };
+ "file-uri-to-path-1.0.0" = {
+ name = "file-uri-to-path";
+ packageName = "file-uri-to-path";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz";
+ sha512 = "0px1qliabg53lwfq4izc9vdll68sd08nlczi2ms5nvg7frm3y6zgy07vdvxywazab26jc723qpmh9a6h3bdp685iddzsmgvfarpx6yi";
+ };
+ };
+ "filename-regex-2.0.1" = {
+ name = "filename-regex";
+ packageName = "filename-regex";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz";
+ sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26";
+ };
+ };
+ "filesize-3.5.11" = {
+ name = "filesize";
+ packageName = "filesize";
+ version = "3.5.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz";
+ sha512 = "3bg35im21jf6dhyrcajczdjl3rjm5mphdhansyfbpzm067vv3jp91n43nrzxf8q6nx3b5vkn2my1rskyp4pmg91xzdq01lawyifazk4";
+ };
+ };
+ "fill-range-2.2.3" = {
+ name = "fill-range";
+ packageName = "fill-range";
+ version = "2.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz";
+ sha1 = "50b77dfd7e469bc7492470963699fe7a8485a723";
+ };
+ };
+ "fill-range-4.0.0" = {
+ name = "fill-range";
+ packageName = "fill-range";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz";
+ sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7";
+ };
+ };
+ "filled-array-1.1.0" = {
+ name = "filled-array";
+ packageName = "filled-array";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filled-array/-/filled-array-1.1.0.tgz";
+ sha1 = "c3c4f6c663b923459a9aa29912d2d031f1507f84";
+ };
+ };
+ "filter-obj-1.1.0" = {
+ name = "filter-obj";
+ packageName = "filter-obj";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz";
+ sha1 = "9b311112bc6c6127a16e016c6c5d7f19e0805c5b";
+ };
+ };
+ "finalhandler-0.3.3" = {
+ name = "finalhandler";
+ packageName = "finalhandler";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.3.3.tgz";
+ sha1 = "b1a09aa1e6a607b3541669b09bcb727f460cd426";
+ };
+ };
+ "finalhandler-0.4.0" = {
+ name = "finalhandler";
+ packageName = "finalhandler";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz";
+ sha1 = "965a52d9e8d05d2b857548541fb89b53a2497d9b";
+ };
+ };
+ "finalhandler-0.5.1" = {
+ name = "finalhandler";
+ packageName = "finalhandler";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.5.1.tgz";
+ sha1 = "2c400d8d4530935bc232549c5fa385ec07de6fcd";
+ };
+ };
+ "finalhandler-1.0.6" = {
+ name = "finalhandler";
+ packageName = "finalhandler";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.6.tgz";
+ sha1 = "007aea33d1a4d3e42017f624848ad58d212f814f";
+ };
+ };
+ "finalhandler-1.1.0" = {
+ name = "finalhandler";
+ packageName = "finalhandler";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.0.tgz";
+ sha1 = "ce0b6855b45853e791b2fcc680046d88253dd7f5";
+ };
+ };
+ "find-elm-dependencies-1.0.2" = {
+ name = "find-elm-dependencies";
+ packageName = "find-elm-dependencies";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-elm-dependencies/-/find-elm-dependencies-1.0.2.tgz";
+ sha512 = "2hpc7v115prqkr487hxh0gllwvf0xa90lsb3i1azmrpfclp37vahxvdsqkr9pwvbcr7znccvhfgp1xy26czrmdcxzfl250a63dywyw2";
+ };
+ };
+ "find-index-0.1.1" = {
+ name = "find-index";
+ packageName = "find-index";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz";
+ sha1 = "675d358b2ca3892d795a1ab47232f8b6e2e0dde4";
+ };
+ };
+ "find-parent-dir-0.3.0" = {
+ name = "find-parent-dir";
+ packageName = "find-parent-dir";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-parent-dir/-/find-parent-dir-0.3.0.tgz";
+ sha1 = "33c44b429ab2b2f0646299c5f9f718f376ff8d54";
+ };
+ };
+ "find-up-1.1.2" = {
+ name = "find-up";
+ packageName = "find-up";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz";
+ sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f";
+ };
+ };
+ "find-up-2.1.0" = {
+ name = "find-up";
+ packageName = "find-up";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz";
+ sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
+ };
+ };
+ "find-versions-1.2.1" = {
+ name = "find-versions";
+ packageName = "find-versions";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-versions/-/find-versions-1.2.1.tgz";
+ sha1 = "cbde9f12e38575a0af1be1b9a2c5d5fd8f186b62";
+ };
+ };
+ "findit-1.2.0" = {
+ name = "findit";
+ packageName = "findit";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/findit/-/findit-1.2.0.tgz";
+ sha1 = "f571a3a840749ae8b0cbf4bf43ced7659eec3ce8";
+ };
+ };
+ "findit-2.0.0" = {
+ name = "findit";
+ packageName = "findit";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/findit/-/findit-2.0.0.tgz";
+ sha1 = "6509f0126af4c178551cfa99394e032e13a4d56e";
+ };
+ };
+ "findup-sync-0.3.0" = {
+ name = "findup-sync";
+ packageName = "findup-sync";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz";
+ sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16";
+ };
+ };
+ "findup-sync-2.0.0" = {
+ name = "findup-sync";
+ packageName = "findup-sync";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz";
+ sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc";
+ };
+ };
+ "fined-1.1.0" = {
+ name = "fined";
+ packageName = "fined";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fined/-/fined-1.1.0.tgz";
+ sha1 = "b37dc844b76a2f5e7081e884f7c0ae344f153476";
+ };
+ };
+ "firefox-client-0.3.0" = {
+ name = "firefox-client";
+ packageName = "firefox-client";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/firefox-client/-/firefox-client-0.3.0.tgz";
+ sha1 = "3794460f6eb6afcf41376addcbc7462e24a4cd8b";
+ };
+ };
+ "firefox-profile-1.1.0" = {
+ name = "firefox-profile";
+ packageName = "firefox-profile";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/firefox-profile/-/firefox-profile-1.1.0.tgz";
+ sha512 = "2l8ynyw9d8c738q8m19qia09kaflqri5k8dx7z3rp3xv4aa338byrhqdmycxf4if11rr89zbssrib40jxlrks2nph3hm3w00zhh8hn1";
+ };
+ };
+ "first-chunk-stream-1.0.0" = {
+ name = "first-chunk-stream";
+ packageName = "first-chunk-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz";
+ sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e";
+ };
+ };
+ "first-chunk-stream-2.0.0" = {
+ name = "first-chunk-stream";
+ packageName = "first-chunk-stream";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz";
+ sha1 = "1bdecdb8e083c0664b91945581577a43a9f31d70";
+ };
+ };
+ "firstline-1.2.0" = {
+ name = "firstline";
+ packageName = "firstline";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/firstline/-/firstline-1.2.0.tgz";
+ sha1 = "c9f4886e7f7fbf0afc12d71941dce06b192aea05";
+ };
+ };
+ "firstline-1.2.1" = {
+ name = "firstline";
+ packageName = "firstline";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/firstline/-/firstline-1.2.1.tgz";
+ sha1 = "b88673c42009f8821fac2926e99720acee924fae";
+ };
+ };
+ "flagged-respawn-1.0.0" = {
+ name = "flagged-respawn";
+ packageName = "flagged-respawn";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.0.tgz";
+ sha1 = "4e79ae9b2eb38bf86b3bb56bf3e0a56aa5fcabd7";
+ };
+ };
+ "flat-cache-1.3.0" = {
+ name = "flat-cache";
+ packageName = "flat-cache";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz";
+ sha1 = "d3030b32b38154f4e3b7e9c709f490f7ef97c481";
+ };
+ };
+ "flat-tree-1.6.0" = {
+ name = "flat-tree";
+ packageName = "flat-tree";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flat-tree/-/flat-tree-1.6.0.tgz";
+ sha1 = "fca30cddb9006fb656eb5ebc79aeb274e7fde9ed";
+ };
+ };
+ "flatiron-0.4.3" = {
+ name = "flatiron";
+ packageName = "flatiron";
+ version = "0.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flatiron/-/flatiron-0.4.3.tgz";
+ sha1 = "248cf79a3da7d7dc379e2a11c92a2719cbb540f6";
+ };
+ };
+ "flatstr-1.0.5" = {
+ name = "flatstr";
+ packageName = "flatstr";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flatstr/-/flatstr-1.0.5.tgz";
+ sha1 = "5b451b08cbd48e2eac54a2bbe0bf46165aa14be3";
+ };
+ };
+ "flatten-0.0.1" = {
+ name = "flatten";
+ packageName = "flatten";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flatten/-/flatten-0.0.1.tgz";
+ sha1 = "554440766da0a0d603999f433453f6c2fc6a75c1";
+ };
+ };
+ "fluent-0.4.1" = {
+ name = "fluent";
+ packageName = "fluent";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fluent/-/fluent-0.4.1.tgz";
+ sha512 = "2hrbkg2399py60vsz1k5xydrm5kwfh1f6fpgpbkrs9nni1xpq4isy8aif5jq5dakyksbf0yjx3sh7jl9f54c3r6jkf3amm3grxlbaxx";
+ };
+ };
+ "fluent-ffmpeg-2.1.2" = {
+ name = "fluent-ffmpeg";
+ packageName = "fluent-ffmpeg";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-2.1.2.tgz";
+ sha1 = "c952de2240f812ebda0aa8006d7776ee2acf7d74";
+ };
+ };
+ "follow-redirects-0.0.3" = {
+ name = "follow-redirects";
+ packageName = "follow-redirects";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-0.0.3.tgz";
+ sha1 = "6ce67a24db1fe13f226c1171a72a7ef2b17b8f65";
+ };
+ };
+ "follow-redirects-1.0.0" = {
+ name = "follow-redirects";
+ packageName = "follow-redirects";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.0.0.tgz";
+ sha1 = "8e34298cbd2e176f254effec75a1c78cc849fd37";
+ };
+ };
+ "follow-redirects-1.2.4" = {
+ name = "follow-redirects";
+ packageName = "follow-redirects";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.2.4.tgz";
+ sha512 = "2mxs6nll208xgqy9asgc0iq4k9ynd2aanig2qkfi3drd8axdafhhx36a58ssksmjgl6s1m2bh2j8igrlpm3k11cg58nhmqbxhlkmv2a";
+ };
+ };
+ "follow-redirects-1.4.1" = {
+ name = "follow-redirects";
+ packageName = "follow-redirects";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.4.1.tgz";
+ sha512 = "2z7ai3f3g9j48z90kds4070nb8v2q02n7131c2zjplb0zfjxjrd1m2fm8ykg7psj8fiwc4iidn2g9rr2w09qijbssddr0p8acyiw5mv";
+ };
+ };
+ "for-each-0.3.2" = {
+ name = "for-each";
+ packageName = "for-each";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz";
+ sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4";
+ };
+ };
+ "for-in-0.1.8" = {
+ name = "for-in";
+ packageName = "for-in";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz";
+ sha1 = "d8773908e31256109952b1fdb9b3fa867d2775e1";
+ };
+ };
+ "for-in-1.0.2" = {
+ name = "for-in";
+ packageName = "for-in";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
+ sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
+ };
+ };
+ "for-own-0.1.5" = {
+ name = "for-own";
+ packageName = "for-own";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz";
+ sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce";
+ };
+ };
+ "for-own-1.0.0" = {
+ name = "for-own";
+ packageName = "for-own";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz";
+ sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b";
+ };
+ };
+ "foreach-2.0.5" = {
+ name = "foreach";
+ packageName = "foreach";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz";
+ sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99";
+ };
+ };
+ "foreachasync-3.0.0" = {
+ name = "foreachasync";
+ packageName = "foreachasync";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz";
+ sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6";
+ };
+ };
+ "forever-agent-0.2.0" = {
+ name = "forever-agent";
+ packageName = "forever-agent";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz";
+ sha1 = "e1c25c7ad44e09c38f233876c76fcc24ff843b1f";
+ };
+ };
+ "forever-agent-0.6.1" = {
+ name = "forever-agent";
+ packageName = "forever-agent";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
+ sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
+ };
+ };
+ "forever-monitor-1.7.1" = {
+ name = "forever-monitor";
+ packageName = "forever-monitor";
+ version = "1.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forever-monitor/-/forever-monitor-1.7.1.tgz";
+ sha1 = "5d820f4a3a78db2d81ae2671f158b9e86a091bb8";
+ };
+ };
+ "form-data-0.0.10" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "0.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz";
+ sha1 = "db345a5378d86aeeb1ed5d553b869ac192d2f5ed";
+ };
+ };
+ "form-data-0.1.3" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz";
+ sha1 = "4ee4346e6eb5362e8344a02075bd8dbd8c7373ea";
+ };
+ };
+ "form-data-1.0.1" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz";
+ sha1 = "ae315db9a4907fa065502304a66d7733475ee37c";
+ };
+ };
+ "form-data-2.0.0" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.0.0.tgz";
+ sha1 = "6f0aebadcc5da16c13e1ecc11137d85f9b883b25";
+ };
+ };
+ "form-data-2.1.4" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
+ sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
+ };
+ };
+ "form-data-2.3.1" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz";
+ sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf";
+ };
+ };
+ "formidable-1.0.11" = {
+ name = "formidable";
+ packageName = "formidable";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/formidable/-/formidable-1.0.11.tgz";
+ sha1 = "68f63325a035e644b6f7bb3d11243b9761de1b30";
+ };
+ };
+ "formidable-1.0.14" = {
+ name = "formidable";
+ packageName = "formidable";
+ version = "1.0.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/formidable/-/formidable-1.0.14.tgz";
+ sha1 = "2b3f4c411cbb5fdd695c44843e2a23514a43231a";
+ };
+ };
+ "formidable-1.0.17" = {
+ name = "formidable";
+ packageName = "formidable";
+ version = "1.0.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/formidable/-/formidable-1.0.17.tgz";
+ sha1 = "ef5491490f9433b705faa77249c99029ae348559";
+ };
+ };
+ "formidable-1.1.1" = {
+ name = "formidable";
+ packageName = "formidable";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/formidable/-/formidable-1.1.1.tgz";
+ sha1 = "96b8886f7c3c3508b932d6bd70c4d3a88f35f1a9";
+ };
+ };
+ "forwarded-0.1.2" = {
+ name = "forwarded";
+ packageName = "forwarded";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz";
+ sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84";
+ };
+ };
+ "fragment-cache-0.2.1" = {
+ name = "fragment-cache";
+ packageName = "fragment-cache";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz";
+ sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19";
+ };
+ };
+ "fresh-0.1.0" = {
+ name = "fresh";
+ packageName = "fresh";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.1.0.tgz";
+ sha1 = "03e4b0178424e4c2d5d19a54d8814cdc97934850";
+ };
+ };
+ "fresh-0.2.0" = {
+ name = "fresh";
+ packageName = "fresh";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.2.0.tgz";
+ sha1 = "bfd9402cf3df12c4a4c310c79f99a3dde13d34a7";
+ };
+ };
+ "fresh-0.2.4" = {
+ name = "fresh";
+ packageName = "fresh";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.2.4.tgz";
+ sha1 = "3582499206c9723714190edd74b4604feb4a614c";
+ };
+ };
+ "fresh-0.3.0" = {
+ name = "fresh";
+ packageName = "fresh";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz";
+ sha1 = "651f838e22424e7566de161d8358caa199f83d4f";
+ };
+ };
+ "fresh-0.5.0" = {
+ name = "fresh";
+ packageName = "fresh";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz";
+ sha1 = "f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e";
+ };
+ };
+ "fresh-0.5.2" = {
+ name = "fresh";
+ packageName = "fresh";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz";
+ sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7";
+ };
+ };
+ "from-0.1.7" = {
+ name = "from";
+ packageName = "from";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/from/-/from-0.1.7.tgz";
+ sha1 = "83c60afc58b9c56997007ed1a768b3ab303a44fe";
+ };
+ };
+ "from2-1.3.0" = {
+ name = "from2";
+ packageName = "from2";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/from2/-/from2-1.3.0.tgz";
+ sha1 = "88413baaa5f9a597cfde9221d86986cd3c061dfd";
+ };
+ };
+ "from2-2.3.0" = {
+ name = "from2";
+ packageName = "from2";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
+ sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
+ };
+ };
+ "fs-blob-store-5.2.1" = {
+ name = "fs-blob-store";
+ packageName = "fs-blob-store";
+ version = "5.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-blob-store/-/fs-blob-store-5.2.1.tgz";
+ sha1 = "2a7db7ef59a5ec548cce8564066508224c9b0457";
+ };
+ };
+ "fs-chunk-store-1.6.5" = {
+ name = "fs-chunk-store";
+ packageName = "fs-chunk-store";
+ version = "1.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-1.6.5.tgz";
+ sha1 = "fc42c2ff4c7f1688ab5fd41cf17c0f9ece4c6156";
+ };
+ };
+ "fs-ext-0.6.0" = {
+ name = "fs-ext";
+ packageName = "fs-ext";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-ext/-/fs-ext-0.6.0.tgz";
+ sha1 = "27d32a72e2e7c3c8001712a0f307f5f8d91dfc66";
+ };
+ };
+ "fs-extra-0.26.7" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "0.26.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz";
+ sha1 = "9ae1fdd94897798edab76d0918cf42d0c3184fa9";
+ };
+ };
+ "fs-extra-0.30.0" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "0.30.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.30.0.tgz";
+ sha1 = "f233ffcc08d4da7d432daa449776989db1df93f0";
+ };
+ };
+ "fs-extra-0.6.4" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "0.6.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.6.4.tgz";
+ sha1 = "f46f0c75b7841f8d200b3348cd4d691d5a099d15";
+ };
+ };
+ "fs-extra-1.0.0" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz";
+ sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950";
+ };
+ };
+ "fs-extra-2.1.2" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz";
+ sha1 = "046c70163cef9aad46b0e4a7fa467fb22d71de35";
+ };
+ };
+ "fs-extra-4.0.3" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz";
+ sha512 = "05bphjab1lk12dz3qf87dywgpsjsx0f59kpligxqph53yicigij2gsmvkppgyhpi70h3q3id3ymz30c02v3pphakn06k8vm6xsdpamb";
+ };
+ };
+ "fs-extra-5.0.0" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz";
+ sha512 = "1ssfaw678600iy330a73gqk65ns22sz4ng7jwndj1fxahj8qddrsy2w4mr4ikx28qhdj8rf49n428qnl657bbpag9r3g3qv2vhyd8zb";
+ };
+ };
+ "fs-minipass-1.2.5" = {
+ name = "fs-minipass";
+ packageName = "fs-minipass";
+ version = "1.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz";
+ sha512 = "2hpc9wbzrndi5bswg9q9hwxmg4yd99zbvssxnz6g04clj68qhd8c83zn282v3q7f9h1xi7c4lmnn341nlgfpwby2k14738pr796a416";
+ };
+ };
+ "fs.extra-1.3.2" = {
+ name = "fs.extra";
+ packageName = "fs.extra";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs.extra/-/fs.extra-1.3.2.tgz";
+ sha1 = "dd023f93013bee24531f1b33514c37b20fd93349";
+ };
+ };
+ "fs.notify-0.0.4" = {
+ name = "fs.notify";
+ packageName = "fs.notify";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs.notify/-/fs.notify-0.0.4.tgz";
+ sha1 = "63284d45a34b52ce60088a6ddbec5b776d3c013d";
+ };
+ };
+ "fs.realpath-1.0.0" = {
+ name = "fs.realpath";
+ packageName = "fs.realpath";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
+ sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
+ };
+ };
+ "fsevents-1.1.2" = {
+ name = "fsevents";
+ packageName = "fsevents";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.2.tgz";
+ sha512 = "25k3z64r4fhzjs1crh981lkkvkrhn2xv67k7y00zpnpsl571y5apg0r0kanddirms8kxf2xgf4yx9n2hzs9ml3v3p9qcnqhkh9khzja";
+ };
+ };
+ "fsevents-1.1.3" = {
+ name = "fsevents";
+ packageName = "fsevents";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fsevents/-/fsevents-1.1.3.tgz";
+ sha512 = "3jw51f4iayxvp9wfxczk1xgcvhsydhlgah64jmpl0mqiii2h8i5pp0lrqac5xn7296gxqrvy4lgm4k4hkifk8gipgqxd68x764gp2jq";
+ };
+ };
+ "fstream-0.1.31" = {
+ name = "fstream";
+ packageName = "fstream";
+ version = "0.1.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz";
+ sha1 = "7337f058fbbbbefa8c9f561a28cab0849202c988";
+ };
+ };
+ "fstream-1.0.11" = {
+ name = "fstream";
+ packageName = "fstream";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
+ sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
+ };
+ };
+ "fstream-ignore-1.0.5" = {
+ name = "fstream-ignore";
+ packageName = "fstream-ignore";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz";
+ sha1 = "9c31dae34767018fe1d249b24dada67d092da105";
+ };
+ };
+ "ftp-0.3.10" = {
+ name = "ftp";
+ packageName = "ftp";
+ version = "0.3.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz";
+ sha1 = "9197d861ad8142f3e63d5a83bfe4c59f7330885d";
+ };
+ };
+ "fullname-3.3.0" = {
+ name = "fullname";
+ packageName = "fullname";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fullname/-/fullname-3.3.0.tgz";
+ sha1 = "a08747d6921229610b8178b7614fce10cb185f5a";
+ };
+ };
+ "function-bind-1.1.1" = {
+ name = "function-bind";
+ packageName = "function-bind";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz";
+ sha512 = "38chm1mh077ksx6hy2sssfz4q29hf0ncb9k6ila7si54zqcpl5fxd1rh6wi82blqp7jcspf4aynr7jqhbsg2yc9y42xpqqp6c1jz2n8";
+ };
+ };
+ "functional-red-black-tree-1.0.1" = {
+ name = "functional-red-black-tree";
+ packageName = "functional-red-black-tree";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz";
+ sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
+ };
+ };
+ "fx-runner-1.0.8" = {
+ name = "fx-runner";
+ packageName = "fx-runner";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.8.tgz";
+ sha1 = "5ced3b04a8d51d634de20d1480f0dc5dd8325dec";
+ };
+ };
+ "galaxy-0.1.12" = {
+ name = "galaxy";
+ packageName = "galaxy";
+ version = "0.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/galaxy/-/galaxy-0.1.12.tgz";
+ sha1 = "0c989774f2870c69378aa665648cdc60f343aa53";
+ };
+ };
+ "gauge-1.2.7" = {
+ name = "gauge";
+ packageName = "gauge";
+ version = "1.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gauge/-/gauge-1.2.7.tgz";
+ sha1 = "e9cec5483d3d4ee0ef44b60a7d99e4935e136d93";
+ };
+ };
+ "gauge-2.7.4" = {
+ name = "gauge";
+ packageName = "gauge";
+ version = "2.7.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
+ sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
+ };
+ };
+ "gaze-0.5.2" = {
+ name = "gaze";
+ packageName = "gaze";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz";
+ sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f";
+ };
+ };
+ "gelf-stream-1.1.1" = {
+ name = "gelf-stream";
+ packageName = "gelf-stream";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gelf-stream/-/gelf-stream-1.1.1.tgz";
+ sha1 = "9cea9b6386ac301c741838ca3cb91e66dbfbf669";
+ };
+ };
+ "gelfling-0.3.1" = {
+ name = "gelfling";
+ packageName = "gelfling";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gelfling/-/gelfling-0.3.1.tgz";
+ sha1 = "336a98f81510f9ae0af2a494e17468a116a9dc04";
+ };
+ };
+ "generate-function-2.0.0" = {
+ name = "generate-function";
+ packageName = "generate-function";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz";
+ sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74";
+ };
+ };
+ "generate-object-property-1.2.0" = {
+ name = "generate-object-property";
+ packageName = "generate-object-property";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz";
+ sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0";
+ };
+ };
+ "generic-pool-2.2.0" = {
+ name = "generic-pool";
+ packageName = "generic-pool";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/generic-pool/-/generic-pool-2.2.0.tgz";
+ sha1 = "8b465c1a7588ea9dd2bb133bda0bb66bfef8a63e";
+ };
+ };
+ "get-browser-rtc-1.0.2" = {
+ name = "get-browser-rtc";
+ packageName = "get-browser-rtc";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-browser-rtc/-/get-browser-rtc-1.0.2.tgz";
+ sha1 = "bbcd40c8451a7ed4ef5c373b8169a409dd1d11d9";
+ };
+ };
+ "get-caller-file-1.0.2" = {
+ name = "get-caller-file";
+ packageName = "get-caller-file";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz";
+ sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5";
+ };
+ };
+ "get-func-name-2.0.0" = {
+ name = "get-func-name";
+ packageName = "get-func-name";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz";
+ sha1 = "ead774abee72e20409433a066366023dd6887a41";
+ };
+ };
"get-pkg-repo-1.4.0" = {
name = "get-pkg-repo";
packageName = "get-pkg-repo";
@@ -17703,6 +10014,87 @@ let
sha1 = "c73b489c06d80cc5536c2c853f9e05232056972d";
};
};
+ "get-port-3.2.0" = {
+ name = "get-port";
+ packageName = "get-port";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz";
+ sha1 = "dd7ce7de187c06c8bf353796ac71e099f0980ebc";
+ };
+ };
+ "get-stdin-4.0.1" = {
+ name = "get-stdin";
+ packageName = "get-stdin";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz";
+ sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe";
+ };
+ };
+ "get-stdin-5.0.1" = {
+ name = "get-stdin";
+ packageName = "get-stdin";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz";
+ sha1 = "122e161591e21ff4c52530305693f20e6393a398";
+ };
+ };
+ "get-stream-3.0.0" = {
+ name = "get-stream";
+ packageName = "get-stream";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz";
+ sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14";
+ };
+ };
+ "get-uri-2.0.1" = {
+ name = "get-uri";
+ packageName = "get-uri";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-uri/-/get-uri-2.0.1.tgz";
+ sha512 = "10bm7v59d4pv7pk0smv9qwl8rp1iq60d20jdybycdpjqv85gdirf00kci8m5fz16gja9i5l60yxgiqzafj1195disavn21anrbab9zd";
+ };
+ };
+ "get-value-2.0.6" = {
+ name = "get-value";
+ packageName = "get-value";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz";
+ sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
+ };
+ };
+ "getmac-1.2.1" = {
+ name = "getmac";
+ packageName = "getmac";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/getmac/-/getmac-1.2.1.tgz";
+ sha1 = "0d095fd0627850043eac1dcfa0b120bbdc1426d1";
+ };
+ };
+ "getpass-0.1.7" = {
+ name = "getpass";
+ packageName = "getpass";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
+ sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
+ };
+ };
+ "gettext-parser-1.1.0" = {
+ name = "gettext-parser";
+ packageName = "gettext-parser";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gettext-parser/-/gettext-parser-1.1.0.tgz";
+ sha1 = "2c5a6638d893934b9b55037d0ad82cb7004b2679";
+ };
+ };
"git-raw-commits-1.3.0" = {
name = "git-raw-commits";
packageName = "git-raw-commits";
@@ -17721,6 +10113,15 @@ let
sha1 = "5282659dae2107145a11126112ad3216ec5fa65f";
};
};
+ "git-rev-sync-1.9.1" = {
+ name = "git-rev-sync";
+ packageName = "git-rev-sync";
+ version = "1.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/git-rev-sync/-/git-rev-sync-1.9.1.tgz";
+ sha1 = "a0c2e3dd392abcf6b76962e27fc75fb3223449ce";
+ };
+ };
"git-semver-tags-1.2.3" = {
name = "git-semver-tags";
packageName = "git-semver-tags";
@@ -17730,96 +10131,6 @@ let
sha1 = "188b453882bf9d7a23afd31baba537dab7388d5d";
};
};
- "conventional-commits-filter-1.1.1" = {
- name = "conventional-commits-filter";
- packageName = "conventional-commits-filter";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-1.1.1.tgz";
- sha512 = "0jrsm3hlyq0a425d320l1rghxmmb621r0bcvlsfbdichzbyimflwn7wz1mhw62kdnr3wxskdpaq11f5qpdsz5g2d5f7ha4d4jvrl33d";
- };
- };
- "is-subset-0.1.1" = {
- name = "is-subset";
- packageName = "is-subset";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz";
- sha1 = "8a59117d932de1de00f245fcdd39ce43f1e939a6";
- };
- };
- "modify-values-1.0.0" = {
- name = "modify-values";
- packageName = "modify-values";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.0.tgz";
- sha1 = "e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2";
- };
- };
- "is-text-path-1.0.1" = {
- name = "is-text-path";
- packageName = "is-text-path";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz";
- sha1 = "4e1aa0fb51bfbcb3e92688001397202c1775b66e";
- };
- };
- "trim-off-newlines-1.0.1" = {
- name = "trim-off-newlines";
- packageName = "trim-off-newlines";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz";
- sha1 = "9f9ba9d9efa8764c387698bcbfeb2c848f11adb3";
- };
- };
- "text-extensions-1.7.0" = {
- name = "text-extensions";
- packageName = "text-extensions";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/text-extensions/-/text-extensions-1.7.0.tgz";
- sha512 = "015f82dnl58mcjf4c86lxlf2j66nhvnif56475x720bl73pkx3pvds7g2njz19ksbmbqag25rl4wij1xb6yd3in9cd4bpxn79wdk980";
- };
- };
- "parse-github-repo-url-1.4.1" = {
- name = "parse-github-repo-url";
- packageName = "parse-github-repo-url";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz";
- sha1 = "9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50";
- };
- };
- "dargs-4.1.0" = {
- name = "dargs";
- packageName = "dargs";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dargs/-/dargs-4.1.0.tgz";
- sha1 = "03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17";
- };
- };
- "lodash.template-4.4.0" = {
- name = "lodash.template";
- packageName = "lodash.template";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz";
- sha1 = "e73a0385c8355591746e020b99679c690e68fba0";
- };
- };
- "lodash.templatesettings-4.1.0" = {
- name = "lodash.templatesettings";
- packageName = "lodash.templatesettings";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz";
- sha1 = "2b4d4e95ba440d915ff08bc899e4553666713316";
- };
- };
"gitconfiglocal-1.0.0" = {
name = "gitconfiglocal";
packageName = "gitconfiglocal";
@@ -17829,364 +10140,22 @@ let
sha1 = "41d045f3851a5ea88f03f24ca1c6178114464b9b";
};
};
- "jsonfile-4.0.0" = {
- name = "jsonfile";
- packageName = "jsonfile";
- version = "4.0.0";
+ "github-0.1.6" = {
+ name = "github";
+ packageName = "github";
+ version = "0.1.6";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz";
- sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb";
+ url = "https://registry.npmjs.org/github/-/github-0.1.6.tgz";
+ sha1 = "1344e694f8d20ef9b29bcbfd1ca5eb4f7a287922";
};
};
- "path-dirname-1.0.2" = {
- name = "path-dirname";
- packageName = "path-dirname";
- version = "1.0.2";
+ "github-from-package-0.0.0" = {
+ name = "github-from-package";
+ packageName = "github-from-package";
+ version = "0.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
- sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
- };
- };
- "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";
- };
- };
- "strip-bom-3.0.0" = {
- name = "strip-bom";
- packageName = "strip-bom";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz";
- sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3";
- };
- };
- "are-we-there-yet-1.1.4" = {
- name = "are-we-there-yet";
- packageName = "are-we-there-yet";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz";
- sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d";
- };
- };
- "console-control-strings-1.1.0" = {
- name = "console-control-strings";
- packageName = "console-control-strings";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
- sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
- };
- };
- "gauge-2.7.4" = {
- name = "gauge";
- packageName = "gauge";
- version = "2.7.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
- sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
- };
- };
- "delegates-1.0.0" = {
- name = "delegates";
- packageName = "delegates";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
- sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
- };
- };
- "aproba-1.2.0" = {
- name = "aproba";
- packageName = "aproba";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
- sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3";
- };
- };
- "has-unicode-2.0.1" = {
- name = "has-unicode";
- packageName = "has-unicode";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
- sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
- };
- };
- "wide-align-1.1.2" = {
- name = "wide-align";
- packageName = "wide-align";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
- sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
- };
- };
- "load-json-file-2.0.0" = {
- name = "load-json-file";
- packageName = "load-json-file";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz";
- sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8";
- };
- };
- "path-type-2.0.0" = {
- name = "path-type";
- packageName = "path-type";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz";
- sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73";
- };
- };
- "byline-5.0.0" = {
- name = "byline";
- packageName = "byline";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz";
- sha1 = "741c5216468eadc457b03410118ad77de8c1ddb1";
- };
- };
- "minimist-0.1.0" = {
- name = "minimist";
- packageName = "minimist";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz";
- sha1 = "99df657a52574c21c9057497df742790b2b4c0de";
- };
- };
- "temp-dir-1.0.0" = {
- name = "temp-dir";
- packageName = "temp-dir";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz";
- sha1 = "0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d";
- };
- };
- "sort-keys-2.0.0" = {
- name = "sort-keys";
- packageName = "sort-keys";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz";
- sha1 = "658535584861ec97d730d6cf41822e1f56684128";
- };
- };
- "read-pkg-up-2.0.0" = {
- name = "read-pkg-up";
- packageName = "read-pkg-up";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz";
- sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be";
- };
- };
- "yargs-parser-7.0.0" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "7.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz";
- sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9";
- };
- };
- "vinyl-1.2.0" = {
- name = "vinyl";
- packageName = "vinyl";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz";
- sha1 = "5c88036cf565e5df05558bfc911f8656df218884";
- };
- };
- "vinyl-fs-2.4.4" = {
- name = "vinyl-fs";
- packageName = "vinyl-fs";
- version = "2.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz";
- sha1 = "be6ff3270cb55dfd7d3063640de81f25d7532239";
- };
- };
- "glob-stream-5.3.5" = {
- name = "glob-stream";
- packageName = "glob-stream";
- version = "5.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz";
- sha1 = "a55665a9a8ccdc41915a87c701e32d4e016fad22";
- };
- };
- "gulp-sourcemaps-1.6.0" = {
- name = "gulp-sourcemaps";
- packageName = "gulp-sourcemaps";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz";
- sha1 = "b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c";
- };
- };
- "is-valid-glob-0.3.0" = {
- name = "is-valid-glob";
- packageName = "is-valid-glob";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz";
- sha1 = "d4b55c69f51886f9b65c70d6c2622d37e29f48fe";
- };
- };
- "merge-stream-1.0.1" = {
- name = "merge-stream";
- packageName = "merge-stream";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz";
- sha1 = "4041202d508a342ba00174008df0c251b8c135e1";
- };
- };
- "strip-bom-stream-1.0.0" = {
- name = "strip-bom-stream";
- packageName = "strip-bom-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz";
- sha1 = "e7144398577d51a6bed0fa1994fa05f43fd988ee";
- };
- };
- "through2-filter-2.0.0" = {
- name = "through2-filter";
- packageName = "through2-filter";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz";
- sha1 = "60bc55a0dacb76085db1f9dae99ab43f83d622ec";
- };
- };
- "vali-date-1.0.0" = {
- name = "vali-date";
- packageName = "vali-date";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz";
- sha1 = "1b904a59609fb328ef078138420934f6b86709a6";
- };
- };
- "ordered-read-streams-0.3.0" = {
- name = "ordered-read-streams";
- packageName = "ordered-read-streams";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz";
- sha1 = "7137e69b3298bb342247a1bbee3881c80e2fd78b";
- };
- };
- "to-absolute-glob-0.1.1" = {
- name = "to-absolute-glob";
- packageName = "to-absolute-glob";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz";
- sha1 = "1cdfa472a9ef50c239ee66999b662ca0eb39937f";
- };
- };
- "unique-stream-2.2.1" = {
- name = "unique-stream";
- packageName = "unique-stream";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz";
- sha1 = "5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369";
- };
- };
- "json-stable-stringify-1.0.1" = {
- name = "json-stable-stringify";
- packageName = "json-stable-stringify";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
- sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
- };
- };
- "markdown-it-8.4.0" = {
- name = "markdown-it";
- packageName = "markdown-it";
- version = "8.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.0.tgz";
- sha512 = "0c0jpdfbi4fmqyjc2ilwvinxyc8rn4p9j7fwshh2c00nkc0q2lh6yw2dgragvnpy8bjhcwa1hlfy2ih2ih3np78wrpqx7gf4w48xnxl";
- };
- };
- "markdown-it-emoji-1.4.0" = {
- name = "markdown-it-emoji";
- packageName = "markdown-it-emoji";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz";
- sha1 = "9bee0e9a990a963ba96df6980c4fddb05dfb4dcc";
- };
- };
- "markdown-it-github-headings-1.1.0" = {
- name = "markdown-it-github-headings";
- packageName = "markdown-it-github-headings";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it-github-headings/-/markdown-it-github-headings-1.1.0.tgz";
- sha1 = "d6f73da5276ded956861337189addf3d52b93558";
- };
- };
- "markdown-it-task-checkbox-1.0.5" = {
- name = "markdown-it-task-checkbox";
- packageName = "markdown-it-task-checkbox";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it-task-checkbox/-/markdown-it-task-checkbox-1.0.5.tgz";
- sha512 = "0fcw45p4gcm7nqn091vj5bpds1qg866pqzrjr0l5br39nq26h7kl9h2c9ryz9f7g1kjfb8d5fnd57jpn9m46wnpl817f88q99ad7542";
- };
- };
- "socket.io-2.0.4" = {
- name = "socket.io";
- packageName = "socket.io";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-2.0.4.tgz";
- sha1 = "c1a4590ceff87ecf13c72652f046f716b29e6014";
- };
- };
- "linkify-it-2.0.3" = {
- name = "linkify-it";
- packageName = "linkify-it";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/linkify-it/-/linkify-it-2.0.3.tgz";
- sha1 = "d94a4648f9b1c179d64fa97291268bdb6ce9434f";
- };
- };
- "mdurl-1.0.1" = {
- name = "mdurl";
- packageName = "mdurl";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz";
- sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e";
- };
- };
- "uc.micro-1.0.3" = {
- name = "uc.micro";
- packageName = "uc.micro";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.3.tgz";
- sha1 = "7ed50d5e0f9a9fb0a573379259f2a77458d50192";
+ url = "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz";
+ sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce";
};
};
"github-slugger-1.2.0" = {
@@ -18198,364 +10167,401 @@ let
sha512 = "3nya50972xq88vz4p5gqz63014dkwlp5f40cz1fgad4ifnhprpr4qlqvvi44qxs3arikyfm3ygmf3phyjq5lwkg7rr9ig9mk7prm1n0";
};
};
- "innertext-1.0.2" = {
- name = "innertext";
- packageName = "innertext";
- version = "1.0.2";
+ "glob-3.1.21" = {
+ name = "glob";
+ packageName = "glob";
+ version = "3.1.21";
src = fetchurl {
- url = "https://registry.npmjs.org/innertext/-/innertext-1.0.2.tgz";
- sha1 = "11a197b3143a593636fba5d59213835e6954580a";
+ url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz";
+ sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd";
};
};
- "emoji-regex-6.1.1" = {
- name = "emoji-regex";
- packageName = "emoji-regex";
- version = "6.1.1";
+ "glob-3.2.11" = {
+ name = "glob";
+ packageName = "glob";
+ version = "3.2.11";
src = fetchurl {
- url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.1.tgz";
- sha1 = "c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e";
+ url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz";
+ sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d";
};
};
- "html-entities-1.2.1" = {
- name = "html-entities";
- packageName = "html-entities";
- version = "1.2.1";
+ "glob-4.0.6" = {
+ name = "glob";
+ packageName = "glob";
+ version = "4.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz";
- sha1 = "0df29351f0721163515dfb9e5543e5f6eed5162f";
+ url = "https://registry.npmjs.org/glob/-/glob-4.0.6.tgz";
+ sha1 = "695c50bdd4e2fb5c5d370b091f388d3707e291a7";
};
};
- "engine.io-3.1.4" = {
- name = "engine.io";
- packageName = "engine.io";
- version = "3.1.4";
+ "glob-4.5.3" = {
+ name = "glob";
+ packageName = "glob";
+ version = "4.5.3";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-3.1.4.tgz";
- sha1 = "3d0211b70a552ce841ffc7da8627b301a9a4162e";
+ url = "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz";
+ sha1 = "c6cb73d3226c1efef04de3c56d012f03377ee15f";
};
};
- "socket.io-adapter-1.1.1" = {
- name = "socket.io-adapter";
- packageName = "socket.io-adapter";
- version = "1.1.1";
+ "glob-5.0.15" = {
+ name = "glob";
+ packageName = "glob";
+ version = "5.0.15";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz";
- sha1 = "2a805e8a14d6372124dd9159ad4502f8cb07f06b";
+ url = "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz";
+ sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1";
};
};
- "socket.io-client-2.0.4" = {
- name = "socket.io-client";
- packageName = "socket.io-client";
- version = "2.0.4";
+ "glob-6.0.4" = {
+ name = "glob";
+ packageName = "glob";
+ version = "6.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.0.4.tgz";
- sha1 = "0918a552406dc5e540b380dcd97afc4a64332f8e";
+ url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz";
+ sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22";
};
};
- "socket.io-parser-3.1.2" = {
- name = "socket.io-parser";
- packageName = "socket.io-parser";
- version = "3.1.2";
+ "glob-7.0.6" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.1.2.tgz";
- sha1 = "dbc2282151fc4faebbe40aeedc0772eba619f7f2";
+ url = "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz";
+ sha1 = "211bafaf49e525b8cd93260d14ab136152b3f57a";
};
};
- "engine.io-parser-2.1.1" = {
- name = "engine.io-parser";
- packageName = "engine.io-parser";
- version = "2.1.1";
+ "glob-7.1.1" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.1.tgz";
- sha1 = "e0fb3f0e0462f7f58bb77c1a52e9f5a7e26e4668";
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.1.tgz";
+ sha1 = "805211df04faaf1c63a3600306cdf5ade50b2ec8";
};
};
- "uws-0.14.5" = {
- name = "uws";
- packageName = "uws";
- version = "0.14.5";
+ "glob-7.1.2" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/uws/-/uws-0.14.5.tgz";
- sha1 = "67aaf33c46b2a587a5f6666d00f7691328f149dc";
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
+ sha512 = "08vjxzixc9dwc1hn5pd60yyij98krk2pr758aiga97r02ncvaqx1hidi95wk470k1v84gg4alls9bm52m77174z128bgf13b61x951h";
};
};
- "has-binary2-1.0.2" = {
- name = "has-binary2";
- packageName = "has-binary2";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.2.tgz";
- sha1 = "e83dba49f0b9be4d026d27365350d9f03f54be98";
- };
- };
- "isarray-2.0.1" = {
- name = "isarray";
- packageName = "isarray";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz";
- sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e";
- };
- };
- "engine.io-client-3.1.4" = {
- name = "engine.io-client";
- packageName = "engine.io-client";
- version = "3.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.1.4.tgz";
- sha1 = "4fcf1370b47163bd2ce9be2733972430350d4ea1";
- };
- };
- "xmlhttprequest-ssl-1.5.4" = {
- name = "xmlhttprequest-ssl";
- packageName = "xmlhttprequest-ssl";
- version = "1.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.4.tgz";
- sha1 = "04f560915724b389088715cc0ed7813e9677bf57";
- };
- };
- "connect-3.5.1" = {
- name = "connect";
- packageName = "connect";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-3.5.1.tgz";
- sha1 = "6d30d7a63c7f170857a6b3aa6b363d973dca588e";
- };
- };
- "event-stream-3.3.4" = {
- name = "event-stream";
- packageName = "event-stream";
- version = "3.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/event-stream/-/event-stream-3.3.4.tgz";
- sha1 = "4ab4c9a0f5a54db9338b4c34d86bfce8f4b35571";
- };
- };
- "http-auth-3.1.3" = {
- name = "http-auth";
- packageName = "http-auth";
- version = "3.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-auth/-/http-auth-3.1.3.tgz";
- sha1 = "945cfadd66521eaf8f7c84913d377d7b15f24e31";
- };
- };
- "proxy-middleware-0.15.0" = {
- name = "proxy-middleware";
- packageName = "proxy-middleware";
- version = "0.15.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.15.0.tgz";
- sha1 = "a3fdf1befb730f951965872ac2f6074c61477a56";
- };
- };
- "serve-index-1.9.1" = {
- name = "serve-index";
- packageName = "serve-index";
- version = "1.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz";
- sha1 = "d3768d69b1e7d82e5ce050fff5b453bea12a9239";
- };
- };
- "finalhandler-0.5.1" = {
- name = "finalhandler";
- packageName = "finalhandler";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.5.1.tgz";
- sha1 = "2c400d8d4530935bc232549c5fa385ec07de6fcd";
- };
- };
- "apache-crypt-1.2.1" = {
- name = "apache-crypt";
- packageName = "apache-crypt";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/apache-crypt/-/apache-crypt-1.2.1.tgz";
- sha1 = "d6fc72aa6d27d99c95a94fd188d731eefffa663c";
- };
- };
- "apache-md5-1.1.2" = {
- name = "apache-md5";
- packageName = "apache-md5";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/apache-md5/-/apache-md5-1.1.2.tgz";
- sha1 = "ee49736b639b4f108b6e9e626c6da99306b41692";
- };
- };
- "bcryptjs-2.4.3" = {
- name = "bcryptjs";
- packageName = "bcryptjs";
- version = "2.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz";
- sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb";
- };
- };
- "unix-crypt-td-js-1.0.0" = {
- name = "unix-crypt-td-js";
- packageName = "unix-crypt-td-js";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.0.0.tgz";
- sha1 = "1c0824150481bc7a01d49e98f1ec668d82412f3b";
- };
- };
- "batch-0.6.1" = {
- name = "batch";
- packageName = "batch";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz";
- sha1 = "dc34314f4e679318093fc760272525f94bf25c16";
- };
- };
- "express-2.5.11" = {
- name = "express";
- packageName = "express";
- version = "2.5.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-2.5.11.tgz";
- sha1 = "4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0";
- };
- };
- "jade-0.27.0" = {
- name = "jade";
- packageName = "jade";
- version = "0.27.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jade/-/jade-0.27.0.tgz";
- sha1 = "dc5ebed10d04a5e0eaf49ef0009bec473d1a6b31";
- };
- };
- "open-0.0.2" = {
- name = "open";
- packageName = "open";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/open/-/open-0.0.2.tgz";
- sha1 = "0a620ba2574464742f51e69f8ba8eccfd97b5dfc";
- };
- };
- "winston-0.6.2" = {
- name = "winston";
- packageName = "winston";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-0.6.2.tgz";
- sha1 = "4144fe2586cdc19a612bf8c035590132c9064bd2";
- };
- };
- "mkdirp-0.3.0" = {
- name = "mkdirp";
- packageName = "mkdirp";
+ "glob-base-0.3.0" = {
+ name = "glob-base";
+ packageName = "glob-base";
version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz";
- sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e";
+ url = "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz";
+ sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4";
};
};
- "node.extend-1.0.0" = {
- name = "node.extend";
- packageName = "node.extend";
- version = "1.0.0";
+ "glob-parent-2.0.0" = {
+ name = "glob-parent";
+ packageName = "glob-parent";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.0.tgz";
- sha1 = "ab83960c477280d01ba5554a0d8fd3acfe39336e";
+ url = "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz";
+ sha1 = "81383d72db054fcccf5336daa902f182f6edbb28";
};
};
- "connect-1.9.2" = {
- name = "connect";
- packageName = "connect";
- version = "1.9.2";
+ "glob-parent-3.1.0" = {
+ name = "glob-parent";
+ packageName = "glob-parent";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-1.9.2.tgz";
- sha1 = "42880a22e9438ae59a8add74e437f58ae8e52807";
+ url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz";
+ sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
};
};
- "mime-1.2.4" = {
- name = "mime";
- packageName = "mime";
- version = "1.2.4";
+ "glob-stream-3.1.18" = {
+ name = "glob-stream";
+ packageName = "glob-stream";
+ version = "3.1.18";
src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.2.4.tgz";
- sha1 = "11b5fdaf29c2509255176b80ad520294f5de92b7";
+ url = "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz";
+ sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b";
};
};
- "qs-0.4.2" = {
- name = "qs";
- packageName = "qs";
- version = "0.4.2";
+ "glob-stream-5.3.5" = {
+ name = "glob-stream";
+ packageName = "glob-stream";
+ version = "5.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-0.4.2.tgz";
- sha1 = "3cac4c861e371a8c9c4770ac23cda8de639b8e5f";
+ url = "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz";
+ sha1 = "a55665a9a8ccdc41915a87c701e32d4e016fad22";
};
};
- "formidable-1.0.17" = {
- name = "formidable";
- packageName = "formidable";
- version = "1.0.17";
+ "glob-stream-6.1.0" = {
+ name = "glob-stream";
+ packageName = "glob-stream";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/formidable/-/formidable-1.0.17.tgz";
- sha1 = "ef5491490f9433b705faa77249c99029ae348559";
+ url = "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz";
+ sha1 = "7045c99413b3eb94888d83ab46d0b404cc7bdde4";
};
};
- "async-0.1.22" = {
- name = "async";
- packageName = "async";
- version = "0.1.22";
+ "glob-watcher-0.0.6" = {
+ name = "glob-watcher";
+ packageName = "glob-watcher";
+ version = "0.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz";
- sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061";
+ url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz";
+ sha1 = "b95b4a8df74b39c83298b0c05c978b4d9a3b710b";
};
};
- "pkginfo-0.2.3" = {
- name = "pkginfo";
- packageName = "pkginfo";
+ "glob2base-0.0.12" = {
+ name = "glob2base";
+ packageName = "glob2base";
+ version = "0.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz";
+ sha1 = "9d419b3e28f12e83a362164a277055922c9c0d56";
+ };
+ };
+ "global-4.3.2" = {
+ name = "global";
+ packageName = "global";
+ version = "4.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global/-/global-4.3.2.tgz";
+ sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f";
+ };
+ };
+ "global-dirs-0.1.1" = {
+ name = "global-dirs";
+ packageName = "global-dirs";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz";
+ sha1 = "b319c0dd4607f353f3be9cca4c72fc148c49f445";
+ };
+ };
+ "global-https://github.com/component/global/archive/v2.0.1.tar.gz" = {
+ name = "global";
+ packageName = "global";
+ version = "2.0.1";
+ src = fetchurl {
+ name = "global-2.0.1.tar.gz";
+ url = https://codeload.github.com/component/global/tar.gz/v2.0.1;
+ sha256 = "42be02b7148745447f6ba21137c972ca82d2cad92d30d63bd4fc310623901785";
+ };
+ };
+ "global-modules-0.2.3" = {
+ name = "global-modules";
+ packageName = "global-modules";
version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz";
- sha1 = "7239c42a5ef6c30b8f328439d9b9ff71042490f8";
+ url = "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz";
+ sha1 = "ea5a3bed42c6d6ce995a4f8a1269b5dae223828d";
};
};
- "request-2.9.203" = {
- name = "request";
- packageName = "request";
- version = "2.9.203";
+ "global-modules-1.0.0" = {
+ name = "global-modules";
+ packageName = "global-modules";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.9.203.tgz";
- sha1 = "6c1711a5407fb94a114219563e44145bcbf4723a";
+ url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz";
+ sha512 = "1pgpsvm0rm1fnqmblx77xs67gh8c80nf4dsgcgalhh9phmlp8ahn5w7vzx3xkwyxw3fg33h8vhh3plsycw6fd7c2r76mm7m8w9fkb5h";
};
};
- "browser-stdout-1.3.0" = {
- name = "browser-stdout";
- packageName = "browser-stdout";
- version = "1.3.0";
+ "global-paths-1.0.0" = {
+ name = "global-paths";
+ packageName = "global-paths";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz";
- sha1 = "f351d32969d32fa5d7a5567154263d928ae3bd1f";
+ url = "https://registry.npmjs.org/global-paths/-/global-paths-1.0.0.tgz";
+ sha1 = "3ffc84341594e47b32bfade5785355d4df7feac7";
};
};
- "commander-2.11.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.11.0";
+ "global-prefix-0.1.5" = {
+ name = "global-prefix";
+ packageName = "global-prefix";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz";
- sha512 = "2yi2hwf0bghfnv1fdgd4wvh7s0acjrgqbgww97ncm6i6s6ffs1zahnj48f6gqpqj6fsf0jigvnr0civ25k2160c38281r80wvg7jkkg";
+ url = "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz";
+ sha1 = "8d3bc6b8da3ca8112a160d8d496ff0462bfef78f";
};
};
- "diff-3.3.1" = {
- name = "diff";
- packageName = "diff";
+ "global-prefix-1.0.2" = {
+ name = "global-prefix";
+ packageName = "global-prefix";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz";
+ sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe";
+ };
+ };
+ "globals-11.2.0" = {
+ name = "globals";
+ packageName = "globals";
+ version = "11.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globals/-/globals-11.2.0.tgz";
+ sha512 = "0ad39906l0grsfy2953m3c6jkhbwakd89vbqprzz9g0cafvikzfcp5azqch3zm8pmyhc29sbbcfgnays990jvwmq9xgw8vv7m7bnc24";
+ };
+ };
+ "globals-9.18.0" = {
+ name = "globals";
+ packageName = "globals";
+ version = "9.18.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz";
+ sha512 = "18psd5ig23apaw07k4mma3z1hi2ndfwsqkm05hxashnf5lf7mpfs6kjiircc0x3x3q15j2x2j4zfzsqacxvfsmw40zjchn44bfccjab";
+ };
+ };
+ "globby-5.0.0" = {
+ name = "globby";
+ packageName = "globby";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz";
+ sha1 = "ebd84667ca0dbb330b99bcfc68eac2bc54370e0d";
+ };
+ };
+ "globby-6.1.0" = {
+ name = "globby";
+ packageName = "globby";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz";
+ sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c";
+ };
+ };
+ "globule-0.1.0" = {
+ name = "globule";
+ packageName = "globule";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz";
+ sha1 = "d9c8edde1da79d125a151b79533b978676346ae5";
+ };
+ };
+ "glogg-1.0.1" = {
+ name = "glogg";
+ packageName = "glogg";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glogg/-/glogg-1.0.1.tgz";
+ sha512 = "0vr9sdx0f84b9s5vy72ralm494844c0p9kqqgcvy25gcn9abv57y7hwwafdsswc3z283v8bqa50j8gp740dd4biyngi5f15p9f2lxna";
+ };
+ };
+ "got-1.2.2" = {
+ name = "got";
+ packageName = "got";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-1.2.2.tgz";
+ sha1 = "d9430ba32f6a30218243884418767340aafc0400";
+ };
+ };
+ "got-3.3.1" = {
+ name = "got";
+ packageName = "got";
version = "3.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-3.3.1.tgz";
- sha512 = "31pj7v5gg5igmvwzk6zxw1wbvwjg6m9sfl0h3bs1x4q6idcw98vr8z8wcqk2603q0blpqkmkxp659kjj91wksr03yr8xlh16djcg8rh";
+ url = "https://registry.npmjs.org/got/-/got-3.3.1.tgz";
+ sha1 = "e5d0ed4af55fc3eef4d56007769d98192bcb2eca";
+ };
+ };
+ "got-5.7.1" = {
+ name = "got";
+ packageName = "got";
+ version = "5.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-5.7.1.tgz";
+ sha1 = "5f81635a61e4a6589f180569ea4e381680a51f35";
+ };
+ };
+ "got-6.7.1" = {
+ name = "got";
+ packageName = "got";
+ version = "6.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz";
+ sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0";
+ };
+ };
+ "got-7.1.0" = {
+ name = "got";
+ packageName = "got";
+ version = "7.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-7.1.0.tgz";
+ sha512 = "0phvycaq4yl6jjpyc9vwmgghfy7a6nnpynscpgpbx74zjaa5dbpl1ag0jf7jvimfk0vf6xfjqgh67xdlvi0ycgvp1kasajapjiqr5b3";
+ };
+ };
+ "got-8.0.3" = {
+ name = "got";
+ packageName = "got";
+ version = "8.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-8.0.3.tgz";
+ sha512 = "2bglci1j77rvr4z2klmnr6d2qfqk0f60nm1myj9m0g2rzh7pd68hzki9nm8f5dpaxqr98ncjbd4rfzw75j35nvsfcyb2i1l9jjailak";
+ };
+ };
+ "graceful-fs-1.2.3" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz";
+ sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364";
+ };
+ };
+ "graceful-fs-2.0.3" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz";
+ sha1 = "7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0";
+ };
+ };
+ "graceful-fs-3.0.11" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "3.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz";
+ sha1 = "7613c778a1afea62f25c630a086d7f3acbbdd818";
+ };
+ };
+ "graceful-fs-4.1.11" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "4.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
+ sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
+ };
+ };
+ "graceful-readlink-1.0.1" = {
+ name = "graceful-readlink";
+ packageName = "graceful-readlink";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
+ sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
+ };
+ };
+ "graphlib-2.1.5" = {
+ name = "graphlib";
+ packageName = "graphlib";
+ version = "2.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graphlib/-/graphlib-2.1.5.tgz";
+ sha512 = "0w1lx3hms5mx84mlxsgpvjr42qba17wwqhma0np67c9l8smkd2nwx7gr8724a2q1z7x0hjdjnwzx81893mj2ax498wl7y1h4yl5pysy";
+ };
+ };
+ "grouped-queue-0.3.3" = {
+ name = "grouped-queue";
+ packageName = "grouped-queue";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/grouped-queue/-/grouped-queue-0.3.3.tgz";
+ sha1 = "c167d2a5319c5a0e0964ef6a25b7c2df8996c85c";
};
};
"growl-1.10.3" = {
@@ -18567,373 +10573,67 @@ let
sha512 = "3aibvz85l13j140w4jjdk8939q6r7dnf8ay2licxgkaaldk7wbm093c1p5g7k5cg80rl0xslmczyraawfgdr82hhxn7rfsm1rn6rac4";
};
};
- "supports-color-4.4.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "4.4.0";
+ "growly-1.3.0" = {
+ name = "growly";
+ packageName = "growly";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz";
- sha512 = "1flwwfdd7gg94xrc0b2ard3qjx4cpy600q49gx43y8pzvs7j56q78bjhv8mk18vgbggr4fd11jda8ck5cdrkc5jcjs04nlp7kwbg85c";
+ url = "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz";
+ sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081";
};
};
- "json-refs-2.1.7" = {
- name = "json-refs";
- packageName = "json-refs";
- version = "2.1.7";
+ "grunt-known-options-1.1.0" = {
+ name = "grunt-known-options";
+ packageName = "grunt-known-options";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json-refs/-/json-refs-2.1.7.tgz";
- sha1 = "b9eb01fe29f5ea3e92878f15aea10ad38b5acf89";
+ url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz";
+ sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149";
};
};
- "optparse-1.0.5" = {
- name = "optparse";
- packageName = "optparse";
- version = "1.0.5";
+ "gulp-sourcemaps-1.6.0" = {
+ name = "gulp-sourcemaps";
+ packageName = "gulp-sourcemaps";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz";
- sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16";
+ url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz";
+ sha1 = "b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c";
};
};
- "slasp-0.0.4" = {
- name = "slasp";
- packageName = "slasp";
- version = "0.0.4";
+ "gulp-util-3.0.8" = {
+ name = "gulp-util";
+ packageName = "gulp-util";
+ version = "3.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/slasp/-/slasp-0.0.4.tgz";
- sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9";
+ url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz";
+ sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f";
};
};
- "npm-registry-client-8.4.0" = {
- name = "npm-registry-client";
- packageName = "npm-registry-client";
- version = "8.4.0";
+ "gulplog-1.0.0" = {
+ name = "gulplog";
+ packageName = "gulplog";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.4.0.tgz";
- sha512 = "20ka7w1mdgrazm20d5jihqam7gpiz0rnm2r6i91ax11mq96zn81ywwmmy3jr3yjddrc1bzcljxbs86wlwwrrzsgki2igj95mnm5ylrx";
+ url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz";
+ sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5";
};
};
- "npmconf-2.1.2" = {
- name = "npmconf";
- packageName = "npmconf";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmconf/-/npmconf-2.1.2.tgz";
- sha1 = "66606a4a736f1e77a059aa071a79c94ab781853a";
- };
- };
- "tar-3.1.15" = {
- name = "tar";
- packageName = "tar";
- version = "3.1.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-3.1.15.tgz";
- sha512 = "1ryql8hyrrhd0gdd71ishbj3cnr8ay0i0wpvy9mj3hjiy35cc1wa0h07wz8jwils98j00gr03ix3cf2j1xm43xjn9bsavwn1yr4a0x5";
- };
- };
- "fs.extra-1.3.2" = {
- name = "fs.extra";
- packageName = "fs.extra";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs.extra/-/fs.extra-1.3.2.tgz";
- sha1 = "dd023f93013bee24531f1b33514c37b20fd93349";
- };
- };
- "findit-2.0.0" = {
- name = "findit";
- packageName = "findit";
+ "handlebars-2.0.0" = {
+ name = "handlebars";
+ packageName = "handlebars";
version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/findit/-/findit-2.0.0.tgz";
- sha1 = "6509f0126af4c178551cfa99394e032e13a4d56e";
+ url = "https://registry.npmjs.org/handlebars/-/handlebars-2.0.0.tgz";
+ sha1 = "6e9d7f8514a3467fa5e9f82cc158ecfc1d5ac76f";
};
};
- "nijs-0.0.25" = {
- name = "nijs";
- packageName = "nijs";
- version = "0.0.25";
+ "handlebars-4.0.11" = {
+ name = "handlebars";
+ packageName = "handlebars";
+ version = "4.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/nijs/-/nijs-0.0.25.tgz";
- sha1 = "04b035cb530d46859d1018839a518c029133f676";
- };
- };
- "retry-0.10.1" = {
- name = "retry";
- packageName = "retry";
- version = "0.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz";
- sha1 = "e76388d217992c252750241d3d3956fed98d8ff4";
- };
- };
- "ssri-4.1.6" = {
- name = "ssri";
- packageName = "ssri";
- version = "4.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz";
- sha512 = "283n1p781cl2pj3jk32blcvwjdlaixng0v5x2f9qi3ndxrmyg3hk4clsjpcfsszkymy40q426yz5skax4ivsmll2p9hhcc00ivc4ijr";
- };
- };
- "uid-number-0.0.5" = {
- name = "uid-number";
- packageName = "uid-number";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.5.tgz";
- sha1 = "5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e";
- };
- };
- "fs-extra-0.6.4" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "0.6.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.6.4.tgz";
- sha1 = "f46f0c75b7841f8d200b3348cd4d691d5a099d15";
- };
- };
- "walk-2.3.9" = {
- name = "walk";
- packageName = "walk";
- version = "2.3.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/walk/-/walk-2.3.9.tgz";
- sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b";
- };
- };
- "jsonfile-1.0.1" = {
- name = "jsonfile";
- packageName = "jsonfile";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonfile/-/jsonfile-1.0.1.tgz";
- sha1 = "ea5efe40b83690b98667614a7392fc60e842c0dd";
- };
- };
- "foreachasync-3.0.0" = {
- name = "foreachasync";
- packageName = "foreachasync";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz";
- sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6";
- };
- };
- "semver-5.3.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz";
- sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f";
- };
- };
- "biased-opener-0.2.8" = {
- name = "biased-opener";
- packageName = "biased-opener";
- version = "0.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/biased-opener/-/biased-opener-0.2.8.tgz";
- sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
- };
- };
- "serve-favicon-2.4.5" = {
- name = "serve-favicon";
- packageName = "serve-favicon";
- version = "2.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.5.tgz";
- sha512 = "2gn8a5l0hh655cxq2cvvar6k1hl8cpmagplavx6svjiz9kmi968nwbzhpc2fvpcpmsfqb8s5jjq0gvn8vwwc2lx3cj57ckbcf3prcdk";
- };
- };
- "strong-data-uri-1.0.4" = {
- name = "strong-data-uri";
- packageName = "strong-data-uri";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.4.tgz";
- sha1 = "136765ebaf8e0f4ad60c4b146779f062c29d18f0";
- };
- };
- "v8-debug-1.0.1" = {
- name = "v8-debug";
- packageName = "v8-debug";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/v8-debug/-/v8-debug-1.0.1.tgz";
- sha1 = "6ae1c6dae4477bb3ced79b523e4d160c1d8667fe";
- };
- };
- "v8-profiler-5.7.0" = {
- name = "v8-profiler";
- packageName = "v8-profiler";
- version = "5.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/v8-profiler/-/v8-profiler-5.7.0.tgz";
- sha1 = "e8381cbebb5b5fd0ca8d2b09f6a0181a158db34d";
- };
- };
- "yargs-3.32.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "3.32.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz";
- sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995";
- };
- };
- "browser-launcher2-0.4.6" = {
- name = "browser-launcher2";
- packageName = "browser-launcher2";
- version = "0.4.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/browser-launcher2/-/browser-launcher2-0.4.6.tgz";
- sha1 = "51598408a13f4c9c5b20eba44554b2c0b0ae4074";
- };
- };
- "x-default-browser-0.3.1" = {
- name = "x-default-browser";
- packageName = "x-default-browser";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/x-default-browser/-/x-default-browser-0.3.1.tgz";
- sha1 = "7f6194154fd1786cf261e68b5488c47127a04977";
- };
- };
- "headless-0.1.7" = {
- name = "headless";
- packageName = "headless";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/headless/-/headless-0.1.7.tgz";
- sha1 = "6e62fae668947f88184d5c156ede7c5695a7e9c8";
- };
- };
- "win-detect-browsers-1.0.2" = {
- name = "win-detect-browsers";
- packageName = "win-detect-browsers";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz";
- sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0";
- };
- };
- "uid-0.0.2" = {
- name = "uid";
- packageName = "uid";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uid/-/uid-0.0.2.tgz";
- sha1 = "5e4a5d4b78138b4f70f89fd3c76fc59aa9d2f103";
- };
- };
- "yargs-1.3.3" = {
- name = "yargs";
- packageName = "yargs";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz";
- sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a";
- };
- };
- "default-browser-id-1.0.4" = {
- name = "default-browser-id";
- packageName = "default-browser-id";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/default-browser-id/-/default-browser-id-1.0.4.tgz";
- sha1 = "e59d09a5d157b828b876c26816e61c3d2a2c203a";
- };
- };
- "untildify-2.1.0" = {
- name = "untildify";
- packageName = "untildify";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/untildify/-/untildify-2.1.0.tgz";
- sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0";
- };
- };
- "truncate-1.0.5" = {
- name = "truncate";
- packageName = "truncate";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/truncate/-/truncate-1.0.5.tgz";
- sha1 = "c636c6c1f50eed7c927af06c1dbffab53c7abe28";
- };
- };
- "node-pre-gyp-0.6.39" = {
- name = "node-pre-gyp";
- packageName = "node-pre-gyp";
- version = "0.6.39";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz";
- sha512 = "2cwrivwc0ha272cly9r61bbb14kkl1s1hsmn53yr88b6pfjqj512nac6c5rphc6ak88v8gpl1f879qdd3v7386103zzr7miibpmbhis";
- };
- };
- "request-2.81.0" = {
- name = "request";
- packageName = "request";
- version = "2.81.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
- sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
- };
- };
- "detect-libc-1.0.3" = {
- name = "detect-libc";
- packageName = "detect-libc";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz";
- sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
- };
- };
- "tar-pack-3.4.1" = {
- name = "tar-pack";
- packageName = "tar-pack";
- version = "3.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz";
- sha512 = "0mgk8jd55vr7i3i29r1skhxwwbqkqfz6mbr32r5nn8h6v5xns8d2rc7835y7wj0zmppckxai7nm8r4s65kkg6yhirnwx33yixn75x1w";
- };
- };
- "har-validator-4.2.1" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
- sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
- };
- };
- "performance-now-0.2.0" = {
- name = "performance-now";
- packageName = "performance-now";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
- sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
- };
- };
- "qs-6.4.0" = {
- name = "qs";
- packageName = "qs";
- version = "6.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
- sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
- };
- };
- "ajv-4.11.8" = {
- name = "ajv";
- packageName = "ajv";
- version = "4.11.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
- sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
+ url = "https://registry.npmjs.org/handlebars/-/handlebars-4.0.11.tgz";
+ sha1 = "630a35dfe0294bc281edae6ffc5d329fc7982dcc";
};
};
"har-schema-1.0.5" = {
@@ -18945,166 +10645,265 @@ let
sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
};
};
- "fstream-ignore-1.0.5" = {
- name = "fstream-ignore";
- packageName = "fstream-ignore";
- version = "1.0.5";
+ "har-schema-2.0.0" = {
+ name = "har-schema";
+ packageName = "har-schema";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz";
- sha1 = "9c31dae34767018fe1d249b24dada67d092da105";
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
+ sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
};
};
- "uid-number-0.0.6" = {
- name = "uid-number";
- packageName = "uid-number";
- version = "0.0.6";
+ "har-validator-2.0.6" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz";
- sha1 = "0ea10e8035e8eb5b8e4449f06da1c730663baa81";
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz";
+ sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d";
};
};
- "os-locale-1.4.0" = {
- name = "os-locale";
- packageName = "os-locale";
- version = "1.4.0";
+ "har-validator-4.2.1" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz";
- sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9";
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
+ sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
};
};
- "window-size-0.1.4" = {
- name = "window-size";
- packageName = "window-size";
- version = "0.1.4";
+ "har-validator-5.0.3" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "5.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz";
- sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876";
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz";
+ sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd";
};
};
- "ignore-by-default-1.0.1" = {
- name = "ignore-by-default";
- packageName = "ignore-by-default";
+ "has-1.0.1" = {
+ name = "has";
+ packageName = "has";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz";
- sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09";
+ url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz";
+ sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28";
};
};
- "pstree.remy-1.1.0" = {
- name = "pstree.remy";
- packageName = "pstree.remy";
+ "has-ansi-0.1.0" = {
+ name = "has-ansi";
+ packageName = "has-ansi";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz";
+ sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e";
+ };
+ };
+ "has-ansi-1.0.3" = {
+ name = "has-ansi";
+ packageName = "has-ansi";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-ansi/-/has-ansi-1.0.3.tgz";
+ sha1 = "c0b5b1615d9e382b0ff67169d967b425e48ca538";
+ };
+ };
+ "has-ansi-2.0.0" = {
+ name = "has-ansi";
+ packageName = "has-ansi";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
+ sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
+ };
+ };
+ "has-ansi-3.0.0" = {
+ name = "has-ansi";
+ packageName = "has-ansi";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-ansi/-/has-ansi-3.0.0.tgz";
+ sha1 = "36077ef1d15f333484aa7fa77a28606f1c655b37";
+ };
+ };
+ "has-binary-0.1.7" = {
+ name = "has-binary";
+ packageName = "has-binary";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz";
+ sha1 = "68e61eb16210c9545a0a5cce06a873912fe1e68c";
+ };
+ };
+ "has-binary-data-0.1.1" = {
+ name = "has-binary-data";
+ packageName = "has-binary-data";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-binary-data/-/has-binary-data-0.1.1.tgz";
+ sha1 = "e10749fb87828a52df96f4086587eb4a03966439";
+ };
+ };
+ "has-binary2-1.0.2" = {
+ name = "has-binary2";
+ packageName = "has-binary2";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.2.tgz";
+ sha1 = "e83dba49f0b9be4d026d27365350d9f03f54be98";
+ };
+ };
+ "has-color-0.1.7" = {
+ name = "has-color";
+ packageName = "has-color";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz";
+ sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f";
+ };
+ };
+ "has-cors-1.0.3" = {
+ name = "has-cors";
+ packageName = "has-cors";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-cors/-/has-cors-1.0.3.tgz";
+ sha1 = "502acb9b3104dac33dd2630eaf2f888b0baf4cb3";
+ };
+ };
+ "has-cors-1.1.0" = {
+ name = "has-cors";
+ packageName = "has-cors";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.0.tgz";
- sha512 = "3jqj1qpjdy5lizvm5mir14vqzzqgaim2yl0iwa164ps6mlp20liyaid1mhr62k23dg0zbkk11zcnzk56d0xvzy9ddbdfmjcnjy3k4mb";
+ url = "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz";
+ sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39";
};
};
- "touch-3.1.0" = {
- name = "touch";
- packageName = "touch";
- version = "3.1.0";
+ "has-flag-1.0.0" = {
+ name = "has-flag";
+ packageName = "has-flag";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz";
- sha512 = "2a3sk3562y1ihbl06r5g1pzs37mwhhnz8f8vvcc0k8bhykczzgv9dyw71kkz4mbf81iq7wbf2nq7hpy6z6zhanj8s9d6bjk5r9pq72q";
+ url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz";
+ sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa";
};
};
- "undefsafe-0.0.3" = {
- name = "undefsafe";
- packageName = "undefsafe";
- version = "0.0.3";
+ "has-flag-2.0.0" = {
+ name = "has-flag";
+ packageName = "has-flag";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/undefsafe/-/undefsafe-0.0.3.tgz";
- sha1 = "ecca3a03e56b9af17385baac812ac83b994a962f";
+ url = "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz";
+ sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51";
};
};
- "ps-tree-1.1.0" = {
- name = "ps-tree";
- packageName = "ps-tree";
- version = "1.1.0";
+ "has-gulplog-0.1.0" = {
+ name = "has-gulplog";
+ packageName = "has-gulplog";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz";
- sha1 = "b421b24140d6203f1ed3c76996b4427b08e8c014";
+ url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz";
+ sha1 = "6414c82913697da51590397dafb12f22967811ce";
};
};
- "body-parser-1.17.2" = {
- name = "body-parser";
- packageName = "body-parser";
- version = "1.17.2";
+ "has-symbol-support-x-1.4.1" = {
+ name = "has-symbol-support-x";
+ packageName = "has-symbol-support-x";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz";
- sha1 = "f8892abc8f9e627d42aedafbca66bf5ab99104ee";
+ url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.1.tgz";
+ sha512 = "0qgqbqmrlx51w4ixcln9ljr5hs2jj8fvryq7i8cg9a739p7y2c5z8wpplp9jhnfn4a3xn6li2b2npmhfm2x80khm9di3vllyyv9wii6";
};
};
- "cheerio-0.22.0" = {
- name = "cheerio";
- packageName = "cheerio";
- version = "0.22.0";
+ "has-symbols-1.0.0" = {
+ name = "has-symbols";
+ packageName = "has-symbols";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz";
- sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e";
+ url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz";
+ sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44";
};
};
- "cookie-parser-1.4.3" = {
- name = "cookie-parser";
- packageName = "cookie-parser";
- version = "1.4.3";
+ "has-to-string-tag-x-1.4.1" = {
+ name = "has-to-string-tag-x";
+ packageName = "has-to-string-tag-x";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.3.tgz";
- sha1 = "0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5";
+ url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz";
+ sha512 = "0bqvhd628h3lrsydbp1xllh7jp23c58j7d4z0x0v9ddffindkk1zfrqmzm28z47ipjp0zxlmzvmlzk98zf9mzjsc47bmp1ydizcmmmx";
};
};
- "cors-2.8.3" = {
- name = "cors";
- packageName = "cors";
- version = "2.8.3";
+ "has-unicode-2.0.1" = {
+ name = "has-unicode";
+ packageName = "has-unicode";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cors/-/cors-2.8.3.tgz";
- sha1 = "4cf78e1d23329a7496b2fc2225b77ca5bb5eb802";
+ url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
+ sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
};
};
- "cron-1.2.1" = {
- name = "cron";
- packageName = "cron";
- version = "1.2.1";
+ "has-value-0.3.1" = {
+ name = "has-value";
+ packageName = "has-value";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cron/-/cron-1.2.1.tgz";
- sha1 = "3a86c09b41b8f261ac863a7cc85ea4735857eab2";
+ url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz";
+ sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f";
};
};
- "express-4.15.3" = {
- name = "express";
- packageName = "express";
- version = "4.15.3";
+ "has-value-1.0.0" = {
+ name = "has-value";
+ packageName = "has-value";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-4.15.3.tgz";
- sha1 = "bab65d0f03aa80c358408972fc700f916944b662";
+ url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz";
+ sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177";
};
};
- "express-session-1.15.2" = {
- name = "express-session";
- packageName = "express-session";
- version = "1.15.2";
+ "has-values-0.1.4" = {
+ name = "has-values";
+ packageName = "has-values";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/express-session/-/express-session-1.15.2.tgz";
- sha1 = "d98516443a4ccb8688e1725ae584c02daa4093d4";
+ url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz";
+ sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771";
};
};
- "follow-redirects-1.2.4" = {
- name = "follow-redirects";
- packageName = "follow-redirects";
- version = "1.2.4";
+ "has-values-1.0.0" = {
+ name = "has-values";
+ packageName = "has-values";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.2.4.tgz";
- sha512 = "2mxs6nll208xgqy9asgc0iq4k9ynd2aanig2qkfi3drd8axdafhhx36a58ssksmjgl6s1m2bh2j8igrlpm3k11cg58nhmqbxhlkmv2a";
+ url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz";
+ sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
};
};
- "fs.notify-0.0.4" = {
- name = "fs.notify";
- packageName = "fs.notify";
- version = "0.0.4";
+ "hasbin-1.2.3" = {
+ name = "hasbin";
+ packageName = "hasbin";
+ version = "1.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/fs.notify/-/fs.notify-0.0.4.tgz";
- sha1 = "63284d45a34b52ce60088a6ddbec5b776d3c013d";
+ url = "https://registry.npmjs.org/hasbin/-/hasbin-1.2.3.tgz";
+ sha1 = "78c5926893c80215c2b568ae1fd3fcab7a2696b0";
+ };
+ };
+ "hash-base-2.0.2" = {
+ name = "hash-base";
+ packageName = "hash-base";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hash-base/-/hash-base-2.0.2.tgz";
+ sha1 = "66ea1d856db4e8a5470cadf6fce23ae5244ef2e1";
+ };
+ };
+ "hash-base-3.0.4" = {
+ name = "hash-base";
+ packageName = "hash-base";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz";
+ sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918";
};
};
"hash-sum-1.0.2" = {
@@ -19116,6 +10915,564 @@ let
sha1 = "33b40777754c6432573c120cc3808bbd10d47f04";
};
};
+ "hash.js-1.1.3" = {
+ name = "hash.js";
+ packageName = "hash.js";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hash.js/-/hash.js-1.1.3.tgz";
+ sha512 = "0f88i7rv3ib8lwdh5z5lwrml404frzb1a9n3g25y85jpfng82vzsv7m3c5fbyrpq5ki4c3pa8823z3s61xfigm45q469nqnzp416hgx";
+ };
+ };
+ "hasha-2.2.0" = {
+ name = "hasha";
+ packageName = "hasha";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz";
+ sha1 = "78d7cbfc1e6d66303fe79837365984517b2f6ee1";
+ };
+ };
+ "hasher-1.2.0" = {
+ name = "hasher";
+ packageName = "hasher";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hasher/-/hasher-1.2.0.tgz";
+ sha1 = "8b5341c3496124b0724ac8555fbb8ca363ebbb73";
+ };
+ };
+ "hashring-3.2.0" = {
+ name = "hashring";
+ packageName = "hashring";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hashring/-/hashring-3.2.0.tgz";
+ sha1 = "fda4efde8aa22cdb97fb1d2a65e88401e1c144ce";
+ };
+ };
+ "hat-0.0.3" = {
+ name = "hat";
+ packageName = "hat";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hat/-/hat-0.0.3.tgz";
+ sha1 = "bb014a9e64b3788aed8005917413d4ff3d502d8a";
+ };
+ };
+ "hawk-0.10.2" = {
+ name = "hawk";
+ packageName = "hawk";
+ version = "0.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz";
+ sha1 = "9b361dee95a931640e6d504e05609a8fc3ac45d2";
+ };
+ };
+ "hawk-3.1.3" = {
+ name = "hawk";
+ packageName = "hawk";
+ version = "3.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
+ sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
+ };
+ };
+ "hawk-6.0.2" = {
+ name = "hawk";
+ packageName = "hawk";
+ version = "6.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz";
+ sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als";
+ };
+ };
+ "he-1.1.1" = {
+ name = "he";
+ packageName = "he";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/he/-/he-1.1.1.tgz";
+ sha1 = "93410fd21b009735151f8868c2f271f3427e23fd";
+ };
+ };
+ "headless-0.1.7" = {
+ name = "headless";
+ packageName = "headless";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/headless/-/headless-0.1.7.tgz";
+ sha1 = "6e62fae668947f88184d5c156ede7c5695a7e9c8";
+ };
+ };
+ "help-me-1.1.0" = {
+ name = "help-me";
+ packageName = "help-me";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/help-me/-/help-me-1.1.0.tgz";
+ sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6";
+ };
+ };
+ "highlight.js-8.9.1" = {
+ name = "highlight.js";
+ packageName = "highlight.js";
+ version = "8.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/highlight.js/-/highlight.js-8.9.1.tgz";
+ sha1 = "b8a9c5493212a9392f0222b649c9611497ebfb88";
+ };
+ };
+ "hipchat-notifier-1.1.0" = {
+ name = "hipchat-notifier";
+ packageName = "hipchat-notifier";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hipchat-notifier/-/hipchat-notifier-1.1.0.tgz";
+ sha1 = "b6d249755437c191082367799d3ba9a0f23b231e";
+ };
+ };
+ "hiredis-0.4.1" = {
+ name = "hiredis";
+ packageName = "hiredis";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hiredis/-/hiredis-0.4.1.tgz";
+ sha1 = "aab4dcfd0fc4cbdb219d268005f2335a3c639e8f";
+ };
+ };
+ "hmac-drbg-1.0.1" = {
+ name = "hmac-drbg";
+ packageName = "hmac-drbg";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz";
+ sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1";
+ };
+ };
+ "hoek-0.7.6" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "0.7.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz";
+ sha1 = "60fbd904557541cd2b8795abf308a1b3770e155a";
+ };
+ };
+ "hoek-2.16.3" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "2.16.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
+ sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
+ };
+ };
+ "hoek-4.2.0" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz";
+ sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz";
+ };
+ };
+ "hogan.js-3.0.2" = {
+ name = "hogan.js";
+ packageName = "hogan.js";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hogan.js/-/hogan.js-3.0.2.tgz";
+ sha1 = "4cd9e1abd4294146e7679e41d7898732b02c7bfd";
+ };
+ };
+ "home-or-tmp-2.0.0" = {
+ name = "home-or-tmp";
+ packageName = "home-or-tmp";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz";
+ sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8";
+ };
+ };
+ "homedir-polyfill-1.0.1" = {
+ name = "homedir-polyfill";
+ packageName = "homedir-polyfill";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz";
+ sha1 = "4c2bbc8a758998feebf5ed68580f76d46768b4bc";
+ };
+ };
+ "hooks-0.2.1" = {
+ name = "hooks";
+ packageName = "hooks";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hooks/-/hooks-0.2.1.tgz";
+ sha1 = "0f591b1b344bdcb3df59773f62fbbaf85bf4028b";
+ };
+ };
+ "hosted-git-info-2.5.0" = {
+ name = "hosted-git-info";
+ packageName = "hosted-git-info";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz";
+ sha512 = "355g980qsk8k9hkv60z58llbvpscjl5yqkh4wx719s8jcq2swzn4ynzinj8azmvdgs10r22wb297rmixh9vvsml55sbysdf2i8ipn54";
+ };
+ };
+ "hot-shots-4.8.0" = {
+ name = "hot-shots";
+ packageName = "hot-shots";
+ version = "4.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hot-shots/-/hot-shots-4.8.0.tgz";
+ sha1 = "052be48430efc7d117ba7cc4d41f1833ba38c79f";
+ };
+ };
+ "html-entities-1.2.1" = {
+ name = "html-entities";
+ packageName = "html-entities";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz";
+ sha1 = "0df29351f0721163515dfb9e5543e5f6eed5162f";
+ };
+ };
+ "htmlescape-1.1.1" = {
+ name = "htmlescape";
+ packageName = "htmlescape";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz";
+ sha1 = "3a03edc2214bca3b66424a3e7959349509cb0351";
+ };
+ };
+ "htmlparser2-3.7.3" = {
+ name = "htmlparser2";
+ packageName = "htmlparser2";
+ version = "3.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.7.3.tgz";
+ sha1 = "6a64c77637c08c6f30ec2a8157a53333be7cb05e";
+ };
+ };
+ "htmlparser2-3.8.3" = {
+ name = "htmlparser2";
+ packageName = "htmlparser2";
+ version = "3.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz";
+ sha1 = "996c28b191516a8be86501a7d79757e5c70c1068";
+ };
+ };
+ "htmlparser2-3.9.2" = {
+ name = "htmlparser2";
+ packageName = "htmlparser2";
+ version = "3.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz";
+ sha1 = "1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338";
+ };
+ };
+ "http-auth-2.0.7" = {
+ name = "http-auth";
+ packageName = "http-auth";
+ version = "2.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-auth/-/http-auth-2.0.7.tgz";
+ sha1 = "aa1a61a4d6baae9d64436c6f0ef0f4de85c430e3";
+ };
+ };
+ "http-auth-3.1.3" = {
+ name = "http-auth";
+ packageName = "http-auth";
+ version = "3.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-auth/-/http-auth-3.1.3.tgz";
+ sha1 = "945cfadd66521eaf8f7c84913d377d7b15f24e31";
+ };
+ };
+ "http-basic-2.5.1" = {
+ name = "http-basic";
+ packageName = "http-basic";
+ version = "2.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-basic/-/http-basic-2.5.1.tgz";
+ sha1 = "8ce447bdb5b6c577f8a63e3fa78056ec4bb4dbfb";
+ };
+ };
+ "http-cache-semantics-3.8.1" = {
+ name = "http-cache-semantics";
+ packageName = "http-cache-semantics";
+ version = "3.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz";
+ sha512 = "3gsj16kpvygynld5ajbvg8ii3n3bka4waamdzx30wwhz72mdr6wvffm20rfnxwzid9fq49d5g333yjq5dz1qqbnk9bwcmrj9f5bda75";
+ };
+ };
+ "http-errors-1.3.1" = {
+ name = "http-errors";
+ packageName = "http-errors";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz";
+ sha1 = "197e22cdebd4198585e8694ef6786197b91ed942";
+ };
+ };
+ "http-errors-1.6.2" = {
+ name = "http-errors";
+ packageName = "http-errors";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.2.tgz";
+ sha1 = "0a002cc85707192a7e7946ceedc11155f60ec736";
+ };
+ };
+ "http-headers-3.0.2" = {
+ name = "http-headers";
+ packageName = "http-headers";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-headers/-/http-headers-3.0.2.tgz";
+ sha512 = "0xv0kpsablrjag5ci3qqwjf0hwvcp6yk0hgabv4im6ssanimgbr8yhzmyz4jd10sw5xhrimzhxp2xx34l8p6aryqxqqg0wnxlikbcgk";
+ };
+ };
+ "http-methods-0.1.0" = {
+ name = "http-methods";
+ packageName = "http-methods";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-methods/-/http-methods-0.1.0.tgz";
+ sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430";
+ };
+ };
+ "http-parser-js-0.4.9" = {
+ name = "http-parser-js";
+ packageName = "http-parser-js";
+ version = "0.4.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.9.tgz";
+ sha1 = "ea1a04fb64adff0242e9974f297dd4c3cad271e1";
+ };
+ };
+ "http-proxy-1.0.2" = {
+ name = "http-proxy";
+ packageName = "http-proxy";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.0.2.tgz";
+ sha1 = "08060ff2edb2189e57aa3a152d3ac63ed1af7254";
+ };
+ };
+ "http-proxy-1.16.2" = {
+ name = "http-proxy";
+ packageName = "http-proxy";
+ version = "1.16.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.16.2.tgz";
+ sha1 = "06dff292952bf64dbe8471fa9df73066d4f37742";
+ };
+ };
+ "http-proxy-agent-1.0.0" = {
+ name = "http-proxy-agent";
+ packageName = "http-proxy-agent";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz";
+ sha1 = "cc1ce38e453bf984a0f7702d2dd59c73d081284a";
+ };
+ };
+ "http-proxy-middleware-0.17.4" = {
+ name = "http-proxy-middleware";
+ packageName = "http-proxy-middleware";
+ version = "0.17.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz";
+ sha1 = "642e8848851d66f09d4f124912846dbaeb41b833";
+ };
+ };
+ "http-response-object-1.1.0" = {
+ name = "http-response-object";
+ packageName = "http-response-object";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-response-object/-/http-response-object-1.1.0.tgz";
+ sha1 = "a7c4e75aae82f3bb4904e4f43f615673b4d518c3";
+ };
+ };
+ "http-signature-0.11.0" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-0.11.0.tgz";
+ sha1 = "1796cf67a001ad5cd6849dca0991485f09089fe6";
+ };
+ };
+ "http-signature-1.1.1" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
+ sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
+ };
+ };
+ "http-signature-1.2.0" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
+ sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
+ };
+ };
+ "httpntlm-1.6.1" = {
+ name = "httpntlm";
+ packageName = "httpntlm";
+ version = "1.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/httpntlm/-/httpntlm-1.6.1.tgz";
+ sha1 = "ad01527143a2e8773cfae6a96f58656bb52a34b2";
+ };
+ };
+ "httpolyglot-0.1.2" = {
+ name = "httpolyglot";
+ packageName = "httpolyglot";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/httpolyglot/-/httpolyglot-0.1.2.tgz";
+ sha1 = "e4d347fe8984a62f467d4060df527f1851f6997b";
+ };
+ };
+ "httpreq-0.4.24" = {
+ name = "httpreq";
+ packageName = "httpreq";
+ version = "0.4.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/httpreq/-/httpreq-0.4.24.tgz";
+ sha1 = "4335ffd82cd969668a39465c929ac61d6393627f";
+ };
+ };
+ "https-browserify-0.0.1" = {
+ name = "https-browserify";
+ packageName = "https-browserify";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz";
+ sha1 = "3f91365cabe60b77ed0ebba24b454e3e09d95a82";
+ };
+ };
+ "https-browserify-1.0.0" = {
+ name = "https-browserify";
+ packageName = "https-browserify";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz";
+ sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
+ };
+ };
+ "https-proxy-agent-1.0.0" = {
+ name = "https-proxy-agent";
+ packageName = "https-proxy-agent";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz";
+ sha1 = "35f7da6c48ce4ddbfa264891ac593ee5ff8671e6";
+ };
+ };
+ "https-proxy-agent-2.1.1" = {
+ name = "https-proxy-agent";
+ packageName = "https-proxy-agent";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.1.1.tgz";
+ sha512 = "0rxbj60hs8fhs3i02lgb6ypcf9m9v8ybd4lfvfvpy0f1iyy54f1686lmv0rvkyxxihwvs4yizjgv8r8jksh385c4c9yjm3z8i0svbic";
+ };
+ };
+ "humanize-0.0.9" = {
+ name = "humanize";
+ packageName = "humanize";
+ version = "0.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/humanize/-/humanize-0.0.9.tgz";
+ sha1 = "1994ffaecdfe9c441ed2bdac7452b7bb4c9e41a4";
+ };
+ };
+ "humanize-plus-1.8.2" = {
+ name = "humanize-plus";
+ packageName = "humanize-plus";
+ version = "1.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/humanize-plus/-/humanize-plus-1.8.2.tgz";
+ sha1 = "a65b34459ad6367adbb3707a82a3c9f916167030";
+ };
+ };
+ "humanize-string-1.0.1" = {
+ name = "humanize-string";
+ packageName = "humanize-string";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/humanize-string/-/humanize-string-1.0.1.tgz";
+ sha1 = "fce2d6c545efc25dea1f23235182c98da0180b42";
+ };
+ };
+ "hypercore-6.12.0" = {
+ name = "hypercore";
+ packageName = "hypercore";
+ version = "6.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hypercore/-/hypercore-6.12.0.tgz";
+ sha512 = "00xsmbx8jcjzsibwwgknlpjvndb7zv6jdxik5skqnbizbdssvcwa2r5a7gd1cf7mpr2827067sxqqca9fmmknjnin2vvm16yb1pn5g8";
+ };
+ };
+ "hypercore-protocol-6.5.2" = {
+ name = "hypercore-protocol";
+ packageName = "hypercore-protocol";
+ version = "6.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.5.2.tgz";
+ sha512 = "03l77nma8ga06ywa469jzqgc13hjk9bg3w2cv95g3fwnqy2fvz8qpczcih65jscvk0ira5kpm3sk2vqh2whzzvnm19jlqrzi78v80n3";
+ };
+ };
+ "hyperdrive-9.12.2" = {
+ name = "hyperdrive";
+ packageName = "hyperdrive";
+ version = "9.12.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.2.tgz";
+ sha512 = "133iwkp8w88awfxffdjjfxl2wsrj99cdw1p2rvbv65q7mgficva14skid7vsd55r750lrvg0wbmlz0h4m44w6ypd7cvpb4hjvb2f815";
+ };
+ };
+ "hyperdrive-http-4.2.2" = {
+ name = "hyperdrive-http";
+ packageName = "hyperdrive-http";
+ version = "4.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hyperdrive-http/-/hyperdrive-http-4.2.2.tgz";
+ sha512 = "0vl2ibm38gn2xci8byg6s3qwh5zr5777hlj3l2152hm6vcfs5fn0xazxfj7vyc2wpzgacz6k1d81wcbckkvf6p6482858fh2wdxj1rn";
+ };
+ };
+ "hyperdrive-network-speed-2.0.1" = {
+ name = "hyperdrive-network-speed";
+ packageName = "hyperdrive-network-speed";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hyperdrive-network-speed/-/hyperdrive-network-speed-2.0.1.tgz";
+ sha1 = "40daf82e31b9d753f2ae6dfaf0818661ed24fe15";
+ };
+ };
+ "i-0.3.6" = {
+ name = "i";
+ packageName = "i";
+ version = "0.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/i/-/i-0.3.6.tgz";
+ sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d";
+ };
+ };
"i18next-1.10.6" = {
name = "i18next";
packageName = "i18next";
@@ -19125,184 +11482,31 @@ let
sha1 = "fddd8b491502c48967a62963bc722ff897cddea0";
};
};
- "js-yaml-3.8.4" = {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "3.8.4";
+ "i18next-client-1.10.3" = {
+ name = "i18next-client";
+ packageName = "i18next-client";
+ version = "1.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.4.tgz";
- sha1 = "520b4564f86573ba96662af85a8cafa7b4b5a6f6";
+ url = "https://registry.npmjs.org/i18next-client/-/i18next-client-1.10.3.tgz";
+ sha1 = "76d0353557ed90d1e7a87754d5004d3f7801fde9";
};
};
- "jsonata-1.2.6" = {
- name = "jsonata";
- packageName = "jsonata";
- version = "1.2.6";
+ "iconv-lite-0.4.11" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.11";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonata/-/jsonata-1.2.6.tgz";
- sha512 = "3bpyhs9imacbmpq0r7l65qvkx0dfnx92qz5vm59i983h2xvw2yrr1934i979accigkr33b65n51m5zx73glbi3pwl8n6zm5b3y74a8a";
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz";
+ sha1 = "2ecb42fd294744922209a2e7c404dac8793d8ade";
};
};
- "mqtt-2.9.0" = {
- name = "mqtt";
- packageName = "mqtt";
- version = "2.9.0";
+ "iconv-lite-0.4.13" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.13";
src = fetchurl {
- url = "https://registry.npmjs.org/mqtt/-/mqtt-2.9.0.tgz";
- sha512 = "181qi8xb0lxxqvwq2xcslv35dbhphyr67w02bad6n4rlibcm6z0j055dyfpdh12mrrvgjzfj11cjylsj26y7vr17cvk1kbgkiqgzpb9";
- };
- };
- "multer-1.3.0" = {
- name = "multer";
- packageName = "multer";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/multer/-/multer-1.3.0.tgz";
- sha1 = "092b2670f6846fa4914965efc8cf94c20fec6cd2";
- };
- };
- "mustache-2.3.0" = {
- name = "mustache";
- packageName = "mustache";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mustache/-/mustache-2.3.0.tgz";
- sha1 = "4028f7778b17708a489930a6e52ac3bca0da41d0";
- };
- };
- "oauth2orize-1.8.0" = {
- name = "oauth2orize";
- packageName = "oauth2orize";
- version = "1.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.8.0.tgz";
- sha1 = "f2ddc0115d635d0480746249c00f0ea1a9c51ba8";
- };
- };
- "passport-0.3.2" = {
- name = "passport";
- packageName = "passport";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport/-/passport-0.3.2.tgz";
- sha1 = "9dd009f915e8fe095b0124a01b8f82da07510102";
- };
- };
- "passport-http-bearer-1.0.1" = {
- name = "passport-http-bearer";
- packageName = "passport-http-bearer";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport-http-bearer/-/passport-http-bearer-1.0.1.tgz";
- sha1 = "147469ea3669e2a84c6167ef99dbb77e1f0098a8";
- };
- };
- "passport-oauth2-client-password-0.1.2" = {
- name = "passport-oauth2-client-password";
- packageName = "passport-oauth2-client-password";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport-oauth2-client-password/-/passport-oauth2-client-password-0.1.2.tgz";
- sha1 = "4f378b678b92d16dbbd233a6c706520093e561ba";
- };
- };
- "raw-body-2.2.0" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz";
- sha1 = "994976cf6a5096a41162840492f0bdc5d6e7fb96";
- };
- };
- "sentiment-2.1.0" = {
- name = "sentiment";
- packageName = "sentiment";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sentiment/-/sentiment-2.1.0.tgz";
- sha1 = "33279100c35c38519ca5e435245186c512fe0fdc";
- };
- };
- "uglify-js-3.0.20" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.0.20";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.0.20.tgz";
- sha512 = "3apvpzjbs9vds18x8pxb8ysn94658xnajl5zfagr23xpbfhgbmlmajm0lnmz9h4jk99snzf51vcc1r0l0g4gmbdzcn574vvvzy3dxrv";
- };
- };
- "when-3.7.8" = {
- name = "when";
- packageName = "when";
- version = "3.7.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/when/-/when-3.7.8.tgz";
- sha1 = "c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82";
- };
- };
- "ws-1.1.1" = {
- name = "ws";
- packageName = "ws";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-1.1.1.tgz";
- sha1 = "082ddb6c641e85d4bb451f03d52f06eabdb1f018";
- };
- };
- "node-red-node-feedparser-0.1.8" = {
- name = "node-red-node-feedparser";
- packageName = "node-red-node-feedparser";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-feedparser/-/node-red-node-feedparser-0.1.8.tgz";
- sha1 = "56cf6f69bc6d23557f8627ee63b74c1caa85c65b";
- };
- };
- "node-red-node-email-0.1.24" = {
- name = "node-red-node-email";
- packageName = "node-red-node-email";
- version = "0.1.24";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-email/-/node-red-node-email-0.1.24.tgz";
- sha1 = "ba12c72b01b39e33f375ccbf4321b163425e8fb2";
- };
- };
- "node-red-node-twitter-0.1.12" = {
- name = "node-red-node-twitter";
- packageName = "node-red-node-twitter";
- version = "0.1.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.12.tgz";
- sha512 = "3h9isciksl33ajjzn4s0dp8s8m3zkijqc7rbw4v8glrhz5y3npbv8501sffak943jyd4k3dqalizv9giwaxqfd1760pkhbzh816y6j4";
- };
- };
- "node-red-node-rbe-0.1.14" = {
- name = "node-red-node-rbe";
- packageName = "node-red-node-rbe";
- version = "0.1.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.1.14.tgz";
- sha512 = "2xixj71payi14frjkb30lhnripprfcxzqaa9cbwh7w21s426y452ns0vpaycnbsbfwfcn5gcs4b2fjh0b6rxnbasd9hijqf6h3v26wa";
- };
- };
- "bcrypt-1.0.3" = {
- name = "bcrypt";
- packageName = "bcrypt";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt/-/bcrypt-1.0.3.tgz";
- sha512 = "1zfn87155w6q9fsv5ls3gxwih7yvarrh16kzpfrpppblzpmp1cy9gjkknsf9lkixacza39h51jd7varqfg19w3qkdic62zpirv86755";
- };
- };
- "debug-2.6.7" = {
- name = "debug";
- packageName = "debug";
- version = "2.6.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz";
- sha1 = "92bad1f6d05bbb6bba22cca88bcd0ec894c2861e";
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz";
+ sha1 = "1f88aba4ab0b1508e8312acc39345f36e992e2f2";
};
};
"iconv-lite-0.4.15" = {
@@ -19314,22 +11518,2813 @@ let
sha1 = "fe265a218ac6a57cfe854927e9d04c19825eddeb";
};
};
- "css-select-1.2.0" = {
- name = "css-select";
- packageName = "css-select";
- version = "1.2.0";
+ "iconv-lite-0.4.19" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.19";
src = fetchurl {
- url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz";
- sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz";
+ sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1";
};
};
- "htmlparser2-3.9.2" = {
- name = "htmlparser2";
- packageName = "htmlparser2";
- version = "3.9.2";
+ "iconv-lite-0.4.8" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.8";
src = fetchurl {
- url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz";
- sha1 = "1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338";
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz";
+ sha1 = "c6019a7595f2cefca702eab694a010bcd9298d20";
+ };
+ };
+ "ieee754-1.1.8" = {
+ name = "ieee754";
+ packageName = "ieee754";
+ version = "1.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz";
+ sha1 = "be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4";
+ };
+ };
+ "ignore-3.3.7" = {
+ name = "ignore";
+ packageName = "ignore";
+ version = "3.3.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ignore/-/ignore-3.3.7.tgz";
+ sha512 = "0f6xhxww989yic6hwdm8mbylcyakfkrrn22a39wdcc9k842xxyyhzfxkmi79s9gjk3rp3h07n265lf4n51z8yafpdm78d617dxbfqb0";
+ };
+ };
+ "ignore-by-default-1.0.1" = {
+ name = "ignore-by-default";
+ packageName = "ignore-by-default";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz";
+ sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09";
+ };
+ };
+ "image-size-0.5.5" = {
+ name = "image-size";
+ packageName = "image-size";
+ version = "0.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz";
+ sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c";
+ };
+ };
+ "imap-0.8.19" = {
+ name = "imap";
+ packageName = "imap";
+ version = "0.8.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/imap/-/imap-0.8.19.tgz";
+ sha1 = "3678873934ab09cea6ba48741f284da2af59d8d5";
+ };
+ };
+ "immediate-chunk-store-1.0.8" = {
+ name = "immediate-chunk-store";
+ packageName = "immediate-chunk-store";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/immediate-chunk-store/-/immediate-chunk-store-1.0.8.tgz";
+ sha1 = "0ecdad0c546332672d7b5b511b26bb18ce56e73f";
+ };
+ };
+ "import-jsx-1.3.0" = {
+ name = "import-jsx";
+ packageName = "import-jsx";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/import-jsx/-/import-jsx-1.3.0.tgz";
+ sha512 = "26xxz57vqm8p6mg0syr21risma4h5h9n8kn4zv4pcxqap4zxicc210w5m7vz6a4zldhd102sbi7giwzmw0wjlpr6rb1hycr8iv703b1";
+ };
+ };
+ "import-lazy-2.1.0" = {
+ name = "import-lazy";
+ packageName = "import-lazy";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz";
+ sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43";
+ };
+ };
+ "imurmurhash-0.1.4" = {
+ name = "imurmurhash";
+ packageName = "imurmurhash";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
+ sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
+ };
+ };
+ "indent-string-2.1.0" = {
+ name = "indent-string";
+ packageName = "indent-string";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz";
+ sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80";
+ };
+ };
+ "indent-string-3.2.0" = {
+ name = "indent-string";
+ packageName = "indent-string";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz";
+ sha1 = "4a5fd6d27cc332f37e5419a504dbb837105c9289";
+ };
+ };
+ "indexof-0.0.1" = {
+ name = "indexof";
+ packageName = "indexof";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz";
+ sha1 = "82dc336d232b9062179d05ab3293a66059fd435d";
+ };
+ };
+ "infinity-agent-2.0.3" = {
+ name = "infinity-agent";
+ packageName = "infinity-agent";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz";
+ sha1 = "45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216";
+ };
+ };
+ "inflection-1.10.0" = {
+ name = "inflection";
+ packageName = "inflection";
+ version = "1.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inflection/-/inflection-1.10.0.tgz";
+ sha1 = "5bffcb1197ad3e81050f8e17e21668087ee9eb2f";
+ };
+ };
+ "inflection-1.3.8" = {
+ name = "inflection";
+ packageName = "inflection";
+ version = "1.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inflection/-/inflection-1.3.8.tgz";
+ sha1 = "cbd160da9f75b14c3cc63578d4f396784bf3014e";
+ };
+ };
+ "inflight-1.0.6" = {
+ name = "inflight";
+ packageName = "inflight";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
+ sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
+ };
+ };
+ "inherits-1.0.2" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz";
+ sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b";
+ };
+ };
+ "inherits-2.0.1" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz";
+ sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1";
+ };
+ };
+ "inherits-2.0.3" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
+ sha1 = "633c2c83e3da42a502f52466022480f4208261de";
+ };
+ };
+ "ini-1.1.0" = {
+ name = "ini";
+ packageName = "ini";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ini/-/ini-1.1.0.tgz";
+ sha1 = "4e808c2ce144c6c1788918e034d6797bc6cf6281";
+ };
+ };
+ "ini-1.3.5" = {
+ name = "ini";
+ packageName = "ini";
+ version = "1.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
+ sha512 = "1rjbvf1rg5ywhnba08sgagn2qf23lab330qrqmh7d891zap3xpxcyfyj1cblpf0f0rypglcfacybzyrpd4996aa1mbc820awa33k5j5";
+ };
+ };
+ "init-package-json-1.10.1" = {
+ name = "init-package-json";
+ packageName = "init-package-json";
+ version = "1.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.10.1.tgz";
+ sha1 = "cd873a167796befb99612b28762a0b6393fd8f6a";
+ };
+ };
+ "ink-0.3.1" = {
+ name = "ink";
+ packageName = "ink";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ink/-/ink-0.3.1.tgz";
+ sha512 = "0km0z5smnzrh4c5386h3vbmvps6m45m6hbbf62as9wl4vw370q411gpxxhqz3i83n0qjds7py2ylgjx2y3915m5v77c1sf428w4wwkv";
+ };
+ };
+ "ink-text-input-1.1.1" = {
+ name = "ink-text-input";
+ packageName = "ink-text-input";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ink-text-input/-/ink-text-input-1.1.1.tgz";
+ sha512 = "3zdg79viy9vippnaj942c8scyk2nay9fqv3zbd681hfcvn082pxbhc7vszppd7k0fy74rd20s2ias98mi2qzhc6a6zm0p4vv6yybrkc";
+ };
+ };
+ "inline-source-map-0.6.2" = {
+ name = "inline-source-map";
+ packageName = "inline-source-map";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.2.tgz";
+ sha1 = "f9393471c18a79d1724f863fa38b586370ade2a5";
+ };
+ };
+ "innertext-1.0.2" = {
+ name = "innertext";
+ packageName = "innertext";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/innertext/-/innertext-1.0.2.tgz";
+ sha1 = "11a197b3143a593636fba5d59213835e6954580a";
+ };
+ };
+ "inquirer-0.10.1" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "0.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-0.10.1.tgz";
+ sha1 = "ea25e4ce69ca145e05c99e46dcfec05e4012594a";
+ };
+ };
+ "inquirer-0.12.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "0.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz";
+ sha1 = "1ef2bfd63504df0bc75785fff8c2c41df12f077e";
+ };
+ };
+ "inquirer-0.8.5" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "0.8.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz";
+ sha1 = "dbd740cf6ca3b731296a63ce6f6d961851f336df";
+ };
+ };
+ "inquirer-1.0.3" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-1.0.3.tgz";
+ sha1 = "ebe3a0948571bcc46ccccbe2f9bcec251e984bd0";
+ };
+ };
+ "inquirer-1.2.3" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-1.2.3.tgz";
+ sha1 = "4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918";
+ };
+ };
+ "inquirer-3.3.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz";
+ sha512 = "1wsmzzva3rfjb4bfks7ba2nvha9ziwgq2kag6xxibc5cc6mz19xbgj4fm3a7ghvfbfx4am0x13ibc8j2s5m3sv12nph44rq56gnvv47";
+ };
+ };
+ "insert-module-globals-7.0.1" = {
+ name = "insert-module-globals";
+ packageName = "insert-module-globals";
+ version = "7.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.1.tgz";
+ sha1 = "c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3";
+ };
+ };
+ "insight-0.8.4" = {
+ name = "insight";
+ packageName = "insight";
+ version = "0.8.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/insight/-/insight-0.8.4.tgz";
+ sha1 = "671caf65b47c9fe8c3d1b3206cf45bb211b75884";
+ };
+ };
+ "int64-buffer-0.1.10" = {
+ name = "int64-buffer";
+ packageName = "int64-buffer";
+ version = "0.1.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/int64-buffer/-/int64-buffer-0.1.10.tgz";
+ sha1 = "277b228a87d95ad777d07c13832022406a473423";
+ };
+ };
+ "internal-ip-1.2.0" = {
+ name = "internal-ip";
+ packageName = "internal-ip";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/internal-ip/-/internal-ip-1.2.0.tgz";
+ sha1 = "ae9fbf93b984878785d50a8de1b356956058cf5c";
+ };
+ };
+ "interpret-1.1.0" = {
+ name = "interpret";
+ packageName = "interpret";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz";
+ sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614";
+ };
+ };
+ "intersect-1.0.1" = {
+ name = "intersect";
+ packageName = "intersect";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/intersect/-/intersect-1.0.1.tgz";
+ sha1 = "332650e10854d8c0ac58c192bdc27a8bf7e7a30c";
+ };
+ };
+ "into-stream-3.1.0" = {
+ name = "into-stream";
+ packageName = "into-stream";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz";
+ sha1 = "96fb0a936c12babd6ff1752a17d05616abd094c6";
+ };
+ };
+ "invariant-2.2.2" = {
+ name = "invariant";
+ packageName = "invariant";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/invariant/-/invariant-2.2.2.tgz";
+ sha1 = "9e1f56ac0acdb6bf303306f338be3b204ae60360";
+ };
+ };
+ "invert-kv-1.0.0" = {
+ name = "invert-kv";
+ packageName = "invert-kv";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz";
+ sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6";
+ };
+ };
+ "ip-1.0.1" = {
+ name = "ip";
+ packageName = "ip";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ip/-/ip-1.0.1.tgz";
+ sha1 = "c7e356cdea225ae71b36d70f2e71a92ba4e42590";
+ };
+ };
+ "ip-1.1.5" = {
+ name = "ip";
+ packageName = "ip";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz";
+ sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
+ };
+ };
+ "ip-set-1.0.1" = {
+ name = "ip-set";
+ packageName = "ip-set";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ip-set/-/ip-set-1.0.1.tgz";
+ sha1 = "633b66d0bd6c8d0de968d053263c9120d3b6727e";
+ };
+ };
+ "ipaddr.js-1.0.5" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.0.5.tgz";
+ sha1 = "5fa78cf301b825c78abc3042d812723049ea23c7";
+ };
+ };
+ "ipaddr.js-1.4.0" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.4.0.tgz";
+ sha1 = "296aca878a821816e5b85d0a285a99bcff4582f0";
+ };
+ };
+ "ipaddr.js-1.5.2" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.2.tgz";
+ sha1 = "d4b505bde9946987ccf0fc58d9010ff9607e3fa0";
+ };
+ };
+ "ipaddr.js-1.5.4" = {
+ name = "ipaddr.js";
+ packageName = "ipaddr.js";
+ version = "1.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.5.4.tgz";
+ sha1 = "962263d9d26132956fc5c630b638a30d3cdffc14";
+ };
+ };
+ "irc-replies-2.0.1" = {
+ name = "irc-replies";
+ packageName = "irc-replies";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/irc-replies/-/irc-replies-2.0.1.tgz";
+ sha1 = "5bf4125fb6ec0f3929a89647b26e653232942b79";
+ };
+ };
+ "is-3.2.1" = {
+ name = "is";
+ packageName = "is";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is/-/is-3.2.1.tgz";
+ sha1 = "d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5";
+ };
+ };
+ "is-absolute-0.1.7" = {
+ name = "is-absolute";
+ packageName = "is-absolute";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz";
+ sha1 = "847491119fccb5fb436217cc737f7faad50f603f";
+ };
+ };
+ "is-absolute-0.2.6" = {
+ name = "is-absolute";
+ packageName = "is-absolute";
+ version = "0.2.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-absolute/-/is-absolute-0.2.6.tgz";
+ sha1 = "20de69f3db942ef2d87b9c2da36f172235b1b5eb";
+ };
+ };
+ "is-absolute-1.0.0" = {
+ name = "is-absolute";
+ packageName = "is-absolute";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz";
+ sha512 = "02g5p9wfcx3f1p0zq01ycrx5biwg79qg1mdw1cv6li7kxpny5hxsp34ynam7w2g6nvah73f0kzdkh6pxxmx1ymd8m02fwvgz6lsirbl";
+ };
+ };
+ "is-accessor-descriptor-0.1.6" = {
+ name = "is-accessor-descriptor";
+ packageName = "is-accessor-descriptor";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz";
+ sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6";
+ };
+ };
+ "is-accessor-descriptor-1.0.0" = {
+ name = "is-accessor-descriptor";
+ packageName = "is-accessor-descriptor";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz";
+ sha512 = "1qllik6fjwfq17ic0fxwqyll8mrhmcm36xfsq45xc57mq9ah4i4nn4f8fvgb0gx4kpl3jlpkzndp0xlmmf2mh0xmggw6mhw74fng64v";
+ };
+ };
+ "is-alphabetical-1.0.1" = {
+ name = "is-alphabetical";
+ packageName = "is-alphabetical";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.1.tgz";
+ sha1 = "c77079cc91d4efac775be1034bf2d243f95e6f08";
+ };
+ };
+ "is-alphanumerical-1.0.1" = {
+ name = "is-alphanumerical";
+ packageName = "is-alphanumerical";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.1.tgz";
+ sha1 = "dfb4aa4d1085e33bdb61c2dee9c80e9c6c19f53b";
+ };
+ };
+ "is-arguments-1.0.2" = {
+ name = "is-arguments";
+ packageName = "is-arguments";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.2.tgz";
+ sha1 = "07e30ad79531844179b642d2d8399435182c8727";
+ };
+ };
+ "is-arrayish-0.2.1" = {
+ name = "is-arrayish";
+ packageName = "is-arrayish";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz";
+ sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
+ };
+ };
+ "is-arrayish-0.3.1" = {
+ name = "is-arrayish";
+ packageName = "is-arrayish";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.1.tgz";
+ sha1 = "c2dfc386abaa0c3e33c48db3fe87059e69065efd";
+ };
+ };
+ "is-binary-path-1.0.1" = {
+ name = "is-binary-path";
+ packageName = "is-binary-path";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz";
+ sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
+ };
+ };
+ "is-buffer-1.1.6" = {
+ name = "is-buffer";
+ packageName = "is-buffer";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz";
+ sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm";
+ };
+ };
+ "is-builtin-module-1.0.0" = {
+ name = "is-builtin-module";
+ packageName = "is-builtin-module";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz";
+ sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe";
+ };
+ };
+ "is-callable-1.1.3" = {
+ name = "is-callable";
+ packageName = "is-callable";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz";
+ sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2";
+ };
+ };
+ "is-ci-1.1.0" = {
+ name = "is-ci";
+ packageName = "is-ci";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz";
+ sha512 = "0m66alrh568wj40xwshf8q99gsjfk1jr0czp4jc2sm519wfzzzprkl5zjvw2r5h49p72d50ywj9qg67dnyazq0ijy4flgny2b1ygd3k";
+ };
+ };
+ "is-data-descriptor-0.1.4" = {
+ name = "is-data-descriptor";
+ packageName = "is-data-descriptor";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz";
+ sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56";
+ };
+ };
+ "is-data-descriptor-1.0.0" = {
+ name = "is-data-descriptor";
+ packageName = "is-data-descriptor";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz";
+ sha512 = "0ny6kxc752fg3z6fmj8a7fw2lai2y17d9fx0028nvyv1qj0sa30rfryhv9xd7b7is1yfs0val6amsy2b22rh589il10md36a75mgd4d";
+ };
+ };
+ "is-date-object-1.0.1" = {
+ name = "is-date-object";
+ packageName = "is-date-object";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz";
+ sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16";
+ };
+ };
+ "is-decimal-1.0.1" = {
+ name = "is-decimal";
+ packageName = "is-decimal";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.1.tgz";
+ sha1 = "f5fb6a94996ad9e8e3761fbfbd091f1fca8c4e82";
+ };
+ };
+ "is-descriptor-0.1.6" = {
+ name = "is-descriptor";
+ packageName = "is-descriptor";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz";
+ sha512 = "0gbflcxmd30gzj91y19fylsfalirl6qg71sxjximc8lc2vxkg5h9scnahvxsczymchlx742i8ai489843ys431vyw73rp418jpxiw3a";
+ };
+ };
+ "is-descriptor-1.0.2" = {
+ name = "is-descriptor";
+ packageName = "is-descriptor";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
+ sha512 = "2v1a9mn2rzz52v8vs3i7njk9pv95fh971yc81xr0zkaw3dff4gbv1zv048xyjysfgwpajbyryk2px8hinwwh0wagblmw6chdbjsrs6r";
+ };
+ };
+ "is-docker-1.1.0" = {
+ name = "is-docker";
+ packageName = "is-docker";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-docker/-/is-docker-1.1.0.tgz";
+ sha1 = "f04374d4eee5310e9a8e113bf1495411e46176a1";
+ };
+ };
+ "is-dotfile-1.0.3" = {
+ name = "is-dotfile";
+ packageName = "is-dotfile";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz";
+ sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1";
+ };
+ };
+ "is-equal-shallow-0.1.3" = {
+ name = "is-equal-shallow";
+ packageName = "is-equal-shallow";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz";
+ sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534";
+ };
+ };
+ "is-expression-2.1.0" = {
+ name = "is-expression";
+ packageName = "is-expression";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-expression/-/is-expression-2.1.0.tgz";
+ sha1 = "91be9d47debcfef077977e9722be6dcfb4465ef0";
+ };
+ };
+ "is-expression-3.0.0" = {
+ name = "is-expression";
+ packageName = "is-expression";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-expression/-/is-expression-3.0.0.tgz";
+ sha1 = "39acaa6be7fd1f3471dc42c7416e61c24317ac9f";
+ };
+ };
+ "is-extendable-0.1.1" = {
+ name = "is-extendable";
+ packageName = "is-extendable";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
+ sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
+ };
+ };
+ "is-extendable-1.0.1" = {
+ name = "is-extendable";
+ packageName = "is-extendable";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz";
+ sha512 = "0w73qlx9ynmv2iznw1kll86yd04z4rsz3788nzgh7amcnpsbyxbrs734im9dibqgps6pjyz61s8kp4lcsbjsdfrlc51m1pm2hrxgfba";
+ };
+ };
+ "is-extglob-1.0.0" = {
+ name = "is-extglob";
+ packageName = "is-extglob";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz";
+ sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0";
+ };
+ };
+ "is-extglob-2.1.1" = {
+ name = "is-extglob";
+ packageName = "is-extglob";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz";
+ sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2";
+ };
+ };
+ "is-finite-1.0.2" = {
+ name = "is-finite";
+ packageName = "is-finite";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz";
+ sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa";
+ };
+ };
+ "is-fullwidth-code-point-1.0.0" = {
+ name = "is-fullwidth-code-point";
+ packageName = "is-fullwidth-code-point";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
+ sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
+ };
+ };
+ "is-fullwidth-code-point-2.0.0" = {
+ name = "is-fullwidth-code-point";
+ packageName = "is-fullwidth-code-point";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
+ sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
+ };
+ };
+ "is-function-1.0.1" = {
+ name = "is-function";
+ packageName = "is-function";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz";
+ sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5";
+ };
+ };
+ "is-glob-2.0.1" = {
+ name = "is-glob";
+ packageName = "is-glob";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz";
+ sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863";
+ };
+ };
+ "is-glob-3.1.0" = {
+ name = "is-glob";
+ packageName = "is-glob";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz";
+ sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
+ };
+ };
+ "is-glob-4.0.0" = {
+ name = "is-glob";
+ packageName = "is-glob";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.0.tgz";
+ sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0";
+ };
+ };
+ "is-hexadecimal-1.0.1" = {
+ name = "is-hexadecimal";
+ packageName = "is-hexadecimal";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.1.tgz";
+ sha1 = "6e084bbc92061fbb0971ec58b6ce6d404e24da69";
+ };
+ };
+ "is-installed-globally-0.1.0" = {
+ name = "is-installed-globally";
+ packageName = "is-installed-globally";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz";
+ sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80";
+ };
+ };
+ "is-my-json-valid-2.17.1" = {
+ name = "is-my-json-valid";
+ packageName = "is-my-json-valid";
+ version = "2.17.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.17.1.tgz";
+ sha512 = "2qkjhj6i3y40j35y8k722kklm1j8dfwk9506csa3vxr16vv7125v8jzpmkl551gsif98bzn205yj3sb99xi1i4bd6p5a1m81wvj2sa3";
+ };
+ };
+ "is-negated-glob-1.0.0" = {
+ name = "is-negated-glob";
+ packageName = "is-negated-glob";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz";
+ sha1 = "6910bca5da8c95e784b5751b976cf5a10fee36d2";
+ };
+ };
+ "is-npm-1.0.0" = {
+ name = "is-npm";
+ packageName = "is-npm";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz";
+ sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4";
+ };
+ };
+ "is-number-0.1.1" = {
+ name = "is-number";
+ packageName = "is-number";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz";
+ sha1 = "69a7af116963d47206ec9bd9b48a14216f1e3806";
+ };
+ };
+ "is-number-2.1.0" = {
+ name = "is-number";
+ packageName = "is-number";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz";
+ sha1 = "01fcbbb393463a548f2f466cce16dece49db908f";
+ };
+ };
+ "is-number-3.0.0" = {
+ name = "is-number";
+ packageName = "is-number";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
+ sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
+ };
+ };
+ "is-obj-1.0.1" = {
+ name = "is-obj";
+ packageName = "is-obj";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz";
+ sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f";
+ };
+ };
+ "is-object-1.0.1" = {
+ name = "is-object";
+ packageName = "is-object";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz";
+ sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470";
+ };
+ };
+ "is-odd-1.0.0" = {
+ name = "is-odd";
+ packageName = "is-odd";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-odd/-/is-odd-1.0.0.tgz";
+ sha1 = "3b8a932eb028b3775c39bb09e91767accdb69088";
+ };
+ };
+ "is-path-cwd-1.0.0" = {
+ name = "is-path-cwd";
+ packageName = "is-path-cwd";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz";
+ sha1 = "d225ec23132e89edd38fda767472e62e65f1106d";
+ };
+ };
+ "is-path-in-cwd-1.0.0" = {
+ name = "is-path-in-cwd";
+ packageName = "is-path-in-cwd";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz";
+ sha1 = "6477582b8214d602346094567003be8a9eac04dc";
+ };
+ };
+ "is-path-inside-1.0.1" = {
+ name = "is-path-inside";
+ packageName = "is-path-inside";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz";
+ sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036";
+ };
+ };
+ "is-plain-obj-1.1.0" = {
+ name = "is-plain-obj";
+ packageName = "is-plain-obj";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz";
+ sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e";
+ };
+ };
+ "is-plain-object-2.0.4" = {
+ name = "is-plain-object";
+ packageName = "is-plain-object";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz";
+ sha512 = "0xgsjz9m3kg5pm36lcchblxk53qay59ya7wi5jgdmz0dsl5b0j2j7wcd48yyfaip1m70mj9aqf8kib02fn62k0hy0vxg2hng60yk4w7";
+ };
+ };
+ "is-posix-bracket-0.1.1" = {
+ name = "is-posix-bracket";
+ packageName = "is-posix-bracket";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz";
+ sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
+ };
+ };
+ "is-primitive-2.0.0" = {
+ name = "is-primitive";
+ packageName = "is-primitive";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz";
+ sha1 = "207bab91638499c07b2adf240a41a87210034575";
+ };
+ };
+ "is-promise-1.0.1" = {
+ name = "is-promise";
+ packageName = "is-promise";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-promise/-/is-promise-1.0.1.tgz";
+ sha1 = "31573761c057e33c2e91aab9e96da08cefbe76e5";
+ };
+ };
+ "is-promise-2.1.0" = {
+ name = "is-promise";
+ packageName = "is-promise";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz";
+ sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa";
+ };
+ };
+ "is-property-1.0.2" = {
+ name = "is-property";
+ packageName = "is-property";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz";
+ sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
+ };
+ };
+ "is-redirect-1.0.0" = {
+ name = "is-redirect";
+ packageName = "is-redirect";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz";
+ sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24";
+ };
+ };
+ "is-regex-1.0.4" = {
+ name = "is-regex";
+ packageName = "is-regex";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz";
+ sha1 = "5517489b547091b0930e095654ced25ee97e9491";
+ };
+ };
+ "is-regexp-1.0.0" = {
+ name = "is-regexp";
+ packageName = "is-regexp";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz";
+ sha1 = "fd2d883545c46bac5a633e7b9a09e87fa2cb5069";
+ };
+ };
+ "is-relative-0.1.3" = {
+ name = "is-relative";
+ packageName = "is-relative";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz";
+ sha1 = "905fee8ae86f45b3ec614bc3c15c869df0876e82";
+ };
+ };
+ "is-relative-0.2.1" = {
+ name = "is-relative";
+ packageName = "is-relative";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-relative/-/is-relative-0.2.1.tgz";
+ sha1 = "d27f4c7d516d175fb610db84bbeef23c3bc97aa5";
+ };
+ };
+ "is-relative-1.0.0" = {
+ name = "is-relative";
+ packageName = "is-relative";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz";
+ sha512 = "0c1pd4414iy40xq652p1zgqgmncmm7xcns96pfazd63v439vyc1z93bvzvbw5r2qc4fp24414ydnj4gdsqlq223pfg05ar2mmwd23rb";
+ };
+ };
+ "is-resolvable-1.1.0" = {
+ name = "is-resolvable";
+ packageName = "is-resolvable";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz";
+ sha512 = "0r8v3dkj5qbfh2wlj4w1msyqsw6j5myvxi88wkw36isscb97yyc2yc1pwm64djrmh1css6jp9p08cx1zb479fg4gv26prciaifdh05a";
+ };
+ };
+ "is-retry-allowed-1.1.0" = {
+ name = "is-retry-allowed";
+ packageName = "is-retry-allowed";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz";
+ sha1 = "11a060568b67339444033d0125a61a20d564fb34";
+ };
+ };
+ "is-root-1.0.0" = {
+ name = "is-root";
+ packageName = "is-root";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-root/-/is-root-1.0.0.tgz";
+ sha1 = "07b6c233bc394cd9d02ba15c966bd6660d6342d5";
+ };
+ };
+ "is-scoped-1.0.0" = {
+ name = "is-scoped";
+ packageName = "is-scoped";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-scoped/-/is-scoped-1.0.0.tgz";
+ sha1 = "449ca98299e713038256289ecb2b540dc437cb30";
+ };
+ };
+ "is-stream-1.1.0" = {
+ name = "is-stream";
+ packageName = "is-stream";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
+ sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
+ };
+ };
+ "is-string-1.0.4" = {
+ name = "is-string";
+ packageName = "is-string";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz";
+ sha1 = "cc3a9b69857d621e963725a24caeec873b826e64";
+ };
+ };
+ "is-subset-0.1.1" = {
+ name = "is-subset";
+ packageName = "is-subset";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz";
+ sha1 = "8a59117d932de1de00f245fcdd39ce43f1e939a6";
+ };
+ };
+ "is-supported-regexp-flag-1.0.0" = {
+ name = "is-supported-regexp-flag";
+ packageName = "is-supported-regexp-flag";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.0.tgz";
+ sha1 = "8b520c85fae7a253382d4b02652e045576e13bb8";
+ };
+ };
+ "is-symbol-1.0.1" = {
+ name = "is-symbol";
+ packageName = "is-symbol";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz";
+ sha1 = "3cc59f00025194b6ab2e38dbae6689256b660572";
+ };
+ };
+ "is-text-path-1.0.1" = {
+ name = "is-text-path";
+ packageName = "is-text-path";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz";
+ sha1 = "4e1aa0fb51bfbcb3e92688001397202c1775b66e";
+ };
+ };
+ "is-typedarray-1.0.0" = {
+ name = "is-typedarray";
+ packageName = "is-typedarray";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
+ sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
+ };
+ };
+ "is-unc-path-0.1.2" = {
+ name = "is-unc-path";
+ packageName = "is-unc-path";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-0.1.2.tgz";
+ sha1 = "6ab053a72573c10250ff416a3814c35178af39b9";
+ };
+ };
+ "is-unc-path-1.0.0" = {
+ name = "is-unc-path";
+ packageName = "is-unc-path";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz";
+ sha512 = "2asak63h3kc1vackrpai7qfiv15ndr231w1yc753m1dy7fd6ywxsr0rvh88b9ppyxhmc373fqk89a0pw3dllv7m5nbbbcqzvmaskccs";
+ };
+ };
+ "is-url-1.2.2" = {
+ name = "is-url";
+ packageName = "is-url";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-url/-/is-url-1.2.2.tgz";
+ sha1 = "498905a593bf47cc2d9e7f738372bbf7696c7f26";
+ };
+ };
+ "is-utf8-0.2.1" = {
+ name = "is-utf8";
+ packageName = "is-utf8";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz";
+ sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
+ };
+ };
+ "is-valid-glob-0.3.0" = {
+ name = "is-valid-glob";
+ packageName = "is-valid-glob";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz";
+ sha1 = "d4b55c69f51886f9b65c70d6c2622d37e29f48fe";
+ };
+ };
+ "is-windows-0.2.0" = {
+ name = "is-windows";
+ packageName = "is-windows";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz";
+ sha1 = "de1aa6d63ea29dd248737b69f1ff8b8002d2108c";
+ };
+ };
+ "is-windows-1.0.1" = {
+ name = "is-windows";
+ packageName = "is-windows";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.1.tgz";
+ sha1 = "310db70f742d259a16a369202b51af84233310d9";
+ };
+ };
+ "is-wsl-1.1.0" = {
+ name = "is-wsl";
+ packageName = "is-wsl";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz";
+ sha1 = "1f16e4aa22b04d1336b66188a66af3c600c3a66d";
+ };
+ };
+ "isarray-0.0.1" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz";
+ sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
+ };
+ };
+ "isarray-1.0.0" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
+ sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
+ };
+ };
+ "isarray-2.0.1" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz";
+ sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e";
+ };
+ };
+ "isbinaryfile-3.0.2" = {
+ name = "isbinaryfile";
+ packageName = "isbinaryfile";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.2.tgz";
+ sha1 = "4a3e974ec0cba9004d3fc6cde7209ea69368a621";
+ };
+ };
+ "isemail-1.2.0" = {
+ name = "isemail";
+ packageName = "isemail";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz";
+ sha1 = "be03df8cc3e29de4d2c5df6501263f1fa4595e9a";
+ };
+ };
+ "isexe-1.1.2" = {
+ name = "isexe";
+ packageName = "isexe";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isexe/-/isexe-1.1.2.tgz";
+ sha1 = "36f3e22e60750920f5e7241a476a8c6a42275ad0";
+ };
+ };
+ "isexe-2.0.0" = {
+ name = "isexe";
+ packageName = "isexe";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
+ sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
+ };
+ };
+ "isobject-2.1.0" = {
+ name = "isobject";
+ packageName = "isobject";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
+ sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
+ };
+ };
+ "isobject-3.0.1" = {
+ name = "isobject";
+ packageName = "isobject";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz";
+ sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df";
+ };
+ };
+ "isomorphic-fetch-2.2.1" = {
+ name = "isomorphic-fetch";
+ packageName = "isomorphic-fetch";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz";
+ sha1 = "611ae1acf14f5e81f729507472819fe9733558a9";
+ };
+ };
+ "isstream-0.1.2" = {
+ name = "isstream";
+ packageName = "isstream";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
+ sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
+ };
+ };
+ "isurl-1.0.0" = {
+ name = "isurl";
+ packageName = "isurl";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz";
+ sha512 = "3vs53bpdrwiwwcql2xs20jmd8qha27k4iypdhr0b3isgdaj18vz80nhxwvvqxk6y3x5vj3slchxl0r91gjhz487xmkkp52gridg5zyl";
+ };
+ };
+ "iterare-0.0.8" = {
+ name = "iterare";
+ packageName = "iterare";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iterare/-/iterare-0.0.8.tgz";
+ sha1 = "a969a80a1fbff6b78f28776594d7bc2bdfab6aad";
+ };
+ };
+ "iterate-object-1.3.2" = {
+ name = "iterate-object";
+ packageName = "iterate-object";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iterate-object/-/iterate-object-1.3.2.tgz";
+ sha1 = "24ec15affa5d0039e8839695a21c2cae1f45b66b";
+ };
+ };
+ "iterators-0.1.0" = {
+ name = "iterators";
+ packageName = "iterators";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iterators/-/iterators-0.1.0.tgz";
+ sha1 = "d03f666ca4e6130138565997cacea54164203156";
+ };
+ };
+ "jade-0.27.0" = {
+ name = "jade";
+ packageName = "jade";
+ version = "0.27.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jade/-/jade-0.27.0.tgz";
+ sha1 = "dc5ebed10d04a5e0eaf49ef0009bec473d1a6b31";
+ };
+ };
+ "jade-1.11.0" = {
+ name = "jade";
+ packageName = "jade";
+ version = "1.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jade/-/jade-1.11.0.tgz";
+ sha1 = "9c80e538c12d3fb95c8d9bb9559fa0cc040405fd";
+ };
+ };
+ "jaeger-client-3.7.0" = {
+ name = "jaeger-client";
+ packageName = "jaeger-client";
+ version = "3.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jaeger-client/-/jaeger-client-3.7.0.tgz";
+ sha1 = "65ec79e33fc6aaeb5acf36064d08acf4ec47da96";
+ };
+ };
+ "jed-1.1.1" = {
+ name = "jed";
+ packageName = "jed";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jed/-/jed-1.1.1.tgz";
+ sha1 = "7a549bbd9ffe1585b0cd0a191e203055bee574b4";
+ };
+ };
+ "jetpack-id-1.0.0" = {
+ name = "jetpack-id";
+ packageName = "jetpack-id";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jetpack-id/-/jetpack-id-1.0.0.tgz";
+ sha1 = "2cf9fbae46d8074fc16b7de0071c8efebca473a6";
+ };
+ };
+ "jju-1.3.0" = {
+ name = "jju";
+ packageName = "jju";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jju/-/jju-1.3.0.tgz";
+ sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa";
+ };
+ };
+ "jmespath-0.15.0" = {
+ name = "jmespath";
+ packageName = "jmespath";
+ version = "0.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz";
+ sha1 = "a3f222a9aae9f966f5d27c796510e28091764217";
+ };
+ };
+ "jodid25519-1.0.2" = {
+ name = "jodid25519";
+ packageName = "jodid25519";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz";
+ sha1 = "06d4912255093419477d425633606e0e90782967";
+ };
+ };
+ "joi-6.10.1" = {
+ name = "joi";
+ packageName = "joi";
+ version = "6.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz";
+ sha1 = "4d50c318079122000fe5f16af1ff8e1917b77e06";
+ };
+ };
+ "js-select-0.6.0" = {
+ name = "js-select";
+ packageName = "js-select";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-select/-/js-select-0.6.0.tgz";
+ sha1 = "c284e22824d5927aec962dcdf247174aefb0d190";
+ };
+ };
+ "js-stringify-1.0.2" = {
+ name = "js-stringify";
+ packageName = "js-stringify";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz";
+ sha1 = "1736fddfd9724f28a3682adc6230ae7e4e9679db";
+ };
+ };
+ "js-tokens-3.0.2" = {
+ name = "js-tokens";
+ packageName = "js-tokens";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz";
+ sha1 = "9866df395102130e38f7f996bceb65443209c25b";
+ };
+ };
+ "js-yaml-0.3.7" = {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "0.3.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.7.tgz";
+ sha1 = "d739d8ee86461e54b354d6a7d7d1f2ad9a167f62";
+ };
+ };
+ "js-yaml-2.1.0" = {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.1.0.tgz";
+ sha1 = "a55a6e4706b01d06326259a6f4bfc42e6ae38b1f";
+ };
+ };
+ "js-yaml-3.10.0" = {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "3.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz";
+ sha512 = "0h26sq1bwxc45bm0hvlcadrbk4bizzaw729wvw690ya7mpys45bqfzdqwhjkdrnq0i44dzxckykz4bix22jfdyfg1asybg3yzczjsrv";
+ };
+ };
+ "js-yaml-3.8.4" = {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "3.8.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.4.tgz";
+ sha1 = "520b4564f86573ba96662af85a8cafa7b4b5a6f6";
+ };
+ };
+ "js2xmlparser-1.0.0" = {
+ name = "js2xmlparser";
+ packageName = "js2xmlparser";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-1.0.0.tgz";
+ sha1 = "5a170f2e8d6476ce45405e04823242513782fe30";
+ };
+ };
+ "js2xmlparser-3.0.0" = {
+ name = "js2xmlparser";
+ packageName = "js2xmlparser";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-3.0.0.tgz";
+ sha1 = "3fb60eaa089c5440f9319f51760ccd07e2499733";
+ };
+ };
+ "jsbn-0.1.1" = {
+ name = "jsbn";
+ packageName = "jsbn";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
+ sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
+ };
+ };
+ "jsesc-1.3.0" = {
+ name = "jsesc";
+ packageName = "jsesc";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz";
+ sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b";
+ };
+ };
+ "jshint-2.8.0" = {
+ name = "jshint";
+ packageName = "jshint";
+ version = "2.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jshint/-/jshint-2.8.0.tgz";
+ sha1 = "1d09a3bd913c4cadfa81bf18d582bd85bffe0d44";
+ };
+ };
+ "json-buffer-3.0.0" = {
+ name = "json-buffer";
+ packageName = "json-buffer";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz";
+ sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898";
+ };
+ };
+ "json-edm-parser-0.1.2" = {
+ name = "json-edm-parser";
+ packageName = "json-edm-parser";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-edm-parser/-/json-edm-parser-0.1.2.tgz";
+ sha1 = "1e60b0fef1bc0af67bc0d146dfdde5486cd615b4";
+ };
+ };
+ "json-loader-0.5.7" = {
+ name = "json-loader";
+ packageName = "json-loader";
+ version = "0.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz";
+ sha512 = "3iwy9jwca9hg6h1k7cmcdlsygn2qzjv7w72fsrfjfpdrcyd4xc5fb11sf664rvnzrfmz24f19kvi3qawif4n63lggvpg5pv73qfrcs0";
+ };
+ };
+ "json-parse-better-errors-1.0.1" = {
+ name = "json-parse-better-errors";
+ packageName = "json-parse-better-errors";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz";
+ sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967";
+ };
+ };
+ "json-parse-helpfulerror-1.0.3" = {
+ name = "json-parse-helpfulerror";
+ packageName = "json-parse-helpfulerror";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz";
+ sha1 = "13f14ce02eed4e981297b64eb9e3b932e2dd13dc";
+ };
+ };
+ "json-refs-2.1.7" = {
+ name = "json-refs";
+ packageName = "json-refs";
+ version = "2.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-refs/-/json-refs-2.1.7.tgz";
+ sha1 = "b9eb01fe29f5ea3e92878f15aea10ad38b5acf89";
+ };
+ };
+ "json-rpc2-0.8.1" = {
+ name = "json-rpc2";
+ packageName = "json-rpc2";
+ version = "0.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-rpc2/-/json-rpc2-0.8.1.tgz";
+ sha1 = "efe8c9834605b556c488d1ed7bcf24ee381eeeb2";
+ };
+ };
+ "json-schema-0.2.2" = {
+ name = "json-schema";
+ packageName = "json-schema";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.2.tgz";
+ sha1 = "50354f19f603917c695f70b85afa77c3b0f23506";
+ };
+ };
+ "json-schema-0.2.3" = {
+ name = "json-schema";
+ packageName = "json-schema";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
+ sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
+ };
+ };
+ "json-schema-traverse-0.3.1" = {
+ name = "json-schema-traverse";
+ packageName = "json-schema-traverse";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz";
+ sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340";
+ };
+ };
+ "json-stable-stringify-0.0.1" = {
+ name = "json-stable-stringify";
+ packageName = "json-stable-stringify";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz";
+ sha1 = "611c23e814db375527df851193db59dd2af27f45";
+ };
+ };
+ "json-stable-stringify-1.0.1" = {
+ name = "json-stable-stringify";
+ packageName = "json-stable-stringify";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
+ sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
+ };
+ };
+ "json-stable-stringify-without-jsonify-1.0.1" = {
+ name = "json-stable-stringify-without-jsonify";
+ packageName = "json-stable-stringify-without-jsonify";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz";
+ sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651";
+ };
+ };
+ "json-stringify-safe-3.0.0" = {
+ name = "json-stringify-safe";
+ packageName = "json-stringify-safe";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz";
+ sha1 = "9db7b0e530c7f289c5e8c8432af191c2ff75a5b3";
+ };
+ };
+ "json-stringify-safe-5.0.1" = {
+ name = "json-stringify-safe";
+ packageName = "json-stringify-safe";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
+ sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
+ };
+ };
+ "json3-3.2.6" = {
+ name = "json3";
+ packageName = "json3";
+ version = "3.2.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json3/-/json3-3.2.6.tgz";
+ sha1 = "f6efc93c06a04de9aec53053df2559bb19e2038b";
+ };
+ };
+ "json3-3.3.2" = {
+ name = "json3";
+ packageName = "json3";
+ version = "3.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz";
+ sha1 = "3c0434743df93e2f5c42aee7b19bcb483575f4e1";
+ };
+ };
+ "json5-0.2.0" = {
+ name = "json5";
+ packageName = "json5";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json5/-/json5-0.2.0.tgz";
+ sha1 = "b6d7035c70c4570f883c7edc759de3ae03db3343";
+ };
+ };
+ "json5-0.5.1" = {
+ name = "json5";
+ packageName = "json5";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz";
+ sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
+ };
+ };
+ "jsonata-1.2.6" = {
+ name = "jsonata";
+ packageName = "jsonata";
+ version = "1.2.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonata/-/jsonata-1.2.6.tgz";
+ sha512 = "3bpyhs9imacbmpq0r7l65qvkx0dfnx92qz5vm59i983h2xvw2yrr1934i979accigkr33b65n51m5zx73glbi3pwl8n6zm5b3y74a8a";
+ };
+ };
+ "jsonfile-1.0.1" = {
+ name = "jsonfile";
+ packageName = "jsonfile";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonfile/-/jsonfile-1.0.1.tgz";
+ sha1 = "ea5efe40b83690b98667614a7392fc60e842c0dd";
+ };
+ };
+ "jsonfile-2.4.0" = {
+ name = "jsonfile";
+ packageName = "jsonfile";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz";
+ sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8";
+ };
+ };
+ "jsonfile-4.0.0" = {
+ name = "jsonfile";
+ packageName = "jsonfile";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz";
+ sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb";
+ };
+ };
+ "jsonify-0.0.0" = {
+ name = "jsonify";
+ packageName = "jsonify";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
+ sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
+ };
+ };
+ "jsonlint-1.6.2" = {
+ name = "jsonlint";
+ packageName = "jsonlint";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.2.tgz";
+ sha1 = "5737045085f55eb455c68b1ff4ebc01bd50e8830";
+ };
+ };
+ "jsonminify-0.4.1" = {
+ name = "jsonminify";
+ packageName = "jsonminify";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonminify/-/jsonminify-0.4.1.tgz";
+ sha1 = "805dafbb39395188cee9ab582c81ef959d7e710c";
+ };
+ };
+ "jsonparse-0.0.5" = {
+ name = "jsonparse";
+ packageName = "jsonparse";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz";
+ sha1 = "330542ad3f0a654665b778f3eb2d9a9fa507ac64";
+ };
+ };
+ "jsonparse-0.0.6" = {
+ name = "jsonparse";
+ packageName = "jsonparse";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.6.tgz";
+ sha1 = "ab599f19324d4ae178fa21a930192ab11ab61a4e";
+ };
+ };
+ "jsonparse-1.2.0" = {
+ name = "jsonparse";
+ packageName = "jsonparse";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz";
+ sha1 = "5c0c5685107160e72fe7489bddea0b44c2bc67bd";
+ };
+ };
+ "jsonparse-1.3.1" = {
+ name = "jsonparse";
+ packageName = "jsonparse";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz";
+ sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280";
+ };
+ };
+ "jsonpointer-4.0.1" = {
+ name = "jsonpointer";
+ packageName = "jsonpointer";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz";
+ sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9";
+ };
+ };
+ "jsonwebtoken-7.1.9" = {
+ name = "jsonwebtoken";
+ packageName = "jsonwebtoken";
+ version = "7.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-7.1.9.tgz";
+ sha1 = "847804e5258bec5a9499a8dc4a5e7a3bae08d58a";
+ };
+ };
+ "jspm-config-0.3.4" = {
+ name = "jspm-config";
+ packageName = "jspm-config";
+ version = "0.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jspm-config/-/jspm-config-0.3.4.tgz";
+ sha1 = "44c26902e4ae8ece2366cedc9ff16b10a5f391c6";
+ };
+ };
+ "jsprim-0.3.0" = {
+ name = "jsprim";
+ packageName = "jsprim";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-0.3.0.tgz";
+ sha1 = "cd13466ea2480dbd8396a570d47d31dda476f8b1";
+ };
+ };
+ "jsprim-1.4.1" = {
+ name = "jsprim";
+ packageName = "jsprim";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
+ sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
+ };
+ };
+ "jsrsasign-4.8.2" = {
+ name = "jsrsasign";
+ packageName = "jsrsasign";
+ version = "4.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsrsasign/-/jsrsasign-4.8.2.tgz";
+ sha1 = "bd0a7040d426d7598d6c742ec8f875d0e88644a9";
+ };
+ };
+ "jstransform-10.1.0" = {
+ name = "jstransform";
+ packageName = "jstransform";
+ version = "10.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jstransform/-/jstransform-10.1.0.tgz";
+ sha1 = "b4c49bf63f162c108b0348399a8737c713b0a83a";
+ };
+ };
+ "jstransformer-0.0.2" = {
+ name = "jstransformer";
+ packageName = "jstransformer";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jstransformer/-/jstransformer-0.0.2.tgz";
+ sha1 = "7aae29a903d196cfa0973d885d3e47947ecd76ab";
+ };
+ };
+ "jstransformer-1.0.0" = {
+ name = "jstransformer";
+ packageName = "jstransformer";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz";
+ sha1 = "ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3";
+ };
+ };
+ "jszip-2.6.1" = {
+ name = "jszip";
+ packageName = "jszip";
+ version = "2.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jszip/-/jszip-2.6.1.tgz";
+ sha1 = "b88f3a7b2e67a2a048152982c7a3756d9c4828f0";
+ };
+ };
+ "just-detect-adblock-1.0.0" = {
+ name = "just-detect-adblock";
+ packageName = "just-detect-adblock";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/just-detect-adblock/-/just-detect-adblock-1.0.0.tgz";
+ sha1 = "7bf8660cf15571fe7cf3b49c222e4716e1605a0c";
+ };
+ };
+ "jwa-1.1.5" = {
+ name = "jwa";
+ packageName = "jwa";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jwa/-/jwa-1.1.5.tgz";
+ sha1 = "a0552ce0220742cd52e153774a32905c30e756e5";
+ };
+ };
+ "jws-3.1.4" = {
+ name = "jws";
+ packageName = "jws";
+ version = "3.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jws/-/jws-3.1.4.tgz";
+ sha1 = "f9e8b9338e8a847277d6444b1464f61880e050a2";
+ };
+ };
+ "jwt-decode-2.2.0" = {
+ name = "jwt-decode";
+ packageName = "jwt-decode";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jwt-decode/-/jwt-decode-2.2.0.tgz";
+ sha1 = "7d86bd56679f58ce6a84704a657dd392bba81a79";
+ };
+ };
+ "k-bucket-0.6.0" = {
+ name = "k-bucket";
+ packageName = "k-bucket";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-bucket/-/k-bucket-0.6.0.tgz";
+ sha1 = "afc532545f69d466293e887b00d5fc73377c3abb";
+ };
+ };
+ "k-bucket-2.0.1" = {
+ name = "k-bucket";
+ packageName = "k-bucket";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-bucket/-/k-bucket-2.0.1.tgz";
+ sha1 = "58cccb244f563326ba893bf5c06a35f644846daa";
+ };
+ };
+ "k-bucket-3.3.1" = {
+ name = "k-bucket";
+ packageName = "k-bucket";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-bucket/-/k-bucket-3.3.1.tgz";
+ sha512 = "2dkl580azs1f5pj72mpygwdcc2mh4p355sxi84ki1w9c6k226nmjfglq5b7zgk5gmpfjammx5xliirzaf2nh9kyhqdb1xpvhjlic34j";
+ };
+ };
+ "k-rpc-3.7.0" = {
+ name = "k-rpc";
+ packageName = "k-rpc";
+ version = "3.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-rpc/-/k-rpc-3.7.0.tgz";
+ sha1 = "641f99b2825be34b6e7984f22b7962dc1a906c23";
+ };
+ };
+ "k-rpc-4.2.1" = {
+ name = "k-rpc";
+ packageName = "k-rpc";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-rpc/-/k-rpc-4.2.1.tgz";
+ sha512 = "2nbjxg0x7jsa14zhvx68w1vri68hsxzbxz7b7ap76fdp0jkrgna2rq636yxnax04f3f8i2ambj2fpan6qli6vixmfryz78vrapdip8n";
+ };
+ };
+ "k-rpc-socket-1.7.2" = {
+ name = "k-rpc-socket";
+ packageName = "k-rpc-socket";
+ version = "1.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.7.2.tgz";
+ sha512 = "02w1ih1lh86i5ap7c3dy2ml7g5a11r0w300iyxdf6v02qr0j1x3vf78hx5q9dgg3drifab018mgm851m457zzzi05i2z2r1s3zlflc3";
+ };
+ };
+ "kad-fs-0.0.4" = {
+ name = "kad-fs";
+ packageName = "kad-fs";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kad-fs/-/kad-fs-0.0.4.tgz";
+ sha1 = "02ea5aa5cf22225725579627ccfd6d266372289a";
+ };
+ };
+ "kad-git+https://github.com/gwicke/kad.git#master" = {
+ name = "kad";
+ packageName = "kad";
+ version = "1.3.6";
+ src = fetchgit {
+ url = "https://github.com/gwicke/kad.git";
+ rev = "936c91652d757ea6f9dd30e44698afb0daaa1d17";
+ sha256 = "69b2ef001b9f4161dad34f5305a5895cfa9f98f124689277293fd544d06f9251";
+ };
+ };
+ "kad-localstorage-0.0.7" = {
+ name = "kad-localstorage";
+ packageName = "kad-localstorage";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kad-localstorage/-/kad-localstorage-0.0.7.tgz";
+ sha1 = "f7a2e780da53fb28b943c2c5a894c279aa810f17";
+ };
+ };
+ "kad-memstore-0.0.1" = {
+ name = "kad-memstore";
+ packageName = "kad-memstore";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kad-memstore/-/kad-memstore-0.0.1.tgz";
+ sha1 = "83cb748496ac491c7135104cbe56b88ca7392477";
+ };
+ };
+ "keen.io-0.1.3" = {
+ name = "keen.io";
+ packageName = "keen.io";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keen.io/-/keen.io-0.1.3.tgz";
+ sha1 = "5056f5c989ab14ccf62fc20ed7598115ae7d09e3";
+ };
+ };
+ "keep-alive-agent-0.0.1" = {
+ name = "keep-alive-agent";
+ packageName = "keep-alive-agent";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz";
+ sha1 = "44847ca394ce8d6b521ae85816bd64509942b385";
+ };
+ };
+ "kew-0.1.7" = {
+ name = "kew";
+ packageName = "kew";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kew/-/kew-0.1.7.tgz";
+ sha1 = "0a32a817ff1a9b3b12b8c9bacf4bc4d679af8e72";
+ };
+ };
+ "kew-0.7.0" = {
+ name = "kew";
+ packageName = "kew";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz";
+ sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b";
+ };
+ };
+ "keygrip-1.0.2" = {
+ name = "keygrip";
+ packageName = "keygrip";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keygrip/-/keygrip-1.0.2.tgz";
+ sha1 = "ad3297c557069dea8bcfe7a4fa491b75c5ddeb91";
+ };
+ };
+ "keypress-0.1.0" = {
+ name = "keypress";
+ packageName = "keypress";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz";
+ sha1 = "4a3188d4291b66b4f65edb99f806aa9ae293592a";
+ };
+ };
+ "keypress-0.2.1" = {
+ name = "keypress";
+ packageName = "keypress";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz";
+ sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77";
+ };
+ };
+ "keyv-3.0.0" = {
+ name = "keyv";
+ packageName = "keyv";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz";
+ sha512 = "32ga97c763vprf4sjbb2f7gbngfppq9n1hy4cpq2h4yb1msrhh2zjimxib7p09mzgynm6askbigxlsqsm11p644avp4sf5nmng8f2vs";
+ };
+ };
+ "kind-of-2.0.1" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz";
+ sha1 = "018ec7a4ce7e3a86cb9141be519d24c8faa981b5";
+ };
+ };
+ "kind-of-3.2.2" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
+ sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
+ };
+ };
+ "kind-of-4.0.0" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
+ sha1 = "20813df3d712928b207378691a45066fae72dd57";
+ };
+ };
+ "kind-of-5.1.0" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz";
+ sha512 = "0zk87sccrjx6pgf9n74v4msnqwq5siyhrkpaklx7yk85ygy5ypcgmyfhbd5mmcyd53x8zcw0gzvp9bhbglziqbhp7a6n5zsf6p08q9l";
+ };
+ };
+ "kind-of-6.0.2" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "6.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz";
+ sha512 = "2l91vcracq8y3nxacsssb4yhk0ww011gi5sn55wsb6bpnhyds2i1x98512f61r8awxmj602bxky6c7hsyibjvz17f1pmlf7r4whp6dk";
+ };
+ };
+ "klaw-1.3.1" = {
+ name = "klaw";
+ packageName = "klaw";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/klaw/-/klaw-1.3.1.tgz";
+ sha1 = "4088433b46b3b1ba259d78785d8e96f73ba02439";
+ };
+ };
+ "klaw-2.0.0" = {
+ name = "klaw";
+ packageName = "klaw";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/klaw/-/klaw-2.0.0.tgz";
+ sha1 = "59c128e0dc5ce410201151194eeb9cbf858650f6";
+ };
+ };
+ "knockout-3.5.0-beta" = {
+ name = "knockout";
+ packageName = "knockout";
+ version = "3.5.0-beta";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/knockout/-/knockout-3.5.0-beta.tgz";
+ sha512 = "2qh1bqb9lj7l92pwcrwmpcanbyn65rmni3swyv6hrphn7xbaw8mkir3w67sf4ardk1iqvz9waalq2wf2rgpvvblhva2n2hssq6as6yr";
+ };
+ };
+ "kuduscript-1.0.15" = {
+ name = "kuduscript";
+ packageName = "kuduscript";
+ version = "1.0.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kuduscript/-/kuduscript-1.0.15.tgz";
+ sha1 = "2721f05aa6876534cd30d6ded9418651cadfaa21";
+ };
+ };
+ "labeled-stream-splicer-2.0.0" = {
+ name = "labeled-stream-splicer";
+ packageName = "labeled-stream-splicer";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz";
+ sha1 = "a52e1d138024c00b86b1c0c91f677918b8ae0a59";
+ };
+ };
+ "last-one-wins-1.0.4" = {
+ name = "last-one-wins";
+ packageName = "last-one-wins";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/last-one-wins/-/last-one-wins-1.0.4.tgz";
+ sha1 = "c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a";
+ };
+ };
+ "latest-version-1.0.1" = {
+ name = "latest-version";
+ packageName = "latest-version";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/latest-version/-/latest-version-1.0.1.tgz";
+ sha1 = "72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb";
+ };
+ };
+ "latest-version-2.0.0" = {
+ name = "latest-version";
+ packageName = "latest-version";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/latest-version/-/latest-version-2.0.0.tgz";
+ sha1 = "56f8d6139620847b8017f8f1f4d78e211324168b";
+ };
+ };
+ "latest-version-3.1.0" = {
+ name = "latest-version";
+ packageName = "latest-version";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz";
+ sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15";
+ };
+ };
+ "lazy-1.0.11" = {
+ name = "lazy";
+ packageName = "lazy";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazy/-/lazy-1.0.11.tgz";
+ sha1 = "daa068206282542c088288e975c297c1ae77b690";
+ };
+ };
+ "lazy-cache-0.2.7" = {
+ name = "lazy-cache";
+ packageName = "lazy-cache";
+ version = "0.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz";
+ sha1 = "7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65";
+ };
+ };
+ "lazy-cache-1.0.4" = {
+ name = "lazy-cache";
+ packageName = "lazy-cache";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz";
+ sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e";
+ };
+ };
+ "lazy-cache-2.0.2" = {
+ name = "lazy-cache";
+ packageName = "lazy-cache";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-2.0.2.tgz";
+ sha1 = "b9190a4f913354694840859f8a8f7084d8822264";
+ };
+ };
+ "lazystream-1.0.0" = {
+ name = "lazystream";
+ packageName = "lazystream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz";
+ sha1 = "f6995fe0f820392f61396be89462407bb77168e4";
+ };
+ };
+ "lcid-1.0.0" = {
+ name = "lcid";
+ packageName = "lcid";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz";
+ sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835";
+ };
+ };
+ "leek-0.0.24" = {
+ name = "leek";
+ packageName = "leek";
+ version = "0.0.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/leek/-/leek-0.0.24.tgz";
+ sha1 = "e400e57f0e60d8ef2bd4d068dc428a54345dbcda";
+ };
+ };
+ "length-prefixed-message-3.0.3" = {
+ name = "length-prefixed-message";
+ packageName = "length-prefixed-message";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/length-prefixed-message/-/length-prefixed-message-3.0.3.tgz";
+ sha1 = "245474d69abc0614dca368dc35aa8074982a23ac";
+ };
+ };
+ "less-2.7.3" = {
+ name = "less";
+ packageName = "less";
+ version = "2.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz";
+ sha512 = "04jbm6adzhknlcwjjdd94n8dhqwgsg0fyampis9854jf23z9g9lxs8593908ymwldl88bjipf9b9rw6xfibb29vv7s0c44wllj4ixr8";
+ };
+ };
+ "less-middleware-2.2.1" = {
+ name = "less-middleware";
+ packageName = "less-middleware";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/less-middleware/-/less-middleware-2.2.1.tgz";
+ sha512 = "059c8rz6wkzc3fwd62a6f3lfw3h9sxj2fr0jjyr1i9kwfvk3737xyzndyshklllx5gnfri9z2g9a28c2ccnd6ka6adn6i7h4z5frw6m";
+ };
+ };
+ "level-0.18.0" = {
+ name = "level";
+ packageName = "level";
+ version = "0.18.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/level/-/level-0.18.0.tgz";
+ sha1 = "e1a3f4cad65fc02e25070a47d63d7b527361c1cf";
+ };
+ };
+ "level-packager-0.18.0" = {
+ name = "level-packager";
+ packageName = "level-packager";
+ version = "0.18.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/level-packager/-/level-packager-0.18.0.tgz";
+ sha1 = "c076b087646f1d7dedcc3442f58800dd0a0b45f5";
+ };
+ };
+ "level-post-1.0.5" = {
+ name = "level-post";
+ packageName = "level-post";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/level-post/-/level-post-1.0.5.tgz";
+ sha1 = "2a66390409bf6a1621a444bab6f016444cc9802c";
+ };
+ };
+ "level-sublevel-6.6.1" = {
+ name = "level-sublevel";
+ packageName = "level-sublevel";
+ version = "6.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/level-sublevel/-/level-sublevel-6.6.1.tgz";
+ sha1 = "f9a77f7521ab70a8f8e92ed56f21a3c7886a4485";
+ };
+ };
+ "leveldown-0.10.6" = {
+ name = "leveldown";
+ packageName = "leveldown";
+ version = "0.10.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/leveldown/-/leveldown-0.10.6.tgz";
+ sha1 = "a1bb751c95263ff60f41bde0f973ff8c1e98bbe9";
+ };
+ };
+ "levelup-0.18.6" = {
+ name = "levelup";
+ packageName = "levelup";
+ version = "0.18.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz";
+ sha1 = "e6a01cb089616c8ecc0291c2a9bd3f0c44e3e5eb";
+ };
+ };
+ "levelup-0.19.1" = {
+ name = "levelup";
+ packageName = "levelup";
+ version = "0.19.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/levelup/-/levelup-0.19.1.tgz";
+ sha1 = "f3a6a7205272c4b5f35e412ff004a03a0aedf50b";
+ };
+ };
+ "leven-1.0.2" = {
+ name = "leven";
+ packageName = "leven";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/leven/-/leven-1.0.2.tgz";
+ sha1 = "9144b6eebca5f1d0680169f1a6770dcea60b75c3";
+ };
+ };
+ "levn-0.3.0" = {
+ name = "levn";
+ packageName = "levn";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz";
+ sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee";
+ };
+ };
+ "lexical-scope-1.2.0" = {
+ name = "lexical-scope";
+ packageName = "lexical-scope";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lexical-scope/-/lexical-scope-1.2.0.tgz";
+ sha1 = "fcea5edc704a4b3a8796cdca419c3a0afaf22df4";
+ };
+ };
+ "lexicographic-integer-1.1.0" = {
+ name = "lexicographic-integer";
+ packageName = "lexicographic-integer";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lexicographic-integer/-/lexicographic-integer-1.1.0.tgz";
+ sha1 = "52ca6d998a572e6322b515f5b80e396c6043e9b8";
+ };
+ };
+ "libbase64-0.1.0" = {
+ name = "libbase64";
+ packageName = "libbase64";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz";
+ sha1 = "62351a839563ac5ff5bd26f12f60e9830bb751e6";
+ };
+ };
+ "libmime-1.2.0" = {
+ name = "libmime";
+ packageName = "libmime";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/libmime/-/libmime-1.2.0.tgz";
+ sha1 = "8d84b4f3b225b3704410236ef494906436ba742b";
+ };
+ };
+ "libmime-3.0.0" = {
+ name = "libmime";
+ packageName = "libmime";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/libmime/-/libmime-3.0.0.tgz";
+ sha1 = "51a1a9e7448ecbd32cda54421675bb21bc093da6";
+ };
+ };
+ "libqp-1.1.0" = {
+ name = "libqp";
+ packageName = "libqp";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz";
+ sha1 = "f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8";
+ };
+ };
+ "libquassel-2.1.9" = {
+ name = "libquassel";
+ packageName = "libquassel";
+ version = "2.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/libquassel/-/libquassel-2.1.9.tgz";
+ sha1 = "e80ad2ef5c081ac677f66515d107537fdc0f5c64";
+ };
+ };
+ "liftoff-2.5.0" = {
+ name = "liftoff";
+ packageName = "liftoff";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz";
+ sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec";
+ };
+ };
+ "limitation-0.2.0" = {
+ name = "limitation";
+ packageName = "limitation";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/limitation/-/limitation-0.2.0.tgz";
+ sha1 = "70ce102a972a0b79d4ca13a3ab62b8e6fe682a62";
+ };
+ };
+ "linewise-0.0.3" = {
+ name = "linewise";
+ packageName = "linewise";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/linewise/-/linewise-0.0.3.tgz";
+ sha1 = "bf967ba0dd31faaf09ab5bdb3676ad7f2aa18493";
+ };
+ };
+ "linkify-it-1.2.4" = {
+ name = "linkify-it";
+ packageName = "linkify-it";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/linkify-it/-/linkify-it-1.2.4.tgz";
+ sha1 = "0773526c317c8fd13bd534ee1d180ff88abf881a";
+ };
+ };
+ "linkify-it-2.0.3" = {
+ name = "linkify-it";
+ packageName = "linkify-it";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/linkify-it/-/linkify-it-2.0.3.tgz";
+ sha1 = "d94a4648f9b1c179d64fa97291268bdb6ce9434f";
+ };
+ };
+ "listify-1.0.0" = {
+ name = "listify";
+ packageName = "listify";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/listify/-/listify-1.0.0.tgz";
+ sha1 = "03ca7ba2d150d4267773f74e57558d1053d2bee3";
+ };
+ };
+ "livereload-js-2.3.0" = {
+ name = "livereload-js";
+ packageName = "livereload-js";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/livereload-js/-/livereload-js-2.3.0.tgz";
+ sha512 = "0r82qh90jnyg6hlqn2yni36q942y4qn6rc0rydmbsy7x1lr00a0pddw2lg8xixcjh6wnrsfb5q76m51fac7vanrz0cawsw6azy78m4g";
+ };
+ };
+ "load-json-file-1.1.0" = {
+ name = "load-json-file";
+ packageName = "load-json-file";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz";
+ sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0";
+ };
+ };
+ "load-json-file-2.0.0" = {
+ name = "load-json-file";
+ packageName = "load-json-file";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz";
+ sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8";
+ };
+ };
+ "load-json-file-4.0.0" = {
+ name = "load-json-file";
+ packageName = "load-json-file";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz";
+ sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b";
+ };
+ };
+ "loader-runner-2.3.0" = {
+ name = "loader-runner";
+ packageName = "loader-runner";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz";
+ sha1 = "f482aea82d543e07921700d5a46ef26fdac6b8a2";
+ };
+ };
+ "loader-utils-1.1.0" = {
+ name = "loader-utils";
+ packageName = "loader-utils";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz";
+ sha1 = "c98aef488bcceda2ffb5e2de646d6a754429f5cd";
+ };
+ };
+ "locate-path-2.0.0" = {
+ name = "locate-path";
+ packageName = "locate-path";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz";
+ sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
+ };
+ };
+ "lockfile-1.0.3" = {
+ name = "lockfile";
+ packageName = "lockfile";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lockfile/-/lockfile-1.0.3.tgz";
+ sha1 = "2638fc39a0331e9cac1a04b71799931c9c50df79";
+ };
+ };
+ "lodash-1.0.2" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz";
+ sha1 = "8f57560c83b59fc270bd3d561b690043430e2551";
+ };
+ };
+ "lodash-2.4.2" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "2.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz";
+ sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e";
+ };
+ };
+ "lodash-3.1.0" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-3.1.0.tgz";
+ sha1 = "d41b8b33530cb3be088853208ad30092d2c27961";
+ };
+ };
+ "lodash-3.10.1" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "3.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz";
+ sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6";
+ };
+ };
+ "lodash-3.7.0" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "3.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz";
+ sha1 = "3678bd8ab995057c07ade836ed2ef087da811d45";
+ };
+ };
+ "lodash-4.13.1" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "4.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-4.13.1.tgz";
+ sha1 = "83e4b10913f48496d4d16fec4a560af2ee744b68";
+ };
+ };
+ "lodash-4.14.2" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "4.14.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz";
+ sha1 = "bbccce6373a400fbfd0a8c67ca42f6d1ef416432";
+ };
+ };
+ "lodash-4.17.4" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "4.17.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz";
+ sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae";
+ };
+ };
+ "lodash-4.2.1" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-4.2.1.tgz";
+ sha1 = "171fdcfbbc30d689c544cd18c0529f56de6c1aa9";
+ };
+ };
+ "lodash-id-0.14.0" = {
+ name = "lodash-id";
+ packageName = "lodash-id";
+ version = "0.14.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash-id/-/lodash-id-0.14.0.tgz";
+ sha1 = "baf48934e543a1b5d6346f8c84698b1a8c803896";
+ };
+ };
+ "lodash._baseassign-3.2.0" = {
+ name = "lodash._baseassign";
+ packageName = "lodash._baseassign";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz";
+ sha1 = "8c38a099500f215ad09e59f1722fd0c52bfe0a4e";
+ };
+ };
+ "lodash._baseclone-4.5.7" = {
+ name = "lodash._baseclone";
+ packageName = "lodash._baseclone";
+ version = "4.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz";
+ sha1 = "ce42ade08384ef5d62fa77c30f61a46e686f8434";
+ };
+ };
+ "lodash._basecopy-3.0.1" = {
+ name = "lodash._basecopy";
+ packageName = "lodash._basecopy";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz";
+ sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36";
+ };
+ };
+ "lodash._basetostring-3.0.1" = {
+ name = "lodash._basetostring";
+ packageName = "lodash._basetostring";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz";
+ sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5";
+ };
+ };
+ "lodash._basevalues-3.0.0" = {
+ name = "lodash._basevalues";
+ packageName = "lodash._basevalues";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz";
+ sha1 = "5b775762802bde3d3297503e26300820fdf661b7";
+ };
+ };
+ "lodash._bindcallback-3.0.1" = {
+ name = "lodash._bindcallback";
+ packageName = "lodash._bindcallback";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz";
+ sha1 = "e531c27644cf8b57a99e17ed95b35c748789392e";
+ };
+ };
+ "lodash._createassigner-3.1.1" = {
+ name = "lodash._createassigner";
+ packageName = "lodash._createassigner";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz";
+ sha1 = "838a5bae2fdaca63ac22dee8e19fa4e6d6970b11";
+ };
+ };
+ "lodash._getnative-3.9.1" = {
+ name = "lodash._getnative";
+ packageName = "lodash._getnative";
+ version = "3.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz";
+ sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5";
+ };
+ };
+ "lodash._isiterateecall-3.0.9" = {
+ name = "lodash._isiterateecall";
+ packageName = "lodash._isiterateecall";
+ version = "3.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz";
+ sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c";
+ };
+ };
+ "lodash._reescape-3.0.0" = {
+ name = "lodash._reescape";
+ packageName = "lodash._reescape";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz";
+ sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a";
+ };
+ };
+ "lodash._reevaluate-3.0.0" = {
+ name = "lodash._reevaluate";
+ packageName = "lodash._reevaluate";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz";
+ sha1 = "58bc74c40664953ae0b124d806996daca431e2ed";
+ };
+ };
+ "lodash._reinterpolate-3.0.0" = {
+ name = "lodash._reinterpolate";
+ packageName = "lodash._reinterpolate";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz";
+ sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d";
+ };
+ };
+ "lodash._root-3.0.1" = {
+ name = "lodash._root";
+ packageName = "lodash._root";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz";
+ sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692";
+ };
+ };
+ "lodash.assign-3.2.0" = {
+ name = "lodash.assign";
+ packageName = "lodash.assign";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz";
+ sha1 = "3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa";
+ };
+ };
+ "lodash.assign-4.2.0" = {
+ name = "lodash.assign";
+ packageName = "lodash.assign";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz";
+ sha1 = "0d99f3ccd7a6d261d19bdaeb9245005d285808e7";
};
};
"lodash.assignin-4.2.0" = {
@@ -19350,6 +14345,42 @@ let
sha1 = "7ae3017e939622ac31b7d7d7dcb1b34db1690d35";
};
};
+ "lodash.clone-4.3.2" = {
+ name = "lodash.clone";
+ packageName = "lodash.clone";
+ version = "4.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz";
+ sha1 = "e56b176b6823a7dde38f7f2bf58de7d5971200e9";
+ };
+ };
+ "lodash.clonedeep-4.5.0" = {
+ name = "lodash.clonedeep";
+ packageName = "lodash.clonedeep";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz";
+ sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef";
+ };
+ };
+ "lodash.debounce-3.1.1" = {
+ name = "lodash.debounce";
+ packageName = "lodash.debounce";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-3.1.1.tgz";
+ sha1 = "812211c378a94cc29d5aa4e3346cf0bfce3a7df5";
+ };
+ };
+ "lodash.debounce-4.0.8" = {
+ name = "lodash.debounce";
+ packageName = "lodash.debounce";
+ version = "4.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz";
+ sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af";
+ };
+ };
"lodash.defaults-4.2.0" = {
name = "lodash.defaults";
packageName = "lodash.defaults";
@@ -19359,6 +14390,42 @@ let
sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c";
};
};
+ "lodash.defaultsdeep-4.6.0" = {
+ name = "lodash.defaultsdeep";
+ packageName = "lodash.defaultsdeep";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.0.tgz";
+ sha1 = "bec1024f85b1bd96cbea405b23c14ad6443a6f81";
+ };
+ };
+ "lodash.endswith-4.2.1" = {
+ name = "lodash.endswith";
+ packageName = "lodash.endswith";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.endswith/-/lodash.endswith-4.2.1.tgz";
+ sha1 = "fed59ac1738ed3e236edd7064ec456448b37bc09";
+ };
+ };
+ "lodash.escape-3.2.0" = {
+ name = "lodash.escape";
+ packageName = "lodash.escape";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz";
+ sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698";
+ };
+ };
+ "lodash.escaperegexp-4.1.2" = {
+ name = "lodash.escaperegexp";
+ packageName = "lodash.escaperegexp";
+ version = "4.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz";
+ sha1 = "64762c48618082518ac3df4ccf5d5886dae20347";
+ };
+ };
"lodash.filter-4.6.0" = {
name = "lodash.filter";
packageName = "lodash.filter";
@@ -19377,6 +14444,15 @@ let
sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f";
};
};
+ "lodash.flattendeep-4.4.0" = {
+ name = "lodash.flattendeep";
+ packageName = "lodash.flattendeep";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz";
+ sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2";
+ };
+ };
"lodash.foreach-4.5.0" = {
name = "lodash.foreach";
packageName = "lodash.foreach";
@@ -19386,6 +14462,69 @@ let
sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53";
};
};
+ "lodash.groupby-4.6.0" = {
+ name = "lodash.groupby";
+ packageName = "lodash.groupby";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz";
+ sha1 = "0b08a1dcf68397c397855c3239783832df7403d1";
+ };
+ };
+ "lodash.isarguments-3.1.0" = {
+ name = "lodash.isarguments";
+ packageName = "lodash.isarguments";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz";
+ sha1 = "2f573d85c6a24289ff00663b491c1d338ff3458a";
+ };
+ };
+ "lodash.isarray-3.0.4" = {
+ name = "lodash.isarray";
+ packageName = "lodash.isarray";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz";
+ sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55";
+ };
+ };
+ "lodash.isequal-4.5.0" = {
+ name = "lodash.isequal";
+ packageName = "lodash.isequal";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz";
+ sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0";
+ };
+ };
+ "lodash.isfunction-3.0.8" = {
+ name = "lodash.isfunction";
+ packageName = "lodash.isfunction";
+ version = "3.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.8.tgz";
+ sha1 = "4db709fc81bc4a8fd7127a458a5346c5cdce2c6b";
+ };
+ };
+ "lodash.isstring-4.0.1" = {
+ name = "lodash.isstring";
+ packageName = "lodash.isstring";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz";
+ sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451";
+ };
+ };
+ "lodash.keys-3.1.2" = {
+ name = "lodash.keys";
+ packageName = "lodash.keys";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz";
+ sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a";
+ };
+ };
"lodash.map-4.6.0" = {
name = "lodash.map";
packageName = "lodash.map";
@@ -19395,6 +14534,15 @@ let
sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3";
};
};
+ "lodash.memoize-3.0.4" = {
+ name = "lodash.memoize";
+ packageName = "lodash.memoize";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz";
+ sha1 = "2dcbd2c287cbc0a55cc42328bd0c736150d53e3f";
+ };
+ };
"lodash.merge-4.6.0" = {
name = "lodash.merge";
packageName = "lodash.merge";
@@ -19404,6 +14552,51 @@ let
sha1 = "69884ba144ac33fe699737a6086deffadd0f89c5";
};
};
+ "lodash.mergewith-4.6.0" = {
+ name = "lodash.mergewith";
+ packageName = "lodash.mergewith";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz";
+ sha1 = "150cf0a16791f5903b8891eab154609274bdea55";
+ };
+ };
+ "lodash.once-4.1.1" = {
+ name = "lodash.once";
+ packageName = "lodash.once";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz";
+ sha1 = "0dd3971213c7c56df880977d504c88fb471a97ac";
+ };
+ };
+ "lodash.pad-4.5.1" = {
+ name = "lodash.pad";
+ packageName = "lodash.pad";
+ version = "4.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.pad/-/lodash.pad-4.5.1.tgz";
+ sha1 = "4330949a833a7c8da22cc20f6a26c4d59debba70";
+ };
+ };
+ "lodash.padend-4.6.1" = {
+ name = "lodash.padend";
+ packageName = "lodash.padend";
+ version = "4.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.6.1.tgz";
+ sha1 = "53ccba047d06e158d311f45da625f4e49e6f166e";
+ };
+ };
+ "lodash.padstart-4.6.1" = {
+ name = "lodash.padstart";
+ packageName = "lodash.padstart";
+ version = "4.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz";
+ sha1 = "d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b";
+ };
+ };
"lodash.pick-4.4.0" = {
name = "lodash.pick";
packageName = "lodash.pick";
@@ -19431,6 +14624,15 @@ let
sha1 = "80d6492dc1470864bbf583533b651f42a9f52415";
};
};
+ "lodash.restparam-3.6.1" = {
+ name = "lodash.restparam";
+ packageName = "lodash.restparam";
+ version = "3.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz";
+ sha1 = "936a4e309ef330a7645ed4145986c85ae5b20805";
+ };
+ };
"lodash.some-4.6.0" = {
name = "lodash.some";
packageName = "lodash.some";
@@ -19440,391 +14642,391 @@ let
sha1 = "1bb9f314ef6b8baded13b549169b2a945eb68e4d";
};
};
- "css-what-2.1.0" = {
- name = "css-what";
- packageName = "css-what";
- version = "2.1.0";
+ "lodash.sortby-4.7.0" = {
+ name = "lodash.sortby";
+ packageName = "lodash.sortby";
+ version = "4.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/css-what/-/css-what-2.1.0.tgz";
- sha1 = "9467d032c38cfaefb9f2d79501253062f87fa1bd";
+ url = "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz";
+ sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438";
};
};
- "boolbase-1.0.0" = {
- name = "boolbase";
- packageName = "boolbase";
- version = "1.0.0";
+ "lodash.startswith-4.2.1" = {
+ name = "lodash.startswith";
+ packageName = "lodash.startswith";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz";
- sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e";
+ url = "https://registry.npmjs.org/lodash.startswith/-/lodash.startswith-4.2.1.tgz";
+ sha1 = "c598c4adce188a27e53145731cdc6c0e7177600c";
};
};
- "nth-check-1.0.1" = {
- name = "nth-check";
- packageName = "nth-check";
+ "lodash.template-3.6.2" = {
+ name = "lodash.template";
+ packageName = "lodash.template";
+ version = "3.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz";
+ sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f";
+ };
+ };
+ "lodash.template-4.4.0" = {
+ name = "lodash.template";
+ packageName = "lodash.template";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.template/-/lodash.template-4.4.0.tgz";
+ sha1 = "e73a0385c8355591746e020b99679c690e68fba0";
+ };
+ };
+ "lodash.templatesettings-3.1.1" = {
+ name = "lodash.templatesettings";
+ packageName = "lodash.templatesettings";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz";
+ sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5";
+ };
+ };
+ "lodash.templatesettings-4.1.0" = {
+ name = "lodash.templatesettings";
+ packageName = "lodash.templatesettings";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz";
+ sha1 = "2b4d4e95ba440d915ff08bc899e4553666713316";
+ };
+ };
+ "lodash.throttle-4.1.1" = {
+ name = "lodash.throttle";
+ packageName = "lodash.throttle";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz";
+ sha1 = "c23e91b710242ac70c37f1e1cda9274cc39bf2f4";
+ };
+ };
+ "log-symbols-1.0.2" = {
+ name = "log-symbols";
+ packageName = "log-symbols";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz";
+ sha1 = "376ff7b58ea3086a0f09facc74617eca501e1a18";
+ };
+ };
+ "log-symbols-2.2.0" = {
+ name = "log-symbols";
+ packageName = "log-symbols";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz";
+ sha512 = "093j1mha2zwbfkb6cvxr94l1dsx44607vvyxadxki3j69s40n2f6x6iqs6f9rzpvvqd8anclsqdlrm3klkwxixm4k2fl8bjr4b01qjm";
+ };
+ };
+ "log-update-1.0.2" = {
+ name = "log-update";
+ packageName = "log-update";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-update/-/log-update-1.0.2.tgz";
+ sha1 = "19929f64c4093d2d2e7075a1dad8af59c296b8d1";
+ };
+ };
+ "log-update-2.3.0" = {
+ name = "log-update";
+ packageName = "log-update";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz";
+ sha1 = "88328fd7d1ce7938b29283746f0b1bc126b24708";
+ };
+ };
+ "log4js-2.5.2" = {
+ name = "log4js";
+ packageName = "log4js";
+ version = "2.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log4js/-/log4js-2.5.2.tgz";
+ sha512 = "3cr4zy75cf74ajn55xnidbz0m4848yyjyc2zrhlyksjdi0hsp0skwkq8ipgpahwfz1b7zlr9zg1blapz0nsn3h8kmz5w2cz036n2rij";
+ };
+ };
+ "loggly-1.1.1" = {
+ name = "loggly";
+ packageName = "loggly";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/loggly/-/loggly-1.1.1.tgz";
+ sha1 = "0a0fc1d3fa3a5ec44fdc7b897beba2a4695cebee";
+ };
+ };
+ "lokijs-1.5.1" = {
+ name = "lokijs";
+ packageName = "lokijs";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lokijs/-/lokijs-1.5.1.tgz";
+ sha512 = "1pi08ry0a4zvg7mqj14gl0vacka95k77bbvljmcf25whxxbkh2rprsxpd8pv6frqh4ix6vslk44silx83sk65xhaw7ia2zssf0vngiy";
+ };
+ };
+ "long-2.4.0" = {
+ name = "long";
+ packageName = "long";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/long/-/long-2.4.0.tgz";
+ sha1 = "9fa180bb1d9500cdc29c4156766a1995e1f4524f";
+ };
+ };
+ "longest-1.0.1" = {
+ name = "longest";
+ packageName = "longest";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz";
- sha1 = "9929acdf628fc2c41098deab82ac580cf149aae4";
+ url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz";
+ sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097";
};
};
- "domhandler-2.4.1" = {
- name = "domhandler";
- packageName = "domhandler";
- version = "2.4.1";
+ "longest-streak-1.0.0" = {
+ name = "longest-streak";
+ packageName = "longest-streak";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.1.tgz";
- sha1 = "892e47000a99be55bbf3774ffea0561d8879c259";
+ url = "https://registry.npmjs.org/longest-streak/-/longest-streak-1.0.0.tgz";
+ sha1 = "d06597c4d4c31b52ccb1f5d8f8fe7148eafd6965";
};
};
- "moment-timezone-0.5.14" = {
- name = "moment-timezone";
- packageName = "moment-timezone";
- version = "0.5.14";
+ "longjohn-0.2.11" = {
+ name = "longjohn";
+ packageName = "longjohn";
+ version = "0.2.11";
src = fetchurl {
- url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.14.tgz";
- sha1 = "4eb38ff9538b80108ba467a458f3ed4268ccfcb1";
+ url = "https://registry.npmjs.org/longjohn/-/longjohn-0.2.11.tgz";
+ sha1 = "83736a15ae5f48711b625153e98012f2de659e69";
};
};
- "fresh-0.5.0" = {
- name = "fresh";
- packageName = "fresh";
- version = "0.5.0";
+ "looper-2.0.0" = {
+ name = "looper";
+ packageName = "looper";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz";
- sha1 = "f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e";
+ url = "https://registry.npmjs.org/looper/-/looper-2.0.0.tgz";
+ sha1 = "66cd0c774af3d4fedac53794f742db56da8f09ec";
};
};
- "proxy-addr-1.1.5" = {
- name = "proxy-addr";
- packageName = "proxy-addr";
- version = "1.1.5";
+ "looper-3.0.0" = {
+ name = "looper";
+ packageName = "looper";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.5.tgz";
- sha1 = "71c0ee3b102de3f202f3b64f608d173fcba1a918";
+ url = "https://registry.npmjs.org/looper/-/looper-3.0.0.tgz";
+ sha1 = "2efa54c3b1cbaba9b94aee2e5914b0be57fbb749";
};
};
- "send-0.15.3" = {
- name = "send";
- packageName = "send";
- version = "0.15.3";
+ "loose-envify-1.3.1" = {
+ name = "loose-envify";
+ packageName = "loose-envify";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.15.3.tgz";
- sha1 = "5013f9f99023df50d1bd9892c19e3defd1d53309";
+ url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.3.1.tgz";
+ sha1 = "d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848";
};
};
- "serve-static-1.12.3" = {
- name = "serve-static";
- packageName = "serve-static";
- version = "1.12.3";
+ "loud-rejection-1.6.0" = {
+ name = "loud-rejection";
+ packageName = "loud-rejection";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.12.3.tgz";
- sha1 = "9f4ba19e2f3030c547f8af99107838ec38d5b1e2";
+ url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz";
+ sha1 = "5b46f80147edee578870f086d04821cf998e551f";
};
};
- "ipaddr.js-1.4.0" = {
- name = "ipaddr.js";
- packageName = "ipaddr.js";
- version = "1.4.0";
+ "lowdb-0.15.5" = {
+ name = "lowdb";
+ packageName = "lowdb";
+ version = "0.15.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.4.0.tgz";
- sha1 = "296aca878a821816e5b85d0a285a99bcff4582f0";
+ url = "https://registry.npmjs.org/lowdb/-/lowdb-0.15.5.tgz";
+ sha1 = "9ade105df8aa573692d1221622b85414fbf4fa96";
};
};
- "crc-3.4.4" = {
- name = "crc";
- packageName = "crc";
- version = "3.4.4";
+ "lower-case-1.1.4" = {
+ name = "lower-case";
+ packageName = "lower-case";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/crc/-/crc-3.4.4.tgz";
- sha1 = "9da1e980e3bd44fc5c93bf5ab3da3378d85e466b";
+ url = "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz";
+ sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac";
};
};
- "debug-2.6.3" = {
- name = "debug";
- packageName = "debug";
- version = "2.6.3";
+ "lowercase-keys-1.0.0" = {
+ name = "lowercase-keys";
+ packageName = "lowercase-keys";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.3.tgz";
- sha1 = "0f7eb8c30965ec08c72accfa0130c8b79984141d";
+ url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz";
+ sha1 = "4e3366b39e7f5457e35f1324bdf6f88d0bfc7306";
};
};
- "uid-safe-2.1.5" = {
- name = "uid-safe";
- packageName = "uid-safe";
- version = "2.1.5";
+ "lru-2.0.1" = {
+ name = "lru";
+ packageName = "lru";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz";
- sha512 = "2h6492mk9v9dzy26i5wfajinhi2pg729ksbcsmm0sp8s32hlr432q19g97qghfp5x98hsm77hmzwdzhgi3vhm2drz53ax7rabhydw98";
+ url = "https://registry.npmjs.org/lru/-/lru-2.0.1.tgz";
+ sha1 = "f979871e162e3f5ca254be46844c53d4c5364544";
};
};
- "retry-0.6.1" = {
- name = "retry";
- packageName = "retry";
- version = "0.6.1";
+ "lru-3.1.0" = {
+ name = "lru";
+ packageName = "lru";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/retry/-/retry-0.6.1.tgz";
- sha1 = "fdc90eed943fde11b893554b8cc63d0e899ba918";
+ url = "https://registry.npmjs.org/lru/-/lru-3.1.0.tgz";
+ sha1 = "ea7fb8546d83733396a13091d76cfeb4c06837d5";
};
};
- "cookies-0.7.1" = {
- name = "cookies";
- packageName = "cookies";
- version = "0.7.1";
+ "lru-cache-2.2.0" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/cookies/-/cookies-0.7.1.tgz";
- sha1 = "7c8a615f5481c61ab9f16c833731bcb8f663b99b";
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.0.tgz";
+ sha1 = "ec2bba603f4c5bb3e7a1bf62ce1c1dbc1d474e08";
};
};
- "i18next-client-1.10.3" = {
- name = "i18next-client";
- packageName = "i18next-client";
- version = "1.10.3";
+ "lru-cache-2.2.4" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "2.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/i18next-client/-/i18next-client-1.10.3.tgz";
- sha1 = "76d0353557ed90d1e7a87754d5004d3f7801fde9";
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz";
+ sha1 = "6c658619becf14031d0d0b594b16042ce4dc063d";
};
};
- "json5-0.2.0" = {
- name = "json5";
- packageName = "json5";
+ "lru-cache-2.5.2" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "2.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.2.tgz";
+ sha1 = "1fddad938aae1263ce138680be1b3f591c0ab41c";
+ };
+ };
+ "lru-cache-2.6.5" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "2.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz";
+ sha1 = "e56d6354148ede8d7707b58d143220fd08df0fd5";
+ };
+ };
+ "lru-cache-2.7.3" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "2.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz";
+ sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952";
+ };
+ };
+ "lru-cache-3.2.0" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-3.2.0.tgz";
+ sha1 = "71789b3b7f5399bec8565dda38aa30d2a097efee";
+ };
+ };
+ "lru-cache-4.1.1" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz";
+ sha512 = "1xz91sizgyzh8plz5jx1labzpygapm6xy3qpxriaj00yvnhy4lnmhqcb20qln4lh80c5g3yzp4j5i6g63njq1r5sl9c0zlkh9xjk2xb";
+ };
+ };
+ "lsmod-1.0.0" = {
+ name = "lsmod";
+ packageName = "lsmod";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lsmod/-/lsmod-1.0.0.tgz";
+ sha1 = "9a00f76dca36eb23fa05350afe1b585d4299e64b";
+ };
+ };
+ "ltgt-1.0.2" = {
+ name = "ltgt";
+ packageName = "ltgt";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ltgt/-/ltgt-1.0.2.tgz";
+ sha1 = "e6817eb29ad204fc0c9e96ef8b0fee98ef6b9aa3";
+ };
+ };
+ "ltgt-2.1.3" = {
+ name = "ltgt";
+ packageName = "ltgt";
+ version = "2.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ltgt/-/ltgt-2.1.3.tgz";
+ sha1 = "10851a06d9964b971178441c23c9e52698eece34";
+ };
+ };
+ "lunr-0.7.2" = {
+ name = "lunr";
+ packageName = "lunr";
+ version = "0.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lunr/-/lunr-0.7.2.tgz";
+ sha1 = "79a30e932e216cba163541ee37a3607c12cd7281";
+ };
+ };
+ "lynx-0.2.0" = {
+ name = "lynx";
+ packageName = "lynx";
version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json5/-/json5-0.2.0.tgz";
- sha1 = "b6d7035c70c4570f883c7edc759de3ae03db3343";
+ url = "https://registry.npmjs.org/lynx/-/lynx-0.2.0.tgz";
+ sha1 = "79e6674530da4183e87953bd686171e070da50b9";
};
};
- "keygrip-1.0.2" = {
- name = "keygrip";
- packageName = "keygrip";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/keygrip/-/keygrip-1.0.2.tgz";
- sha1 = "ad3297c557069dea8bcfe7a4fa491b75c5ddeb91";
- };
- };
- "esprima-3.1.3" = {
- name = "esprima";
- packageName = "esprima";
- version = "3.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz";
- sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633";
- };
- };
- "commist-1.0.0" = {
- name = "commist";
- packageName = "commist";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commist/-/commist-1.0.0.tgz";
- sha1 = "c0c352501cf6f52e9124e3ef89c9806e2022ebef";
- };
- };
- "help-me-1.1.0" = {
- name = "help-me";
- packageName = "help-me";
+ "macos-release-1.1.0" = {
+ name = "macos-release";
+ packageName = "macos-release";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/help-me/-/help-me-1.1.0.tgz";
- sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6";
+ url = "https://registry.npmjs.org/macos-release/-/macos-release-1.1.0.tgz";
+ sha512 = "260gwv2k1svhzfxs50g921jbhrqlbfr94mcs9ak0dip7i2331nqc7ip0fgdkfl3r1b30w1s87qh2ssq6wxzd08pbmkjwchqc6xdnqls";
};
};
- "mqtt-packet-5.4.0" = {
- name = "mqtt-packet";
- packageName = "mqtt-packet";
- version = "5.4.0";
+ "magnet-uri-2.0.1" = {
+ name = "magnet-uri";
+ packageName = "magnet-uri";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-5.4.0.tgz";
- sha512 = "2d1hvibps8d4xlw8wm937ykc76yb02rp2065hd6186vygjx3wixjjzrn3fia4wfj7d38ic8gh5ij5rsi9389kl6gpxxjbdcbjwpn8yf";
+ url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-2.0.1.tgz";
+ sha1 = "d331d3dfcd3836565ade0fc3ca315e39217bb209";
};
};
- "reinterval-1.1.0" = {
- name = "reinterval";
- packageName = "reinterval";
- version = "1.1.0";
+ "magnet-uri-4.2.3" = {
+ name = "magnet-uri";
+ packageName = "magnet-uri";
+ version = "4.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/reinterval/-/reinterval-1.1.0.tgz";
- sha1 = "3361ecfa3ca6c18283380dd0bb9546f390f5ece7";
+ url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-4.2.3.tgz";
+ sha1 = "79cc6d65a00bb5b7ef5c25ae60ebbb5d9a7681a8";
};
};
- "websocket-stream-5.1.1" = {
- name = "websocket-stream";
- packageName = "websocket-stream";
- version = "5.1.1";
+ "magnet-uri-5.1.7" = {
+ name = "magnet-uri";
+ packageName = "magnet-uri";
+ version = "5.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/websocket-stream/-/websocket-stream-5.1.1.tgz";
- sha512 = "18iw90ncl6cpip9j7rxdf6mag5klhhn7fklhb5lz41dy3wk9vxp3lxxkmwsnldjk5zfx3fjww55xg47k5k1a4cpph92k7j26p9kk56a";
- };
- };
- "leven-1.0.2" = {
- name = "leven";
- packageName = "leven";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/leven/-/leven-1.0.2.tgz";
- sha1 = "9144b6eebca5f1d0680169f1a6770dcea60b75c3";
- };
- };
- "callback-stream-1.1.0" = {
- name = "callback-stream";
- packageName = "callback-stream";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/callback-stream/-/callback-stream-1.1.0.tgz";
- sha1 = "4701a51266f06e06eaa71fc17233822d875f4908";
- };
- };
- "glob-stream-6.1.0" = {
- name = "glob-stream";
- packageName = "glob-stream";
- version = "6.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz";
- sha1 = "7045c99413b3eb94888d83ab46d0b404cc7bdde4";
- };
- };
- "is-negated-glob-1.0.0" = {
- name = "is-negated-glob";
- packageName = "is-negated-glob";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz";
- sha1 = "6910bca5da8c95e784b5751b976cf5a10fee36d2";
- };
- };
- "ordered-read-streams-1.0.1" = {
- name = "ordered-read-streams";
- packageName = "ordered-read-streams";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz";
- sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e";
- };
- };
- "to-absolute-glob-2.0.2" = {
- name = "to-absolute-glob";
- packageName = "to-absolute-glob";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz";
- sha1 = "1865f43d9e74b0822db9f145b78cff7d0f7c849b";
- };
- };
- "append-field-0.1.0" = {
- name = "append-field";
- packageName = "append-field";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/append-field/-/append-field-0.1.0.tgz";
- sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a";
- };
- };
- "busboy-0.2.14" = {
- name = "busboy";
- packageName = "busboy";
- version = "0.2.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz";
- sha1 = "6c2a622efcf47c57bbbe1e2a9c37ad36c7925453";
- };
- };
- "dicer-0.2.5" = {
- name = "dicer";
- packageName = "dicer";
- version = "0.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz";
- sha1 = "5996c086bb33218c812c090bddc09cd12facb70f";
- };
- };
- "streamsearch-0.1.2" = {
- name = "streamsearch";
- packageName = "streamsearch";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz";
- sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a";
- };
- };
- "feedparser-1.1.3" = {
- name = "feedparser";
- packageName = "feedparser";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/feedparser/-/feedparser-1.1.3.tgz";
- sha1 = "0b725f6b4cbe4b26d518baec0d010ad020156c8b";
- };
- };
- "sax-0.6.1" = {
- name = "sax";
- packageName = "sax";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sax/-/sax-0.6.1.tgz";
- sha1 = "563b19c7c1de892e09bfc4f2fc30e3c27f0952b9";
- };
- };
- "addressparser-0.1.3" = {
- name = "addressparser";
- packageName = "addressparser";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/addressparser/-/addressparser-0.1.3.tgz";
- sha1 = "9e9ab43d257e1ae784e1df5f580c9f5240f58874";
- };
- };
- "array-indexofobject-0.0.1" = {
- name = "array-indexofobject";
- packageName = "array-indexofobject";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-indexofobject/-/array-indexofobject-0.0.1.tgz";
- sha1 = "aaa128e62c9b3c358094568c219ff64fe489d42a";
- };
- };
- "nodemailer-1.11.0" = {
- name = "nodemailer";
- packageName = "nodemailer";
- version = "1.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer/-/nodemailer-1.11.0.tgz";
- sha1 = "4e69cb39b03015b1d1ef0c78a815412b9e976f79";
- };
- };
- "poplib-0.1.7" = {
- name = "poplib";
- packageName = "poplib";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/poplib/-/poplib-0.1.7.tgz";
- sha1 = "2f4b58b5592972350cd97f482aba68f8e05574bc";
- };
- };
- "mailparser-0.6.2" = {
- name = "mailparser";
- packageName = "mailparser";
- version = "0.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/mailparser/-/mailparser-0.6.2.tgz";
- sha1 = "03c486039bdf4df6cd3b6adcaaac4107dfdbc068";
- };
- };
- "imap-0.8.19" = {
- name = "imap";
- packageName = "imap";
- version = "0.8.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/imap/-/imap-0.8.19.tgz";
- sha1 = "3678873934ab09cea6ba48741f284da2af59d8d5";
- };
- };
- "libmime-1.2.0" = {
- name = "libmime";
- packageName = "libmime";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/libmime/-/libmime-1.2.0.tgz";
- sha1 = "8d84b4f3b225b3704410236ef494906436ba742b";
+ url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.1.7.tgz";
+ sha1 = "8f8016ab74c415f274f4fb1943faaf7e92030eff";
};
};
"mailcomposer-2.1.0" = {
@@ -19836,94 +15038,580 @@ let
sha1 = "a6531822899614fee899c92226d81e2b9cbb183d";
};
};
- "needle-0.11.0" = {
- name = "needle";
- packageName = "needle";
- version = "0.11.0";
+ "mailcomposer-4.0.1" = {
+ name = "mailcomposer";
+ packageName = "mailcomposer";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/needle/-/needle-0.11.0.tgz";
- sha1 = "02a71b008eaf7d55ae89fb9fd7685b7b88d7bc29";
+ url = "https://registry.npmjs.org/mailcomposer/-/mailcomposer-4.0.1.tgz";
+ sha1 = "0e1c44b2a07cf740ee17dc149ba009f19cadfeb4";
};
};
- "nodemailer-direct-transport-1.1.0" = {
- name = "nodemailer-direct-transport";
- packageName = "nodemailer-direct-transport";
+ "mailcomposer-4.0.2" = {
+ name = "mailcomposer";
+ packageName = "mailcomposer";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mailcomposer/-/mailcomposer-4.0.2.tgz";
+ sha1 = "b635402cc7f2eedb10130d3d09ad88b1c2d7e101";
+ };
+ };
+ "mailgun-js-0.7.15" = {
+ name = "mailgun-js";
+ packageName = "mailgun-js";
+ version = "0.7.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mailgun-js/-/mailgun-js-0.7.15.tgz";
+ sha1 = "ee366a20dac64c3c15c03d6c1b3e0ed795252abb";
+ };
+ };
+ "mailparser-0.6.2" = {
+ name = "mailparser";
+ packageName = "mailparser";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mailparser/-/mailparser-0.6.2.tgz";
+ sha1 = "03c486039bdf4df6cd3b6adcaaac4107dfdbc068";
+ };
+ };
+ "make-dir-1.1.0" = {
+ name = "make-dir";
+ packageName = "make-dir";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-1.1.0.tgz";
- sha1 = "a2f78708ee6f16ea0573fc82949d138ff172f624";
+ url = "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz";
+ sha512 = "1q7686aqgkxk9l6nqhzbil3599f9pxiz364kdbfy7pdr9sny7zylpm6yf4rwz4i0aa11lmf35mh8jmj7g7vxm37pvqvl9qbij5jxyfh";
};
};
- "nodemailer-smtp-transport-1.1.0" = {
- name = "nodemailer-smtp-transport";
- packageName = "nodemailer-smtp-transport";
- version = "1.1.0";
+ "make-error-1.3.2" = {
+ name = "make-error";
+ packageName = "make-error";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-1.1.0.tgz";
- sha1 = "e6c37f31885ab3080e7ded3cf528c4ad7e691398";
+ url = "https://registry.npmjs.org/make-error/-/make-error-1.3.2.tgz";
+ sha512 = "1sw30dxbwvv9pa0871cyshryjqam7d0pl4m1f6zww2r81qv3sgmx5qz7aimhz2xhxlihy9fglnwc1sy7hwfbfwcvg2n4mbrk7gxmnlp";
};
};
- "libbase64-0.1.0" = {
- name = "libbase64";
- packageName = "libbase64";
+ "make-error-cause-1.2.2" = {
+ name = "make-error-cause";
+ packageName = "make-error-cause";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.2.tgz";
+ sha1 = "df0388fcd0b37816dff0a5fb8108939777dcbc9d";
+ };
+ };
+ "make-iterator-1.0.0" = {
+ name = "make-iterator";
+ packageName = "make-iterator";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.0.tgz";
+ sha1 = "57bef5dc85d23923ba23767324d8e8f8f3d9694b";
+ };
+ };
+ "map-cache-0.2.2" = {
+ name = "map-cache";
+ packageName = "map-cache";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz";
+ sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf";
+ };
+ };
+ "map-obj-1.0.1" = {
+ name = "map-obj";
+ packageName = "map-obj";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz";
+ sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d";
+ };
+ };
+ "map-stream-0.1.0" = {
+ name = "map-stream";
+ packageName = "map-stream";
version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz";
- sha1 = "62351a839563ac5ff5bd26f12f60e9830bb751e6";
+ url = "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz";
+ sha1 = "e56aa94c4c8055a16404a0674b78f215f7c8e194";
};
};
- "libqp-1.1.0" = {
- name = "libqp";
- packageName = "libqp";
+ "map-visit-1.0.0" = {
+ name = "map-visit";
+ packageName = "map-visit";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz";
+ sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
+ };
+ };
+ "markdown-it-4.4.0" = {
+ name = "markdown-it";
+ packageName = "markdown-it";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdown-it/-/markdown-it-4.4.0.tgz";
+ sha1 = "3df373dbea587a9a7fef3e56311b68908f75c414";
+ };
+ };
+ "markdown-it-8.4.0" = {
+ name = "markdown-it";
+ packageName = "markdown-it";
+ version = "8.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.0.tgz";
+ sha512 = "0c0jpdfbi4fmqyjc2ilwvinxyc8rn4p9j7fwshh2c00nkc0q2lh6yw2dgragvnpy8bjhcwa1hlfy2ih2ih3np78wrpqx7gf4w48xnxl";
+ };
+ };
+ "markdown-it-emoji-1.4.0" = {
+ name = "markdown-it-emoji";
+ packageName = "markdown-it-emoji";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz";
+ sha1 = "9bee0e9a990a963ba96df6980c4fddb05dfb4dcc";
+ };
+ };
+ "markdown-it-github-headings-1.1.0" = {
+ name = "markdown-it-github-headings";
+ packageName = "markdown-it-github-headings";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz";
- sha1 = "f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8";
+ url = "https://registry.npmjs.org/markdown-it-github-headings/-/markdown-it-github-headings-1.1.0.tgz";
+ sha1 = "d6f73da5276ded956861337189addf3d52b93558";
};
};
- "buildmail-2.0.0" = {
- name = "buildmail";
- packageName = "buildmail";
- version = "2.0.0";
+ "markdown-it-task-checkbox-1.0.6" = {
+ name = "markdown-it-task-checkbox";
+ packageName = "markdown-it-task-checkbox";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/buildmail/-/buildmail-2.0.0.tgz";
- sha1 = "f0b7b0a59e9a4a1b5066bbfa051d248f3832eece";
+ url = "https://registry.npmjs.org/markdown-it-task-checkbox/-/markdown-it-task-checkbox-1.0.6.tgz";
+ sha512 = "0knj35b20bkc34hpfv73p4m855ysgdshml07fhj18j62p09y2066l7nl28g9kr2rwqm9x8j0bw20d32vqrrhih5ifvynk7axcg6977f";
};
};
- "addressparser-0.3.2" = {
- name = "addressparser";
- packageName = "addressparser";
- version = "0.3.2";
+ "markdown-table-0.4.0" = {
+ name = "markdown-table";
+ packageName = "markdown-table";
+ version = "0.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/addressparser/-/addressparser-0.3.2.tgz";
- sha1 = "59873f35e8fcf6c7361c10239261d76e15348bb2";
+ url = "https://registry.npmjs.org/markdown-table/-/markdown-table-0.4.0.tgz";
+ sha1 = "890c2c1b3bfe83fb00e4129b8e4cfe645270f9d1";
};
};
- "needle-0.10.0" = {
- name = "needle";
- packageName = "needle";
- version = "0.10.0";
+ "markdown-to-ast-3.4.0" = {
+ name = "markdown-to-ast";
+ packageName = "markdown-to-ast";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/needle/-/needle-0.10.0.tgz";
- sha1 = "16a24d63f2a61152eb74cce1d12af85c507577d4";
+ url = "https://registry.npmjs.org/markdown-to-ast/-/markdown-to-ast-3.4.0.tgz";
+ sha1 = "0e2cba81390b0549a9153ec3b0d915b61c164be7";
};
};
- "smtp-connection-1.3.8" = {
- name = "smtp-connection";
- packageName = "smtp-connection";
- version = "1.3.8";
+ "marked-0.3.12" = {
+ name = "marked";
+ packageName = "marked";
+ version = "0.3.12";
src = fetchurl {
- url = "https://registry.npmjs.org/smtp-connection/-/smtp-connection-1.3.8.tgz";
- sha1 = "55832c2160cfb3086e1dcd87fd1c19fa61b7f536";
+ url = "https://registry.npmjs.org/marked/-/marked-0.3.12.tgz";
+ sha512 = "2h8qj30y9n29m3xvbbg777kmxcdx57hf1ir6z3jyn94gj7s0kcz74203y1hazavwh60cfp69zdjv532vxyjc853kx82pvyjxddmm0wk";
};
};
- "nodemailer-wellknown-0.1.10" = {
- name = "nodemailer-wellknown";
- packageName = "nodemailer-wellknown";
- version = "0.1.10";
+ "matcher-collection-1.0.5" = {
+ name = "matcher-collection";
+ packageName = "matcher-collection";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz";
- sha1 = "586db8101db30cb4438eb546737a41aad0cf13d5";
+ url = "https://registry.npmjs.org/matcher-collection/-/matcher-collection-1.0.5.tgz";
+ sha512 = "1hfvbsx85xqrw6g0k7rkqwngl8b2nwj92ax10ilx3b4lma2mcp8q6zpvam1sffgqsssa9d13cj7prrzg5c00mf0c8q92w59m36ach4x";
+ };
+ };
+ "md5.js-1.3.4" = {
+ name = "md5.js";
+ packageName = "md5.js";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz";
+ sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d";
+ };
+ };
+ "mdn-data-1.1.0" = {
+ name = "mdn-data";
+ packageName = "mdn-data";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.0.tgz";
+ sha512 = "3av1cblh8aix05jyfib9mhm57qx8fnkxgxs2g493mdm4815pisrn8rzgf9yxjiww6psa619aa8l62xigrbwfcag741bgls227f82blc";
+ };
+ };
+ "mdns-js-1.0.1" = {
+ name = "mdns-js";
+ packageName = "mdns-js";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdns-js/-/mdns-js-1.0.1.tgz";
+ sha512 = "0z9rixsyb1m6w2qjqimn0ga0qdcpnxnm0ci7zd0svzd9kivqds0zczf7r32064r8c32m94cs3lrcvwvg21d7x2s38f28r5874rjs0bp";
+ };
+ };
+ "mdurl-1.0.1" = {
+ name = "mdurl";
+ packageName = "mdurl";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz";
+ sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e";
+ };
+ };
+ "media-typer-0.3.0" = {
+ name = "media-typer";
+ packageName = "media-typer";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz";
+ sha1 = "8710d7af0aa626f8fffa1ce00168545263255748";
+ };
+ };
+ "mediawiki-title-0.6.5" = {
+ name = "mediawiki-title";
+ packageName = "mediawiki-title";
+ version = "0.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mediawiki-title/-/mediawiki-title-0.6.5.tgz";
+ sha512 = "3r94k4jgdj5ir5y2p0hvb860976fz2fnzjafjzmsf0pivsqgy0hgxsxg315zmzq69rv0lli8rfjwcjp097xya03aaa4s7xjppi0ixvw";
+ };
+ };
+ "mem-1.1.0" = {
+ name = "mem";
+ packageName = "mem";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz";
+ sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76";
+ };
+ };
+ "mem-fs-1.1.3" = {
+ name = "mem-fs";
+ packageName = "mem-fs";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mem-fs/-/mem-fs-1.1.3.tgz";
+ sha1 = "b8ae8d2e3fcb6f5d3f9165c12d4551a065d989cc";
+ };
+ };
+ "memdown-0.10.2" = {
+ name = "memdown";
+ packageName = "memdown";
+ version = "0.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memdown/-/memdown-0.10.2.tgz";
+ sha1 = "a15ed0b6a8f216848d80a75c0fe8dd0bad89b608";
+ };
+ };
+ "memory-fs-0.3.0" = {
+ name = "memory-fs";
+ packageName = "memory-fs";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.3.0.tgz";
+ sha1 = "7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20";
+ };
+ };
+ "memory-fs-0.4.1" = {
+ name = "memory-fs";
+ packageName = "memory-fs";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz";
+ sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
+ };
+ };
+ "memory-pager-1.1.0" = {
+ name = "memory-pager";
+ packageName = "memory-pager";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memory-pager/-/memory-pager-1.1.0.tgz";
+ sha512 = "376gyi0kksnf6f43vhm339sa39j8nrf9dqvhgmz8y7if7w4r1jssqx2ivqb87dz83jpcjad3yi7i5p1vdzwslrwb2c1xvnqbwflxzri";
+ };
+ };
+ "memorystore-1.6.0" = {
+ name = "memorystore";
+ packageName = "memorystore";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/memorystore/-/memorystore-1.6.0.tgz";
+ sha1 = "1fb5fb5f0b2edf1add184917e918f094a9ff3465";
+ };
+ };
+ "meow-3.7.0" = {
+ name = "meow";
+ packageName = "meow";
+ version = "3.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz";
+ sha1 = "72cb668b425228290abbfa856892587308a801fb";
+ };
+ };
+ "merge-1.2.0" = {
+ name = "merge";
+ packageName = "merge";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz";
+ sha1 = "7531e39d4949c281a66b8c5a6e0265e8b05894da";
+ };
+ };
+ "merge-descriptors-0.0.2" = {
+ name = "merge-descriptors";
+ packageName = "merge-descriptors";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-0.0.2.tgz";
+ sha1 = "c36a52a781437513c57275f39dd9d317514ac8c7";
+ };
+ };
+ "merge-descriptors-1.0.0" = {
+ name = "merge-descriptors";
+ packageName = "merge-descriptors";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.0.tgz";
+ sha1 = "2169cf7538e1b0cc87fb88e1502d8474bbf79864";
+ };
+ };
+ "merge-descriptors-1.0.1" = {
+ name = "merge-descriptors";
+ packageName = "merge-descriptors";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz";
+ sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61";
+ };
+ };
+ "merge-stream-1.0.1" = {
+ name = "merge-stream";
+ packageName = "merge-stream";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz";
+ sha1 = "4041202d508a342ba00174008df0c251b8c135e1";
+ };
+ };
+ "merkle-tree-stream-3.0.3" = {
+ name = "merkle-tree-stream";
+ packageName = "merkle-tree-stream";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/merkle-tree-stream/-/merkle-tree-stream-3.0.3.tgz";
+ sha1 = "f8a064760d37e7978ad5f9f6d3c119a494f57081";
+ };
+ };
+ "mersenne-0.0.4" = {
+ name = "mersenne";
+ packageName = "mersenne";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mersenne/-/mersenne-0.0.4.tgz";
+ sha1 = "401fdec7ec21cdb9e03cd3d3021398da21b27085";
+ };
+ };
+ "method-override-2.3.10" = {
+ name = "method-override";
+ packageName = "method-override";
+ version = "2.3.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/method-override/-/method-override-2.3.10.tgz";
+ sha1 = "e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4";
+ };
+ };
+ "methods-0.0.1" = {
+ name = "methods";
+ packageName = "methods";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/methods/-/methods-0.0.1.tgz";
+ sha1 = "277c90f8bef39709645a8371c51c3b6c648e068c";
+ };
+ };
+ "methods-0.1.0" = {
+ name = "methods";
+ packageName = "methods";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/methods/-/methods-0.1.0.tgz";
+ sha1 = "335d429eefd21b7bacf2e9c922a8d2bd14a30e4f";
+ };
+ };
+ "methods-1.0.1" = {
+ name = "methods";
+ packageName = "methods";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/methods/-/methods-1.0.1.tgz";
+ sha1 = "75bc91943dffd7da037cf3eeb0ed73a0037cd14b";
+ };
+ };
+ "methods-1.1.2" = {
+ name = "methods";
+ packageName = "methods";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz";
+ sha1 = "5529a4d67654134edcc5266656835b0f851afcee";
+ };
+ };
+ "micro-9.1.0" = {
+ name = "micro";
+ packageName = "micro";
+ version = "9.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micro/-/micro-9.1.0.tgz";
+ sha512 = "232sjz2wv3xlfz5wf20jihj8avic507avydzwcf4d8zgy07ha9x3pqc6xkw0y8bjk8f8w30fmih38gsdvz7ph92c4kj4cxxfinph2nh";
+ };
+ };
+ "micro-compress-1.0.0" = {
+ name = "micro-compress";
+ packageName = "micro-compress";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micro-compress/-/micro-compress-1.0.0.tgz";
+ sha1 = "53f5a80b4ad0320ca165a559b6e3df145d4f704f";
+ };
+ };
+ "microee-0.0.6" = {
+ name = "microee";
+ packageName = "microee";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/microee/-/microee-0.0.6.tgz";
+ sha1 = "a12bdb0103681e8b126a9b071eba4c467c78fffe";
+ };
+ };
+ "micromatch-2.3.11" = {
+ name = "micromatch";
+ packageName = "micromatch";
+ version = "2.3.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz";
+ sha1 = "86677c97d1720b363431d04d0d15293bd38c1565";
+ };
+ };
+ "micromatch-3.1.5" = {
+ name = "micromatch";
+ packageName = "micromatch";
+ version = "3.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.5.tgz";
+ sha512 = "2y22i8yrib7vcgpfcm5sq9g4fh4wxrn0f3z017vdbkvybvywa1axl3kym81k9ad6h3d4jmqkqyahcaj2c5qy5wpa17kvbyhnfn6sjya";
+ };
+ };
+ "miller-rabin-4.0.1" = {
+ name = "miller-rabin";
+ packageName = "miller-rabin";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz";
+ sha512 = "12277knznlw4myxmgg6vgkrwmrhj9dyniscrlph3s08ndi2q25v3wrv6rwanvz29v5k5x756xa5yif4xllrghpn3jqaamnr3cp5ypnp";
+ };
+ };
+ "mime-1.2.11" = {
+ name = "mime";
+ packageName = "mime";
+ version = "1.2.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz";
+ sha1 = "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10";
+ };
+ };
+ "mime-1.2.4" = {
+ name = "mime";
+ packageName = "mime";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-1.2.4.tgz";
+ sha1 = "11b5fdaf29c2509255176b80ad520294f5de92b7";
+ };
+ };
+ "mime-1.2.6" = {
+ name = "mime";
+ packageName = "mime";
+ version = "1.2.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-1.2.6.tgz";
+ sha1 = "b1f86c768c025fa87b48075f1709f28aeaf20365";
+ };
+ };
+ "mime-1.3.4" = {
+ name = "mime";
+ packageName = "mime";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz";
+ sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53";
+ };
+ };
+ "mime-1.4.1" = {
+ name = "mime";
+ packageName = "mime";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-1.4.1.tgz";
+ sha512 = "2sz22r1xrnyvq6jg0h6b6cab3s3xdsfqa0n6vl9xv9gq3ppcxrcpg2hqfc41xjwnfwfkr6240l5gys7nds61ch6xcb3gr3fwsl7x398";
+ };
+ };
+ "mime-1.6.0" = {
+ name = "mime";
+ packageName = "mime";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz";
+ sha512 = "1x901mk5cdib4xp27v4ivwwr7mhy64r4rk953bzivi5p9lf2bhw88ra2rhkd254xkdx2d3q30zkq239vc4yx4pfsj4hpys8rbr6fif7";
+ };
+ };
+ "mime-db-1.12.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz";
+ sha1 = "3d0c63180f458eb10d325aaa37d7c58ae312e9d7";
+ };
+ };
+ "mime-db-1.30.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.30.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz";
+ sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01";
+ };
+ };
+ "mime-db-1.32.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.32.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.32.0.tgz";
+ sha512 = "1bl21q8acya2jj67757518bdy1yhc5d7ybn755wnikwcca3gq5akfg835nj5mp2kmd4f97yyy0qwx662jlwk1rgx7nl9qsd2vzsi5gr";
+ };
+ };
+ "mime-types-2.0.14" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.0.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz";
+ sha1 = "310e159db23e077f8bb22b748dabfa4957140aa6";
+ };
+ };
+ "mime-types-2.1.17" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz";
+ sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a";
};
};
"mimelib-0.3.1" = {
@@ -19935,67 +15623,382 @@ let
sha1 = "787add2415d827acb3af6ec4bca1ea9596418853";
};
};
- "uue-3.1.0" = {
- name = "uue";
- packageName = "uue";
+ "mimic-fn-1.1.0" = {
+ name = "mimic-fn";
+ packageName = "mimic-fn";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz";
+ sha1 = "e667783d92e89dbd342818b5230b9d62a672ad18";
+ };
+ };
+ "mimic-response-1.0.0" = {
+ name = "mimic-response";
+ packageName = "mimic-response";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz";
+ sha1 = "df3d3652a73fded6b9b0b24146e6fd052353458e";
+ };
+ };
+ "min-document-2.19.0" = {
+ name = "min-document";
+ packageName = "min-document";
+ version = "2.19.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz";
+ sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685";
+ };
+ };
+ "minilog-3.1.0" = {
+ name = "minilog";
+ packageName = "minilog";
version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/uue/-/uue-3.1.0.tgz";
- sha1 = "5d67d37030e66efebbb4b8aac46daf9b55befbf6";
+ url = "https://registry.npmjs.org/minilog/-/minilog-3.1.0.tgz";
+ sha1 = "d2d0f1887ca363d1acf0ea86d5c4df293b3fb675";
};
};
- "addressparser-1.0.1" = {
- name = "addressparser";
- packageName = "addressparser";
+ "minimalistic-assert-1.0.0" = {
+ name = "minimalistic-assert";
+ packageName = "minimalistic-assert";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz";
+ sha1 = "702be2dda6b37f4836bcb3f5db56641b64a1d3d3";
+ };
+ };
+ "minimalistic-crypto-utils-1.0.1" = {
+ name = "minimalistic-crypto-utils";
+ packageName = "minimalistic-crypto-utils";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz";
- sha1 = "47afbe1a2a9262191db6838e4fd1d39b40821746";
+ url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
+ sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
};
};
- "utf7-1.0.2" = {
- name = "utf7";
- packageName = "utf7";
- version = "1.0.2";
+ "minimatch-0.2.14" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "0.2.14";
src = fetchurl {
- url = "https://registry.npmjs.org/utf7/-/utf7-1.0.2.tgz";
- sha1 = "955f490aae653ba220b9456a0a8776c199360991";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz";
+ sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a";
};
};
- "twitter-ng-0.6.2" = {
- name = "twitter-ng";
- packageName = "twitter-ng";
- version = "0.6.2";
+ "minimatch-0.3.0" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/twitter-ng/-/twitter-ng-0.6.2.tgz";
- sha1 = "13707115dd04c9bd1f2c646da976589be4d64bc4";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz";
+ sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd";
};
};
- "oauth-0.9.14" = {
- name = "oauth";
- packageName = "oauth";
- version = "0.9.14";
+ "minimatch-1.0.0" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/oauth/-/oauth-0.9.14.tgz";
- sha1 = "c5748883a40b53de30ade9cabf2100414b8a0971";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz";
+ sha1 = "e0dd2120b49e1b724ce8d714c520822a9438576d";
};
};
- "nan-2.6.2" = {
- name = "nan";
- packageName = "nan";
- version = "2.6.2";
+ "minimatch-2.0.10" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "2.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz";
- sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz";
+ sha1 = "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7";
};
};
- "node-pre-gyp-0.6.36" = {
- name = "node-pre-gyp";
- packageName = "node-pre-gyp";
- version = "0.6.36";
+ "minimatch-3.0.2" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "3.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz";
- sha1 = "db604112cb74e0d477554e9b505b17abddfab786";
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz";
+ sha1 = "0f398a7300ea441e9c348c83d98ab8c9dbf9c40a";
+ };
+ };
+ "minimatch-3.0.4" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz";
+ sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8";
+ };
+ };
+ "minimist-0.0.10" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "0.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz";
+ sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf";
+ };
+ };
+ "minimist-0.0.8" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
+ sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
+ };
+ };
+ "minimist-0.1.0" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz";
+ sha1 = "99df657a52574c21c9057497df742790b2b4c0de";
+ };
+ };
+ "minimist-0.2.0" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz";
+ sha1 = "4dffe525dae2b864c66c2e23c6271d7afdecefce";
+ };
+ };
+ "minimist-1.2.0" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
+ sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
+ };
+ };
+ "minipass-2.2.1" = {
+ name = "minipass";
+ packageName = "minipass";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.2.1.tgz";
+ sha512 = "3yy9s65iwrx5hndcqbxrks88xi9cf8hra6zalgf8xfr4ahpp31s0i8lv6jpyb42p0y7z55ac3390sbqxcgcvan3xls449agbjb98mmv";
+ };
+ };
+ "minizlib-1.1.0" = {
+ name = "minizlib";
+ packageName = "minizlib";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz";
+ sha512 = "2agpbdf9h90nhafdam3jwrw8gcz3jw1i40cx6bhwaw8qaf2s863gi2b77l73dc3hmf5dx491hv5km1rqzabgsbpkjxrvdcwy6pr8gp1";
+ };
+ };
+ "mirror-folder-2.1.1" = {
+ name = "mirror-folder";
+ packageName = "mirror-folder";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-2.1.1.tgz";
+ sha1 = "1ad3b777b39e403cc27bf52086c23e41ef4c9604";
+ };
+ };
+ "mixin-deep-1.3.0" = {
+ name = "mixin-deep";
+ packageName = "mixin-deep";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.0.tgz";
+ sha512 = "016isy937hd503fn41ivc4j267cr1brp7f65waxkk2ijslc1gyh7r815xk4g27cjrgjzydwqbpwk5yj4nyjj085n3l5k2vsi2z841kn";
+ };
+ };
+ "mixin-object-2.0.1" = {
+ name = "mixin-object";
+ packageName = "mixin-object";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz";
+ sha1 = "4fb949441dab182540f1fe035ba60e1947a5e57e";
+ };
+ };
+ "mkdirp-0.3.0" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz";
+ sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e";
+ };
+ };
+ "mkdirp-0.3.5" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz";
+ sha1 = "de3e5f8961c88c787ee1368df849ac4413eca8d7";
+ };
+ };
+ "mkdirp-0.5.0" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz";
+ sha1 = "1d73076a6df986cd9344e15e71fcc05a4c9abf12";
+ };
+ };
+ "mkdirp-0.5.1" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
+ sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
+ };
+ };
+ "mkpath-0.1.0" = {
+ name = "mkpath";
+ packageName = "mkpath";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz";
+ sha1 = "7554a6f8d871834cc97b5462b122c4c124d6de91";
+ };
+ };
+ "mkpath-1.0.0" = {
+ name = "mkpath";
+ packageName = "mkpath";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkpath/-/mkpath-1.0.0.tgz";
+ sha1 = "ebb3a977e7af1c683ae6fda12b545a6ba6c5853d";
+ };
+ };
+ "mksnapshot-0.3.1" = {
+ name = "mksnapshot";
+ packageName = "mksnapshot";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mksnapshot/-/mksnapshot-0.3.1.tgz";
+ sha1 = "2501c05657436d742ce958a4ff92c77e40dd37e6";
+ };
+ };
+ "modern-syslog-1.1.2" = {
+ name = "modern-syslog";
+ packageName = "modern-syslog";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/modern-syslog/-/modern-syslog-1.1.2.tgz";
+ sha1 = "f1fa58899f3f452d788f1573401212a4ef898de5";
+ };
+ };
+ "modify-values-1.0.0" = {
+ name = "modify-values";
+ packageName = "modify-values";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.0.tgz";
+ sha1 = "e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2";
+ };
+ };
+ "module-deps-4.1.1" = {
+ name = "module-deps";
+ packageName = "module-deps";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/module-deps/-/module-deps-4.1.1.tgz";
+ sha1 = "23215833f1da13fd606ccb8087b44852dcb821fd";
+ };
+ };
+ "module-deps-5.0.1" = {
+ name = "module-deps";
+ packageName = "module-deps";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/module-deps/-/module-deps-5.0.1.tgz";
+ sha512 = "0jc7ysgbhwbj17j14vcl7aa6pn7pcp5bas2d5lb53rq3l7xkcxgvjqgrc9l4xvdhy2sdwyj1s9nssn7fhwhrdb841wycbxz37z2la5j";
+ };
+ };
+ "moment-2.1.0" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.1.0.tgz";
+ sha1 = "1fd7b1134029a953c6ea371dbaee37598ac03567";
+ };
+ };
+ "moment-2.14.1" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.14.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.14.1.tgz";
+ sha1 = "b35b27c47e57ed2ddc70053d6b07becdb291741c";
+ };
+ };
+ "moment-2.16.0" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.16.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.16.0.tgz";
+ sha1 = "f38f2c97c9889b0ee18fc6cc392e1e443ad2da8e";
+ };
+ };
+ "moment-2.18.1" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.18.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz";
+ sha1 = "c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f";
+ };
+ };
+ "moment-2.20.1" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.20.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz";
+ sha512 = "2zc9qgzsrnp9g4jm4qsb1g1h7w5zmnkz8690br52l83yr9kwhch0mh7r2vdhc706jkrqczia9wbrgkscz0x6k8cwmb3r5jifbpp47v2";
+ };
+ };
+ "moment-2.6.0" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.6.0.tgz";
+ sha1 = "0765b72b841dd213fa91914c0f6765122719f061";
+ };
+ };
+ "moment-2.7.0" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.7.0.tgz";
+ sha1 = "359a19ec634cda3c706c8709adda54c0329aaec4";
+ };
+ };
+ "moment-timezone-0.5.14" = {
+ name = "moment-timezone";
+ packageName = "moment-timezone";
+ version = "0.5.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.14.tgz";
+ sha1 = "4eb38ff9538b80108ba467a458f3ed4268ccfcb1";
+ };
+ };
+ "mongodb-1.2.14" = {
+ name = "mongodb";
+ packageName = "mongodb";
+ version = "1.2.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mongodb/-/mongodb-1.2.14.tgz";
+ sha1 = "269665552066437308d0942036646e6795c3a9a3";
};
};
"mongoose-3.6.7" = {
@@ -20016,157 +16019,22 @@ let
sha1 = "3bac3f3924a845d147784fc6558dee900b0151e2";
};
};
- "express-3.2.0" = {
- name = "express";
- packageName = "express";
- version = "3.2.0";
+ "morgan-1.6.1" = {
+ name = "morgan";
+ packageName = "morgan";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-3.2.0.tgz";
- sha1 = "7b66d6c66b038038eedf452804222b3077374ae0";
+ url = "https://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz";
+ sha1 = "5fd818398c6819cba28a7cd6664f292fe1c0bbf2";
};
};
- "express-partials-0.0.6" = {
- name = "express-partials";
- packageName = "express-partials";
- version = "0.0.6";
+ "morgan-1.9.0" = {
+ name = "morgan";
+ packageName = "morgan";
+ version = "1.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/express-partials/-/express-partials-0.0.6.tgz";
- sha1 = "b2664f15c636d5248e60fdbe29131c4440552eda";
- };
- };
- "connect-flash-0.1.0" = {
- name = "connect-flash";
- packageName = "connect-flash";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.0.tgz";
- sha1 = "82b381d61a12b651437df1c259c1f1c841239b88";
- };
- };
- "ejs-0.8.3" = {
- name = "ejs";
- packageName = "ejs";
- version = "0.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ejs/-/ejs-0.8.3.tgz";
- sha1 = "db8aac47ff80a7df82b4c82c126fe8970870626f";
- };
- };
- "config-0.4.15" = {
- name = "config";
- packageName = "config";
- version = "0.4.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/config/-/config-0.4.15.tgz";
- sha1 = "d43ddf58b8df5637fdd1314fc816ccae7bfbcd18";
- };
- };
- "socket.io-0.9.14" = {
- name = "socket.io";
- packageName = "socket.io";
- version = "0.9.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-0.9.14.tgz";
- sha1 = "81af80ebf3ee8f7f6e71b1495db91f8fa53ff667";
- };
- };
- "semver-1.1.0" = {
- name = "semver";
- packageName = "semver";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-1.1.0.tgz";
- sha1 = "da9b9c837e31550a7c928622bc2381de7dd7a53e";
- };
- };
- "moment-2.1.0" = {
- name = "moment";
- packageName = "moment";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.1.0.tgz";
- sha1 = "1fd7b1134029a953c6ea371dbaee37598ac03567";
- };
- };
- "nodemailer-0.3.35" = {
- name = "nodemailer";
- packageName = "nodemailer";
- version = "0.3.35";
- src = fetchurl {
- url = "https://registry.npmjs.org/nodemailer/-/nodemailer-0.3.35.tgz";
- sha1 = "4d38cdc0ad230bdf88cc27d1256ef49fcb422e19";
- };
- };
- "net-ping-1.1.7" = {
- name = "net-ping";
- packageName = "net-ping";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/net-ping/-/net-ping-1.1.7.tgz";
- sha1 = "49f5bca55a30a3726d69253557f231135a637075";
- };
- };
- "js-yaml-2.1.0" = {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.1.0.tgz";
- sha1 = "a55a6e4706b01d06326259a6f4bfc42e6ae38b1f";
- };
- };
- "hooks-0.2.1" = {
- name = "hooks";
- packageName = "hooks";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hooks/-/hooks-0.2.1.tgz";
- sha1 = "0f591b1b344bdcb3df59773f62fbbaf85bf4028b";
- };
- };
- "mongodb-1.2.14" = {
- name = "mongodb";
- packageName = "mongodb";
- version = "1.2.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/mongodb/-/mongodb-1.2.14.tgz";
- sha1 = "269665552066437308d0942036646e6795c3a9a3";
- };
- };
- "ms-0.1.0" = {
- name = "ms";
- packageName = "ms";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-0.1.0.tgz";
- sha1 = "f21fac490daf1d7667fd180fe9077389cc9442b2";
- };
- };
- "sliced-0.0.3" = {
- name = "sliced";
- packageName = "sliced";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/sliced/-/sliced-0.0.3.tgz";
- sha1 = "4f0bac2171eb17162c3ba6df81f5cf040f7c7e50";
- };
- };
- "muri-0.3.1" = {
- name = "muri";
- packageName = "muri";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/muri/-/muri-0.3.1.tgz";
- sha1 = "861889c5c857f1a43700bee85d50731f61727c9a";
- };
- };
- "mpromise-0.2.1" = {
- name = "mpromise";
- packageName = "mpromise";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mpromise/-/mpromise-0.2.1.tgz";
- sha1 = "fbbdc28cb0207e49b8a4eb1a4c0cea6c2de794c8";
+ url = "https://registry.npmjs.org/morgan/-/morgan-1.9.0.tgz";
+ sha1 = "d01fa6c65859b76fcf31b3cb53a3821a311d8051";
};
};
"mpath-0.1.1" = {
@@ -20178,256 +16046,373 @@ let
sha1 = "23da852b7c232ee097f4759d29c0ee9cd22d5e46";
};
};
- "bson-0.1.8" = {
- name = "bson";
- packageName = "bson";
- version = "0.1.8";
+ "mpromise-0.2.1" = {
+ name = "mpromise";
+ packageName = "mpromise";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/bson/-/bson-0.1.8.tgz";
- sha1 = "cf34fdcff081a189b589b4b3e5e9309cd6506c81";
+ url = "https://registry.npmjs.org/mpromise/-/mpromise-0.2.1.tgz";
+ sha1 = "fbbdc28cb0207e49b8a4eb1a4c0cea6c2de794c8";
};
};
- "sliced-0.0.4" = {
- name = "sliced";
- packageName = "sliced";
- version = "0.0.4";
+ "mqtt-2.9.0" = {
+ name = "mqtt";
+ packageName = "mqtt";
+ version = "2.9.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sliced/-/sliced-0.0.4.tgz";
- sha1 = "34f89a6db1f31fa525f5a570f5bcf877cf0955ee";
+ url = "https://registry.npmjs.org/mqtt/-/mqtt-2.9.0.tgz";
+ sha512 = "181qi8xb0lxxqvwq2xcslv35dbhphyr67w02bad6n4rlibcm6z0j055dyfpdh12mrrvgjzfj11cjylsj26y7vr17cvk1kbgkiqgzpb9";
};
};
- "connect-2.7.6" = {
- name = "connect";
- packageName = "connect";
- version = "2.7.6";
+ "mqtt-packet-5.4.0" = {
+ name = "mqtt-packet";
+ packageName = "mqtt-packet";
+ version = "5.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-2.7.6.tgz";
- sha1 = "b83b68fa6f245c5020e2395472cc8322b0060738";
+ url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-5.4.0.tgz";
+ sha512 = "2d1hvibps8d4xlw8wm937ykc76yb02rp2065hd6186vygjx3wixjjzrn3fia4wfj7d38ic8gh5ij5rsi9389kl6gpxxjbdcbjwpn8yf";
};
};
- "range-parser-0.0.4" = {
- name = "range-parser";
- packageName = "range-parser";
- version = "0.0.4";
+ "mri-1.1.0" = {
+ name = "mri";
+ packageName = "mri";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz";
- sha1 = "c0427ffef51c10acba0782a46c9602e744ff620b";
+ url = "https://registry.npmjs.org/mri/-/mri-1.1.0.tgz";
+ sha1 = "5c0a3f29c8ccffbbb1ec941dcec09d71fa32f36a";
};
};
- "cookie-0.0.5" = {
- name = "cookie";
- packageName = "cookie";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie/-/cookie-0.0.5.tgz";
- sha1 = "f9acf9db57eb7568c9fcc596256b7bb22e307c81";
- };
- };
- "fresh-0.1.0" = {
- name = "fresh";
- packageName = "fresh";
+ "ms-0.1.0" = {
+ name = "ms";
+ packageName = "ms";
version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.1.0.tgz";
- sha1 = "03e4b0178424e4c2d5d19a54d8814cdc97934850";
+ url = "https://registry.npmjs.org/ms/-/ms-0.1.0.tgz";
+ sha1 = "f21fac490daf1d7667fd180fe9077389cc9442b2";
};
};
- "methods-0.0.1" = {
- name = "methods";
- packageName = "methods";
- version = "0.0.1";
+ "ms-0.7.0" = {
+ name = "ms";
+ packageName = "ms";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/methods/-/methods-0.0.1.tgz";
- sha1 = "277c90f8bef39709645a8371c51c3b6c648e068c";
+ url = "https://registry.npmjs.org/ms/-/ms-0.7.0.tgz";
+ sha1 = "865be94c2e7397ad8a57da6a633a6e2f30798b83";
};
};
- "send-0.1.0" = {
- name = "send";
- packageName = "send";
- version = "0.1.0";
+ "ms-0.7.1" = {
+ name = "ms";
+ packageName = "ms";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.1.0.tgz";
- sha1 = "cfb08ebd3cec9b7fc1a37d9ff9e875a971cf4640";
+ url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz";
+ sha1 = "9cd13c03adbff25b65effde7ce864ee952017098";
};
};
- "cookie-signature-1.0.1" = {
- name = "cookie-signature";
- packageName = "cookie-signature";
- version = "1.0.1";
+ "ms-0.7.2" = {
+ name = "ms";
+ packageName = "ms";
+ version = "0.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz";
- sha1 = "44e072148af01e6e8e24afbf12690d68ae698ecb";
+ url = "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz";
+ sha1 = "ae25cf2512b3885a1d95d7f037868d8431124765";
};
};
- "qs-0.5.1" = {
- name = "qs";
- packageName = "qs";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-0.5.1.tgz";
- sha1 = "9f6bf5d9ac6c76384e95d36d15b48980e5e4add0";
- };
- };
- "formidable-1.0.11" = {
- name = "formidable";
- packageName = "formidable";
- version = "1.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/formidable/-/formidable-1.0.11.tgz";
- sha1 = "68f63325a035e644b6f7bb3d11243b9761de1b30";
- };
- };
- "buffer-crc32-0.1.1" = {
- name = "buffer-crc32";
- packageName = "buffer-crc32";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.1.1.tgz";
- sha1 = "7e110dc9953908ab7c32acdc70c9f945b1cbc526";
- };
- };
- "bytes-0.2.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-0.2.0.tgz";
- sha1 = "aad33ec14e3dc2ca74e8e7d451f9ba053ad4f7a0";
- };
- };
- "mime-1.2.6" = {
- name = "mime";
- packageName = "mime";
- version = "1.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime/-/mime-1.2.6.tgz";
- sha1 = "b1f86c768c025fa87b48075f1709f28aeaf20365";
- };
- };
- "js-yaml-0.3.7" = {
- name = "js-yaml";
- packageName = "js-yaml";
- version = "0.3.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.7.tgz";
- sha1 = "d739d8ee86461e54b354d6a7d7d1f2ad9a167f62";
- };
- };
- "vows-0.8.1" = {
- name = "vows";
- packageName = "vows";
- version = "0.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/vows/-/vows-0.8.1.tgz";
- sha1 = "e09e988ce594ca05a08d72abcca34e88db559131";
- };
- };
- "diff-1.0.8" = {
- name = "diff";
- packageName = "diff";
- version = "1.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-1.0.8.tgz";
- sha1 = "343276308ec991b7bc82267ed55bc1411f971666";
- };
- };
- "glob-4.0.6" = {
- name = "glob";
- packageName = "glob";
- version = "4.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-4.0.6.tgz";
- sha1 = "695c50bdd4e2fb5c5d370b091f388d3707e291a7";
- };
- };
- "minimatch-1.0.0" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz";
- sha1 = "e0dd2120b49e1b724ce8d714c520822a9438576d";
- };
- };
- "socket.io-client-0.9.11" = {
- name = "socket.io-client";
- packageName = "socket.io-client";
- version = "0.9.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.11.tgz";
- sha1 = "94defc1b29e0d8a8fe958c1cf33300f68d8a19c7";
- };
- };
- "policyfile-0.0.4" = {
- name = "policyfile";
- packageName = "policyfile";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/policyfile/-/policyfile-0.0.4.tgz";
- sha1 = "d6b82ead98ae79ebe228e2daf5903311ec982e4d";
- };
- };
- "base64id-0.1.0" = {
- name = "base64id";
- packageName = "base64id";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz";
- sha1 = "02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f";
- };
- };
- "redis-0.7.3" = {
- name = "redis";
- packageName = "redis";
+ "ms-0.7.3" = {
+ name = "ms";
+ packageName = "ms";
version = "0.7.3";
src = fetchurl {
- url = "https://registry.npmjs.org/redis/-/redis-0.7.3.tgz";
- sha1 = "ee57b7a44d25ec1594e44365d8165fa7d1d4811a";
+ url = "https://registry.npmjs.org/ms/-/ms-0.7.3.tgz";
+ sha1 = "708155a5e44e33f5fd0fc53e81d0d40a91be1fff";
};
};
- "uglify-js-1.2.5" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "1.2.5";
+ "ms-2.0.0" = {
+ name = "ms";
+ packageName = "ms";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-1.2.5.tgz";
- sha1 = "b542c2c76f78efb34b200b20177634330ff702b6";
+ url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
+ sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
};
};
- "ws-0.4.32" = {
- name = "ws";
- packageName = "ws";
- version = "0.4.32";
+ "ms-2.1.1" = {
+ name = "ms";
+ packageName = "ms";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-0.4.32.tgz";
- sha1 = "787a6154414f3c99ed83c5772153b20feb0cec32";
+ url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz";
+ sha512 = "352z145jr1zx0w6kmlz2jxcaw6j2pwwg9va3x4gk731zw1agka2b213avw12zx6hgn071ibm0f3p80n5cdv896npay4s6jwbrv7w2mn";
};
};
- "xmlhttprequest-1.4.2" = {
- name = "xmlhttprequest";
- packageName = "xmlhttprequest";
- version = "1.4.2";
+ "ms-rest-1.15.7" = {
+ name = "ms-rest";
+ packageName = "ms-rest";
+ version = "1.15.7";
src = fetchurl {
- url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.4.2.tgz";
- sha1 = "01453a1d9bed1e8f172f6495bbf4c8c426321500";
+ url = "https://registry.npmjs.org/ms-rest/-/ms-rest-1.15.7.tgz";
+ sha1 = "400515e05b1924889cb61a1ec6054290a68e1207";
};
};
- "active-x-obfuscator-0.0.1" = {
- name = "active-x-obfuscator";
- packageName = "active-x-obfuscator";
- version = "0.0.1";
+ "ms-rest-2.3.0" = {
+ name = "ms-rest";
+ packageName = "ms-rest";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/active-x-obfuscator/-/active-x-obfuscator-0.0.1.tgz";
- sha1 = "089b89b37145ff1d9ec74af6530be5526cae1f1a";
+ url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.3.0.tgz";
+ sha512 = "2dfmfxr3xagmds2agz7g6rnj1s9lh29fgfwxbqsfpkkabh3qhcc7sznkaviilpzr59fks1401wy6sh9xyy3wsaqbm975vm5b2bj6cwf";
};
};
- "commander-2.1.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.1.0";
+ "ms-rest-azure-1.15.7" = {
+ name = "ms-rest-azure";
+ packageName = "ms-rest-azure";
+ version = "1.15.7";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz";
- sha1 = "d121bbae860d9992a3d517ba96f56588e47c6781";
+ url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.15.7.tgz";
+ sha1 = "8bce09f053b1565dbaa8bd022ca40155c35b0fde";
+ };
+ };
+ "ms-rest-azure-2.5.0" = {
+ name = "ms-rest-azure";
+ packageName = "ms-rest-azure";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.5.0.tgz";
+ sha512 = "22v7h9wa04laz1v40rq0wx3az880flfhz6xzjgk5pny3674kar5c0vj0ww1rjbsi891j9hvxvk9v51dykivirfjh5srqrjfmswzk3fw";
+ };
+ };
+ "msgpack-1.0.2" = {
+ name = "msgpack";
+ packageName = "msgpack";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/msgpack/-/msgpack-1.0.2.tgz";
+ sha1 = "923e2c5cffa65c8418e9b228d1124793969c429c";
+ };
+ };
+ "msgpack5-3.6.0" = {
+ name = "msgpack5";
+ packageName = "msgpack5";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/msgpack5/-/msgpack5-3.6.0.tgz";
+ sha512 = "3nr151ygx2w2pydaamcjrcn5ksl2rx09sdad8gh0rp1l07igigvfsw0xjjcnxrdws1rwy7g1j533qzhr7w25jisad6npv9rf1j84yz8";
+ };
+ };
+ "multer-1.3.0" = {
+ name = "multer";
+ packageName = "multer";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multer/-/multer-1.3.0.tgz";
+ sha1 = "092b2670f6846fa4914965efc8cf94c20fec6cd2";
+ };
+ };
+ "multi-random-access-2.1.1" = {
+ name = "multi-random-access";
+ packageName = "multi-random-access";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multi-random-access/-/multi-random-access-2.1.1.tgz";
+ sha1 = "6462f1b204109ccc644601650110a828443d66e2";
+ };
+ };
+ "multicast-dns-4.0.1" = {
+ name = "multicast-dns";
+ packageName = "multicast-dns";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-4.0.1.tgz";
+ sha1 = "abf022fc866727055a9e0c2bc98097f5ebad97a2";
+ };
+ };
+ "multicast-dns-6.2.2" = {
+ name = "multicast-dns";
+ packageName = "multicast-dns";
+ version = "6.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.2.tgz";
+ sha512 = "06b9ps5a1ymag21szz55z4xzs2ncp0frcqsaldnggmz0m5ijhjv8f553cpkp9zkm37av1pm2y8pn70jbfzk888n1hap6i321babhcy5";
+ };
+ };
+ "multicast-dns-service-types-1.1.0" = {
+ name = "multicast-dns-service-types";
+ packageName = "multicast-dns-service-types";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz";
+ sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901";
+ };
+ };
+ "multicb-1.2.2" = {
+ name = "multicb";
+ packageName = "multicb";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicb/-/multicb-1.2.2.tgz";
+ sha512 = "2liv9lhcxrlp21524jzp1hxzbd07xmb7qlzma5qfn98bgn63ga0i5jalrhlz6qc08fd4jxh3hj2mi9wm14s95lip5x236052rv3i4rx";
+ };
+ };
+ "multiparty-2.2.0" = {
+ name = "multiparty";
+ packageName = "multiparty";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multiparty/-/multiparty-2.2.0.tgz";
+ sha1 = "a567c2af000ad22dc8f2a653d91978ae1f5316f4";
+ };
+ };
+ "multiparty-3.3.2" = {
+ name = "multiparty";
+ packageName = "multiparty";
+ version = "3.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multiparty/-/multiparty-3.3.2.tgz";
+ sha1 = "35de6804dc19643e5249f3d3e3bdc6c8ce301d3f";
+ };
+ };
+ "multiparty-4.1.3" = {
+ name = "multiparty";
+ packageName = "multiparty";
+ version = "4.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multiparty/-/multiparty-4.1.3.tgz";
+ sha1 = "3c43c7fcb1896e17460436a9dd0b6ef1668e4f94";
+ };
+ };
+ "multipipe-0.1.2" = {
+ name = "multipipe";
+ packageName = "multipipe";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz";
+ sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
+ };
+ };
+ "muri-0.3.1" = {
+ name = "muri";
+ packageName = "muri";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/muri/-/muri-0.3.1.tgz";
+ sha1 = "861889c5c857f1a43700bee85d50731f61727c9a";
+ };
+ };
+ "murl-0.4.1" = {
+ name = "murl";
+ packageName = "murl";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/murl/-/murl-0.4.1.tgz";
+ sha1 = "489fbcc7f1b2b77e689c84120a51339c3849c939";
+ };
+ };
+ "murmur-hash-js-1.0.0" = {
+ name = "murmur-hash-js";
+ packageName = "murmur-hash-js";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/murmur-hash-js/-/murmur-hash-js-1.0.0.tgz";
+ sha1 = "5041049269c96633c866386960b2f4289e75e5b0";
+ };
+ };
+ "mustache-2.3.0" = {
+ name = "mustache";
+ packageName = "mustache";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mustache/-/mustache-2.3.0.tgz";
+ sha1 = "4028f7778b17708a489930a6e52ac3bca0da41d0";
+ };
+ };
+ "mutate.js-0.2.0" = {
+ name = "mutate.js";
+ packageName = "mutate.js";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mutate.js/-/mutate.js-0.2.0.tgz";
+ sha1 = "2e5cb1ac64c937dae28296e8f42af5eafd9bc7ef";
+ };
+ };
+ "mute-stream-0.0.4" = {
+ name = "mute-stream";
+ packageName = "mute-stream";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz";
+ sha1 = "a9219960a6d5d5d046597aee51252c6655f7177e";
+ };
+ };
+ "mute-stream-0.0.5" = {
+ name = "mute-stream";
+ packageName = "mute-stream";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz";
+ sha1 = "8fbfabb0a98a253d3184331f9e8deb7372fac6c0";
+ };
+ };
+ "mute-stream-0.0.6" = {
+ name = "mute-stream";
+ packageName = "mute-stream";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz";
+ sha1 = "48962b19e169fd1dfc240b3f1e7317627bbc47db";
+ };
+ };
+ "mute-stream-0.0.7" = {
+ name = "mute-stream";
+ packageName = "mute-stream";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz";
+ sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab";
+ };
+ };
+ "mutexify-1.2.0" = {
+ name = "mutexify";
+ packageName = "mutexify";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mutexify/-/mutexify-1.2.0.tgz";
+ sha512 = "2hha5ly9j3v9pqpfvkbq8spn9sz7qz5bv8p303zmdisskhcn6i7ia5dviv8xhs3xlwi9562i4r4rm6mkk5gg0abm34zm1dkvp2z76m2";
+ };
+ };
+ "mv-2.1.1" = {
+ name = "mv";
+ packageName = "mv";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz";
+ sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2";
+ };
+ };
+ "mz-2.5.0" = {
+ name = "mz";
+ packageName = "mz";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mz/-/mz-2.5.0.tgz";
+ sha1 = "2859025df03d46b57bb317174b196477ce64cec1";
+ };
+ };
+ "mz-2.7.0" = {
+ name = "mz";
+ packageName = "mz";
+ version = "2.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz";
+ sha512 = "3cpmwzmngnmxhklvicnsbl5dchvsy0yikzgf705cq1cplyps3waa03xbjp306bjf167wnplibwki0csnavz98dihq2877g7xqs4dkfg";
+ };
+ };
+ "nan-0.3.2" = {
+ name = "nan";
+ packageName = "nan";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-0.3.2.tgz";
+ sha1 = "0df1935cab15369075ef160ad2894107aa14dc2d";
};
};
"nan-1.0.0" = {
@@ -20439,58 +16424,738 @@ let
sha1 = "ae24f8850818d662fcab5acf7f3b95bfaa2ccf38";
};
};
- "tinycolor-0.0.1" = {
- name = "tinycolor";
- packageName = "tinycolor";
- version = "0.0.1";
+ "nan-2.1.0" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tinycolor/-/tinycolor-0.0.1.tgz";
- sha1 = "320b5a52d83abb5978d81a3e887d4aefb15a6164";
+ url = "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz";
+ sha1 = "020a7ccedc63fdee85f85967d5607849e74abbe8";
};
};
- "zeparser-0.0.5" = {
- name = "zeparser";
- packageName = "zeparser";
+ "nan-2.3.5" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.3.5.tgz";
+ sha1 = "822a0dc266290ce4cd3a12282ca3e7e364668a08";
+ };
+ };
+ "nan-2.5.1" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.5.1.tgz";
+ sha1 = "d5b01691253326a97a2bbee9e61c55d8d60351e2";
+ };
+ };
+ "nan-2.6.2" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.6.2.tgz";
+ sha1 = "e4ff34e6c95fdfb5aecc08de6596f43605a7db45";
+ };
+ };
+ "nan-2.8.0" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz";
+ sha1 = "ed715f3fe9de02b57a5e6252d90a96675e1f085a";
+ };
+ };
+ "nanoassert-1.1.0" = {
+ name = "nanoassert";
+ packageName = "nanoassert";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz";
+ sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d";
+ };
+ };
+ "nanobus-3.3.0" = {
+ name = "nanobus";
+ packageName = "nanobus";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanobus/-/nanobus-3.3.0.tgz";
+ sha1 = "bce5d5d435a5362c7dad7f9e90cd21959589be86";
+ };
+ };
+ "nanoid-1.0.1" = {
+ name = "nanoid";
+ packageName = "nanoid";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanoid/-/nanoid-1.0.1.tgz";
+ sha512 = "3dh8fdgynnii8rgdpyk69z99y49bnl60244wsaw8mk2lzhfhczgf7nxgmm0qakmgzbvqqqfngq03z3j8hp70smh7ka0il806w7ajxh5";
+ };
+ };
+ "nanomatch-1.2.7" = {
+ name = "nanomatch";
+ packageName = "nanomatch";
+ version = "1.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.7.tgz";
+ sha512 = "2m4xaq739s2r5bvh287d8zm8af9mxa706z1a7ila48yhvkspi4iimwyg0id1cl327i7kqssrcnc2nwdc2qw8s83xwqg3bmfgjr5v6gz";
+ };
+ };
+ "nanotiming-1.0.1" = {
+ name = "nanotiming";
+ packageName = "nanotiming";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanotiming/-/nanotiming-1.0.1.tgz";
+ sha1 = "13e7a2e2767967974fedfff071edd39327f44ec3";
+ };
+ };
+ "native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" = {
+ name = "native-dns-cache";
+ packageName = "native-dns-cache";
+ version = "0.0.2";
+ src = fetchgit {
+ url = "https://github.com/okTurtles/native-dns-cache.git";
+ rev = "8714196bb9223cc9a4064a4fddf9e82ec50b7d4d";
+ sha256 = "3f06b2577afc3c1e428533baae3c51bad44a2e1e02fca147a1303943c214f841";
+ };
+ };
+ "native-dns-git+https://github.com/okTurtles/node-dns.git#08433ec98f517eed3c6d5e47bdf62603539cd402" = {
+ name = "native-dns";
+ packageName = "native-dns";
+ version = "0.6.1";
+ src = fetchgit {
+ url = "https://github.com/okTurtles/node-dns.git";
+ rev = "08433ec98f517eed3c6d5e47bdf62603539cd402";
+ sha256 = "a7342bfd4e952490a8a25a68efcb1d16ecc2391f1044109ebeace89ad284f7a2";
+ };
+ };
+ "native-dns-packet-0.1.1" = {
+ name = "native-dns-packet";
+ packageName = "native-dns-packet";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/native-dns-packet/-/native-dns-packet-0.1.1.tgz";
+ sha1 = "97da90570b8438a00194701ce24d011fd3cc109a";
+ };
+ };
+ "native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#307e77a47ebba57a5ae9118a284e916e5ebb305a" = {
+ name = "native-dns-packet";
+ packageName = "native-dns-packet";
+ version = "0.0.3";
+ src = fetchgit {
+ url = "https://github.com/okTurtles/native-dns-packet.git";
+ rev = "307e77a47ebba57a5ae9118a284e916e5ebb305a";
+ sha256 = "f8aaa7bb3b2a652e52bfe5c13a6531c71d690f621ef4d86d0787838708a50358";
+ };
+ };
+ "native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#8bf2714c318cfe7d31bca2006385882ccbf503e4" = {
+ name = "native-dns-packet";
+ packageName = "native-dns-packet";
+ version = "0.0.4";
+ src = fetchgit {
+ url = "https://github.com/okTurtles/native-dns-packet.git";
+ rev = "8bf2714c318cfe7d31bca2006385882ccbf503e4";
+ sha256 = "1f39a4bd88978a0b51d45c32c777fb7f75b12e220cf7d206aa5a12d1e4e80f9d";
+ };
+ };
+ "native-promise-only-0.8.1" = {
+ name = "native-promise-only";
+ packageName = "native-promise-only";
+ version = "0.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/native-promise-only/-/native-promise-only-0.8.1.tgz";
+ sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11";
+ };
+ };
+ "natives-1.1.1" = {
+ name = "natives";
+ packageName = "natives";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/natives/-/natives-1.1.1.tgz";
+ sha512 = "08a9lf00d2pkqmdi6ipp00pjin0gwl6fh283cjdjbayaz834lppwrw19kn4s642kwa46bfcway3033j6rbqd96iy86qrzrfgz35mr7i";
+ };
+ };
+ "natural-compare-1.4.0" = {
+ name = "natural-compare";
+ packageName = "natural-compare";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz";
+ sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7";
+ };
+ };
+ "natural-compare-lite-1.4.0" = {
+ name = "natural-compare-lite";
+ packageName = "natural-compare-lite";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz";
+ sha1 = "17b09581988979fddafe0201e931ba933c96cbb4";
+ };
+ };
+ "ncname-1.0.0" = {
+ name = "ncname";
+ packageName = "ncname";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ncname/-/ncname-1.0.0.tgz";
+ sha1 = "5b57ad18b1ca092864ef62b0b1ed8194f383b71c";
+ };
+ };
+ "nconf-0.6.9" = {
+ name = "nconf";
+ packageName = "nconf";
+ version = "0.6.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nconf/-/nconf-0.6.9.tgz";
+ sha1 = "9570ef15ed6f9ae6b2b3c8d5e71b66d3193cd661";
+ };
+ };
+ "nconf-0.7.1" = {
+ name = "nconf";
+ packageName = "nconf";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nconf/-/nconf-0.7.1.tgz";
+ sha1 = "ee4b561dd979a3c58db122e38f196d49d61aeb5b";
+ };
+ };
+ "nconf-0.7.2" = {
+ name = "nconf";
+ packageName = "nconf";
+ version = "0.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nconf/-/nconf-0.7.2.tgz";
+ sha1 = "a05fdf22dc01c378dd5c4df27f2dc90b9aa8bb00";
+ };
+ };
+ "ncp-0.4.2" = {
+ name = "ncp";
+ packageName = "ncp";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz";
+ sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574";
+ };
+ };
+ "ncp-1.0.1" = {
+ name = "ncp";
+ packageName = "ncp";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz";
+ sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246";
+ };
+ };
+ "ncp-2.0.0" = {
+ name = "ncp";
+ packageName = "ncp";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz";
+ sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3";
+ };
+ };
+ "ndjson-1.5.0" = {
+ name = "ndjson";
+ packageName = "ndjson";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz";
+ sha1 = "ae603b36b134bcec347b452422b0bf98d5832ec8";
+ };
+ };
+ "neat-log-1.1.2" = {
+ name = "neat-log";
+ packageName = "neat-log";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neat-log/-/neat-log-1.1.2.tgz";
+ sha512 = "15fbq2bchsjk85zklc34xl74skmdxbipsf0zjf1k6jfq1fr31h5bn7c6438ff55i9yzrhf11k85ahvahyb73khfjl4sj59zjrqksj9d";
+ };
+ };
+ "needle-0.10.0" = {
+ name = "needle";
+ packageName = "needle";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/needle/-/needle-0.10.0.tgz";
+ sha1 = "16a24d63f2a61152eb74cce1d12af85c507577d4";
+ };
+ };
+ "needle-0.11.0" = {
+ name = "needle";
+ packageName = "needle";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/needle/-/needle-0.11.0.tgz";
+ sha1 = "02a71b008eaf7d55ae89fb9fd7685b7b88d7bc29";
+ };
+ };
+ "needle-2.1.1" = {
+ name = "needle";
+ packageName = "needle";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/needle/-/needle-2.1.1.tgz";
+ sha1 = "f3d501d633e661d34cd9648ca6c42f782a44d071";
+ };
+ };
+ "negotiator-0.3.0" = {
+ name = "negotiator";
+ packageName = "negotiator";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/negotiator/-/negotiator-0.3.0.tgz";
+ sha1 = "706d692efeddf574d57ea9fb1ab89a4fa7ee8f60";
+ };
+ };
+ "negotiator-0.5.3" = {
+ name = "negotiator";
+ packageName = "negotiator";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/negotiator/-/negotiator-0.5.3.tgz";
+ sha1 = "269d5c476810ec92edbe7b6c2f28316384f9a7e8";
+ };
+ };
+ "negotiator-0.6.1" = {
+ name = "negotiator";
+ packageName = "negotiator";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz";
+ sha1 = "2b327184e8992101177b28563fb5e7102acd0ca9";
+ };
+ };
+ "negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" = {
+ name = "negotiator";
+ packageName = "negotiator";
+ version = "0.6.1";
+ src = fetchgit {
+ url = "https://github.com/arlolra/negotiator.git";
+ rev = "0418ab4e9a665772b7e233564a4525c9d9a8ec3a";
+ sha256 = "243e90fbf6616ef39f3c71bbcd027799e35cbf2ef3f25203676f65b20f7f7394";
+ };
+ };
+ "nested-error-stacks-1.0.2" = {
+ name = "nested-error-stacks";
+ packageName = "nested-error-stacks";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz";
+ sha1 = "19f619591519f096769a5ba9a86e6eeec823c3cf";
+ };
+ };
+ "net-browserify-alt-1.1.0" = {
+ name = "net-browserify-alt";
+ packageName = "net-browserify-alt";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/net-browserify-alt/-/net-browserify-alt-1.1.0.tgz";
+ sha1 = "02c9ecac88437be23f5948b208a1e65d8d138a73";
+ };
+ };
+ "net-ping-1.1.7" = {
+ name = "net-ping";
+ packageName = "net-ping";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/net-ping/-/net-ping-1.1.7.tgz";
+ sha1 = "49f5bca55a30a3726d69253557f231135a637075";
+ };
+ };
+ "netmask-1.0.6" = {
+ name = "netmask";
+ packageName = "netmask";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/netmask/-/netmask-1.0.6.tgz";
+ sha1 = "20297e89d86f6f6400f250d9f4f6b4c1945fcd35";
+ };
+ };
+ "nets-3.2.0" = {
+ name = "nets";
+ packageName = "nets";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nets/-/nets-3.2.0.tgz";
+ sha1 = "d511fbab7af11da013f21b97ee91747d33852d38";
+ };
+ };
+ "network-address-0.0.5" = {
+ name = "network-address";
+ packageName = "network-address";
version = "0.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/zeparser/-/zeparser-0.0.5.tgz";
- sha1 = "03726561bc268f2e5444f54c665b7fd4a8c029e2";
+ url = "https://registry.npmjs.org/network-address/-/network-address-0.0.5.tgz";
+ sha1 = "a400225438cacb67cd6108e8e826d5920a705dcc";
};
};
- "mailcomposer-4.0.2" = {
- name = "mailcomposer";
- packageName = "mailcomposer";
- version = "4.0.2";
+ "network-address-1.1.2" = {
+ name = "network-address";
+ packageName = "network-address";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mailcomposer/-/mailcomposer-4.0.2.tgz";
- sha1 = "b635402cc7f2eedb10130d3d09ad88b1c2d7e101";
+ url = "https://registry.npmjs.org/network-address/-/network-address-1.1.2.tgz";
+ sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e";
};
};
- "simplesmtp-0.3.35" = {
- name = "simplesmtp";
- packageName = "simplesmtp";
+ "next-line-1.1.0" = {
+ name = "next-line";
+ packageName = "next-line";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/next-line/-/next-line-1.1.0.tgz";
+ sha1 = "fcae57853052b6a9bae8208e40dd7d3c2d304603";
+ };
+ };
+ "next-tick-1.0.0" = {
+ name = "next-tick";
+ packageName = "next-tick";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz";
+ sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c";
+ };
+ };
+ "nijs-0.0.25" = {
+ name = "nijs";
+ packageName = "nijs";
+ version = "0.0.25";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nijs/-/nijs-0.0.25.tgz";
+ sha1 = "04b035cb530d46859d1018839a518c029133f676";
+ };
+ };
+ "no-case-2.3.2" = {
+ name = "no-case";
+ packageName = "no-case";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz";
+ sha512 = "34msnfifpdmxl414b8rch1p1six59jd9251b7wkb37n78fa84xfa5f5f5cxxp477wb846nfrsg6b1py3rahz4xdpk17lzzy9kvdjr5f";
+ };
+ };
+ "node-abi-2.1.2" = {
+ name = "node-abi";
+ packageName = "node-abi";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-abi/-/node-abi-2.1.2.tgz";
+ sha512 = "1sd6l8zqa18mlzackwy8vns51zjp8xyrd97nc514b0yvndd0y0wsyx2q9h8zr0k9kra5ys1yq75ggkv5av69cyzxji19rdvr5pjsrc6";
+ };
+ };
+ "node-alias-1.0.4" = {
+ name = "node-alias";
+ packageName = "node-alias";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-alias/-/node-alias-1.0.4.tgz";
+ sha1 = "1f1b916b56b9ea241c0135f97ced6940f556f292";
+ };
+ };
+ "node-appc-0.2.41" = {
+ name = "node-appc";
+ packageName = "node-appc";
+ version = "0.2.41";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-appc/-/node-appc-0.2.41.tgz";
+ sha1 = "f68cf5acb607c4903e2f63024383ae95ba1fdc52";
+ };
+ };
+ "node-cache-4.1.1" = {
+ name = "node-cache";
+ packageName = "node-cache";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-cache/-/node-cache-4.1.1.tgz";
+ sha1 = "08524645ee4039dedc3dcc1dd7c6b979e0619e44";
+ };
+ };
+ "node-elm-compiler-4.3.3" = {
+ name = "node-elm-compiler";
+ packageName = "node-elm-compiler";
+ version = "4.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-elm-compiler/-/node-elm-compiler-4.3.3.tgz";
+ sha512 = "2xwfrbx7s959y63gdiy54y86mp770vkxfgszp5xhwnxr29d3xavf8dnp0ab238732wh1121qwlx6k68wa4wkk4rm4qiswq5h5m9fjhd";
+ };
+ };
+ "node-fetch-1.7.3" = {
+ name = "node-fetch";
+ packageName = "node-fetch";
+ version = "1.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.7.3.tgz";
+ sha512 = "0lz5m15w7qaks0a0s3dm0crsjrsd123dy00pn6qwcp50zfjykxkp22i5ymh6smlc0ags38nmdxlxw9yyq509azlv8kcdvdiq857h5in";
+ };
+ };
+ "node-firefox-connect-1.2.0" = {
+ name = "node-firefox-connect";
+ packageName = "node-firefox-connect";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-firefox-connect/-/node-firefox-connect-1.2.0.tgz";
+ sha1 = "42403848313240c98514ef14b3302816fe3b84e1";
+ };
+ };
+ "node-forge-0.6.23" = {
+ name = "node-forge";
+ packageName = "node-forge";
+ version = "0.6.23";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-forge/-/node-forge-0.6.23.tgz";
+ sha1 = "f03cf65ebd5d4d9dd2f7becb57ceaf78ed94a2bf";
+ };
+ };
+ "node-forge-0.7.1" = {
+ name = "node-forge";
+ packageName = "node-forge";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-forge/-/node-forge-0.7.1.tgz";
+ sha1 = "9da611ea08982f4b94206b3beb4cc9665f20c300";
+ };
+ };
+ "node-gyp-build-3.2.2" = {
+ name = "node-gyp-build";
+ packageName = "node-gyp-build";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.2.2.tgz";
+ sha512 = "34hwi28wvvh5nn8bv71n0fb83xjyk84jsn8j9zgkaqnfigpv2hk6fs9jaffsn7qi3yi4n7iwd9yjyagd1rh74ckzdf5s6l59b8vzidp";
+ };
+ };
+ "node-int64-0.4.0" = {
+ name = "node-int64";
+ packageName = "node-int64";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz";
+ sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b";
+ };
+ };
+ "node-libs-browser-2.1.0" = {
+ name = "node-libs-browser";
+ packageName = "node-libs-browser";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz";
+ sha512 = "05d8rzfa0aihb9s1i3fm0dmdvlspfrxf4pxnsd3nms75mviv86llgg2r30l7b38a9l93yb00k7dy1vs8h4nd30ihhyvyc88vb6wa374";
+ };
+ };
+ "node-notifier-5.2.1" = {
+ name = "node-notifier";
+ packageName = "node-notifier";
+ version = "5.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-notifier/-/node-notifier-5.2.1.tgz";
+ sha512 = "179bqs5pz252zanr7mca970h5748xj0fa6inw23x5g5fb0nk64wyh8d34jzah0x5s6wdw2lb0hnad2h257nqns999vd5s8x03w6r01h";
+ };
+ };
+ "node-phantom-simple-2.2.4" = {
+ name = "node-phantom-simple";
+ packageName = "node-phantom-simple";
+ version = "2.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-phantom-simple/-/node-phantom-simple-2.2.4.tgz";
+ sha1 = "4fc4effbb02f241fb5082bd4fbab398e4aecb64d";
+ };
+ };
+ "node-pre-gyp-0.6.36" = {
+ name = "node-pre-gyp";
+ packageName = "node-pre-gyp";
+ version = "0.6.36";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.36.tgz";
+ sha1 = "db604112cb74e0d477554e9b505b17abddfab786";
+ };
+ };
+ "node-pre-gyp-0.6.39" = {
+ name = "node-pre-gyp";
+ packageName = "node-pre-gyp";
+ version = "0.6.39";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz";
+ sha512 = "2cwrivwc0ha272cly9r61bbb14kkl1s1hsmn53yr88b6pfjqj512nac6c5rphc6ak88v8gpl1f879qdd3v7386103zzr7miibpmbhis";
+ };
+ };
+ "node-red-node-email-0.1.24" = {
+ name = "node-red-node-email";
+ packageName = "node-red-node-email";
+ version = "0.1.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-email/-/node-red-node-email-0.1.24.tgz";
+ sha1 = "ba12c72b01b39e33f375ccbf4321b163425e8fb2";
+ };
+ };
+ "node-red-node-feedparser-0.1.8" = {
+ name = "node-red-node-feedparser";
+ packageName = "node-red-node-feedparser";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-feedparser/-/node-red-node-feedparser-0.1.8.tgz";
+ sha1 = "56cf6f69bc6d23557f8627ee63b74c1caa85c65b";
+ };
+ };
+ "node-red-node-rbe-0.1.14" = {
+ name = "node-red-node-rbe";
+ packageName = "node-red-node-rbe";
+ version = "0.1.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.1.14.tgz";
+ sha512 = "2xixj71payi14frjkb30lhnripprfcxzqaa9cbwh7w21s426y452ns0vpaycnbsbfwfcn5gcs4b2fjh0b6rxnbasd9hijqf6h3v26wa";
+ };
+ };
+ "node-red-node-twitter-0.1.12" = {
+ name = "node-red-node-twitter";
+ packageName = "node-red-node-twitter";
+ version = "0.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.12.tgz";
+ sha512 = "3h9isciksl33ajjzn4s0dp8s8m3zkijqc7rbw4v8glrhz5y3npbv8501sffak943jyd4k3dqalizv9giwaxqfd1760pkhbzh816y6j4";
+ };
+ };
+ "node-static-0.7.10" = {
+ name = "node-static";
+ packageName = "node-static";
+ version = "0.7.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-static/-/node-static-0.7.10.tgz";
+ sha512 = "3a22r0jr4112h0vr1smzrsaygc607v13arhjbjwzmy1jvmcrdlq9ydnw96ailkrlnwl3k0l65hjcgnrgkdwyc2qhbfnq2bgk0xz7pkd";
+ };
+ };
+ "node-status-codes-1.0.0" = {
+ name = "node-status-codes";
+ packageName = "node-status-codes";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz";
+ sha1 = "5ae5541d024645d32a58fcddc9ceecea7ae3ac2f";
+ };
+ };
+ "node-swt-0.1.1" = {
+ name = "node-swt";
+ packageName = "node-swt";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-swt/-/node-swt-0.1.1.tgz";
+ sha1 = "af0903825784be553b93dbae57d99d59060585dd";
+ };
+ };
+ "node-uuid-1.4.1" = {
+ name = "node-uuid";
+ packageName = "node-uuid";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.1.tgz";
+ sha1 = "39aef510e5889a3dca9c895b506c73aae1bac048";
+ };
+ };
+ "node-uuid-1.4.7" = {
+ name = "node-uuid";
+ packageName = "node-uuid";
+ version = "1.4.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";
+ sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f";
+ };
+ };
+ "node-uuid-1.4.8" = {
+ name = "node-uuid";
+ packageName = "node-uuid";
+ version = "1.4.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz";
+ sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907";
+ };
+ };
+ "node-version-1.1.0" = {
+ name = "node-version";
+ packageName = "node-version";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-version/-/node-version-1.1.0.tgz";
+ sha512 = "0kc13ygbwm9zdjqv43ccb3mvfhmkwack6ziqcadw58b0f8ssv8h2gdr0br8xaqxpxp0h6pz9vm28yns03nl1vbqbgdankcsb127cmdp";
+ };
+ };
+ "node-wsfederation-0.1.1" = {
+ name = "node-wsfederation";
+ packageName = "node-wsfederation";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-wsfederation/-/node-wsfederation-0.1.1.tgz";
+ sha1 = "9abf1dd3b20a3ab0a38f899c882c218d734e8a7b";
+ };
+ };
+ "node.extend-1.0.0" = {
+ name = "node.extend";
+ packageName = "node.extend";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.0.tgz";
+ sha1 = "ab83960c477280d01ba5554a0d8fd3acfe39336e";
+ };
+ };
+ "node.extend-2.0.0" = {
+ name = "node.extend";
+ packageName = "node.extend";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node.extend/-/node.extend-2.0.0.tgz";
+ sha1 = "7525a2875677ea534784a5e10ac78956139614df";
+ };
+ };
+ "nodemailer-0.3.35" = {
+ name = "nodemailer";
+ packageName = "nodemailer";
version = "0.3.35";
src = fetchurl {
- url = "https://registry.npmjs.org/simplesmtp/-/simplesmtp-0.3.35.tgz";
- sha1 = "017b1eb8b26317ac36d2a2a8a932631880736a03";
+ url = "https://registry.npmjs.org/nodemailer/-/nodemailer-0.3.35.tgz";
+ sha1 = "4d38cdc0ad230bdf88cc27d1256ef49fcb422e19";
};
};
- "buildmail-4.0.1" = {
- name = "buildmail";
- packageName = "buildmail";
- version = "4.0.1";
+ "nodemailer-1.11.0" = {
+ name = "nodemailer";
+ packageName = "nodemailer";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buildmail/-/buildmail-4.0.1.tgz";
- sha1 = "877f7738b78729871c9a105e3b837d2be11a7a72";
+ url = "https://registry.npmjs.org/nodemailer/-/nodemailer-1.11.0.tgz";
+ sha1 = "4e69cb39b03015b1d1ef0c78a815412b9e976f79";
};
};
- "libmime-3.0.0" = {
- name = "libmime";
- packageName = "libmime";
- version = "3.0.0";
+ "nodemailer-2.7.2" = {
+ name = "nodemailer";
+ packageName = "nodemailer";
+ version = "2.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/libmime/-/libmime-3.0.0.tgz";
- sha1 = "51a1a9e7448ecbd32cda54421675bb21bc093da6";
+ url = "https://registry.npmjs.org/nodemailer/-/nodemailer-2.7.2.tgz";
+ sha1 = "f242e649aeeae39b6c7ed740ef7b061c404d30f9";
+ };
+ };
+ "nodemailer-direct-transport-1.1.0" = {
+ name = "nodemailer-direct-transport";
+ packageName = "nodemailer-direct-transport";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-1.1.0.tgz";
+ sha1 = "a2f78708ee6f16ea0573fc82949d138ff172f624";
+ };
+ };
+ "nodemailer-direct-transport-3.3.2" = {
+ name = "nodemailer-direct-transport";
+ packageName = "nodemailer-direct-transport";
+ version = "3.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-3.3.2.tgz";
+ sha1 = "e96fafb90358560947e569017d97e60738a50a86";
};
};
"nodemailer-fetch-1.6.0" = {
@@ -20511,850 +17176,40 @@ let
sha1 = "cf5994e2fd268d00f5cf0fa767a08169edb07ec0";
};
};
- "rai-0.1.12" = {
- name = "rai";
- packageName = "rai";
- version = "0.1.12";
+ "nodemailer-smtp-pool-2.8.2" = {
+ name = "nodemailer-smtp-pool";
+ packageName = "nodemailer-smtp-pool";
+ version = "2.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/rai/-/rai-0.1.12.tgz";
- sha1 = "8ccfd014d0f9608630dd73c19b8e4b057754a6a6";
+ url = "https://registry.npmjs.org/nodemailer-smtp-pool/-/nodemailer-smtp-pool-2.8.2.tgz";
+ sha1 = "2eb94d6cf85780b1b4725ce853b9cbd5e8da8c72";
};
};
- "xoauth2-0.1.8" = {
- name = "xoauth2";
- packageName = "xoauth2";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/xoauth2/-/xoauth2-0.1.8.tgz";
- sha1 = "b916ff10ecfb54320f16f24a3e975120653ab0d2";
- };
- };
- "raw-socket-1.5.1" = {
- name = "raw-socket";
- packageName = "raw-socket";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.5.1.tgz";
- sha1 = "a85466c7984c0f0c3842ee562dc61b9873977528";
- };
- };
- "nan-2.3.5" = {
- name = "nan";
- packageName = "nan";
- version = "2.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.3.5.tgz";
- sha1 = "822a0dc266290ce4cd3a12282ca3e7e364668a08";
- };
- };
- "argparse-0.1.16" = {
- name = "argparse";
- packageName = "argparse";
- version = "0.1.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz";
- sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c";
- };
- };
- "underscore-1.7.0" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz";
- sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209";
- };
- };
- "underscore.string-2.4.0" = {
- name = "underscore.string";
- packageName = "underscore.string";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz";
- sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b";
- };
- };
- "argparse-0.1.15" = {
- name = "argparse";
- packageName = "argparse";
- version = "0.1.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/argparse/-/argparse-0.1.15.tgz";
- sha1 = "28a1f72c43113e763220e5708414301c8840f0a1";
- };
- };
- "npm-registry-client-0.2.27" = {
- name = "npm-registry-client";
- packageName = "npm-registry-client";
- version = "0.2.27";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-0.2.27.tgz";
- sha1 = "8f338189d32769267886a07ad7b7fd2267446adf";
- };
- };
- "npmconf-0.1.1" = {
- name = "npmconf";
- packageName = "npmconf";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmconf/-/npmconf-0.1.1.tgz";
- sha1 = "7a254182591ca22d77b2faecc0d17e0f9bdf25a1";
- };
- };
- "tar-0.1.17" = {
- name = "tar";
- packageName = "tar";
- version = "0.1.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-0.1.17.tgz";
- sha1 = "408c8a95deb8e78a65b59b1a51a333183a32badc";
- };
- };
- "temp-0.6.0" = {
- name = "temp";
- packageName = "temp";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/temp/-/temp-0.6.0.tgz";
- sha1 = "6b13df5cddf370f2e3a606ca40f202c419173f07";
- };
- };
- "findit-1.2.0" = {
- name = "findit";
- packageName = "findit";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/findit/-/findit-1.2.0.tgz";
- sha1 = "f571a3a840749ae8b0cbf4bf43ced7659eec3ce8";
- };
- };
- "underscore.string-2.3.3" = {
- name = "underscore.string";
- packageName = "underscore.string";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz";
- sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d";
- };
- };
- "graceful-fs-2.0.3" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz";
- sha1 = "7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0";
- };
- };
- "semver-2.0.11" = {
- name = "semver";
- packageName = "semver";
- version = "2.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-2.0.11.tgz";
- sha1 = "f51f07d03fa5af79beb537fc067a7e141786cced";
- };
- };
- "chownr-0.0.2" = {
- name = "chownr";
- packageName = "chownr";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/chownr/-/chownr-0.0.2.tgz";
- sha1 = "2f9aebf746f90808ce00607b72ba73b41604c485";
- };
- };
- "retry-0.6.0" = {
- name = "retry";
- packageName = "retry";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/retry/-/retry-0.6.0.tgz";
- sha1 = "1c010713279a6fd1e8def28af0c3ff1871caa537";
- };
- };
- "couch-login-0.1.20" = {
- name = "couch-login";
- packageName = "couch-login";
- version = "0.1.20";
- src = fetchurl {
- url = "https://registry.npmjs.org/couch-login/-/couch-login-0.1.20.tgz";
- sha1 = "007c70ef80089dbae6f59eeeec37480799b39595";
- };
- };
- "once-1.1.1" = {
- name = "once";
- packageName = "once";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.1.1.tgz";
- sha1 = "9db574933ccb08c3a7614d154032c09ea6f339e7";
- };
- };
- "osenv-0.0.3" = {
- name = "osenv";
- packageName = "osenv";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/osenv/-/osenv-0.0.3.tgz";
- sha1 = "cd6ad8ddb290915ad9e22765576025d411f29cb6";
- };
- };
- "nopt-2.2.1" = {
- name = "nopt";
- packageName = "nopt";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz";
- sha1 = "2aa09b7d1768487b3b89a9c5aa52335bff0baea7";
- };
- };
- "fstream-0.1.31" = {
- name = "fstream";
- packageName = "fstream";
- version = "0.1.31";
- src = fetchurl {
- url = "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz";
- sha1 = "7337f058fbbbbefa8c9f561a28cab0849202c988";
- };
- };
- "rimraf-2.1.4" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.1.4.tgz";
- sha1 = "5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2";
- };
- };
- "cint-8.2.1" = {
- name = "cint";
- packageName = "cint";
- version = "8.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cint/-/cint-8.2.1.tgz";
- sha1 = "70386b1b48e2773d0d63166a55aff94ef4456a12";
- };
- };
- "cli-table-0.3.1" = {
- name = "cli-table";
- packageName = "cli-table";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz";
- sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23";
- };
- };
- "fast-diff-1.1.2" = {
- name = "fast-diff";
- packageName = "fast-diff";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz";
- sha512 = "2550z1qvyfv9js9vg2aaj57ji5d9hhg4f6zl4rf483d6xswv23ac6ipj8gbapv4sjx14dpcslqmnx1z78vvx4np4ad5mdrxwfvm98i9";
- };
- };
- "node-alias-1.0.4" = {
- name = "node-alias";
- packageName = "node-alias";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-alias/-/node-alias-1.0.4.tgz";
- sha1 = "1f1b916b56b9ea241c0135f97ced6940f556f292";
- };
- };
- "npm-3.10.10" = {
- name = "npm";
- packageName = "npm";
- version = "3.10.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-3.10.10.tgz";
- sha1 = "5b1d577e4c8869d6c8603bc89e9cd1637303e46e";
- };
- };
- "npmi-2.0.1" = {
- name = "npmi";
- packageName = "npmi";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmi/-/npmi-2.0.1.tgz";
- sha1 = "32607657e1bd47ca857ab4e9d98f0a0cff96bcea";
- };
- };
- "semver-utils-1.1.1" = {
- name = "semver-utils";
- packageName = "semver-utils";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.1.tgz";
- sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df";
- };
- };
- "snyk-1.61.2" = {
- name = "snyk";
- packageName = "snyk";
- version = "1.61.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.61.2.tgz";
- sha1 = "c1426f84b68614999c6aec70ac6f08d8155a099b";
- };
- };
- "spawn-please-0.3.0" = {
- name = "spawn-please";
- packageName = "spawn-please";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/spawn-please/-/spawn-please-0.3.0.tgz";
- sha1 = "db338ec4cff63abc69f1d0e08cee9eb8bebd9d11";
- };
- };
- "es6-promise-3.3.1" = {
- name = "es6-promise";
- packageName = "es6-promise";
- version = "3.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.3.1.tgz";
- sha1 = "a08cdde84ccdbf34d027a1451bc91d4bcd28a613";
- };
- };
- "hasbin-1.2.3" = {
- name = "hasbin";
- packageName = "hasbin";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/hasbin/-/hasbin-1.2.3.tgz";
- sha1 = "78c5926893c80215c2b568ae1fd3fcab7a2696b0";
- };
- };
- "inquirer-1.0.3" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-1.0.3.tgz";
- sha1 = "ebe3a0948571bcc46ccccbe2f9bcec251e984bd0";
- };
- };
- "needle-2.1.0" = {
- name = "needle";
- packageName = "needle";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/needle/-/needle-2.1.0.tgz";
- sha1 = "54acebad9cc1a11822cd9ca522fb7c131c583fa4";
- };
- };
- "proxy-from-env-1.0.0" = {
- name = "proxy-from-env";
- packageName = "proxy-from-env";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz";
- sha1 = "33c50398f70ea7eb96d21f7b817630a55791c7ee";
- };
- };
- "snyk-config-1.0.1" = {
- name = "snyk-config";
- packageName = "snyk-config";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-config/-/snyk-config-1.0.1.tgz";
- sha1 = "f27aec2498b24027ac719214026521591111508f";
- };
- };
- "snyk-go-plugin-1.4.3" = {
- name = "snyk-go-plugin";
- packageName = "snyk-go-plugin";
- version = "1.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.4.3.tgz";
- sha512 = "1g283c7pd9w1x0kr51i9rpgzks7l1lc5r73sj5zzl4mhwjpkx2w7lw2lps6g4raasa2c7gr2ifd79mcihcc896ws6z9ghldibxrfky5";
- };
- };
- "snyk-gradle-plugin-1.2.0" = {
- name = "snyk-gradle-plugin";
- packageName = "snyk-gradle-plugin";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-1.2.0.tgz";
- sha512 = "1b2bxvwl2v4prlj942i4jkz4mahgp39j7lvy91jzv00nsk59l76b1icn48zj4zk84s00jil3pnxnfzsclhcc612d70s4wwi3x2hrrqn";
- };
- };
- "snyk-module-1.8.1" = {
- name = "snyk-module";
- packageName = "snyk-module";
- version = "1.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.1.tgz";
- sha1 = "31d5080fb1c0dfd6fa8567dd34a523fd02bf1fca";
- };
- };
- "snyk-mvn-plugin-1.1.0" = {
- name = "snyk-mvn-plugin";
- packageName = "snyk-mvn-plugin";
+ "nodemailer-smtp-transport-1.1.0" = {
+ name = "nodemailer-smtp-transport";
+ packageName = "nodemailer-smtp-transport";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.1.0.tgz";
- sha512 = "3ar9rk77y39sydnriw6k9p5s15qpv1in81365l0yjbvn6qis7v4na98xfibsmfnnkjyblnd5qs2q1j6fabdfx4g2x5yi7ld6hdm6r3r";
+ url = "https://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-1.1.0.tgz";
+ sha1 = "e6c37f31885ab3080e7ded3cf528c4ad7e691398";
};
};
- "snyk-nuget-plugin-1.3.6" = {
- name = "snyk-nuget-plugin";
- packageName = "snyk-nuget-plugin";
- version = "1.3.6";
+ "nodemailer-smtp-transport-2.7.2" = {
+ name = "nodemailer-smtp-transport";
+ packageName = "nodemailer-smtp-transport";
+ version = "2.7.2";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.3.6.tgz";
- sha512 = "0wnflg1m0bsym4skxmjq8nsdxn4m1g7dqxix7yh2542azag7n6xhz9dc6r8l2cfg79rd7gcc9yyla2g0jpv2qqsls2mar9kq7aafbyz";
+ url = "https://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-2.7.2.tgz";
+ sha1 = "03d71c76314f14ac7dbc7bf033a6a6d16d67fb77";
};
};
- "snyk-php-plugin-1.3.0" = {
- name = "snyk-php-plugin";
- packageName = "snyk-php-plugin";
- version = "1.3.0";
+ "nodemailer-wellknown-0.1.10" = {
+ name = "nodemailer-wellknown";
+ packageName = "nodemailer-wellknown";
+ version = "0.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-php-plugin/-/snyk-php-plugin-1.3.0.tgz";
- sha512 = "2bx4gvqyyq8343l28f1l8mm20bsqc7kxjbhg7fmwrwmim42z4985pp4naclnxgf22l6xx852a1fyiyaz9npks8navb5mwss7fa17i7g";
- };
- };
- "snyk-policy-1.10.1" = {
- name = "snyk-policy";
- packageName = "snyk-policy";
- version = "1.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.10.1.tgz";
- sha1 = "b1a26c8aef529c61604aca382111e535d511b763";
- };
- };
- "snyk-python-plugin-1.4.0" = {
- name = "snyk-python-plugin";
- packageName = "snyk-python-plugin";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.4.0.tgz";
- sha512 = "3ayb4vqwvz9srv07xfrzwwni6aabbxmmxq8gx55qkzbc7x912k7cvd4r8v96ij8ck45r89xhm2j60knmjhv6xj1gm2x9vhz20s325vk";
- };
- };
- "snyk-recursive-readdir-2.0.0" = {
- name = "snyk-recursive-readdir";
- packageName = "snyk-recursive-readdir";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-recursive-readdir/-/snyk-recursive-readdir-2.0.0.tgz";
- sha1 = "5cb59e94698169e0205a60e7d6a506d0b4d52ff3";
- };
- };
- "snyk-resolve-1.0.0" = {
- name = "snyk-resolve";
- packageName = "snyk-resolve";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.0.tgz";
- sha1 = "bbe9196d37f57c39251e6be75ccdd5b2097e99a2";
- };
- };
- "snyk-resolve-deps-1.7.0" = {
- name = "snyk-resolve-deps";
- packageName = "snyk-resolve-deps";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-resolve-deps/-/snyk-resolve-deps-1.7.0.tgz";
- sha1 = "13743a058437dff890baaf437c333c966a743cb6";
- };
- };
- "snyk-sbt-plugin-1.2.0" = {
- name = "snyk-sbt-plugin";
- packageName = "snyk-sbt-plugin";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-1.2.0.tgz";
- sha512 = "002ibp199wy3pk8dldcfr83njcrgx7hk1c802hwa9skky7jw5c4infnaj9aignghi2l1w44p3cjk3xwbcrryldj3hh63vbyzpryg3qz";
- };
- };
- "snyk-tree-1.0.0" = {
- name = "snyk-tree";
- packageName = "snyk-tree";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-tree/-/snyk-tree-1.0.0.tgz";
- sha1 = "0fb73176dbf32e782f19100294160448f9111cc8";
- };
- };
- "snyk-try-require-1.2.0" = {
- name = "snyk-try-require";
- packageName = "snyk-try-require";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.2.0.tgz";
- sha1 = "30fc2b11c07064591ee35780c826be91312f2144";
- };
- };
- "then-fs-2.0.0" = {
- name = "then-fs";
- packageName = "then-fs";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz";
- sha1 = "72f792dd9d31705a91ae19ebfcf8b3f968c81da2";
- };
- };
- "mute-stream-0.0.6" = {
- name = "mute-stream";
- packageName = "mute-stream";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz";
- sha1 = "48962b19e169fd1dfc240b3f1e7317627bbc47db";
- };
- };
- "rx-4.1.0" = {
- name = "rx";
- packageName = "rx";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz";
- sha1 = "a5f13ff79ef3b740fe30aa803fb09f98805d4782";
- };
- };
- "nconf-0.7.2" = {
- name = "nconf";
- packageName = "nconf";
- version = "0.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/nconf/-/nconf-0.7.2.tgz";
- sha1 = "a05fdf22dc01c378dd5c4df27f2dc90b9aa8bb00";
- };
- };
- "yargs-3.15.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "3.15.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-3.15.0.tgz";
- sha1 = "3d9446ef21fb3791b3985690662e4b9683c7f181";
- };
- };
- "toml-2.3.3" = {
- name = "toml";
- packageName = "toml";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/toml/-/toml-2.3.3.tgz";
- sha512 = "16a6xk2s4y4llqya2gjgwzlvb0512sw8ahxfd4b225j2sd9i52zca1w65d69wd7frzhcz2ak3gf3r3y9ws727b5gnp1n7wh2j3gkciv";
- };
- };
- "clone-deep-0.3.0" = {
- name = "clone-deep";
- packageName = "clone-deep";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone-deep/-/clone-deep-0.3.0.tgz";
- sha1 = "348c61ae9cdbe0edfe053d91ff4cc521d790ede8";
- };
- };
- "shallow-clone-0.1.2" = {
- name = "shallow-clone";
- packageName = "shallow-clone";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz";
- sha1 = "5909e874ba77106d73ac414cfec1ffca87d97060";
- };
- };
- "kind-of-2.0.1" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz";
- sha1 = "018ec7a4ce7e3a86cb9141be519d24c8faa981b5";
- };
- };
- "lazy-cache-0.2.7" = {
- name = "lazy-cache";
- packageName = "lazy-cache";
- version = "0.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.7.tgz";
- sha1 = "7feddf2dcb6edb77d11ef1d117ab5ffdf0ab1b65";
- };
- };
- "mixin-object-2.0.1" = {
- name = "mixin-object";
- packageName = "mixin-object";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz";
- sha1 = "4fb949441dab182540f1fe035ba60e1947a5e57e";
- };
- };
- "for-in-0.1.8" = {
- name = "for-in";
- packageName = "for-in";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz";
- sha1 = "d8773908e31256109952b1fdb9b3fa867d2775e1";
- };
- };
- "zip-1.2.0" = {
- name = "zip";
- packageName = "zip";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/zip/-/zip-1.2.0.tgz";
- sha1 = "ad0ad42265309be42eb56fc86194e17c24e66a9c";
- };
- };
- "bops-0.1.1" = {
- name = "bops";
- packageName = "bops";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bops/-/bops-0.1.1.tgz";
- sha1 = "062e02a8daa801fa10f2e5dbe6740cff801fe17e";
- };
- };
- "base64-js-0.0.2" = {
- name = "base64-js";
- packageName = "base64-js";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.2.tgz";
- sha1 = "024f0f72afa25b75f9c0ee73cd4f55ec1bed9784";
- };
- };
- "to-utf8-0.0.1" = {
- name = "to-utf8";
- packageName = "to-utf8";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-utf8/-/to-utf8-0.0.1.tgz";
- sha1 = "d17aea72ff2fba39b9e43601be7b3ff72e089852";
- };
- };
- "email-validator-1.1.1" = {
- name = "email-validator";
- packageName = "email-validator";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/email-validator/-/email-validator-1.1.1.tgz";
- sha512 = "3ydmy134p48c4zswbvjllak53h545dmzsz77bwpfxjf7aw510yyg4w58pazc2yz9agm93rphfgglrlj9cfkfdygcg1rbv0vj4jhjixy";
- };
- };
- "lodash.clonedeep-4.5.0" = {
- name = "lodash.clonedeep";
- packageName = "lodash.clonedeep";
- version = "4.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz";
- sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef";
- };
- };
- "minimatch-3.0.2" = {
- name = "minimatch";
- packageName = "minimatch";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz";
- sha1 = "0f398a7300ea441e9c348c83d98ab8c9dbf9c40a";
- };
- };
- "ansicolors-0.3.2" = {
- name = "ansicolors";
- packageName = "ansicolors";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz";
- sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979";
- };
- };
- "clite-0.3.0" = {
- name = "clite";
- packageName = "clite";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clite/-/clite-0.3.0.tgz";
- sha1 = "e7fcbc8cc5bd3e7f8b84ed48db12e9474cc73441";
- };
- };
- "lodash.defaultsdeep-4.6.0" = {
- name = "lodash.defaultsdeep";
- packageName = "lodash.defaultsdeep";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.0.tgz";
- sha1 = "bec1024f85b1bd96cbea405b23c14ad6443a6f81";
- };
- };
- "lodash.mergewith-4.6.0" = {
- name = "lodash.mergewith";
- packageName = "lodash.mergewith";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz";
- sha1 = "150cf0a16791f5903b8891eab154609274bdea55";
- };
- };
- "update-notifier-0.6.3" = {
- name = "update-notifier";
- packageName = "update-notifier";
- version = "0.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-0.6.3.tgz";
- sha1 = "776dec8daa13e962a341e8a1d98354306b67ae08";
- };
- };
- "yargs-4.8.1" = {
- name = "yargs";
- packageName = "yargs";
- version = "4.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz";
- sha1 = "c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0";
- };
- };
- "boxen-0.3.1" = {
- name = "boxen";
- packageName = "boxen";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/boxen/-/boxen-0.3.1.tgz";
- sha1 = "a7d898243ae622f7abb6bb604d740a76c6a5461b";
- };
- };
- "latest-version-2.0.0" = {
- name = "latest-version";
- packageName = "latest-version";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/latest-version/-/latest-version-2.0.0.tgz";
- sha1 = "56f8d6139620847b8017f8f1f4d78e211324168b";
- };
- };
- "filled-array-1.1.0" = {
- name = "filled-array";
- packageName = "filled-array";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/filled-array/-/filled-array-1.1.0.tgz";
- sha1 = "c3c4f6c663b923459a9aa29912d2d031f1507f84";
- };
- };
- "widest-line-1.0.0" = {
- name = "widest-line";
- packageName = "widest-line";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz";
- sha1 = "0c09c85c2a94683d0d7eaf8ee097d564bf0e105c";
- };
- };
- "package-json-2.4.0" = {
- name = "package-json";
- packageName = "package-json";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/package-json/-/package-json-2.4.0.tgz";
- sha1 = "0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb";
- };
- };
- "got-5.7.1" = {
- name = "got";
- packageName = "got";
- version = "5.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/got/-/got-5.7.1.tgz";
- sha1 = "5f81635a61e4a6589f180569ea4e381680a51f35";
- };
- };
- "node-status-codes-1.0.0" = {
- name = "node-status-codes";
- packageName = "node-status-codes";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-status-codes/-/node-status-codes-1.0.0.tgz";
- sha1 = "5ae5541d024645d32a58fcddc9ceecea7ae3ac2f";
- };
- };
- "timed-out-3.1.3" = {
- name = "timed-out";
- packageName = "timed-out";
- version = "3.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/timed-out/-/timed-out-3.1.3.tgz";
- sha1 = "95860bfcc5c76c277f8f8326fd0f5b2e20eba217";
- };
- };
- "unzip-response-1.0.2" = {
- name = "unzip-response";
- packageName = "unzip-response";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz";
- sha1 = "b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe";
- };
- };
- "lodash.assign-4.2.0" = {
- name = "lodash.assign";
- packageName = "lodash.assign";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz";
- sha1 = "0d99f3ccd7a6d261d19bdaeb9245005d285808e7";
- };
- };
- "which-module-1.0.0" = {
- name = "which-module";
- packageName = "which-module";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz";
- sha1 = "bba63ca861948994ff307736089e3b96026c2a4f";
- };
- };
- "window-size-0.2.0" = {
- name = "window-size";
- packageName = "window-size";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz";
- sha1 = "b4315bb4214a3d7058ebeee892e13fa24d98b075";
- };
- };
- "yargs-parser-2.4.1" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz";
- sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4";
- };
- };
- "camelcase-3.0.0" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz";
- sha1 = "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a";
- };
- };
- "cvss-1.0.2" = {
- name = "cvss";
- packageName = "cvss";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cvss/-/cvss-1.0.2.tgz";
- sha1 = "df67e92bf12a796f49e928799c8db3ba74b9fcd6";
- };
- };
- "https-proxy-agent-2.1.1" = {
- name = "https-proxy-agent";
- packageName = "https-proxy-agent";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.1.1.tgz";
- sha512 = "0rxbj60hs8fhs3i02lgb6ypcf9m9v8ybd4lfvfvpy0f1iyy54f1686lmv0rvkyxxihwvs4yizjgv8r8jksh385c4c9yjm3z8i0svbic";
+ url = "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.10.tgz";
+ sha1 = "586db8101db30cb4438eb546737a41aad0cf13d5";
};
};
"nodesecurity-npm-utils-6.0.0" = {
@@ -21366,132 +17221,1706 @@ let
sha512 = "0v36pqap4xw0z9h00v73nhxv2llz5gi0y6vww0yjyqb2qyfkgb7cjpjgzscc6bviw4xi4nk223s9nlcnvkpwymllbva8d98bixnbd1l";
};
};
- "wreck-12.5.1" = {
- name = "wreck";
- packageName = "wreck";
- version = "12.5.1";
+ "nomnom-1.8.1" = {
+ name = "nomnom";
+ packageName = "nomnom";
+ version = "1.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/wreck/-/wreck-12.5.1.tgz";
- sha512 = "3s89p8x1i16wg1prbm40z7l00611hzk2s7kkvph6fw4cx049p3gpviqmhbgqxxi9pfjz32mx3aj7qsygmfcnvasgs43rj1ynwdd944p";
+ url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz";
+ sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7";
};
};
- "yargs-9.0.1" = {
- name = "yargs";
- packageName = "yargs";
- version = "9.0.1";
+ "noop-logger-0.1.1" = {
+ name = "noop-logger";
+ packageName = "noop-logger";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz";
- sha1 = "52acc23feecac34042078ee78c0c007f5085db4c";
+ url = "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz";
+ sha1 = "94a2b1633c4f1317553007d8966fd0e841b6a4c2";
};
};
- "agent-base-4.1.2" = {
- name = "agent-base";
- packageName = "agent-base";
- version = "4.1.2";
+ "nopt-1.0.10" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "1.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/agent-base/-/agent-base-4.1.2.tgz";
- sha512 = "0vj8afdy0gk5q82i5zxx1ng4ylzipvyfnljbw948hvv1zr2653nr8jwiw73rp267a5c1rjl2xpxlc4rqvblc88sx0y0dfjs8yh90kjl";
+ url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz";
+ sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee";
};
};
- "es6-promisify-5.0.0" = {
- name = "es6-promisify";
- packageName = "es6-promisify";
+ "nopt-2.0.0" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz";
+ sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d";
+ };
+ };
+ "nopt-2.2.1" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz";
+ sha1 = "2aa09b7d1768487b3b89a9c5aa52335bff0baea7";
+ };
+ };
+ "nopt-3.0.1" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-3.0.1.tgz";
+ sha1 = "bce5c42446a3291f47622a370abbf158fbbacbfd";
+ };
+ };
+ "nopt-3.0.6" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "3.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz";
+ sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
+ };
+ };
+ "nopt-4.0.1" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
+ sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
+ };
+ };
+ "normalize-package-data-2.4.0" = {
+ name = "normalize-package-data";
+ packageName = "normalize-package-data";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
+ sha512 = "01wzws79ps84ylshjb7rfpjykgiqxnpr89s52p2yyzfx8nfvyh5flvf1almiiavsi75xgi8g3s5davc1mmgz7gn8yvlqz6gnhax8f7n";
+ };
+ };
+ "normalize-path-2.1.1" = {
+ name = "normalize-path";
+ packageName = "normalize-path";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
+ sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
+ };
+ };
+ "normalize-url-2.0.1" = {
+ name = "normalize-url";
+ packageName = "normalize-url";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz";
+ sha512 = "0rykwifg14xfgm9m6md48rkqqxa2cya4xdsv7jjciacis2nz6dzaccpzyldlpvy14rvihpxbdiysfn49a8x8x5jw84klmxzh9di98qg";
+ };
+ };
+ "npm-3.10.10" = {
+ name = "npm";
+ packageName = "npm";
+ version = "3.10.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm/-/npm-3.10.10.tgz";
+ sha1 = "5b1d577e4c8869d6c8603bc89e9cd1637303e46e";
+ };
+ };
+ "npm-5.6.0" = {
+ name = "npm";
+ packageName = "npm";
+ version = "5.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm/-/npm-5.6.0.tgz";
+ sha512 = "0nnr796ik5h8bsd3k9ygivivr3na2ksnf5iipf8dsnn20j10i9sgmhmsnzbimd2pqgjbrpp8gbpl2q7j5c7yjqjfirrh8xcc3v3gpws";
+ };
+ };
+ "npm-keyword-5.0.0" = {
+ name = "npm-keyword";
+ packageName = "npm-keyword";
version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz";
- sha1 = "5109d62f3e56ea967c4b63505aef08291c8a5203";
+ url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-5.0.0.tgz";
+ sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67";
};
};
- "lokijs-1.5.1" = {
- name = "lokijs";
- packageName = "lokijs";
- version = "1.5.1";
+ "npm-package-arg-5.1.2" = {
+ name = "npm-package-arg";
+ packageName = "npm-package-arg";
+ version = "5.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lokijs/-/lokijs-1.5.1.tgz";
- sha512 = "1pi08ry0a4zvg7mqj14gl0vacka95k77bbvljmcf25whxxbkh2rprsxpd8pv6frqh4ix6vslk44silx83sk65xhaw7ia2zssf0vngiy";
+ url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-5.1.2.tgz";
+ sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460";
};
};
- "vscode-languageclient-3.5.0" = {
- name = "vscode-languageclient";
- packageName = "vscode-languageclient";
- version = "3.5.0";
+ "npm-registry-client-0.2.27" = {
+ name = "npm-registry-client";
+ packageName = "npm-registry-client";
+ version = "0.2.27";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-3.5.0.tgz";
- sha1 = "36d02cc186a8365a4467719a290fb200a9ae490a";
+ url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-0.2.27.tgz";
+ sha1 = "8f338189d32769267886a07ad7b7fd2267446adf";
};
};
- "babybird-0.0.1" = {
- name = "babybird";
- packageName = "babybird";
- version = "0.0.1";
+ "npm-registry-client-8.4.0" = {
+ name = "npm-registry-client";
+ packageName = "npm-registry-client";
+ version = "8.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babybird/-/babybird-0.0.1.tgz";
- sha1 = "da80c79c6d7441cdfec7c2ff2dcbd7c13ebdbea2";
+ url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.4.0.tgz";
+ sha512 = "20ka7w1mdgrazm20d5jihqam7gpiz0rnm2r6i91ax11mq96zn81ywwmmy3jr3yjddrc1bzcljxbs86wlwwrrzsgki2igj95mnm5ylrx";
};
};
- "connect-busboy-0.0.2" = {
- name = "connect-busboy";
- packageName = "connect-busboy";
- version = "0.0.2";
+ "npm-registry-client-8.5.0" = {
+ name = "npm-registry-client";
+ packageName = "npm-registry-client";
+ version = "8.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/connect-busboy/-/connect-busboy-0.0.2.tgz";
- sha1 = "ac5c9c96672171885e576c66b2bfd95d3bb11097";
+ url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.5.0.tgz";
+ sha512 = "1nwp5cfjmy4k14g6ziz7zpia8f66ximhrdhw49cj2w173bibq1sgc4d5w951ql5dqf0hcmia956ld9y7qs2q1fx6s2j446zhvdk0irn";
};
};
- "content-type-git+https://github.com/wikimedia/content-type.git#master" = {
- name = "content-type";
- packageName = "content-type";
+ "npm-run-path-1.0.0" = {
+ name = "npm-run-path";
+ packageName = "npm-run-path";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-1.0.0.tgz";
+ sha1 = "f5c32bf595fe81ae927daec52e82f8b000ac3c8f";
+ };
+ };
+ "npm-run-path-2.0.2" = {
+ name = "npm-run-path";
+ packageName = "npm-run-path";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
+ sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
+ };
+ };
+ "npmconf-0.1.1" = {
+ name = "npmconf";
+ packageName = "npmconf";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmconf/-/npmconf-0.1.1.tgz";
+ sha1 = "7a254182591ca22d77b2faecc0d17e0f9bdf25a1";
+ };
+ };
+ "npmconf-0.1.16" = {
+ name = "npmconf";
+ packageName = "npmconf";
+ version = "0.1.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmconf/-/npmconf-0.1.16.tgz";
+ sha1 = "0bdca78b8551419686b3a98004f06f0819edcd2a";
+ };
+ };
+ "npmconf-2.1.2" = {
+ name = "npmconf";
+ packageName = "npmconf";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmconf/-/npmconf-2.1.2.tgz";
+ sha1 = "66606a4a736f1e77a059aa071a79c94ab781853a";
+ };
+ };
+ "npmi-2.0.1" = {
+ name = "npmi";
+ packageName = "npmi";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmi/-/npmi-2.0.1.tgz";
+ sha1 = "32607657e1bd47ca857ab4e9d98f0a0cff96bcea";
+ };
+ };
+ "npmlog-2.0.4" = {
+ name = "npmlog";
+ packageName = "npmlog";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmlog/-/npmlog-2.0.4.tgz";
+ sha1 = "98b52530f2514ca90d09ec5b22c8846722375692";
+ };
+ };
+ "npmlog-4.1.2" = {
+ name = "npmlog";
+ packageName = "npmlog";
+ version = "4.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz";
+ sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs";
+ };
+ };
+ "nprogress-0.2.0" = {
+ name = "nprogress";
+ packageName = "nprogress";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz";
+ sha1 = "cb8f34c53213d895723fcbab907e9422adbcafb1";
+ };
+ };
+ "nssocket-0.5.3" = {
+ name = "nssocket";
+ packageName = "nssocket";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nssocket/-/nssocket-0.5.3.tgz";
+ sha1 = "883ca2ec605f5ed64a4d5190b2625401928f8f8d";
+ };
+ };
+ "nth-check-1.0.1" = {
+ name = "nth-check";
+ packageName = "nth-check";
version = "1.0.1";
- src = fetchgit {
- url = "https://github.com/wikimedia/content-type.git";
- rev = "47b2632d0a2ee79a7d67268e2f6621becd95d05b";
- sha256 = "e583031138b98e2a09ce14dbd72afa0377201894092c941ef4cc07206c35ed04";
- };
- };
- "diff-1.4.0" = {
- name = "diff";
- packageName = "diff";
- version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz";
- sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf";
+ url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz";
+ sha1 = "9929acdf628fc2c41098deab82ac580cf149aae4";
};
};
- "domino-1.0.30" = {
- name = "domino";
- packageName = "domino";
- version = "1.0.30";
+ "number-is-nan-1.0.1" = {
+ name = "number-is-nan";
+ packageName = "number-is-nan";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/domino/-/domino-1.0.30.tgz";
- sha512 = "1g3pbkg3gg3kjffah03vil47662ra58gckz5z8qymfgb9xq97k7vsd83410fmncbbll1p40rs0s4r0pgdypfvj9j2fq146j41dbqjla";
+ url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
+ sha1 = "097b602b53422a522c1afb8790318336941a011d";
};
};
- "express-handlebars-3.0.0" = {
- name = "express-handlebars";
- packageName = "express-handlebars";
+ "numeral-1.5.6" = {
+ name = "numeral";
+ packageName = "numeral";
+ version = "1.5.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz";
+ sha1 = "3831db968451b9cf6aff9bf95925f1ef8e37b33f";
+ };
+ };
+ "oauth-0.9.14" = {
+ name = "oauth";
+ packageName = "oauth";
+ version = "0.9.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oauth/-/oauth-0.9.14.tgz";
+ sha1 = "c5748883a40b53de30ade9cabf2100414b8a0971";
+ };
+ };
+ "oauth-0.9.15" = {
+ name = "oauth";
+ packageName = "oauth";
+ version = "0.9.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz";
+ sha1 = "bd1fefaf686c96b75475aed5196412ff60cfb9c1";
+ };
+ };
+ "oauth-https://github.com/ciaranj/node-oauth/tarball/master" = {
+ name = "oauth";
+ packageName = "oauth";
+ version = "0.9.15";
+ src = fetchurl {
+ name = "oauth-0.9.15.tar.gz";
+ url = https://codeload.github.com/ciaranj/node-oauth/legacy.tar.gz/master;
+ sha256 = "9341c28772841acde618c778e85e381976f425824b816100792f697e68aec947";
+ };
+ };
+ "oauth-sign-0.2.0" = {
+ name = "oauth-sign";
+ packageName = "oauth-sign";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz";
+ sha1 = "a0e6a1715daed062f322b622b7fe5afd1035b6e2";
+ };
+ };
+ "oauth-sign-0.8.2" = {
+ name = "oauth-sign";
+ packageName = "oauth-sign";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
+ sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
+ };
+ };
+ "oauth2orize-1.8.0" = {
+ name = "oauth2orize";
+ packageName = "oauth2orize";
+ version = "1.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.8.0.tgz";
+ sha1 = "f2ddc0115d635d0480746249c00f0ea1a9c51ba8";
+ };
+ };
+ "object-assign-1.0.0" = {
+ name = "object-assign";
+ packageName = "object-assign";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz";
+ sha1 = "e65dc8766d3b47b4b8307465c8311da030b070a6";
+ };
+ };
+ "object-assign-3.0.0" = {
+ name = "object-assign";
+ packageName = "object-assign";
version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/express-handlebars/-/express-handlebars-3.0.0.tgz";
- sha1 = "80a070bb819b09e4af2ca6d0780f75ce05e75c2f";
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz";
+ sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2";
};
};
- "mediawiki-title-0.6.5" = {
- name = "mediawiki-title";
- packageName = "mediawiki-title";
- version = "0.6.5";
+ "object-assign-4.1.0" = {
+ name = "object-assign";
+ packageName = "object-assign";
+ version = "4.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mediawiki-title/-/mediawiki-title-0.6.5.tgz";
- sha512 = "3r94k4jgdj5ir5y2p0hvb860976fz2fnzjafjzmsf0pivsqgy0hgxsxg315zmzq69rv0lli8rfjwcjp097xya03aaa4s7xjppi0ixvw";
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz";
+ sha1 = "7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0";
};
};
- "negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access" = {
- name = "negotiator";
- packageName = "negotiator";
+ "object-assign-4.1.1" = {
+ name = "object-assign";
+ packageName = "object-assign";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz";
+ sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
+ };
+ };
+ "object-component-0.0.3" = {
+ name = "object-component";
+ packageName = "object-component";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz";
+ sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291";
+ };
+ };
+ "object-copy-0.1.0" = {
+ name = "object-copy";
+ packageName = "object-copy";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz";
+ sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
+ };
+ };
+ "object-hash-1.2.0" = {
+ name = "object-hash";
+ packageName = "object-hash";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-hash/-/object-hash-1.2.0.tgz";
+ sha512 = "19310wpjhfybr8gslg93qybbsrf3fjlmdgsgvn7d9yim1nmpcgjn5az280w4p8spvhq1djly7naa9434166gcmbavv0xirg75gmcr5j";
+ };
+ };
+ "object-keys-1.0.11" = {
+ name = "object-keys";
+ packageName = "object-keys";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz";
+ sha1 = "c54601778ad560f1142ce0e01bcca8b56d13426d";
+ };
+ };
+ "object-values-1.0.0" = {
+ name = "object-values";
+ packageName = "object-values";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-values/-/object-values-1.0.0.tgz";
+ sha1 = "72af839630119e5b98c3b02bb8c27e3237158105";
+ };
+ };
+ "object-visit-1.0.1" = {
+ name = "object-visit";
+ packageName = "object-visit";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz";
+ sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb";
+ };
+ };
+ "object.assign-4.1.0" = {
+ name = "object.assign";
+ packageName = "object.assign";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz";
+ sha512 = "3krdp08gvbxvipalq64qy7bm86znxxdb7ap6bjki235qs17i9fsn6hqd22ga31sqyqa6iyy5xjfnnqc7lsck1kaybwsh154mrxcj4bv";
+ };
+ };
+ "object.defaults-1.1.0" = {
+ name = "object.defaults";
+ packageName = "object.defaults";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz";
+ sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf";
+ };
+ };
+ "object.getownpropertydescriptors-2.0.3" = {
+ name = "object.getownpropertydescriptors";
+ packageName = "object.getownpropertydescriptors";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz";
+ sha1 = "8758c846f5b407adab0f236e0986f14b051caa16";
+ };
+ };
+ "object.map-1.0.1" = {
+ name = "object.map";
+ packageName = "object.map";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz";
+ sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37";
+ };
+ };
+ "object.omit-2.0.1" = {
+ name = "object.omit";
+ packageName = "object.omit";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz";
+ sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa";
+ };
+ };
+ "object.pick-1.3.0" = {
+ name = "object.pick";
+ packageName = "object.pick";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz";
+ sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747";
+ };
+ };
+ "object.values-1.0.4" = {
+ name = "object.values";
+ packageName = "object.values";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz";
+ sha1 = "e524da09b4f66ff05df457546ec72ac99f13069a";
+ };
+ };
+ "octicons-3.5.0" = {
+ name = "octicons";
+ packageName = "octicons";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/octicons/-/octicons-3.5.0.tgz";
+ sha1 = "f7ff5935674d8b114f6d80c454bfaa01797a4e30";
+ };
+ };
+ "omelette-0.3.2" = {
+ name = "omelette";
+ packageName = "omelette";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/omelette/-/omelette-0.3.2.tgz";
+ sha1 = "68c1b3c57ced778b4e67d8637d2559b2c1b3ec26";
+ };
+ };
+ "on-finished-2.2.1" = {
+ name = "on-finished";
+ packageName = "on-finished";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/on-finished/-/on-finished-2.2.1.tgz";
+ sha1 = "5c85c1cc36299f78029653f667f27b6b99ebc029";
+ };
+ };
+ "on-finished-2.3.0" = {
+ name = "on-finished";
+ packageName = "on-finished";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz";
+ sha1 = "20f1336481b083cd75337992a16971aa2d906947";
+ };
+ };
+ "on-headers-1.0.1" = {
+ name = "on-headers";
+ packageName = "on-headers";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz";
+ sha1 = "928f5d0f470d49342651ea6794b0857c100693f7";
+ };
+ };
+ "once-1.1.1" = {
+ name = "once";
+ packageName = "once";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.1.1.tgz";
+ sha1 = "9db574933ccb08c3a7614d154032c09ea6f339e7";
+ };
+ };
+ "once-1.2.0" = {
+ name = "once";
+ packageName = "once";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.2.0.tgz";
+ sha1 = "de1905c636af874a8fba862d9aabddd1f920461c";
+ };
+ };
+ "once-1.3.0" = {
+ name = "once";
+ packageName = "once";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.3.0.tgz";
+ sha1 = "151af86bfc1f08c4b9f07d06ab250ffcbeb56581";
+ };
+ };
+ "once-1.3.3" = {
+ name = "once";
+ packageName = "once";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz";
+ sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20";
+ };
+ };
+ "once-1.4.0" = {
+ name = "once";
+ packageName = "once";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
+ sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
+ };
+ };
+ "onetime-1.1.0" = {
+ name = "onetime";
+ packageName = "onetime";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz";
+ sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789";
+ };
+ };
+ "onetime-2.0.1" = {
+ name = "onetime";
+ packageName = "onetime";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz";
+ sha1 = "067428230fd67443b2794b22bba528b6867962d4";
+ };
+ };
+ "open-0.0.2" = {
+ name = "open";
+ packageName = "open";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/open/-/open-0.0.2.tgz";
+ sha1 = "0a620ba2574464742f51e69f8ba8eccfd97b5dfc";
+ };
+ };
+ "open-0.0.5" = {
+ name = "open";
+ packageName = "open";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/open/-/open-0.0.5.tgz";
+ sha1 = "42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc";
+ };
+ };
+ "opener-1.4.2" = {
+ name = "opener";
+ packageName = "opener";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opener/-/opener-1.4.2.tgz";
+ sha1 = "b32582080042af8680c389a499175b4c54fff523";
+ };
+ };
+ "openid-2.0.6" = {
+ name = "openid";
+ packageName = "openid";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/openid/-/openid-2.0.6.tgz";
+ sha1 = "707375e59ab9f73025899727679b20328171c9aa";
+ };
+ };
+ "openssl-self-signed-certificate-1.1.6" = {
+ name = "openssl-self-signed-certificate";
+ packageName = "openssl-self-signed-certificate";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/openssl-self-signed-certificate/-/openssl-self-signed-certificate-1.1.6.tgz";
+ sha1 = "9d3a4776b1a57e9847350392114ad2f915a83dd4";
+ };
+ };
+ "openssl-wrapper-0.2.1" = {
+ name = "openssl-wrapper";
+ packageName = "openssl-wrapper";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.2.1.tgz";
+ sha1 = "ff2d6552c83bb14437edc0371784704c75289473";
+ };
+ };
+ "opentracing-0.13.0" = {
+ name = "opentracing";
+ packageName = "opentracing";
+ version = "0.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opentracing/-/opentracing-0.13.0.tgz";
+ sha1 = "6a341442f09d7d866bc11ed03de1e3828e3d6aab";
+ };
+ };
+ "opentracing-0.14.1" = {
+ name = "opentracing";
+ packageName = "opentracing";
+ version = "0.14.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opentracing/-/opentracing-0.14.1.tgz";
+ sha1 = "40d278beea417660a35dd9d3ee76511ffa911dcd";
+ };
+ };
+ "opn-4.0.2" = {
+ name = "opn";
+ packageName = "opn";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opn/-/opn-4.0.2.tgz";
+ sha1 = "7abc22e644dff63b0a96d5ab7f2790c0f01abc95";
+ };
+ };
+ "opn-5.1.0" = {
+ name = "opn";
+ packageName = "opn";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opn/-/opn-5.1.0.tgz";
+ sha512 = "2k8g3x11xbm64r7bbyad08cjv27vaparkigq11w2v8kg8h73k2rzdr3q6f5i2klidgpaq9rbhfv45rf9dkqqv3d8vsbvw4c5knnbww8";
+ };
+ };
+ "opn-5.2.0" = {
+ name = "opn";
+ packageName = "opn";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opn/-/opn-5.2.0.tgz";
+ sha512 = "12iyalgghs3dj0pfb7rxa013x946169yfsjfd15fsfrx5kv80z2qh082x7v7d91hh7bf9vxcm4wqmyyj9ckk3gnvc7mw77j6fkwdpr5";
+ };
+ };
+ "optimist-0.2.8" = {
+ name = "optimist";
+ packageName = "optimist";
+ version = "0.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz";
+ sha1 = "e981ab7e268b457948593b55674c099a815cac31";
+ };
+ };
+ "optimist-0.3.7" = {
+ name = "optimist";
+ packageName = "optimist";
+ version = "0.3.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz";
+ sha1 = "c90941ad59e4273328923074d2cf2e7cbc6ec0d9";
+ };
+ };
+ "optimist-0.6.0" = {
+ name = "optimist";
+ packageName = "optimist";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz";
+ sha1 = "69424826f3405f79f142e6fc3d9ae58d4dbb9200";
+ };
+ };
+ "optimist-0.6.1" = {
+ name = "optimist";
+ packageName = "optimist";
version = "0.6.1";
- src = fetchgit {
- url = "https://github.com/arlolra/negotiator.git";
- rev = "0418ab4e9a665772b7e233564a4525c9d9a8ec3a";
- sha256 = "243e90fbf6616ef39f3c71bbcd027799e35cbf2ef3f25203676f65b20f7f7394";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz";
+ sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686";
+ };
+ };
+ "optionator-0.8.2" = {
+ name = "optionator";
+ packageName = "optionator";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz";
+ sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64";
+ };
+ };
+ "options-0.0.6" = {
+ name = "options";
+ packageName = "options";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/options/-/options-0.0.6.tgz";
+ sha1 = "ec22d312806bb53e731773e7cdaefcf1c643128f";
+ };
+ };
+ "optjs-3.2.2" = {
+ name = "optjs";
+ packageName = "optjs";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optjs/-/optjs-3.2.2.tgz";
+ sha1 = "69a6ce89c442a44403141ad2f9b370bd5bb6f4ee";
+ };
+ };
+ "optparse-1.0.5" = {
+ name = "optparse";
+ packageName = "optparse";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz";
+ sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16";
+ };
+ };
+ "ora-1.3.0" = {
+ name = "ora";
+ packageName = "ora";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ora/-/ora-1.3.0.tgz";
+ sha1 = "80078dd2b92a934af66a3ad72a5b910694ede51a";
+ };
+ };
+ "orchestrator-0.3.8" = {
+ name = "orchestrator";
+ packageName = "orchestrator";
+ version = "0.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz";
+ sha1 = "14e7e9e2764f7315fbac184e506c7aa6df94ad7e";
+ };
+ };
+ "ordered-read-streams-0.1.0" = {
+ name = "ordered-read-streams";
+ packageName = "ordered-read-streams";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz";
+ sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126";
+ };
+ };
+ "ordered-read-streams-0.3.0" = {
+ name = "ordered-read-streams";
+ packageName = "ordered-read-streams";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz";
+ sha1 = "7137e69b3298bb342247a1bbee3881c80e2fd78b";
+ };
+ };
+ "ordered-read-streams-1.0.1" = {
+ name = "ordered-read-streams";
+ packageName = "ordered-read-streams";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz";
+ sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e";
+ };
+ };
+ "os-browserify-0.1.2" = {
+ name = "os-browserify";
+ packageName = "os-browserify";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.1.2.tgz";
+ sha1 = "49ca0293e0b19590a5f5de10c7f265a617d8fe54";
+ };
+ };
+ "os-browserify-0.3.0" = {
+ name = "os-browserify";
+ packageName = "os-browserify";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz";
+ sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27";
+ };
+ };
+ "os-homedir-1.0.2" = {
+ name = "os-homedir";
+ packageName = "os-homedir";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
+ sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
+ };
+ };
+ "os-locale-1.4.0" = {
+ name = "os-locale";
+ packageName = "os-locale";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz";
+ sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9";
+ };
+ };
+ "os-locale-2.1.0" = {
+ name = "os-locale";
+ packageName = "os-locale";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz";
+ sha512 = "0lafrp0i2ajapsnma0x74q7zscn97a56i5hh58a0nyig2igfx9fqn4ain9kvjrr06as5gzdrv2wdf52qc5m861fd0f4cv69ghdjbjyy";
+ };
+ };
+ "os-name-1.0.3" = {
+ name = "os-name";
+ packageName = "os-name";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz";
+ sha1 = "1b379f64835af7c5a7f498b357cb95215c159edf";
+ };
+ };
+ "os-name-2.0.1" = {
+ name = "os-name";
+ packageName = "os-name";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-name/-/os-name-2.0.1.tgz";
+ sha1 = "b9a386361c17ae3a21736ef0599405c9a8c5dc5e";
+ };
+ };
+ "os-shim-0.1.3" = {
+ name = "os-shim";
+ packageName = "os-shim";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz";
+ sha1 = "6b62c3791cf7909ea35ed46e17658bb417cb3917";
+ };
+ };
+ "os-tmpdir-1.0.2" = {
+ name = "os-tmpdir";
+ packageName = "os-tmpdir";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz";
+ sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
+ };
+ };
+ "osenv-0.0.3" = {
+ name = "osenv";
+ packageName = "osenv";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/osenv/-/osenv-0.0.3.tgz";
+ sha1 = "cd6ad8ddb290915ad9e22765576025d411f29cb6";
+ };
+ };
+ "osenv-0.1.4" = {
+ name = "osenv";
+ packageName = "osenv";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz";
+ sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644";
+ };
+ };
+ "osx-release-1.1.0" = {
+ name = "osx-release";
+ packageName = "osx-release";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/osx-release/-/osx-release-1.1.0.tgz";
+ sha1 = "f217911a28136949af1bf9308b241e2737d3cd6c";
+ };
+ };
+ "p-any-1.1.0" = {
+ name = "p-any";
+ packageName = "p-any";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-any/-/p-any-1.1.0.tgz";
+ sha512 = "3da1hqkqhwx9xiw283nnq04pvsj1a69k7k0np5126v33dmpgxyhg19s99bz6djzd6sp713yg02h3h636wlgi9v2099rlrq2mrajvz8i";
+ };
+ };
+ "p-cancelable-0.3.0" = {
+ name = "p-cancelable";
+ packageName = "p-cancelable";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz";
+ sha512 = "35jir2yjv2l3v8aj062w0hfinzgwpb1sbhmaym8h4xn78j498naj7mkf4rpv74n5bfkysxb7l893l2yw3dpqk5dgb2yiwr8pcydjmj5";
+ };
+ };
+ "p-finally-1.0.0" = {
+ name = "p-finally";
+ packageName = "p-finally";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
+ sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
+ };
+ };
+ "p-is-promise-1.1.0" = {
+ name = "p-is-promise";
+ packageName = "p-is-promise";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz";
+ sha1 = "9c9456989e9f6588017b0434d56097675c3da05e";
+ };
+ };
+ "p-limit-1.2.0" = {
+ name = "p-limit";
+ packageName = "p-limit";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz";
+ sha512 = "2g0r6r6bbcdp6lrxbj2zbcihr1byd55kycm1ijz80l2zvmcvhqsbd7rhmfqylp004d61fibvmwzk4ig89dbyk4azpwgll7dllhsvwv3";
+ };
+ };
+ "p-locate-2.0.0" = {
+ name = "p-locate";
+ packageName = "p-locate";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
+ sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
+ };
+ };
+ "p-some-2.0.1" = {
+ name = "p-some";
+ packageName = "p-some";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-some/-/p-some-2.0.1.tgz";
+ sha1 = "65d87c8b154edbcf5221d167778b6d2e150f6f06";
+ };
+ };
+ "p-timeout-1.2.1" = {
+ name = "p-timeout";
+ packageName = "p-timeout";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz";
+ sha1 = "5eb3b353b7fce99f101a1038880bb054ebbea386";
+ };
+ };
+ "p-timeout-2.0.1" = {
+ name = "p-timeout";
+ packageName = "p-timeout";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz";
+ sha512 = "0h1wg3bw3pyf3vlnxxfnrs3h33lwbx5n1lz4cz8ivh7bi8vjd6makxf6p1xz1d70ww3gj2ghryhbg6w1myxacgirk51ym23qzksdizk";
+ };
+ };
+ "p-try-1.0.0" = {
+ name = "p-try";
+ packageName = "p-try";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
+ sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
+ };
+ };
+ "pac-proxy-agent-1.1.0" = {
+ name = "pac-proxy-agent";
+ packageName = "pac-proxy-agent";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-1.1.0.tgz";
+ sha512 = "30jd44ckpmfj9prfhzc8bjvn5b5adxk93g9saif813id8mrvl3g1asrhz9l0bc2rp0i779wnhg1rjw80h2y7zk8v02ghq4bdh4hn4a0";
+ };
+ };
+ "pac-resolver-2.0.0" = {
+ name = "pac-resolver";
+ packageName = "pac-resolver";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-2.0.0.tgz";
+ sha1 = "99b88d2f193fbdeefc1c9a529c1f3260ab5277cd";
+ };
+ };
+ "package-json-1.2.0" = {
+ name = "package-json";
+ packageName = "package-json";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz";
+ sha1 = "c8ecac094227cdf76a316874ed05e27cc939a0e0";
+ };
+ };
+ "package-json-2.4.0" = {
+ name = "package-json";
+ packageName = "package-json";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/package-json/-/package-json-2.4.0.tgz";
+ sha1 = "0d15bd67d1cbbddbb2ca222ff2edb86bcb31a8bb";
+ };
+ };
+ "package-json-4.0.1" = {
+ name = "package-json";
+ packageName = "package-json";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz";
+ sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed";
+ };
+ };
+ "pad-0.0.5" = {
+ name = "pad";
+ packageName = "pad";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pad/-/pad-0.0.5.tgz";
+ sha1 = "2219ab4db2ac74549a676164bc475d68cb87de05";
+ };
+ };
+ "pad-component-0.0.1" = {
+ name = "pad-component";
+ packageName = "pad-component";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pad-component/-/pad-component-0.0.1.tgz";
+ sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac";
+ };
+ };
+ "pako-0.2.9" = {
+ name = "pako";
+ packageName = "pako";
+ version = "0.2.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz";
+ sha1 = "f3f7522f4ef782348da8161bad9ecfd51bf83a75";
+ };
+ };
+ "pako-1.0.6" = {
+ name = "pako";
+ packageName = "pako";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pako/-/pako-1.0.6.tgz";
+ sha512 = "1r9hy37qsbhv5ipsydkbir2yl7qg3lbpgj4qzrnb903w8mhj9ibaww0zykbp0ak1nxxp6mpbws3xsrf7fgq39zchci90c7chgqvh1wm";
+ };
+ };
+ "param-case-2.1.1" = {
+ name = "param-case";
+ packageName = "param-case";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz";
+ sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247";
+ };
+ };
+ "parents-1.0.1" = {
+ name = "parents";
+ packageName = "parents";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz";
+ sha1 = "fedd4d2bf193a77745fe71e371d73c3307d9c751";
+ };
+ };
+ "parse-asn1-5.1.0" = {
+ name = "parse-asn1";
+ packageName = "parse-asn1";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz";
+ sha1 = "37c4f9b7ed3ab65c74817b5f2480937fbf97c712";
+ };
+ };
+ "parse-entities-1.1.1" = {
+ name = "parse-entities";
+ packageName = "parse-entities";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-entities/-/parse-entities-1.1.1.tgz";
+ sha1 = "8112d88471319f27abae4d64964b122fe4e1b890";
+ };
+ };
+ "parse-filepath-1.0.2" = {
+ name = "parse-filepath";
+ packageName = "parse-filepath";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz";
+ sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891";
+ };
+ };
+ "parse-github-repo-url-1.4.1" = {
+ name = "parse-github-repo-url";
+ packageName = "parse-github-repo-url";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz";
+ sha1 = "9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50";
+ };
+ };
+ "parse-glob-3.0.4" = {
+ name = "parse-glob";
+ packageName = "parse-glob";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz";
+ sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c";
+ };
+ };
+ "parse-headers-2.0.1" = {
+ name = "parse-headers";
+ packageName = "parse-headers";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.1.tgz";
+ sha1 = "6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536";
+ };
+ };
+ "parse-help-0.1.1" = {
+ name = "parse-help";
+ packageName = "parse-help";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-help/-/parse-help-0.1.1.tgz";
+ sha1 = "2f4df942e77a5581bba9967c0c3f48e4c66d7dda";
+ };
+ };
+ "parse-json-2.2.0" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz";
+ sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9";
+ };
+ };
+ "parse-json-4.0.0" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz";
+ sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
+ };
+ };
+ "parse-passwd-1.0.0" = {
+ name = "parse-passwd";
+ packageName = "parse-passwd";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz";
+ sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
+ };
+ };
+ "parse-torrent-4.1.0" = {
+ name = "parse-torrent";
+ packageName = "parse-torrent";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-4.1.0.tgz";
+ sha1 = "a814bd8505e8b58e88eb8ff3e2daff5d19a711b7";
+ };
+ };
+ "parse-torrent-5.8.3" = {
+ name = "parse-torrent";
+ packageName = "parse-torrent";
+ version = "5.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-5.8.3.tgz";
+ sha1 = "f95ef23301239609de406794ad9f958a1bca1b6c";
+ };
+ };
+ "parse-torrent-file-2.1.4" = {
+ name = "parse-torrent-file";
+ packageName = "parse-torrent-file";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-2.1.4.tgz";
+ sha1 = "32d4b6afde631420e5f415919a222b774b575707";
+ };
+ };
+ "parse-torrent-file-4.0.3" = {
+ name = "parse-torrent-file";
+ packageName = "parse-torrent-file";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-4.0.3.tgz";
+ sha512 = "2shaz6cv4fgbmy1hq6hc59spkja51qg0vvx514r1nqsspdnsq6xzxabk0gs17x3n8s03y9mj8hx1xn5c0bkq9fvx59sxms2a4mlig9r";
+ };
+ };
+ "parse5-3.0.3" = {
+ name = "parse5";
+ packageName = "parse5";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz";
+ sha512 = "005xscj5zlz7pkxa5ngys7i7pdb2f4pirj1zw7hr1145zhxxgg04nhykjh1csy2ncr5lyjw8phq8m2ylqhfhi2z4hgvjb2b1rkbs0xf";
+ };
+ };
+ "parsejson-0.0.1" = {
+ name = "parsejson";
+ packageName = "parsejson";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parsejson/-/parsejson-0.0.1.tgz";
+ sha1 = "9b10c6c0d825ab589e685153826de0a3ba278bcc";
+ };
+ };
+ "parsejson-0.0.3" = {
+ name = "parsejson";
+ packageName = "parsejson";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parsejson/-/parsejson-0.0.3.tgz";
+ sha1 = "ab7e3759f209ece99437973f7d0f1f64ae0e64ab";
+ };
+ };
+ "parseqs-0.0.2" = {
+ name = "parseqs";
+ packageName = "parseqs";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.2.tgz";
+ sha1 = "9dfe70b2cddac388bde4f35b1f240fa58adbe6c7";
+ };
+ };
+ "parseqs-0.0.5" = {
+ name = "parseqs";
+ packageName = "parseqs";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz";
+ sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d";
+ };
+ };
+ "parserlib-0.2.5" = {
+ name = "parserlib";
+ packageName = "parserlib";
+ version = "0.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parserlib/-/parserlib-0.2.5.tgz";
+ sha1 = "85907dd8605aa06abb3dd295d50bb2b8fa4dd117";
+ };
+ };
+ "parserlib-1.1.1" = {
+ name = "parserlib";
+ packageName = "parserlib";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parserlib/-/parserlib-1.1.1.tgz";
+ sha1 = "a64cfa724062434fdfc351c9a4ec2d92b94c06f4";
+ };
+ };
+ "parseuri-0.0.2" = {
+ name = "parseuri";
+ packageName = "parseuri";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.2.tgz";
+ sha1 = "db41878f2d6964718be870b3140973d8093be156";
+ };
+ };
+ "parseuri-0.0.5" = {
+ name = "parseuri";
+ packageName = "parseuri";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz";
+ sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a";
+ };
+ };
+ "parseurl-1.3.2" = {
+ name = "parseurl";
+ packageName = "parseurl";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz";
+ sha1 = "fc289d4ed8993119460c156253262cdc8de65bf3";
+ };
+ };
+ "pascalcase-0.1.1" = {
+ name = "pascalcase";
+ packageName = "pascalcase";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz";
+ sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14";
+ };
+ };
+ "passport-0.3.2" = {
+ name = "passport";
+ packageName = "passport";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport/-/passport-0.3.2.tgz";
+ sha1 = "9dd009f915e8fe095b0124a01b8f82da07510102";
+ };
+ };
+ "passport-0.4.0" = {
+ name = "passport";
+ packageName = "passport";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport/-/passport-0.4.0.tgz";
+ sha1 = "c5095691347bd5ad3b5e180238c3914d16f05811";
+ };
+ };
+ "passport-google-oauth-1.0.0" = {
+ name = "passport-google-oauth";
+ packageName = "passport-google-oauth";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-google-oauth/-/passport-google-oauth-1.0.0.tgz";
+ sha1 = "65f50633192ad0627a18b08960077109d84eb76d";
+ };
+ };
+ "passport-google-oauth1-1.0.0" = {
+ name = "passport-google-oauth1";
+ packageName = "passport-google-oauth1";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-google-oauth1/-/passport-google-oauth1-1.0.0.tgz";
+ sha1 = "af74a803df51ec646f66a44d82282be6f108e0cc";
+ };
+ };
+ "passport-google-oauth20-1.0.0" = {
+ name = "passport-google-oauth20";
+ packageName = "passport-google-oauth20";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-google-oauth20/-/passport-google-oauth20-1.0.0.tgz";
+ sha1 = "3b960e8a1d70d1dbe794615c827c68c40392a5d0";
+ };
+ };
+ "passport-http-bearer-1.0.1" = {
+ name = "passport-http-bearer";
+ packageName = "passport-http-bearer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-http-bearer/-/passport-http-bearer-1.0.1.tgz";
+ sha1 = "147469ea3669e2a84c6167ef99dbb77e1f0098a8";
+ };
+ };
+ "passport-local-1.0.0" = {
+ name = "passport-local";
+ packageName = "passport-local";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz";
+ sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee";
+ };
+ };
+ "passport-oauth1-1.1.0" = {
+ name = "passport-oauth1";
+ packageName = "passport-oauth1";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-oauth1/-/passport-oauth1-1.1.0.tgz";
+ sha1 = "a7de988a211f9cf4687377130ea74df32730c918";
+ };
+ };
+ "passport-oauth2-1.4.0" = {
+ name = "passport-oauth2";
+ packageName = "passport-oauth2";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.4.0.tgz";
+ sha1 = "f62f81583cbe12609be7ce6f160b9395a27b86ad";
+ };
+ };
+ "passport-oauth2-client-password-0.1.2" = {
+ name = "passport-oauth2-client-password";
+ packageName = "passport-oauth2-client-password";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-oauth2-client-password/-/passport-oauth2-client-password-0.1.2.tgz";
+ sha1 = "4f378b678b92d16dbbd233a6c706520093e561ba";
+ };
+ };
+ "passport-strategy-1.0.0" = {
+ name = "passport-strategy";
+ packageName = "passport-strategy";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz";
+ sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4";
+ };
+ };
+ "passwd-user-2.1.0" = {
+ name = "passwd-user";
+ packageName = "passwd-user";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/passwd-user/-/passwd-user-2.1.0.tgz";
+ sha1 = "fad9db6ae252f8b088e0c5decd20a7da0c5d9f1e";
+ };
+ };
+ "path-browserify-0.0.0" = {
+ name = "path-browserify";
+ packageName = "path-browserify";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz";
+ sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a";
+ };
+ };
+ "path-dirname-1.0.2" = {
+ name = "path-dirname";
+ packageName = "path-dirname";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz";
+ sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0";
+ };
+ };
+ "path-exists-2.1.0" = {
+ name = "path-exists";
+ packageName = "path-exists";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz";
+ sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b";
+ };
+ };
+ "path-exists-3.0.0" = {
+ name = "path-exists";
+ packageName = "path-exists";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
+ sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
+ };
+ };
+ "path-is-absolute-1.0.1" = {
+ name = "path-is-absolute";
+ packageName = "path-is-absolute";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
+ sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
+ };
+ };
+ "path-is-inside-1.0.2" = {
+ name = "path-is-inside";
+ packageName = "path-is-inside";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz";
+ sha1 = "365417dede44430d1c11af61027facf074bdfc53";
+ };
+ };
+ "path-key-1.0.0" = {
+ name = "path-key";
+ packageName = "path-key";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-key/-/path-key-1.0.0.tgz";
+ sha1 = "5d53d578019646c0d68800db4e146e6bdc2ac7af";
+ };
+ };
+ "path-key-2.0.1" = {
+ name = "path-key";
+ packageName = "path-key";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
+ sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
+ };
+ };
+ "path-loader-1.0.4" = {
+ name = "path-loader";
+ packageName = "path-loader";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.4.tgz";
+ sha512 = "1ss8fmalfnf2hx07sbbf2nzcf1z85m7jksnaf18i5lp85mylav3wckypakqq7lb93nbrpsj50ajhx0wl63w0q7y9k08gjlnsfihzwlk";
+ };
+ };
+ "path-parse-1.0.5" = {
+ name = "path-parse";
+ packageName = "path-parse";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz";
+ sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1";
+ };
+ };
+ "path-platform-0.11.15" = {
+ name = "path-platform";
+ packageName = "path-platform";
+ version = "0.11.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz";
+ sha1 = "e864217f74c36850f0852b78dc7bf7d4a5721bf2";
+ };
+ };
+ "path-proxy-1.0.0" = {
+ name = "path-proxy";
+ packageName = "path-proxy";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-proxy/-/path-proxy-1.0.0.tgz";
+ sha1 = "18e8a36859fc9d2f1a53b48dee138543c020de5e";
+ };
+ };
+ "path-root-0.1.1" = {
+ name = "path-root";
+ packageName = "path-root";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz";
+ sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7";
+ };
+ };
+ "path-root-regex-0.1.2" = {
+ name = "path-root-regex";
+ packageName = "path-root-regex";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz";
+ sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d";
+ };
+ };
+ "path-to-regexp-0.1.3" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.3.tgz";
+ sha1 = "21b9ab82274279de25b156ea08fd12ca51b8aecb";
+ };
+ };
+ "path-to-regexp-0.1.7" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz";
+ sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
+ };
+ };
+ "path-to-regexp-1.7.0" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.7.0.tgz";
+ sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d";
+ };
+ };
+ "path-type-1.1.0" = {
+ name = "path-type";
+ packageName = "path-type";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz";
+ sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441";
+ };
+ };
+ "path-type-2.0.0" = {
+ name = "path-type";
+ packageName = "path-type";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz";
+ sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73";
+ };
+ };
+ "path-type-3.0.0" = {
+ name = "path-type";
+ packageName = "path-type";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz";
+ sha512 = "2z1csf4c3fmlwl0ahk533z5zqkjdf36ccfx11kakl9xran9f5asxm4cxjq4lx1kwqdp8gki786cgpldvgrkvfc7pcvh07j5ssqm8rjg";
+ };
+ };
+ "pathval-1.1.0" = {
+ name = "pathval";
+ packageName = "pathval";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz";
+ sha1 = "b942e6d4bde653005ef6b71361def8727d0645e0";
+ };
+ };
+ "pause-0.0.1" = {
+ name = "pause";
+ packageName = "pause";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz";
+ sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d";
+ };
+ };
+ "pause-0.1.0" = {
+ name = "pause";
+ packageName = "pause";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pause/-/pause-0.1.0.tgz";
+ sha1 = "ebc8a4a8619ff0b8a81ac1513c3434ff469fdb74";
+ };
+ };
+ "pause-stream-0.0.11" = {
+ name = "pause-stream";
+ packageName = "pause-stream";
+ version = "0.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz";
+ sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445";
+ };
+ };
+ "pbkdf2-3.0.14" = {
+ name = "pbkdf2";
+ packageName = "pbkdf2";
+ version = "3.0.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.14.tgz";
+ sha512 = "30bb7vx0m1k1m3d1i1khgvmgddx3ahqgprs421ssrh5plpx50k5bazsj67gdi7qiknircqy59yxbclq95s2rnmk8ysgkqdpsddijfw2";
+ };
+ };
+ "peer-wire-protocol-0.7.0" = {
+ name = "peer-wire-protocol";
+ packageName = "peer-wire-protocol";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/peer-wire-protocol/-/peer-wire-protocol-0.7.0.tgz";
+ sha1 = "6c015abf24b4877ed9eca3822b22d996078011da";
+ };
+ };
+ "peer-wire-swarm-0.12.1" = {
+ name = "peer-wire-swarm";
+ packageName = "peer-wire-swarm";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.12.1.tgz";
+ sha1 = "51b75da99c335c64c9ba9ef99fe27a4a5951ff42";
+ };
+ };
+ "peerflix-0.34.0" = {
+ name = "peerflix";
+ packageName = "peerflix";
+ version = "0.34.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/peerflix/-/peerflix-0.34.0.tgz";
+ sha1 = "748f7e401284bf8f2c620264d229223304199dbe";
+ };
+ };
+ "pegjs-0.10.0" = {
+ name = "pegjs";
+ packageName = "pegjs";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pegjs/-/pegjs-0.10.0.tgz";
+ sha1 = "cf8bafae6eddff4b5a7efb185269eaaf4610ddbd";
};
};
"pegjs-git+https://github.com/tstarling/pegjs.git#fork" = {
@@ -21504,806 +18933,301 @@ let
sha256 = "df0bf31b132e63beae73a28f1edfe0a2e9edf01660632c72834c682e2b484905";
};
};
- "prfun-2.1.4" = {
- name = "prfun";
- packageName = "prfun";
- version = "2.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/prfun/-/prfun-2.1.4.tgz";
- sha1 = "78717d9b718ce7cab55e20b9f24388d5fa51d5c0";
- };
- };
- "service-runner-2.4.8" = {
- name = "service-runner";
- packageName = "service-runner";
- version = "2.4.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/service-runner/-/service-runner-2.4.8.tgz";
- sha1 = "5dd23353bc85bd128ed50b9d5f224ff99b5e8388";
- };
- };
- "simplediff-0.1.1" = {
- name = "simplediff";
- packageName = "simplediff";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/simplediff/-/simplediff-0.1.1.tgz";
- sha1 = "b0caeeb093223370033c6c3aa1130dc86c6a087c";
- };
- };
- "yargs-7.1.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "7.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz";
- sha1 = "6ba318eb16961727f5d284f8ea003e8d6154d0c8";
- };
- };
- "is-arguments-1.0.2" = {
- name = "is-arguments";
- packageName = "is-arguments";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.2.tgz";
- sha1 = "07e30ad79531844179b642d2d8399435182c8727";
- };
- };
- "object.assign-4.0.4" = {
- name = "object.assign";
- packageName = "object.assign";
- version = "4.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.assign/-/object.assign-4.0.4.tgz";
- sha1 = "b1c9cc044ef1b9fe63606fc141abbb32e14730cc";
- };
- };
- "define-properties-1.1.2" = {
- name = "define-properties";
- packageName = "define-properties";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz";
- sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94";
- };
- };
- "bunyan-1.8.12" = {
- name = "bunyan";
- packageName = "bunyan";
- version = "1.8.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz";
- sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797";
- };
- };
- "bunyan-syslog-udp-0.1.0" = {
- name = "bunyan-syslog-udp";
- packageName = "bunyan-syslog-udp";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bunyan-syslog-udp/-/bunyan-syslog-udp-0.1.0.tgz";
- sha1 = "fbfaee03a81cd2a95abc18f92c99f2bb87e2429c";
- };
- };
- "gelf-stream-1.1.1" = {
- name = "gelf-stream";
- packageName = "gelf-stream";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/gelf-stream/-/gelf-stream-1.1.1.tgz";
- sha1 = "9cea9b6386ac301c741838ca3cb91e66dbfbf669";
- };
- };
- "hot-shots-4.8.0" = {
- name = "hot-shots";
- packageName = "hot-shots";
- version = "4.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hot-shots/-/hot-shots-4.8.0.tgz";
- sha1 = "052be48430efc7d117ba7cc4d41f1833ba38c79f";
- };
- };
- "limitation-0.2.0" = {
- name = "limitation";
- packageName = "limitation";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/limitation/-/limitation-0.2.0.tgz";
- sha1 = "70ce102a972a0b79d4ca13a3ab62b8e6fe682a62";
- };
- };
- "dnscache-1.0.1" = {
- name = "dnscache";
- packageName = "dnscache";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dnscache/-/dnscache-1.0.1.tgz";
- sha1 = "42cb2b9bfb5e8fbdfa395aac74e127fc05074d31";
- };
- };
- "dtrace-provider-0.8.5" = {
- name = "dtrace-provider";
- packageName = "dtrace-provider";
- version = "0.8.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.5.tgz";
- sha1 = "98ebba221afac46e1c39fd36858d8f9367524b92";
- };
- };
- "mv-2.1.1" = {
- name = "mv";
- packageName = "mv";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz";
- sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2";
- };
- };
- "safe-json-stringify-1.0.4" = {
- name = "safe-json-stringify";
- packageName = "safe-json-stringify";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.0.4.tgz";
- sha1 = "81a098f447e4bbc3ff3312a243521bc060ef5911";
- };
- };
- "rimraf-2.4.5" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz";
- sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da";
- };
- };
- "gelfling-0.3.1" = {
- name = "gelfling";
- packageName = "gelfling";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/gelfling/-/gelfling-0.3.1.tgz";
- sha1 = "336a98f81510f9ae0af2a494e17468a116a9dc04";
- };
- };
- "kad-git+https://github.com/gwicke/kad.git#master" = {
- name = "kad";
- packageName = "kad";
- version = "1.3.6";
- src = fetchgit {
- url = "https://github.com/gwicke/kad.git";
- rev = "936c91652d757ea6f9dd30e44698afb0daaa1d17";
- sha256 = "69b2ef001b9f4161dad34f5305a5895cfa9f98f124689277293fd544d06f9251";
- };
- };
- "clarinet-0.11.0" = {
- name = "clarinet";
- packageName = "clarinet";
- version = "0.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clarinet/-/clarinet-0.11.0.tgz";
- sha1 = "6cc912b93138dc867fc273cd34ea90e83e054719";
- };
- };
- "kad-fs-0.0.4" = {
- name = "kad-fs";
- packageName = "kad-fs";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/kad-fs/-/kad-fs-0.0.4.tgz";
- sha1 = "02ea5aa5cf22225725579627ccfd6d266372289a";
- };
- };
- "kad-localstorage-0.0.7" = {
- name = "kad-localstorage";
- packageName = "kad-localstorage";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/kad-localstorage/-/kad-localstorage-0.0.7.tgz";
- sha1 = "f7a2e780da53fb28b943c2c5a894c279aa810f17";
- };
- };
- "kad-memstore-0.0.1" = {
- name = "kad-memstore";
- packageName = "kad-memstore";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/kad-memstore/-/kad-memstore-0.0.1.tgz";
- sha1 = "83cb748496ac491c7135104cbe56b88ca7392477";
- };
- };
- "merge-1.2.0" = {
- name = "merge";
- packageName = "merge";
+ "pend-1.2.0" = {
+ name = "pend";
+ packageName = "pend";
version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz";
- sha1 = "7531e39d4949c281a66b8c5a6e0265e8b05894da";
+ url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz";
+ sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50";
};
};
- "ms-0.7.3" = {
- name = "ms";
- packageName = "ms";
- version = "0.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-0.7.3.tgz";
- sha1 = "708155a5e44e33f5fd0fc53e81d0d40a91be1fff";
- };
- };
- "msgpack5-3.6.0" = {
- name = "msgpack5";
- packageName = "msgpack5";
- version = "3.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/msgpack5/-/msgpack5-3.6.0.tgz";
- sha512 = "3nr151ygx2w2pydaamcjrcn5ksl2rx09sdad8gh0rp1l07igigvfsw0xjjcnxrdws1rwy7g1j533qzhr7w25jisad6npv9rf1j84yz8";
- };
- };
- "dom-storage-2.0.2" = {
- name = "dom-storage";
- packageName = "dom-storage";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom-storage/-/dom-storage-2.0.2.tgz";
- sha1 = "ed17cbf68abd10e0aef8182713e297c5e4b500b0";
- };
- };
- "lodash.clone-4.3.2" = {
- name = "lodash.clone";
- packageName = "lodash.clone";
- version = "4.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz";
- sha1 = "e56b176b6823a7dde38f7f2bf58de7d5971200e9";
- };
- };
- "lodash._baseclone-4.5.7" = {
- name = "lodash._baseclone";
- packageName = "lodash._baseclone";
- version = "4.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz";
- sha1 = "ce42ade08384ef5d62fa77c30f61a46e686f8434";
- };
- };
- "yargs-parser-5.0.0" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz";
- sha1 = "275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a";
- };
- };
- "airplayer-2.0.0" = {
- name = "airplayer";
- packageName = "airplayer";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/airplayer/-/airplayer-2.0.0.tgz";
- sha1 = "7ab62d23b96d44234138aec1281d2e67ef190259";
- };
- };
- "clivas-0.2.0" = {
- name = "clivas";
- packageName = "clivas";
+ "performance-now-0.2.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/clivas/-/clivas-0.2.0.tgz";
- sha1 = "b8d19188b3243e390f302410bd0cb1622db82649";
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
+ sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
};
};
- "inquirer-1.2.3" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-1.2.3.tgz";
- sha1 = "4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918";
- };
- };
- "winreg-1.2.3" = {
- name = "winreg";
- packageName = "winreg";
- version = "1.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/winreg/-/winreg-1.2.3.tgz";
- sha1 = "93ad116b2696da87d58f7265a8fcea5254a965d5";
- };
- };
- "airplay-protocol-2.0.2" = {
- name = "airplay-protocol";
- packageName = "airplay-protocol";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/airplay-protocol/-/airplay-protocol-2.0.2.tgz";
- sha1 = "b5b2a7137331f5545acbe196ba5693c13238fc5e";
- };
- };
- "appendable-cli-menu-2.0.0" = {
- name = "appendable-cli-menu";
- packageName = "appendable-cli-menu";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/appendable-cli-menu/-/appendable-cli-menu-2.0.0.tgz";
- sha1 = "dcfca9e509300e4c3b2d467965fe50c56fc75e66";
- };
- };
- "bonjour-3.5.0" = {
- name = "bonjour";
- packageName = "bonjour";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz";
- sha1 = "8e890a183d8ee9a2393b3844c691a42bcf7bc9f5";
- };
- };
- "bplist-creator-0.0.6" = {
- name = "bplist-creator";
- packageName = "bplist-creator";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/bplist-creator/-/bplist-creator-0.0.6.tgz";
- sha1 = "fef069bee85975b2ddcc2264aaa7c50dc17a3c7e";
- };
- };
- "reverse-http-1.3.0" = {
- name = "reverse-http";
- packageName = "reverse-http";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/reverse-http/-/reverse-http-1.3.0.tgz";
- sha1 = "61a9644bdea483aa281ffb62706e642f1a73a239";
- };
- };
- "consume-http-header-1.0.0" = {
- name = "consume-http-header";
- packageName = "consume-http-header";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/consume-http-header/-/consume-http-header-1.0.0.tgz";
- sha1 = "95976d74f7f1b38dfb13fd9b3b68b91a0240556f";
- };
- };
- "consume-until-1.0.0" = {
- name = "consume-until";
- packageName = "consume-until";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/consume-until/-/consume-until-1.0.0.tgz";
- sha1 = "75b91fa9f16663e51f98e863af995b9164068c1a";
- };
- };
- "http-headers-3.0.2" = {
- name = "http-headers";
- packageName = "http-headers";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-headers/-/http-headers-3.0.2.tgz";
- sha512 = "0xv0kpsablrjag5ci3qqwjf0hwvcp6yk0hgabv4im6ssanimgbr8yhzmyz4jd10sw5xhrimzhxp2xx34l8p6aryqxqqg0wnxlikbcgk";
- };
- };
- "next-line-1.1.0" = {
- name = "next-line";
- packageName = "next-line";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/next-line/-/next-line-1.1.0.tgz";
- sha1 = "fcae57853052b6a9bae8208e40dd7d3c2d304603";
- };
- };
- "single-line-log-1.1.2" = {
- name = "single-line-log";
- packageName = "single-line-log";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/single-line-log/-/single-line-log-1.1.2.tgz";
- sha1 = "c2f83f273a3e1a16edb0995661da0ed5ef033364";
- };
- };
- "array-flatten-2.1.1" = {
- name = "array-flatten";
- packageName = "array-flatten";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz";
- sha1 = "426bb9da84090c1838d812c8150af20a8331e296";
- };
- };
- "dns-equal-1.0.0" = {
- name = "dns-equal";
- packageName = "dns-equal";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz";
- sha1 = "b39e7f1da6eb0a75ba9c17324b34753c47e0654d";
- };
- };
- "multicast-dns-service-types-1.1.0" = {
- name = "multicast-dns-service-types";
- packageName = "multicast-dns-service-types";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz";
- sha1 = "899f11d9686e5e05cb91b35d5f0e63b773cfc901";
- };
- };
- "external-editor-1.1.1" = {
- name = "external-editor";
- packageName = "external-editor";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/external-editor/-/external-editor-1.1.1.tgz";
- sha1 = "12d7b0db850f7ff7e7081baf4005700060c4600b";
- };
- };
- "spawn-sync-1.0.15" = {
- name = "spawn-sync";
- packageName = "spawn-sync";
- version = "1.0.15";
- src = fetchurl {
- url = "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz";
- sha1 = "b00799557eb7fb0c8376c29d44e8a1ea67e57476";
- };
- };
- "tmp-0.0.29" = {
- name = "tmp";
- packageName = "tmp";
- version = "0.0.29";
- src = fetchurl {
- url = "https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz";
- sha1 = "f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0";
- };
- };
- "os-shim-0.1.3" = {
- name = "os-shim";
- packageName = "os-shim";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-shim/-/os-shim-0.1.3.tgz";
- sha1 = "6b62c3791cf7909ea35ed46e17658bb417cb3917";
- };
- };
- "connect-multiparty-2.1.0" = {
- name = "connect-multiparty";
- packageName = "connect-multiparty";
+ "performance-now-2.1.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/connect-multiparty/-/connect-multiparty-2.1.0.tgz";
- sha512 = "2im4bqk3xwxwilkg8gli3pblmalbhsd4wl5w10p63bvl0jd3m0qp5by840k5s7dr8wi0krixp2297bn76v38dwgznja4h4wp6my3g0c";
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
+ sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
};
};
- "socket.io-1.7.4" = {
- name = "socket.io";
- packageName = "socket.io";
- version = "1.7.4";
+ "phantomjs-1.9.20" = {
+ name = "phantomjs";
+ packageName = "phantomjs";
+ version = "1.9.20";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-1.7.4.tgz";
- sha1 = "2f7ecedc3391bf2d5c73e291fe233e6e34d4dd00";
+ url = "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.20.tgz";
+ sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d";
};
};
- "fluent-ffmpeg-2.1.2" = {
- name = "fluent-ffmpeg";
- packageName = "fluent-ffmpeg";
- version = "2.1.2";
+ "phantomjs-prebuilt-2.1.16" = {
+ name = "phantomjs-prebuilt";
+ packageName = "phantomjs-prebuilt";
+ version = "2.1.16";
src = fetchurl {
- url = "https://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-2.1.2.tgz";
- sha1 = "c952de2240f812ebda0aa8006d7776ee2acf7d74";
+ url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz";
+ sha1 = "efd212a4a3966d3647684ea8ba788549be2aefef";
};
};
- "multiparty-4.1.3" = {
- name = "multiparty";
- packageName = "multiparty";
- version = "4.1.3";
+ "pify-2.3.0" = {
+ name = "pify";
+ packageName = "pify";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/multiparty/-/multiparty-4.1.3.tgz";
- sha1 = "3c43c7fcb1896e17460436a9dd0b6ef1668e4f94";
+ url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz";
+ sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c";
};
};
- "engine.io-1.8.4" = {
- name = "engine.io";
- packageName = "engine.io";
- version = "1.8.4";
+ "pify-3.0.0" = {
+ name = "pify";
+ packageName = "pify";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-1.8.4.tgz";
- sha1 = "77bce12b80e5d60429337fec3b0daf691ebc9003";
+ url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
+ sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
};
};
- "socket.io-client-1.7.4" = {
- name = "socket.io-client";
- packageName = "socket.io-client";
- version = "1.7.4";
+ "pinkie-2.0.4" = {
+ name = "pinkie";
+ packageName = "pinkie";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.4.tgz";
- sha1 = "ec9f820356ed99ef6d357f0756d648717bdd4281";
+ url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
+ sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
};
};
- "ws-1.1.4" = {
- name = "ws";
- packageName = "ws";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-1.1.4.tgz";
- sha1 = "57f40d036832e5f5055662a397c4de76ed66bf61";
- };
- };
- "engine.io-client-1.8.4" = {
- name = "engine.io-client";
- packageName = "engine.io-client";
- version = "1.8.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.4.tgz";
- sha1 = "9fe85dee25853ca6babe25bd2ad68710863e91c2";
- };
- };
- "extract-zip-1.5.0" = {
- name = "extract-zip";
- packageName = "extract-zip";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz";
- sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4";
- };
- };
- "request-2.67.0" = {
- name = "request";
- packageName = "request";
- version = "2.67.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.67.0.tgz";
- sha1 = "8af74780e2bf11ea0ae9aa965c11f11afd272742";
- };
- };
- "which-1.2.14" = {
- name = "which";
- packageName = "which";
- version = "1.2.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.2.14.tgz";
- sha1 = "9a87c4378f03e827cecaf1acdf56c736c01c14e5";
- };
- };
- "concat-stream-1.5.0" = {
- name = "concat-stream";
- packageName = "concat-stream";
- version = "1.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz";
- sha1 = "53f7d43c51c5e43f81c8fdd03321c631be68d611";
- };
- };
- "bl-1.0.3" = {
- name = "bl";
- packageName = "bl";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz";
- sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e";
- };
- };
- "qs-5.2.1" = {
- name = "qs";
- packageName = "qs";
- version = "5.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-5.2.1.tgz";
- sha1 = "801fee030e0b9450d6385adc48a4cc55b44aedfc";
- };
- };
- "tough-cookie-2.2.2" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "2.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz";
- sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7";
- };
- };
- "browserify-13.3.0" = {
- name = "browserify";
- packageName = "browserify";
- version = "13.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify/-/browserify-13.3.0.tgz";
- sha1 = "b5a9c9020243f0c70e4675bec8223bc627e415ce";
- };
- };
- "browserify-incremental-3.1.1" = {
- name = "browserify-incremental";
- packageName = "browserify-incremental";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-incremental/-/browserify-incremental-3.1.1.tgz";
- sha1 = "0713cb7587247a632a9f08cf1bd169b878b62a8a";
- };
- };
- "node-static-0.7.10" = {
- name = "node-static";
- packageName = "node-static";
- version = "0.7.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-static/-/node-static-0.7.10.tgz";
- sha512 = "3a22r0jr4112h0vr1smzrsaygc607v13arhjbjwzmy1jvmcrdlq9ydnw96ailkrlnwl3k0l65hjcgnrgkdwyc2qhbfnq2bgk0xz7pkd";
- };
- };
- "string-stream-0.0.7" = {
- name = "string-stream";
- packageName = "string-stream";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-stream/-/string-stream-0.0.7.tgz";
- sha1 = "cfcde82799fa62f303429aaa79336ee8834332fe";
- };
- };
- "tree-kill-1.2.0" = {
- name = "tree-kill";
- packageName = "tree-kill";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz";
- sha512 = "1r0mixygpdqrm2fn92z4cyxzbnvimm16k5gdm2m2jxx8wrj3w0mql9s748hcqp2nzcnybnw74wkm211zlr9ld0j2x1q8f153mszlm8f";
- };
- };
- "watchpack-1.4.0" = {
- name = "watchpack";
- packageName = "watchpack";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/watchpack/-/watchpack-1.4.0.tgz";
- sha1 = "4a1472bcbb952bd0a9bb4036801f954dfb39faac";
- };
- };
- "https-browserify-0.0.1" = {
- name = "https-browserify";
- packageName = "https-browserify";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz";
- sha1 = "3f91365cabe60b77ed0ebba24b454e3e09d95a82";
- };
- };
- "JSONStream-0.10.0" = {
- name = "JSONStream";
- packageName = "JSONStream";
- version = "0.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.10.0.tgz";
- sha1 = "74349d0d89522b71f30f0a03ff9bd20ca6f12ac0";
- };
- };
- "browserify-cache-api-3.0.1" = {
- name = "browserify-cache-api";
- packageName = "browserify-cache-api";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/browserify-cache-api/-/browserify-cache-api-3.0.1.tgz";
- sha1 = "96247e853f068fd6e0d45cc73f0bb2cd9778ef02";
- };
- };
- "less-2.7.3" = {
- name = "less";
- packageName = "less";
- version = "2.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz";
- sha512 = "04jbm6adzhknlcwjjdd94n8dhqwgsg0fyampis9854jf23z9g9lxs8593908ymwldl88bjipf9b9rw6xfibb29vv7s0c44wllj4ixr8";
- };
- };
- "less-middleware-2.2.1" = {
- name = "less-middleware";
- packageName = "less-middleware";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/less-middleware/-/less-middleware-2.2.1.tgz";
- sha512 = "059c8rz6wkzc3fwd62a6f3lfw3h9sxj2fr0jjyr1i9kwfvk3737xyzndyshklllx5gnfri9z2g9a28c2ccnd6ka6adn6i7h4z5frw6m";
- };
- };
- "libquassel-2.1.9" = {
- name = "libquassel";
- packageName = "libquassel";
- version = "2.1.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/libquassel/-/libquassel-2.1.9.tgz";
- sha1 = "e80ad2ef5c081ac677f66515d107537fdc0f5c64";
- };
- };
- "net-browserify-alt-1.1.0" = {
- name = "net-browserify-alt";
- packageName = "net-browserify-alt";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/net-browserify-alt/-/net-browserify-alt-1.1.0.tgz";
- sha1 = "02c9ecac88437be23f5948b208a1e65d8d138a73";
- };
- };
- "pug-2.0.0-rc.4" = {
- name = "pug";
- packageName = "pug";
- version = "2.0.0-rc.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug/-/pug-2.0.0-rc.4.tgz";
- sha512 = "1fbygi6jg8awam3agrc63yjlgxk8vfpnym1ql4dikclikp3kdrxfpfgdywadidzzic33b9fdqnwqy6ag82m4x6kmgl644zsz2ig3gj8";
- };
- };
- "httpolyglot-0.1.2" = {
- name = "httpolyglot";
- packageName = "httpolyglot";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/httpolyglot/-/httpolyglot-0.1.2.tgz";
- sha1 = "e4d347fe8984a62f467d4060df527f1851f6997b";
- };
- };
- "image-size-0.5.5" = {
- name = "image-size";
- packageName = "image-size";
- version = "0.5.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz";
- sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c";
- };
- };
- "node.extend-2.0.0" = {
- name = "node.extend";
- packageName = "node.extend";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node.extend/-/node.extend-2.0.0.tgz";
- sha1 = "7525a2875677ea534784a5e10ac78956139614df";
- };
- };
- "is-3.2.1" = {
- name = "is";
- packageName = "is";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is/-/is-3.2.1.tgz";
- sha1 = "d0ac2ad55eb7b0bec926a5266f6c662aaa83dca5";
- };
- };
- "eventemitter2-3.0.2" = {
- name = "eventemitter2";
- packageName = "eventemitter2";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-3.0.2.tgz";
- sha1 = "81c0edb739ffa64fb9f21bbcb1d2b419a5133512";
- };
- };
- "qtdatastream-0.7.1" = {
- name = "qtdatastream";
- packageName = "qtdatastream";
- version = "0.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/qtdatastream/-/qtdatastream-0.7.1.tgz";
- sha1 = "8085d390b4c19f7b02dee8a7cd873e2af58667b5";
- };
- };
- "int64-buffer-0.1.10" = {
- name = "int64-buffer";
- packageName = "int64-buffer";
- version = "0.1.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/int64-buffer/-/int64-buffer-0.1.10.tgz";
- sha1 = "277b228a87d95ad777d07c13832022406a473423";
- };
- };
- "bufferutil-2.0.1" = {
- name = "bufferutil";
- packageName = "bufferutil";
+ "pinkie-promise-2.0.1" = {
+ name = "pinkie-promise";
+ packageName = "pinkie-promise";
version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/bufferutil/-/bufferutil-2.0.1.tgz";
- sha1 = "8de37f5a300730c305fc3edd9f93348ee8a46288";
+ url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
+ sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
};
};
- "nan-2.5.1" = {
- name = "nan";
- packageName = "nan";
- version = "2.5.1";
+ "pino-4.10.3" = {
+ name = "pino";
+ packageName = "pino";
+ version = "4.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.5.1.tgz";
- sha1 = "d5b01691253326a97a2bbee9e61c55d8d60351e2";
+ url = "https://registry.npmjs.org/pino/-/pino-4.10.3.tgz";
+ sha512 = "2kg8qqb15pav0a2f16xmj5iqzkx28d0c6i1ydy3vzn71hfv7b7kvsbv917bwj68bh8m2mgy9j0kj8j4npy14hg2h09q4h85sz8wm990";
+ };
+ };
+ "pkg-up-2.0.0" = {
+ name = "pkg-up";
+ packageName = "pkg-up";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pkg-up/-/pkg-up-2.0.0.tgz";
+ sha1 = "c819ac728059a461cab1c3889a2be3c49a004d7f";
+ };
+ };
+ "pkginfo-0.2.3" = {
+ name = "pkginfo";
+ packageName = "pkginfo";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz";
+ sha1 = "7239c42a5ef6c30b8f328439d9b9ff71042490f8";
+ };
+ };
+ "pkginfo-0.3.1" = {
+ name = "pkginfo";
+ packageName = "pkginfo";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz";
+ sha1 = "5b29f6a81f70717142e09e765bbeab97b4f81e21";
+ };
+ };
+ "pkginfo-0.4.1" = {
+ name = "pkginfo";
+ packageName = "pkginfo";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz";
+ sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff";
+ };
+ };
+ "playerui-1.2.0" = {
+ name = "playerui";
+ packageName = "playerui";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/playerui/-/playerui-1.2.0.tgz";
+ sha1 = "2d59c8cb736e189cb2398cd809469ca47077f812";
+ };
+ };
+ "please-upgrade-node-3.0.1" = {
+ name = "please-upgrade-node";
+ packageName = "please-upgrade-node";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.0.1.tgz";
+ sha1 = "0a681f2c18915e5433a5ca2cd94e0b8206a782db";
+ };
+ };
+ "plist-1.2.0" = {
+ name = "plist";
+ packageName = "plist";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/plist/-/plist-1.2.0.tgz";
+ sha1 = "084b5093ddc92506e259f874b8d9b1afb8c79593";
+ };
+ };
+ "plist-2.0.1" = {
+ name = "plist";
+ packageName = "plist";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/plist/-/plist-2.0.1.tgz";
+ sha1 = "0a32ca9481b1c364e92e18dc55c876de9d01da8b";
+ };
+ };
+ "plist-2.1.0" = {
+ name = "plist";
+ packageName = "plist";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/plist/-/plist-2.1.0.tgz";
+ sha1 = "57ccdb7a0821df21831217a3cad54e3e146a1025";
+ };
+ };
+ "pluralize-1.2.1" = {
+ name = "pluralize";
+ packageName = "pluralize";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz";
+ sha1 = "d1a21483fd22bb41e58a12fa3421823140897c45";
+ };
+ };
+ "pluralize-7.0.0" = {
+ name = "pluralize";
+ packageName = "pluralize";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz";
+ sha512 = "2ihaln20qjx82jx73wgzirbyp8mfmhxr75am1h0w8n5hy2gsbgvw9dricv7h57ycxzax84bma96wjscmdszs5mr2lsyxpfjvhwl2601";
+ };
+ };
+ "po2json-0.4.5" = {
+ name = "po2json";
+ packageName = "po2json";
+ version = "0.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/po2json/-/po2json-0.4.5.tgz";
+ sha1 = "47bb2952da32d58a1be2f256a598eebc0b745118";
+ };
+ };
+ "policyfile-0.0.4" = {
+ name = "policyfile";
+ packageName = "policyfile";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/policyfile/-/policyfile-0.0.4.tgz";
+ sha1 = "d6b82ead98ae79ebe228e2daf5903311ec982e4d";
+ };
+ };
+ "pop-iterate-1.0.1" = {
+ name = "pop-iterate";
+ packageName = "pop-iterate";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pop-iterate/-/pop-iterate-1.0.1.tgz";
+ sha1 = "ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3";
+ };
+ };
+ "poplib-0.1.7" = {
+ name = "poplib";
+ packageName = "poplib";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/poplib/-/poplib-0.1.7.tgz";
+ sha1 = "2f4b58b5592972350cd97f482aba68f8e05574bc";
+ };
+ };
+ "popsicle-9.2.0" = {
+ name = "popsicle";
+ packageName = "popsicle";
+ version = "9.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/popsicle/-/popsicle-9.2.0.tgz";
+ sha512 = "23p3a888k27q99lj4904nbcs8r51nlm4qdzs3m0xp9y4ci1rxzymzzckrblrmlmbzrlxx4i9zx7s56gcrhvi2jm3ypr3lvhgy7m3sx5";
+ };
+ };
+ "popsicle-proxy-agent-3.0.0" = {
+ name = "popsicle-proxy-agent";
+ packageName = "popsicle-proxy-agent";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/popsicle-proxy-agent/-/popsicle-proxy-agent-3.0.0.tgz";
+ sha1 = "b9133c55d945759ab7ee61b7711364620d3aeadc";
+ };
+ };
+ "popsicle-retry-3.2.1" = {
+ name = "popsicle-retry";
+ packageName = "popsicle-retry";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/popsicle-retry/-/popsicle-retry-3.2.1.tgz";
+ sha1 = "e06e866533b42a7a123eb330cbe63a7cebcba10c";
+ };
+ };
+ "popsicle-rewrite-1.0.0" = {
+ name = "popsicle-rewrite";
+ packageName = "popsicle-rewrite";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/popsicle-rewrite/-/popsicle-rewrite-1.0.0.tgz";
+ sha1 = "1dd4e8ea9c3182351fb820f87934d992f7fb9007";
+ };
+ };
+ "popsicle-status-2.0.1" = {
+ name = "popsicle-status";
+ packageName = "popsicle-status";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/popsicle-status/-/popsicle-status-2.0.1.tgz";
+ sha1 = "8dd70c4fe7c694109add784ffe80eacac1e7b28d";
+ };
+ };
+ "posix-character-classes-0.1.1" = {
+ name = "posix-character-classes";
+ packageName = "posix-character-classes";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz";
+ sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab";
+ };
+ };
+ "postcss-6.0.14" = {
+ name = "postcss";
+ packageName = "postcss";
+ version = "6.0.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz";
+ sha512 = "2id33g6232s35n25daqrkz0bvzm2zmhlkfzmigkgia5q4jy9xg38spppmsdg0qswjankyi28wrbjsdwhczqfkx7h71gg8dmzz8p779l";
+ };
+ };
+ "postcss-6.0.16" = {
+ name = "postcss";
+ packageName = "postcss";
+ version = "6.0.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/postcss/-/postcss-6.0.16.tgz";
+ sha512 = "2h2vfl4i770c41s6zy98za52jq23a0l5976rgh8x911znh1xsv8pcwvwnck8m1yrxfvpxnihs0myv9rsinwhck3zx3k2jp6cd2prglv";
};
};
"prebuild-install-2.1.2" = {
@@ -22315,58 +19239,454 @@ let
sha1 = "d9ae0ca85330e03962d93292f95a8b44c2ebf505";
};
};
- "expand-template-1.1.0" = {
- name = "expand-template";
- packageName = "expand-template";
+ "precond-0.2.3" = {
+ name = "precond";
+ packageName = "precond";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz";
+ sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac";
+ };
+ };
+ "prelude-ls-1.1.2" = {
+ name = "prelude-ls";
+ packageName = "prelude-ls";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz";
+ sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54";
+ };
+ };
+ "prepend-http-1.0.4" = {
+ name = "prepend-http";
+ packageName = "prepend-http";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz";
+ sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc";
+ };
+ };
+ "prepend-http-2.0.0" = {
+ name = "prepend-http";
+ packageName = "prepend-http";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz";
+ sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897";
+ };
+ };
+ "preserve-0.2.0" = {
+ name = "preserve";
+ packageName = "preserve";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz";
+ sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b";
+ };
+ };
+ "prettier-bytes-1.0.4" = {
+ name = "prettier-bytes";
+ packageName = "prettier-bytes";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prettier-bytes/-/prettier-bytes-1.0.4.tgz";
+ sha1 = "994b02aa46f699c50b6257b5faaa7fe2557e62d6";
+ };
+ };
+ "pretty-hash-1.0.1" = {
+ name = "pretty-hash";
+ packageName = "pretty-hash";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pretty-hash/-/pretty-hash-1.0.1.tgz";
+ sha1 = "16e0579188def56bdb565892bcd05a5d65324807";
+ };
+ };
+ "pretty-hrtime-1.0.3" = {
+ name = "pretty-hrtime";
+ packageName = "pretty-hrtime";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz";
+ sha1 = "b7e3ea42435a4c9b2759d99e0f201eb195802ee1";
+ };
+ };
+ "prettyjson-1.2.1" = {
+ name = "prettyjson";
+ packageName = "prettyjson";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prettyjson/-/prettyjson-1.2.1.tgz";
+ sha1 = "fcffab41d19cab4dfae5e575e64246619b12d289";
+ };
+ };
+ "prfun-2.1.5" = {
+ name = "prfun";
+ packageName = "prfun";
+ version = "2.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prfun/-/prfun-2.1.5.tgz";
+ sha512 = "2x2535hml3hmhh6qbsl9r97mpa264mbpvmv0lbsqsfkv3sfd8wv7zw1b68555qsj5c6ma4b66qkgdsrr6355lhbmz052hqzq2qx082h";
+ };
+ };
+ "private-0.1.8" = {
+ name = "private";
+ packageName = "private";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz";
+ sha512 = "2dgznnpxsgy9bgp4kfby1is72blvca4lhmqb3nlja8yiig1v52c12p5yw0aag8jqazhkqvihpxmqf9gsjlg5dr1jb56jxzgnqrazy2n";
+ };
+ };
+ "probe-image-size-3.2.0" = {
+ name = "probe-image-size";
+ packageName = "probe-image-size";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/probe-image-size/-/probe-image-size-3.2.0.tgz";
+ sha512 = "2ss74kxzba7k01p9fz756q4q9g6m29h49s5pp9wg1larrjmlcm1avhy7rwmqqkpd8azblwa3wk736xz1nrlvzc1h274g863ywifckic";
+ };
+ };
+ "process-0.11.10" = {
+ name = "process";
+ packageName = "process";
+ version = "0.11.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz";
+ sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182";
+ };
+ };
+ "process-0.5.2" = {
+ name = "process";
+ packageName = "process";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz";
+ sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf";
+ };
+ };
+ "process-nextick-args-1.0.7" = {
+ name = "process-nextick-args";
+ packageName = "process-nextick-args";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
+ sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
+ };
+ };
+ "progress-1.1.8" = {
+ name = "progress";
+ packageName = "progress";
+ version = "1.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz";
+ sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be";
+ };
+ };
+ "progress-2.0.0" = {
+ name = "progress";
+ packageName = "progress";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz";
+ sha1 = "8a1be366bf8fc23db2bd23f10c6fe920b4389d1f";
+ };
+ };
+ "progress-string-1.2.2" = {
+ name = "progress-string";
+ packageName = "progress-string";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/progress-string/-/progress-string-1.2.2.tgz";
+ sha512 = "07n7s98b5fqdx9jspg14zkw0dndfdpbrd12f5nj5c7m6aifvl4nn27qdbrgy6gzb837cs86cakldqh5kwbi7fv6ra9ll9q83qhsya97";
+ };
+ };
+ "promiscuous-0.6.0" = {
+ name = "promiscuous";
+ packageName = "promiscuous";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promiscuous/-/promiscuous-0.6.0.tgz";
+ sha1 = "54014cd3d62cafe831e3354990c05ff5b78c8892";
+ };
+ };
+ "promise-2.0.0" = {
+ name = "promise";
+ packageName = "promise";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise/-/promise-2.0.0.tgz";
+ sha1 = "46648aa9d605af5d2e70c3024bf59436da02b80e";
+ };
+ };
+ "promise-6.1.0" = {
+ name = "promise";
+ packageName = "promise";
+ version = "6.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz";
+ sha1 = "2ce729f6b94b45c26891ad0602c5c90e04c6eef6";
+ };
+ };
+ "promise-7.3.1" = {
+ name = "promise";
+ packageName = "promise";
+ version = "7.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz";
+ sha512 = "17cn4nns2nxh9r0pdiqsqx3fpvaa82c1mhcr8r84k2a9hkpb0mj4bxzfbg3l9iy74yn9hj6mh2gsddsi3v939a1zp7ycbzqkxfm12cy";
+ };
+ };
+ "promise-finally-3.0.0" = {
+ name = "promise-finally";
+ packageName = "promise-finally";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise-finally/-/promise-finally-3.0.0.tgz";
+ sha1 = "ddd5d0f895432b1206ceb8da1275064d18e7aa23";
+ };
+ };
+ "promise-phantom-3.1.6" = {
+ name = "promise-phantom";
+ packageName = "promise-phantom";
+ version = "3.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise-phantom/-/promise-phantom-3.1.6.tgz";
+ sha1 = "bbcfd248725259f2bb115a27bfa8d65dc420f931";
+ };
+ };
+ "promised-temp-0.1.0" = {
+ name = "promised-temp";
+ packageName = "promised-temp";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promised-temp/-/promised-temp-0.1.0.tgz";
+ sha1 = "5f8a704ccdf5f2ac23996fcafe2b301bc2a8d0eb";
+ };
+ };
+ "prompt-0.2.14" = {
+ name = "prompt";
+ packageName = "prompt";
+ version = "0.2.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz";
+ sha1 = "57754f64f543fd7b0845707c818ece618f05ffdc";
+ };
+ };
+ "prompt-1.0.0" = {
+ name = "prompt";
+ packageName = "prompt";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prompt/-/prompt-1.0.0.tgz";
+ sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe";
+ };
+ };
+ "promzard-0.3.0" = {
+ name = "promzard";
+ packageName = "promzard";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz";
+ sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee";
+ };
+ };
+ "prop-types-15.6.0" = {
+ name = "prop-types";
+ packageName = "prop-types";
+ version = "15.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prop-types/-/prop-types-15.6.0.tgz";
+ sha1 = "ceaf083022fc46b4a35f69e13ef75aed0d639856";
+ };
+ };
+ "properties-1.2.1" = {
+ name = "properties";
+ packageName = "properties";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/properties/-/properties-1.2.1.tgz";
+ sha1 = "0ee97a7fc020b1a2a55b8659eda4aa8d869094bd";
+ };
+ };
+ "properties-parser-0.3.1" = {
+ name = "properties-parser";
+ packageName = "properties-parser";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/properties-parser/-/properties-parser-0.3.1.tgz";
+ sha1 = "1316e9539ffbfd93845e369b211022abd478771a";
+ };
+ };
+ "protein-0.5.0" = {
+ name = "protein";
+ packageName = "protein";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/protein/-/protein-0.5.0.tgz";
+ sha1 = "80ab4e919749351263ef14500d684e57c4202840";
+ };
+ };
+ "proto-list-1.2.4" = {
+ name = "proto-list";
+ packageName = "proto-list";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz";
+ sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
+ };
+ };
+ "protobufjs-3.8.2" = {
+ name = "protobufjs";
+ packageName = "protobufjs";
+ version = "3.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/protobufjs/-/protobufjs-3.8.2.tgz";
+ sha1 = "bc826e34c3af4697e8d0af7a669e4d612aedcd17";
+ };
+ };
+ "protocol-buffers-encodings-1.1.0" = {
+ name = "protocol-buffers-encodings";
+ packageName = "protocol-buffers-encodings";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/expand-template/-/expand-template-1.1.0.tgz";
- sha512 = "34i2f4clwy5bpzgl137zwplybp5hn6ncxq0p794cx9m0crhgk31nfy0s8wp1v6hvw90h20c268r040g892dixy6zqq1xlm3ra8g0j4j";
+ url = "https://registry.npmjs.org/protocol-buffers-encodings/-/protocol-buffers-encodings-1.1.0.tgz";
+ sha512 = "28vhf9zv4h6gc3nia9pshzn16jm1h6r58nj2mwmkji35fjbscjwxrxigwy87j82y8wayn29qgc31939b1fyk6dmvvhwv1gp0ywc8s2a";
};
};
- "github-from-package-0.0.0" = {
- name = "github-from-package";
- packageName = "github-from-package";
+ "proxy-addr-1.0.10" = {
+ name = "proxy-addr";
+ packageName = "proxy-addr";
+ version = "1.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.0.10.tgz";
+ sha1 = "0d40a82f801fc355567d2ecb65efe3f077f121c5";
+ };
+ };
+ "proxy-addr-1.1.5" = {
+ name = "proxy-addr";
+ packageName = "proxy-addr";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.5.tgz";
+ sha1 = "71c0ee3b102de3f202f3b64f608d173fcba1a918";
+ };
+ };
+ "proxy-addr-2.0.2" = {
+ name = "proxy-addr";
+ packageName = "proxy-addr";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.2.tgz";
+ sha1 = "6571504f47bb988ec8180253f85dd7e14952bdec";
+ };
+ };
+ "proxy-agent-2.0.0" = {
+ name = "proxy-agent";
+ packageName = "proxy-agent";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-2.0.0.tgz";
+ sha1 = "57eb5347aa805d74ec681cb25649dba39c933499";
+ };
+ };
+ "proxy-from-env-1.0.0" = {
+ name = "proxy-from-env";
+ packageName = "proxy-from-env";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz";
+ sha1 = "33c50398f70ea7eb96d21f7b817630a55791c7ee";
+ };
+ };
+ "proxy-middleware-0.15.0" = {
+ name = "proxy-middleware";
+ packageName = "proxy-middleware";
+ version = "0.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.15.0.tgz";
+ sha1 = "a3fdf1befb730f951965872ac2f6074c61477a56";
+ };
+ };
+ "prr-0.0.0" = {
+ name = "prr";
+ packageName = "prr";
version = "0.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz";
- sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce";
+ url = "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz";
+ sha1 = "1a84b85908325501411853d0081ee3fa86e2926a";
};
};
- "node-abi-2.1.2" = {
- name = "node-abi";
- packageName = "node-abi";
- version = "2.1.2";
+ "prr-1.0.1" = {
+ name = "prr";
+ packageName = "prr";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-abi/-/node-abi-2.1.2.tgz";
- sha512 = "1sd6l8zqa18mlzackwy8vns51zjp8xyrd97nc514b0yvndd0y0wsyx2q9h8zr0k9kra5ys1yq75ggkv5av69cyzxji19rdvr5pjsrc6";
+ url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz";
+ sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
};
};
- "noop-logger-0.1.1" = {
- name = "noop-logger";
- packageName = "noop-logger";
- version = "0.1.1";
+ "ps-tree-0.0.3" = {
+ name = "ps-tree";
+ packageName = "ps-tree";
+ version = "0.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz";
- sha1 = "94a2b1633c4f1317553007d8966fd0e841b6a4c2";
+ url = "https://registry.npmjs.org/ps-tree/-/ps-tree-0.0.3.tgz";
+ sha1 = "dbf8d752a7fe22fa7d58635689499610e9276ddc";
};
};
- "simple-get-1.4.3" = {
- name = "simple-get";
- packageName = "simple-get";
- version = "1.4.3";
+ "ps-tree-1.1.0" = {
+ name = "ps-tree";
+ packageName = "ps-tree";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-get/-/simple-get-1.4.3.tgz";
- sha1 = "e9755eda407e96da40c5e5158c9ea37b33becbeb";
+ url = "https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz";
+ sha1 = "b421b24140d6203f1ed3c76996b4427b08e8c014";
};
};
- "tar-fs-1.16.0" = {
- name = "tar-fs";
- packageName = "tar-fs";
- version = "1.16.0";
+ "pseudomap-1.0.2" = {
+ name = "pseudomap";
+ packageName = "pseudomap";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.0.tgz";
- sha512 = "1i39d75rgrl2a3v3x65w7bz6az06sg7xdvp7j9zk5bqilj5znclmr7r5n9l6la6nkqikn4lkhnfrgp4hzbvp6ph77nn53g6zvmdpni3";
+ url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
+ sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
+ };
+ };
+ "pstree.remy-1.1.0" = {
+ name = "pstree.remy";
+ packageName = "pstree.remy";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.0.tgz";
+ sha512 = "3jqj1qpjdy5lizvm5mir14vqzzqgaim2yl0iwa164ps6mlp20liyaid1mhr62k23dg0zbkk11zcnzk56d0xvzy9ddbdfmjcnjy3k4mb";
+ };
+ };
+ "public-encrypt-4.0.0" = {
+ name = "public-encrypt";
+ packageName = "public-encrypt";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz";
+ sha1 = "39f699f3a46560dd5ebacbca693caf7c65c18cc6";
+ };
+ };
+ "pug-2.0.0-rc.4" = {
+ name = "pug";
+ packageName = "pug";
+ version = "2.0.0-rc.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug/-/pug-2.0.0-rc.4.tgz";
+ sha512 = "1fbygi6jg8awam3agrc63yjlgxk8vfpnym1ql4dikclikp3kdrxfpfgdywadidzzic33b9fdqnwqy6ag82m4x6kmgl644zsz2ig3gj8";
+ };
+ };
+ "pug-attrs-2.0.2" = {
+ name = "pug-attrs";
+ packageName = "pug-attrs";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-attrs/-/pug-attrs-2.0.2.tgz";
+ sha1 = "8be2b2225568ffa75d1b866982bff9f4111affcb";
};
};
"pug-code-gen-2.0.0" = {
@@ -22378,6 +19698,15 @@ let
sha512 = "1b9phnpcwd902482wvyql8a4h9wr1fw5idsjvg14bjvkmvxharb8m2ca25rj2f0s4i9sdldp2fj02i5933qys4921r9p7w97wjj52hk";
};
};
+ "pug-error-1.3.2" = {
+ name = "pug-error";
+ packageName = "pug-error";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pug-error/-/pug-error-1.3.2.tgz";
+ sha1 = "53ae7d9d29bb03cf564493a026109f54c47f5f26";
+ };
+ };
"pug-filters-2.1.5" = {
name = "pug-filters";
packageName = "pug-filters";
@@ -22441,78 +19770,6 @@ let
sha1 = "d313afa01bcc374980e1399e23ebf2eb9bdc8513";
};
};
- "constantinople-3.1.0" = {
- name = "constantinople";
- packageName = "constantinople";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/constantinople/-/constantinople-3.1.0.tgz";
- sha1 = "7569caa8aa3f8d5935d62e1fa96f9f702cd81c79";
- };
- };
- "doctypes-1.1.0" = {
- name = "doctypes";
- packageName = "doctypes";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz";
- sha1 = "ea80b106a87538774e8a3a4a5afe293de489e0a9";
- };
- };
- "js-stringify-1.0.2" = {
- name = "js-stringify";
- packageName = "js-stringify";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz";
- sha1 = "1736fddfd9724f28a3682adc6230ae7e4e9679db";
- };
- };
- "pug-attrs-2.0.2" = {
- name = "pug-attrs";
- packageName = "pug-attrs";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-attrs/-/pug-attrs-2.0.2.tgz";
- sha1 = "8be2b2225568ffa75d1b866982bff9f4111affcb";
- };
- };
- "pug-error-1.3.2" = {
- name = "pug-error";
- packageName = "pug-error";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pug-error/-/pug-error-1.3.2.tgz";
- sha1 = "53ae7d9d29bb03cf564493a026109f54c47f5f26";
- };
- };
- "with-5.1.1" = {
- name = "with";
- packageName = "with";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/with/-/with-5.1.1.tgz";
- sha1 = "fa4daa92daf32c4ea94ed453c81f04686b575dfe";
- };
- };
- "is-expression-2.1.0" = {
- name = "is-expression";
- packageName = "is-expression";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-expression/-/is-expression-2.1.0.tgz";
- sha1 = "91be9d47debcfef077977e9722be6dcfb4465ef0";
- };
- };
- "acorn-globals-3.1.0" = {
- name = "acorn-globals";
- packageName = "acorn-globals";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz";
- sha1 = "fd8270f71fbb4996b004fa880ee5d46573a731bf";
- };
- };
"pug-walk-1.1.5" = {
name = "pug-walk";
packageName = "pug-walk";
@@ -22522,283 +19779,211 @@ let
sha512 = "1418rf52jpq3k5l26drb11156l945688pjpia6njqrxzgffjb2rric213vrqigglhmhwc0r57zsmlknnwvhg5w9nh025b6yapb4g6dc";
};
};
- "jstransformer-1.0.0" = {
- name = "jstransformer";
- packageName = "jstransformer";
- version = "1.0.0";
+ "pull-cat-1.1.11" = {
+ name = "pull-cat";
+ packageName = "pull-cat";
+ version = "1.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz";
- sha1 = "ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3";
+ url = "https://registry.npmjs.org/pull-cat/-/pull-cat-1.1.11.tgz";
+ sha1 = "b642dd1255da376a706b6db4fa962f5fdb74c31b";
};
};
- "character-parser-2.2.0" = {
- name = "character-parser";
- packageName = "character-parser";
- version = "2.2.0";
+ "pull-level-2.0.3" = {
+ name = "pull-level";
+ packageName = "pull-level";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz";
- sha1 = "c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0";
+ url = "https://registry.npmjs.org/pull-level/-/pull-level-2.0.3.tgz";
+ sha1 = "9500635e257945d6feede185f5d7a24773455b17";
};
};
- "is-expression-3.0.0" = {
- name = "is-expression";
- packageName = "is-expression";
- version = "3.0.0";
+ "pull-live-1.0.1" = {
+ name = "pull-live";
+ packageName = "pull-live";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-expression/-/is-expression-3.0.0.tgz";
- sha1 = "39acaa6be7fd1f3471dc42c7416e61c24317ac9f";
+ url = "https://registry.npmjs.org/pull-live/-/pull-live-1.0.1.tgz";
+ sha1 = "a4ecee01e330155e9124bbbcf4761f21b38f51f5";
};
};
- "is-regex-1.0.4" = {
- name = "is-regex";
- packageName = "is-regex";
- version = "1.0.4";
+ "pull-pushable-2.1.2" = {
+ name = "pull-pushable";
+ packageName = "pull-pushable";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz";
- sha1 = "5517489b547091b0930e095654ced25ee97e9491";
+ url = "https://registry.npmjs.org/pull-pushable/-/pull-pushable-2.1.2.tgz";
+ sha1 = "3fe15b8f7eec89f3972d238bc04890c9405a6dbb";
};
};
- "token-stream-0.0.1" = {
- name = "token-stream";
- packageName = "token-stream";
- version = "0.0.1";
+ "pull-stream-3.6.1" = {
+ name = "pull-stream";
+ packageName = "pull-stream";
+ version = "3.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/token-stream/-/token-stream-0.0.1.tgz";
- sha1 = "ceeefc717a76c4316f126d0b9dbaa55d7e7df01a";
+ url = "https://registry.npmjs.org/pull-stream/-/pull-stream-3.6.1.tgz";
+ sha1 = "c5c2ae4a51246efeebcc65c0412a3d725a92ce00";
};
};
- "commoner-0.10.8" = {
- name = "commoner";
- packageName = "commoner";
- version = "0.10.8";
+ "pull-window-2.1.4" = {
+ name = "pull-window";
+ packageName = "pull-window";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/commoner/-/commoner-0.10.8.tgz";
- sha1 = "34fc3672cd24393e8bb47e70caa0293811f4f2c5";
+ url = "https://registry.npmjs.org/pull-window/-/pull-window-2.1.4.tgz";
+ sha1 = "fc3b86feebd1920c7ae297691e23f705f88552f0";
};
};
- "jstransform-10.1.0" = {
- name = "jstransform";
- packageName = "jstransform";
- version = "10.1.0";
+ "pump-0.3.5" = {
+ name = "pump";
+ packageName = "pump";
+ version = "0.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/jstransform/-/jstransform-10.1.0.tgz";
- sha1 = "b4c49bf63f162c108b0348399a8737c713b0a83a";
+ url = "https://registry.npmjs.org/pump/-/pump-0.3.5.tgz";
+ sha1 = "ae5ff8c1f93ed87adc6530a97565b126f585454b";
};
};
- "recast-0.11.23" = {
- name = "recast";
- packageName = "recast";
- version = "0.11.23";
+ "pump-1.0.3" = {
+ name = "pump";
+ packageName = "pump";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
- sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
+ url = "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz";
+ sha512 = "2mj8bx34brvh97wd2xcn5phgyd2wh3l1ma2xfd0m53yf68w1izp46pmz0s9az5f36mhlvl0mvfd6hp5abhi75fhyrz9wyx6jnx0jkgj";
};
};
- "ast-types-0.9.6" = {
- name = "ast-types";
- packageName = "ast-types";
- version = "0.9.6";
+ "pump-2.0.1" = {
+ name = "pump";
+ packageName = "pump";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz";
- sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
+ url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz";
+ sha512 = "288hcmlwdnqda84ylx9cv413ic0r59k0dp71hy7a200jsb7h1y63277jwdp1jdp13c1b3pl6g2gzr5gjv9p72f5sp7w3p0d34swrqxf";
};
};
- "base62-0.1.1" = {
- name = "base62";
- packageName = "base62";
- version = "0.1.1";
+ "pumpify-1.4.0" = {
+ name = "pumpify";
+ packageName = "pumpify";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/base62/-/base62-0.1.1.tgz";
- sha1 = "7b4174c2f94449753b11c2651c083da841a7b084";
+ url = "https://registry.npmjs.org/pumpify/-/pumpify-1.4.0.tgz";
+ sha512 = "1h37biy199n445y10vpyiswwcxv8zigfqp0b1xwgbyjq51f2dhjn1pcggjc4j5ccbd64l1ivfi0bqinx4m5clcawvwggy7jv93qsjfs";
};
};
- "esprima-fb-13001.1001.0-dev-harmony-fb" = {
- name = "esprima-fb";
- packageName = "esprima-fb";
- version = "13001.1001.0-dev-harmony-fb";
- src = fetchurl {
- url = "https://registry.npmjs.org/esprima-fb/-/esprima-fb-13001.1001.0-dev-harmony-fb.tgz";
- sha1 = "633acdb40d9bd4db8a1c1d68c06a942959fad2b0";
- };
- };
- "source-map-0.1.31" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.1.31";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.1.31.tgz";
- sha1 = "9f704d0d69d9e138a81badf6ebb4fde33d151c61";
- };
- };
- "aws-sdk-1.18.0" = {
- name = "aws-sdk";
- packageName = "aws-sdk";
- version = "1.18.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-1.18.0.tgz";
- sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
- };
- };
- "commander-2.0.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz";
- sha1 = "d1b86f901f8b64bd941bdeadaf924530393be928";
- };
- };
- "http-auth-2.0.7" = {
- name = "http-auth";
- packageName = "http-auth";
- version = "2.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-auth/-/http-auth-2.0.7.tgz";
- sha1 = "aa1a61a4d6baae9d64436c6f0ef0f4de85c430e3";
- };
- };
- "express-3.4.4" = {
- name = "express";
- packageName = "express";
- version = "3.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-3.4.4.tgz";
- sha1 = "0b63ae626c96b71b78d13dfce079c10351635a86";
- };
- };
- "everyauth-0.4.5" = {
- name = "everyauth";
- packageName = "everyauth";
- version = "0.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/everyauth/-/everyauth-0.4.5.tgz";
- sha1 = "282d358439d91c30fb4aa2320dc362edac7dd189";
- };
- };
- "string-1.6.1" = {
- name = "string";
- packageName = "string";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/string/-/string-1.6.1.tgz";
- sha1 = "eabe0956da7a8291c6de7486f7b35e58d031cd55";
- };
- };
- "util-0.4.9" = {
- name = "util";
- packageName = "util";
- version = "0.4.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/util/-/util-0.4.9.tgz";
- sha1 = "d95d5830d2328ec17dee3c80bfc50c33562b75a3";
- };
- };
- "crypto-0.0.3" = {
- name = "crypto";
- packageName = "crypto";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/crypto/-/crypto-0.0.3.tgz";
- sha1 = "470a81b86be4c5ee17acc8207a1f5315ae20dbb0";
- };
- };
- "xml2js-0.2.4" = {
- name = "xml2js";
- packageName = "xml2js";
- version = "0.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.4.tgz";
- sha1 = "9a5b577fa1e6cdf8923d5e1372f7a3188436e44d";
- };
- };
- "xmlbuilder-0.4.2" = {
- name = "xmlbuilder";
- packageName = "xmlbuilder";
- version = "0.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz";
- sha1 = "1776d65f3fdbad470a08d8604cdeb1c4e540ff83";
- };
- };
- "coffee-script-1.6.3" = {
- name = "coffee-script";
- packageName = "coffee-script";
- version = "1.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.6.3.tgz";
- sha1 = "6355d32cf1b04cdff6b484e5e711782b2f0c39be";
- };
- };
- "node-uuid-1.4.1" = {
- name = "node-uuid";
- packageName = "node-uuid";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.1.tgz";
- sha1 = "39aef510e5889a3dca9c895b506c73aae1bac048";
- };
- };
- "connect-2.11.0" = {
- name = "connect";
- packageName = "connect";
- version = "2.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-2.11.0.tgz";
- sha1 = "9991ce09ff9b85d9ead27f9d41d0b2a2df2f9284";
- };
- };
- "commander-1.3.2" = {
- name = "commander";
- packageName = "commander";
+ "punycode-1.3.2" = {
+ name = "punycode";
+ packageName = "punycode";
version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.3.2.tgz";
- sha1 = "8a8f30ec670a6fdd64af52f1914b907d79ead5b5";
+ url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz";
+ sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d";
};
};
- "cookie-0.1.0" = {
- name = "cookie";
- packageName = "cookie";
- version = "0.1.0";
+ "punycode-1.4.1" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cookie/-/cookie-0.1.0.tgz";
- sha1 = "90eb469ddce905c866de687efc43131d8801f9d0";
+ url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
+ sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
};
};
- "buffer-crc32-0.2.1" = {
- name = "buffer-crc32";
- packageName = "buffer-crc32";
- version = "0.2.1";
+ "punycode-2.1.0" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz";
- sha1 = "be3e5382fc02b6d6324956ac1af98aa98b08534c";
+ url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz";
+ sha1 = "5f863edc89b96db09074bad7947bf09056ca4e7d";
};
};
- "fresh-0.2.0" = {
- name = "fresh";
- packageName = "fresh";
- version = "0.2.0";
+ "q-0.9.7" = {
+ name = "q";
+ packageName = "q";
+ version = "0.9.7";
src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.2.0.tgz";
- sha1 = "bfd9402cf3df12c4a4c310c79f99a3dde13d34a7";
+ url = "https://registry.npmjs.org/q/-/q-0.9.7.tgz";
+ sha1 = "4de2e6cb3b29088c9e4cbc03bf9d42fb96ce2f75";
};
};
- "methods-0.1.0" = {
- name = "methods";
- packageName = "methods";
- version = "0.1.0";
+ "q-1.0.1" = {
+ name = "q";
+ packageName = "q";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/methods/-/methods-0.1.0.tgz";
- sha1 = "335d429eefd21b7bacf2e9c922a8d2bd14a30e4f";
+ url = "https://registry.npmjs.org/q/-/q-1.0.1.tgz";
+ sha1 = "11872aeedee89268110b10a718448ffb10112a14";
};
};
- "send-0.1.4" = {
- name = "send";
- packageName = "send";
- version = "0.1.4";
+ "q-1.4.1" = {
+ name = "q";
+ packageName = "q";
+ version = "1.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.1.4.tgz";
- sha1 = "be70d8d1be01de61821af13780b50345a4f71abd";
+ url = "https://registry.npmjs.org/q/-/q-1.4.1.tgz";
+ sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e";
+ };
+ };
+ "q-1.5.1" = {
+ name = "q";
+ packageName = "q";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz";
+ sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7";
+ };
+ };
+ "q-2.0.3" = {
+ name = "q";
+ packageName = "q";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/q/-/q-2.0.3.tgz";
+ sha1 = "75b8db0255a1a5af82f58c3f3aaa1efec7d0d134";
+ };
+ };
+ "qap-3.3.1" = {
+ name = "qap";
+ packageName = "qap";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qap/-/qap-3.3.1.tgz";
+ sha1 = "11f9e8fa8890fe7cb99210c0f44d0613b7372cac";
+ };
+ };
+ "qjobs-1.1.5" = {
+ name = "qjobs";
+ packageName = "qjobs";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qjobs/-/qjobs-1.1.5.tgz";
+ sha1 = "659de9f2cf8dcc27a1481276f205377272382e73";
+ };
+ };
+ "qs-0.4.2" = {
+ name = "qs";
+ packageName = "qs";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-0.4.2.tgz";
+ sha1 = "3cac4c861e371a8c9c4770ac23cda8de639b8e5f";
+ };
+ };
+ "qs-0.5.1" = {
+ name = "qs";
+ packageName = "qs";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-0.5.1.tgz";
+ sha1 = "9f6bf5d9ac6c76384e95d36d15b48980e5e4add0";
+ };
+ };
+ "qs-0.5.6" = {
+ name = "qs";
+ packageName = "qs";
+ version = "0.5.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz";
+ sha1 = "31b1ad058567651c526921506b9a8793911a0384";
};
};
"qs-0.6.5" = {
@@ -22810,944 +19995,22 @@ let
sha1 = "294b268e4b0d4250f6dde19b3b8b34935dff14ef";
};
};
- "bytes-0.2.1" = {
- name = "bytes";
- packageName = "bytes";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-0.2.1.tgz";
- sha1 = "555b08abcb063f8975905302523e4cd4ffdfdf31";
- };
- };
- "raw-body-0.0.3" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-0.0.3.tgz";
- sha1 = "0cb3eb22ced1ca607d32dd8fd94a6eb383f3eb8a";
- };
- };
- "negotiator-0.3.0" = {
- name = "negotiator";
- packageName = "negotiator";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/negotiator/-/negotiator-0.3.0.tgz";
- sha1 = "706d692efeddf574d57ea9fb1ab89a4fa7ee8f60";
- };
- };
- "multiparty-2.2.0" = {
- name = "multiparty";
- packageName = "multiparty";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/multiparty/-/multiparty-2.2.0.tgz";
- sha1 = "a567c2af000ad22dc8f2a653d91978ae1f5316f4";
- };
- };
- "oauth-https://github.com/ciaranj/node-oauth/tarball/master" = {
- name = "oauth";
- packageName = "oauth";
- version = "0.9.15";
- src = fetchurl {
- name = "oauth-0.9.15.tar.gz";
- url = https://codeload.github.com/ciaranj/node-oauth/legacy.tar.gz/master;
- sha256 = "9341c28772841acde618c778e85e381976f425824b816100792f697e68aec947";
- };
- };
- "connect-2.3.9" = {
- name = "connect";
- packageName = "connect";
- version = "2.3.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/connect/-/connect-2.3.9.tgz";
- sha1 = "4d26ddc485c32e5a1cf1b35854823b4720d25a52";
- };
- };
- "openid-2.0.6" = {
- name = "openid";
- packageName = "openid";
- version = "2.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/openid/-/openid-2.0.6.tgz";
- sha1 = "707375e59ab9f73025899727679b20328171c9aa";
- };
- };
- "node-swt-0.1.1" = {
- name = "node-swt";
- packageName = "node-swt";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-swt/-/node-swt-0.1.1.tgz";
- sha1 = "af0903825784be553b93dbae57d99d59060585dd";
- };
- };
- "node-wsfederation-0.1.1" = {
- name = "node-wsfederation";
- packageName = "node-wsfederation";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-wsfederation/-/node-wsfederation-0.1.1.tgz";
- sha1 = "9abf1dd3b20a3ab0a38f899c882c218d734e8a7b";
- };
- };
- "debug-0.5.0" = {
- name = "debug";
- packageName = "debug";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-0.5.0.tgz";
- sha1 = "9d48c946fb7d7d59807ffe07822f515fd76d7a9e";
- };
- };
- "crc-0.2.0" = {
- name = "crc";
- packageName = "crc";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/crc/-/crc-0.2.0.tgz";
- sha1 = "f4486b9bf0a12df83c3fca14e31e030fdabd9454";
- };
- };
- "cookie-0.0.4" = {
- name = "cookie";
- packageName = "cookie";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/cookie/-/cookie-0.0.4.tgz";
- sha1 = "5456bd47aee2666eac976ea80a6105940483fe98";
- };
- };
- "bytes-0.1.0" = {
- name = "bytes";
- packageName = "bytes";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bytes/-/bytes-0.1.0.tgz";
- sha1 = "c574812228126d6369d1576925a8579db3f8e5a2";
- };
- };
- "send-0.0.3" = {
- name = "send";
- packageName = "send";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.0.3.tgz";
- sha1 = "4d5f843edf9d65dac31c8a5d2672c179ecb67184";
- };
- };
- "events.node-0.4.9" = {
- name = "events.node";
- packageName = "events.node";
- version = "0.4.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/events.node/-/events.node-0.4.9.tgz";
- sha1 = "82998ea749501145fd2da7cf8ecbe6420fac02a4";
- };
- };
- "args-3.0.8" = {
- name = "args";
- packageName = "args";
- version = "3.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/args/-/args-3.0.8.tgz";
- sha512 = "26h2nssgwzgc9y1mywgjcx2rbbkxlpx23zj9gh81bayjr8522zi78rwrhpkkqwh7dwqx6mv8gphcx8zyv3vm8hxw5s89kjlzm66k7y9";
- };
- };
- "detect-port-1.2.2" = {
- name = "detect-port";
- packageName = "detect-port";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-port/-/detect-port-1.2.2.tgz";
- sha512 = "2q44vf4c9rqz21wc7a1pj1xz6pa2s7sp2fz9zxksmz679xh8sbfzyzhgkkbyznsgbnif013n0a6387dppcs370gdkc0dhh2jgsgv8fk";
- };
- };
- "filesize-3.5.11" = {
- name = "filesize";
- packageName = "filesize";
- version = "3.5.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/filesize/-/filesize-3.5.11.tgz";
- sha512 = "3bg35im21jf6dhyrcajczdjl3rjm5mphdhansyfbpzm067vv3jp91n43nrzxf8q6nx3b5vkn2my1rskyp4pmg91xzdq01lawyifazk4";
- };
- };
- "fs-extra-5.0.0" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz";
- sha512 = "1ssfaw678600iy330a73gqk65ns22sz4ng7jwndj1fxahj8qddrsy2w4mr4ikx28qhdj8rf49n428qnl657bbpag9r3g3qv2vhyd8zb";
- };
- };
- "micro-9.0.2" = {
- name = "micro";
- packageName = "micro";
- version = "9.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/micro/-/micro-9.0.2.tgz";
- sha512 = "1d0ybv5avz4np56a916wv9zwc42gn3y68hibiwg8ps0n23hp3x9zkb631mny9jn2i7imybhzh6fpic1hr6q08lwawf4wy03c4nl680n";
- };
- };
- "micro-compress-1.0.0" = {
- name = "micro-compress";
- packageName = "micro-compress";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/micro-compress/-/micro-compress-1.0.0.tgz";
- sha1 = "53f5a80b4ad0320ca165a559b6e3df145d4f704f";
- };
- };
- "node-version-1.1.0" = {
- name = "node-version";
- packageName = "node-version";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-version/-/node-version-1.1.0.tgz";
- sha512 = "0kc13ygbwm9zdjqv43ccb3mvfhmkwack6ziqcadw58b0f8ssv8h2gdr0br8xaqxpxp0h6pz9vm28yns03nl1vbqbgdankcsb127cmdp";
- };
- };
- "openssl-self-signed-certificate-1.1.6" = {
- name = "openssl-self-signed-certificate";
- packageName = "openssl-self-signed-certificate";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/openssl-self-signed-certificate/-/openssl-self-signed-certificate-1.1.6.tgz";
- sha1 = "9d3a4776b1a57e9847350392114ad2f915a83dd4";
- };
- };
- "path-type-3.0.0" = {
- name = "path-type";
- packageName = "path-type";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz";
- sha512 = "2z1csf4c3fmlwl0ahk533z5zqkjdf36ccfx11kakl9xran9f5asxm4cxjq4lx1kwqdp8gki786cgpldvgrkvfc7pcvh07j5ssqm8rjg";
- };
- };
- "mri-1.1.0" = {
- name = "mri";
- packageName = "mri";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mri/-/mri-1.1.0.tgz";
- sha1 = "5c0a3f29c8ccffbbb1ec941dcec09d71fa32f36a";
- };
- };
- "address-1.0.3" = {
- name = "address";
- packageName = "address";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/address/-/address-1.0.3.tgz";
- sha512 = "27dii2i2aw9z3pw09110914532z5dfywxp8gbrfr14737cwy8m0jysam3abmfsbp8g51sd02ys57j5snwly3zfd0vrbli4109rni7ng";
- };
- };
- "bcrypt-nodejs-0.0.3" = {
- name = "bcrypt-nodejs";
- packageName = "bcrypt-nodejs";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt-nodejs/-/bcrypt-nodejs-0.0.3.tgz";
- sha1 = "c60917f26dc235661566c681061c303c2b28842b";
- };
- };
- "cheerio-0.17.0" = {
- name = "cheerio";
- packageName = "cheerio";
- version = "0.17.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cheerio/-/cheerio-0.17.0.tgz";
- sha1 = "fa5ae42cc60121133d296d0b46d983215f7268ea";
- };
- };
- "moment-2.7.0" = {
- name = "moment";
- packageName = "moment";
- version = "2.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.7.0.tgz";
- sha1 = "359a19ec634cda3c706c8709adda54c0329aaec4";
- };
- };
- "slate-irc-0.7.3" = {
- name = "slate-irc";
- packageName = "slate-irc";
- version = "0.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/slate-irc/-/slate-irc-0.7.3.tgz";
- sha1 = "8d01f2bc809e00a5b2faca7d8d3130d155422a77";
- };
- };
- "socket.io-1.0.6" = {
- name = "socket.io";
- packageName = "socket.io";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-1.0.6.tgz";
- sha1 = "b566532888dae3ac9058a12f294015ebdfa8084a";
- };
- };
- "CSSselect-0.4.1" = {
- name = "CSSselect";
- packageName = "CSSselect";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/CSSselect/-/CSSselect-0.4.1.tgz";
- sha1 = "f8ab7e1f8418ce63cda6eb7bd778a85d7ec492b2";
- };
- };
- "htmlparser2-3.7.3" = {
- name = "htmlparser2";
- packageName = "htmlparser2";
- version = "3.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.7.3.tgz";
- sha1 = "6a64c77637c08c6f30ec2a8157a53333be7cb05e";
- };
- };
- "dom-serializer-0.0.1" = {
- name = "dom-serializer";
- packageName = "dom-serializer";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.0.1.tgz";
- sha1 = "9589827f1e32d22c37c829adabd59b3247af8eaf";
- };
- };
- "CSSwhat-0.4.7" = {
- name = "CSSwhat";
- packageName = "CSSwhat";
- version = "0.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/CSSwhat/-/CSSwhat-0.4.7.tgz";
- sha1 = "867da0ff39f778613242c44cfea83f0aa4ebdf9b";
- };
- };
- "domutils-1.4.3" = {
- name = "domutils";
- packageName = "domutils";
- version = "1.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/domutils/-/domutils-1.4.3.tgz";
- sha1 = "0865513796c6b306031850e175516baf80b72a6f";
- };
- };
- "domhandler-2.2.1" = {
- name = "domhandler";
- packageName = "domhandler";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/domhandler/-/domhandler-2.2.1.tgz";
- sha1 = "59df9dcd227e808b365ae73e1f6684ac3d946fc2";
- };
- };
- "irc-replies-2.0.1" = {
- name = "irc-replies";
- packageName = "irc-replies";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/irc-replies/-/irc-replies-2.0.1.tgz";
- sha1 = "5bf4125fb6ec0f3929a89647b26e653232942b79";
- };
- };
- "slate-irc-parser-0.0.2" = {
- name = "slate-irc-parser";
- packageName = "slate-irc-parser";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/slate-irc-parser/-/slate-irc-parser-0.0.2.tgz";
- sha1 = "0c5f8f20d817bb85329da9fca135c66b05947d80";
- };
- };
- "linewise-0.0.3" = {
- name = "linewise";
- packageName = "linewise";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/linewise/-/linewise-0.0.3.tgz";
- sha1 = "bf967ba0dd31faaf09ab5bdb3676ad7f2aa18493";
- };
- };
- "engine.io-1.3.1" = {
- name = "engine.io";
- packageName = "engine.io";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io/-/engine.io-1.3.1.tgz";
- sha1 = "2d968308fffae5d17f5209b6775246e90d8a705e";
- };
- };
- "socket.io-parser-2.2.0" = {
- name = "socket.io-parser";
- packageName = "socket.io-parser";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.0.tgz";
- sha1 = "2609601f59e6a7fab436a53be3d333fbbfcbd30a";
- };
- };
- "socket.io-client-1.0.6" = {
- name = "socket.io-client";
- packageName = "socket.io-client";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.0.6.tgz";
- sha1 = "c86cb3e507ab2f96da4500bd34fcf46a1e9dfe5e";
- };
- };
- "socket.io-adapter-0.2.0" = {
- name = "socket.io-adapter";
- packageName = "socket.io-adapter";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.2.0.tgz";
- sha1 = "bd39329b8961371787e24f345b074ec9cf000e33";
- };
- };
- "has-binary-data-0.1.1" = {
- name = "has-binary-data";
- packageName = "has-binary-data";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-binary-data/-/has-binary-data-0.1.1.tgz";
- sha1 = "e10749fb87828a52df96f4086587eb4a03966439";
- };
- };
- "debug-0.6.0" = {
- name = "debug";
- packageName = "debug";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-0.6.0.tgz";
- sha1 = "ce9d5d025d5294b3f0748a494bebaf3c9fd8734f";
- };
- };
- "ws-0.4.31" = {
- name = "ws";
- packageName = "ws";
- version = "0.4.31";
- src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-0.4.31.tgz";
- sha1 = "5a4849e7a9ccd1ed5a81aeb4847c9fedf3122927";
- };
- };
- "engine.io-parser-1.0.6" = {
- name = "engine.io-parser";
- packageName = "engine.io-parser";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.0.6.tgz";
- sha1 = "d38813143a411cb3b914132ab05bf99e6f7a248e";
- };
- };
- "nan-0.3.2" = {
- name = "nan";
- packageName = "nan";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-0.3.2.tgz";
- sha1 = "0df1935cab15369075ef160ad2894107aa14dc2d";
- };
- };
- "base64-arraybuffer-0.1.2" = {
- name = "base64-arraybuffer";
- packageName = "base64-arraybuffer";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz";
- sha1 = "474df4a9f2da24e05df3158c3b1db3c3cd46a154";
- };
- };
- "after-0.8.1" = {
- name = "after";
- packageName = "after";
- version = "0.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/after/-/after-0.8.1.tgz";
- sha1 = "ab5d4fb883f596816d3515f8f791c0af486dd627";
- };
- };
- "blob-0.0.2" = {
- name = "blob";
- packageName = "blob";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/blob/-/blob-0.0.2.tgz";
- sha1 = "b89562bd6994af95ba1e812155536333aa23cf24";
- };
- };
- "utf8-2.0.0" = {
- name = "utf8";
- packageName = "utf8";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/utf8/-/utf8-2.0.0.tgz";
- sha1 = "79ce59eced874809cab9a71fc7102c7d45d4118d";
- };
- };
- "json3-3.2.6" = {
- name = "json3";
- packageName = "json3";
- version = "3.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/json3/-/json3-3.2.6.tgz";
- sha1 = "f6efc93c06a04de9aec53053df2559bb19e2038b";
- };
- };
- "emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" = {
- name = "emitter";
- packageName = "emitter";
- version = "1.0.1";
- src = fetchurl {
- name = "emitter-1.0.1.tar.gz";
- url = https://codeload.github.com/component/emitter/tar.gz/1.0.1;
- sha256 = "0eae744826723877457f7a7ac7f31d68a5a060673b3a883f6a8e325bf48f313d";
- };
- };
- "engine.io-client-1.3.1" = {
- name = "engine.io-client";
- packageName = "engine.io-client";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.3.1.tgz";
- sha1 = "1c5a65d5c5af6d04b44c22c3dbcd95c39ed1c989";
- };
- };
- "parseuri-0.0.2" = {
- name = "parseuri";
- packageName = "parseuri";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.2.tgz";
- sha1 = "db41878f2d6964718be870b3140973d8093be156";
- };
- };
- "to-array-0.1.3" = {
- name = "to-array";
- packageName = "to-array";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz";
- sha1 = "d45dadc6363417f60f28474fea50ecddbb4f4991";
- };
- };
- "has-cors-1.0.3" = {
- name = "has-cors";
- packageName = "has-cors";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-cors/-/has-cors-1.0.3.tgz";
- sha1 = "502acb9b3104dac33dd2630eaf2f888b0baf4cb3";
- };
- };
- "xmlhttprequest-https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz" = {
- name = "xmlhttprequest";
- packageName = "xmlhttprequest";
- version = "1.5.0";
- src = fetchurl {
- name = "xmlhttprequest-1.5.0.tar.gz";
- url = https://codeload.github.com/LearnBoost/node-XMLHttpRequest/tar.gz/0f36d0b5ebc03d85f860d42a64ae9791e1daa433;
- sha256 = "28dd0394d85befe8be4e9cd9f6803102780c62cbb09298cb174b52ff9777624f";
- };
- };
- "parsejson-0.0.1" = {
- name = "parsejson";
- packageName = "parsejson";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parsejson/-/parsejson-0.0.1.tgz";
- sha1 = "9b10c6c0d825ab589e685153826de0a3ba278bcc";
- };
- };
- "parseqs-0.0.2" = {
- name = "parseqs";
- packageName = "parseqs";
- version = "0.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.2.tgz";
- sha1 = "9dfe70b2cddac388bde4f35b1f240fa58adbe6c7";
- };
- };
- "global-https://github.com/component/global/archive/v2.0.1.tar.gz" = {
- name = "global";
- packageName = "global";
- version = "2.0.1";
- src = fetchurl {
- name = "global-2.0.1.tar.gz";
- url = https://codeload.github.com/component/global/tar.gz/v2.0.1;
- sha256 = "42be02b7148745447f6ba21137c972ca82d2cad92d30d63bd4fc310623901785";
- };
- };
- "socket.io-parser-2.1.2" = {
- name = "socket.io-parser";
- packageName = "socket.io-parser";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.1.2.tgz";
- sha1 = "876655b9edd555c5bdf7301cedf30a436c67b8b0";
- };
- };
- "express-5.0.0-alpha.6" = {
- name = "express";
- packageName = "express";
- version = "5.0.0-alpha.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-5.0.0-alpha.6.tgz";
- sha1 = "85dc44d7e90d4809041407f388f239b5bd2f681e";
- };
- };
- "express-json5-0.1.0" = {
- name = "express-json5";
- packageName = "express-json5";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/express-json5/-/express-json5-0.1.0.tgz";
- sha1 = "114a514bd734b319e018a1bde337923cc455b836";
- };
- };
- "es6-shim-0.21.1" = {
- name = "es6-shim";
- packageName = "es6-shim";
- version = "0.21.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-shim/-/es6-shim-0.21.1.tgz";
- sha1 = "6621bce72e1ac80a6e1f002abd4e789f12489fd2";
- };
- };
- "handlebars-2.0.0" = {
- name = "handlebars";
- packageName = "handlebars";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/handlebars/-/handlebars-2.0.0.tgz";
- sha1 = "6e9d7f8514a3467fa5e9f82cc158ecfc1d5ac76f";
- };
- };
- "highlight.js-8.9.1" = {
- name = "highlight.js";
- packageName = "highlight.js";
- version = "8.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/highlight.js/-/highlight.js-8.9.1.tgz";
- sha1 = "b8a9c5493212a9392f0222b649c9611497ebfb88";
- };
- };
- "lunr-0.7.2" = {
- name = "lunr";
- packageName = "lunr";
- version = "0.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lunr/-/lunr-0.7.2.tgz";
- sha1 = "79a30e932e216cba163541ee37a3607c12cd7281";
- };
- };
- "render-readme-1.3.1" = {
- name = "render-readme";
- packageName = "render-readme";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/render-readme/-/render-readme-1.3.1.tgz";
- sha1 = "d2a98f9a87dd64fa73c6877ac5c45b0f6341a797";
- };
- };
- "sinopia-htpasswd-0.4.5" = {
- name = "sinopia-htpasswd";
- packageName = "sinopia-htpasswd";
- version = "0.4.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/sinopia-htpasswd/-/sinopia-htpasswd-0.4.5.tgz";
- sha1 = "2af824ae20eccb8f902325b1a2c27dd6619805c9";
- };
- };
- "fs-ext-0.6.0" = {
- name = "fs-ext";
- packageName = "fs-ext";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-ext/-/fs-ext-0.6.0.tgz";
- sha1 = "27d32a72e2e7c3c8001712a0f307f5f8d91dfc66";
- };
- };
- "crypt3-0.2.0" = {
- name = "crypt3";
- packageName = "crypt3";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/crypt3/-/crypt3-0.2.0.tgz";
- sha1 = "4bd28e0770fad421fc807745c1ef3010905b2332";
- };
- };
- "qs-6.5.0" = {
+ "qs-1.2.0" = {
name = "qs";
packageName = "qs";
- version = "6.5.0";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.5.0.tgz";
- sha512 = "2d5w08p3vr4l6rjcn5n5ph8g5wr0nzpypg1b7axvz3q3r9pp5jxanhywvd76wk76nqjcqb4p6n4l4ifjw8164bcahhs71kjdy6ladby";
+ url = "https://registry.npmjs.org/qs/-/qs-1.2.0.tgz";
+ sha1 = "ed079be28682147e6fd9a34cc2b0c1e0ec6453ee";
};
};
- "router-1.3.2" = {
- name = "router";
- packageName = "router";
- version = "1.3.2";
+ "qs-2.3.3" = {
+ name = "qs";
+ packageName = "qs";
+ version = "2.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/router/-/router-1.3.2.tgz";
- sha1 = "bfaa16888a5283d5ee40d999da7a9fa15296a60c";
- };
- };
- "send-0.15.6" = {
- name = "send";
- packageName = "send";
- version = "0.15.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.15.6.tgz";
- sha1 = "20f23a9c925b762ab82705fe2f9db252ace47e34";
- };
- };
- "serve-static-1.12.6" = {
- name = "serve-static";
- packageName = "serve-static";
- version = "1.12.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.12.6.tgz";
- sha1 = "b973773f63449934da54e5beba5e31d9f4211577";
- };
- };
- "raw-body-1.3.4" = {
- name = "raw-body";
- packageName = "raw-body";
- version = "1.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/raw-body/-/raw-body-1.3.4.tgz";
- sha1 = "ccc7ddfc46b72861cdd5bb433c840b70b6f27f54";
- };
- };
- "iconv-lite-0.4.8" = {
- name = "iconv-lite";
- packageName = "iconv-lite";
- version = "0.4.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz";
- sha1 = "c6019a7595f2cefca702eab694a010bcd9298d20";
- };
- };
- "uglify-js-2.3.6" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "2.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.3.6.tgz";
- sha1 = "fa0984770b428b7a9b2a8058f46355d14fef211a";
- };
- };
- "markdown-it-4.4.0" = {
- name = "markdown-it";
- packageName = "markdown-it";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-it/-/markdown-it-4.4.0.tgz";
- sha1 = "3df373dbea587a9a7fef3e56311b68908f75c414";
- };
- };
- "sanitize-html-1.16.3" = {
- name = "sanitize-html";
- packageName = "sanitize-html";
- version = "1.16.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.16.3.tgz";
- sha512 = "35k1grf7gik1bf6rrxjzsmfdqd5if41gw40hrn44awhzshd3izirkxg734gfrrliwwd7qa4z83l3fg5nq6lgjrm0cxx6z0cg4d0k42y";
- };
- };
- "linkify-it-1.2.4" = {
- name = "linkify-it";
- packageName = "linkify-it";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/linkify-it/-/linkify-it-1.2.4.tgz";
- sha1 = "0773526c317c8fd13bd534ee1d180ff88abf881a";
- };
- };
- "lodash.escaperegexp-4.1.2" = {
- name = "lodash.escaperegexp";
- packageName = "lodash.escaperegexp";
- version = "4.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz";
- sha1 = "64762c48618082518ac3df4ccf5d5886dae20347";
- };
- };
- "postcss-6.0.14" = {
- name = "postcss";
- packageName = "postcss";
- version = "6.0.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-6.0.14.tgz";
- sha512 = "2id33g6232s35n25daqrkz0bvzm2zmhlkfzmigkgia5q4jy9xg38spppmsdg0qswjankyi28wrbjsdwhczqfkx7h71gg8dmzz8p779l";
- };
- };
- "srcset-1.0.0" = {
- name = "srcset";
- packageName = "srcset";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/srcset/-/srcset-1.0.0.tgz";
- sha1 = "a5669de12b42f3b1d5e83ed03c71046fc48f41ef";
- };
- };
- "domutils-1.6.2" = {
- name = "domutils";
- packageName = "domutils";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/domutils/-/domutils-1.6.2.tgz";
- sha1 = "1958cc0b4c9426e9ed367fb1c8e854891b0fa3ff";
- };
- };
- "async-2.1.5" = {
- name = "async";
- packageName = "async";
- version = "2.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz";
- sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
- };
- };
- "assert-plus-0.1.5" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz";
- sha1 = "ee74009413002d84cec7219c6ac811812e723160";
- };
- };
- "lru-cache-2.2.0" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.0.tgz";
- sha1 = "ec2bba603f4c5bb3e7a1bf62ce1c1dbc1d474e08";
- };
- };
- "nopt-2.0.0" = {
- name = "nopt";
- packageName = "nopt";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz";
- sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d";
- };
- };
- "restify-4.0.3" = {
- name = "restify";
- packageName = "restify";
- version = "4.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/restify/-/restify-4.0.3.tgz";
- sha1 = "e1e5b7ad9d4f6aeacd20e28f44a045f26c146dbc";
- };
- };
- "bunyan-1.5.1" = {
- name = "bunyan";
- packageName = "bunyan";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bunyan/-/bunyan-1.5.1.tgz";
- sha1 = "5f6e7d44c43b952f56b0f41309e3ab12391b4e2d";
- };
- };
- "clone-0.1.6" = {
- name = "clone";
- packageName = "clone";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-0.1.6.tgz";
- sha1 = "4af2296d4a23a64168c2f5fb0a2aa65e80517000";
- };
- };
- "smartdc-auth-2.3.1" = {
- name = "smartdc-auth";
- packageName = "smartdc-auth";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/smartdc-auth/-/smartdc-auth-2.3.1.tgz";
- sha1 = "96568a565e9d9feb03b93a50651eee14d23adf44";
- };
- };
- "cmdln-3.2.1" = {
- name = "cmdln";
- packageName = "cmdln";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cmdln/-/cmdln-3.2.1.tgz";
- sha1 = "8d21967625b25ee35fca8e8453ccf10fccd04e45";
- };
- };
- "dashdash-1.7.3" = {
- name = "dashdash";
- packageName = "dashdash";
- version = "1.7.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/dashdash/-/dashdash-1.7.3.tgz";
- sha1 = "bf533fedaa455ed8fee11519ebfb9ad66170dcdf";
- };
- };
- "vasync-1.6.2" = {
- name = "vasync";
- packageName = "vasync";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vasync/-/vasync-1.6.2.tgz";
- sha1 = "568edcf40b2b5c35b1cc048cad085de4739703fb";
- };
- };
- "backoff-2.5.0" = {
- name = "backoff";
- packageName = "backoff";
- version = "2.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz";
- sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f";
- };
- };
- "csv-0.4.6" = {
- name = "csv";
- packageName = "csv";
- version = "0.4.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/csv/-/csv-0.4.6.tgz";
- sha1 = "8dbae7ddfdbaae62c1ea987c3e0f8a9ac737b73d";
- };
- };
- "escape-regexp-component-1.0.2" = {
- name = "escape-regexp-component";
- packageName = "escape-regexp-component";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/escape-regexp-component/-/escape-regexp-component-1.0.2.tgz";
- sha1 = "9c63b6d0b25ff2a88c3adbd18c5b61acc3b9faa2";
- };
- };
- "http-signature-0.11.0" = {
- name = "http-signature";
- packageName = "http-signature";
- version = "0.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-signature/-/http-signature-0.11.0.tgz";
- sha1 = "1796cf67a001ad5cd6849dca0991485f09089fe6";
- };
- };
- "keep-alive-agent-0.0.1" = {
- name = "keep-alive-agent";
- packageName = "keep-alive-agent";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz";
- sha1 = "44847ca394ce8d6b521ae85816bd64509942b385";
+ url = "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz";
+ sha1 = "e9e85adbe75da0bbe4c8e0476a086290f863b404";
};
};
"qs-3.1.0" = {
@@ -23759,1570 +20022,706 @@ let
sha1 = "d0e9ae745233a12dc43fb4f3055bba446261153c";
};
};
- "spdy-1.32.5" = {
- name = "spdy";
- packageName = "spdy";
- version = "1.32.5";
+ "qs-4.0.0" = {
+ name = "qs";
+ packageName = "qs";
+ version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/spdy/-/spdy-1.32.5.tgz";
- sha1 = "70eff23cde4e97d52a445f65afddcc5695eb5edb";
+ url = "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz";
+ sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607";
};
};
- "vasync-1.6.3" = {
- name = "vasync";
- packageName = "vasync";
- version = "1.6.3";
+ "qs-5.2.1" = {
+ name = "qs";
+ packageName = "qs";
+ version = "5.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vasync/-/vasync-1.6.3.tgz";
- sha1 = "4a69d7052a47f4ce85503d7641df1cbf40432a94";
+ url = "https://registry.npmjs.org/qs/-/qs-5.2.1.tgz";
+ sha1 = "801fee030e0b9450d6385adc48a4cc55b44aedfc";
};
};
- "dtrace-provider-0.6.0" = {
- name = "dtrace-provider";
- packageName = "dtrace-provider";
- version = "0.6.0";
+ "qs-6.2.3" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.6.0.tgz";
- sha1 = "0b078d5517937d873101452d9146737557b75e51";
+ url = "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz";
+ sha1 = "1cfcb25c10a9b2b483053ff39f5dfc9233908cfe";
};
};
- "precond-0.2.3" = {
- name = "precond";
- packageName = "precond";
- version = "0.2.3";
+ "qs-6.3.2" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz";
- sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac";
+ url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz";
+ sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c";
};
};
- "csv-generate-0.0.6" = {
- name = "csv-generate";
- packageName = "csv-generate";
- version = "0.0.6";
+ "qs-6.4.0" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/csv-generate/-/csv-generate-0.0.6.tgz";
- sha1 = "97e4e63ae46b21912cd9475bc31469d26f5ade66";
+ url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
+ sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
};
};
- "csv-parse-1.3.3" = {
- name = "csv-parse";
- packageName = "csv-parse";
- version = "1.3.3";
+ "qs-6.5.0" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/csv-parse/-/csv-parse-1.3.3.tgz";
- sha1 = "d1cfd8743c2f849a0abb2fd544db56695d19a490";
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.0.tgz";
+ sha512 = "2d5w08p3vr4l6rjcn5n5ph8g5wr0nzpypg1b7axvz3q3r9pp5jxanhywvd76wk76nqjcqb4p6n4l4ifjw8164bcahhs71kjdy6ladby";
};
};
- "stream-transform-0.1.2" = {
- name = "stream-transform";
- packageName = "stream-transform";
- version = "0.1.2";
+ "qs-6.5.1" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-transform/-/stream-transform-0.1.2.tgz";
- sha1 = "7d8e6b4e03ac4781778f8c79517501bfb0762a9f";
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz";
+ sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r";
};
};
- "csv-stringify-0.0.8" = {
- name = "csv-stringify";
- packageName = "csv-stringify";
- version = "0.0.8";
+ "qtdatastream-0.7.1" = {
+ name = "qtdatastream";
+ packageName = "qtdatastream";
+ version = "0.7.1";
src = fetchurl {
- url = "https://registry.npmjs.org/csv-stringify/-/csv-stringify-0.0.8.tgz";
- sha1 = "52cc3b3dfc197758c55ad325a95be85071f9e51b";
+ url = "https://registry.npmjs.org/qtdatastream/-/qtdatastream-0.7.1.tgz";
+ sha1 = "8085d390b4c19f7b02dee8a7cd873e2af58667b5";
};
};
- "ctype-0.5.3" = {
- name = "ctype";
- packageName = "ctype";
- version = "0.5.3";
+ "query-string-1.0.1" = {
+ name = "query-string";
+ packageName = "query-string";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz";
- sha1 = "82c18c2461f74114ef16c135224ad0b9144ca12f";
+ url = "https://registry.npmjs.org/query-string/-/query-string-1.0.1.tgz";
+ sha1 = "63ac953352499ad670a9681a75680f6bf3dd1faf";
};
};
- "verror-1.6.0" = {
- name = "verror";
- packageName = "verror";
- version = "1.6.0";
+ "query-string-5.0.1" = {
+ name = "query-string";
+ packageName = "query-string";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz";
- sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5";
+ url = "https://registry.npmjs.org/query-string/-/query-string-5.0.1.tgz";
+ sha512 = "0lcnspv96dv03600bgjxk2ypak8mysp77n47jkddpz6ldcgscwyan1akqjrddii4abb2brz6gr6yq9pcbdx63m9i16kk8m5028qrkv8";
};
};
- "extsprintf-1.2.0" = {
- name = "extsprintf";
- packageName = "extsprintf";
- version = "1.2.0";
+ "querystring-0.2.0" = {
+ name = "querystring";
+ packageName = "querystring";
+ version = "0.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz";
- sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529";
+ url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz";
+ sha1 = "b209849203bb25df820da756e747005878521620";
};
};
- "assert-plus-0.1.2" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "0.1.2";
+ "querystring-es3-0.2.1" = {
+ name = "querystring-es3";
+ packageName = "querystring-es3";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.2.tgz";
- sha1 = "d93ffdbb67ac5507779be316a7d65146417beef8";
+ url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz";
+ sha1 = "9ec61f79049875707d69414596fd907a4d711e73";
};
};
- "clone-0.1.5" = {
- name = "clone";
- packageName = "clone";
- version = "0.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-0.1.5.tgz";
- sha1 = "46f29143d0766d663dbd7f80b7520a15783d2042";
- };
- };
- "dashdash-1.10.1" = {
- name = "dashdash";
- packageName = "dashdash";
- version = "1.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dashdash/-/dashdash-1.10.1.tgz";
- sha1 = "0abf1af89a8f5129a81f18c2b35b21df22622f60";
- };
- };
- "once-1.3.0" = {
- name = "once";
- packageName = "once";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.3.0.tgz";
- sha1 = "151af86bfc1f08c4b9f07d06ab250ffcbeb56581";
- };
- };
- "sshpk-agent-1.2.1" = {
- name = "sshpk-agent";
- packageName = "sshpk-agent";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sshpk-agent/-/sshpk-agent-1.2.1.tgz";
- sha1 = "62e143c18530fda103320b3403e8ad42786d9718";
- };
- };
- "sshpk-1.7.1" = {
- name = "sshpk";
- packageName = "sshpk";
- version = "1.7.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.7.1.tgz";
- sha1 = "565e386c42a77e6062fbd14c0472ff21cd53398c";
- };
- };
- "vasync-1.4.3" = {
- name = "vasync";
- packageName = "vasync";
- version = "1.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/vasync/-/vasync-1.4.3.tgz";
- sha1 = "c86d52e2b71613d29eedf159f3135dbe749cee37";
- };
- };
- "jodid25519-1.0.2" = {
- name = "jodid25519";
- packageName = "jodid25519";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz";
- sha1 = "06d4912255093419477d425633606e0e90782967";
- };
- };
- "jsprim-0.3.0" = {
- name = "jsprim";
- packageName = "jsprim";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-0.3.0.tgz";
- sha1 = "cd13466ea2480dbd8396a570d47d31dda476f8b1";
- };
- };
- "verror-1.1.0" = {
- name = "verror";
- packageName = "verror";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/verror/-/verror-1.1.0.tgz";
- sha1 = "2a4b4eb14a207051e75a6f94ee51315bf173a1b0";
- };
- };
- "extsprintf-1.0.0" = {
- name = "extsprintf";
- packageName = "extsprintf";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.0.tgz";
- sha1 = "4d58b815ace5bebfc4ebf03cf98b0a7604a99b86";
- };
- };
- "json-schema-0.2.2" = {
- name = "json-schema";
- packageName = "json-schema";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.2.tgz";
- sha1 = "50354f19f603917c695f70b85afa77c3b0f23506";
- };
- };
- "verror-1.3.3" = {
- name = "verror";
- packageName = "verror";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/verror/-/verror-1.3.3.tgz";
- sha1 = "8a6a4ac3a8c774b6f687fece49bdffd78552e2cd";
- };
- };
- "generic-pool-2.2.0" = {
- name = "generic-pool";
- packageName = "generic-pool";
- version = "2.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/generic-pool/-/generic-pool-2.2.0.tgz";
- sha1 = "8b465c1a7588ea9dd2bb133bda0bb66bfef8a63e";
- };
- };
- "modern-syslog-1.1.2" = {
- name = "modern-syslog";
- packageName = "modern-syslog";
+ "quick-format-unescaped-1.1.2" = {
+ name = "quick-format-unescaped";
+ packageName = "quick-format-unescaped";
version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/modern-syslog/-/modern-syslog-1.1.2.tgz";
- sha1 = "f1fa58899f3f452d788f1573401212a4ef898de5";
+ url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz";
+ sha1 = "0ca581de3174becef25ac3c2e8956342381db698";
};
};
- "hashring-3.2.0" = {
- name = "hashring";
- packageName = "hashring";
- version = "3.2.0";
+ "r-json-1.2.8" = {
+ name = "r-json";
+ packageName = "r-json";
+ version = "1.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/hashring/-/hashring-3.2.0.tgz";
- sha1 = "fda4efde8aa22cdb97fb1d2a65e88401e1c144ce";
+ url = "https://registry.npmjs.org/r-json/-/r-json-1.2.8.tgz";
+ sha1 = "7440560cc1edf00b9d8d94fa30bcad7dde94eae2";
};
};
- "winser-0.1.6" = {
- name = "winser";
- packageName = "winser";
- version = "0.1.6";
+ "rai-0.1.12" = {
+ name = "rai";
+ packageName = "rai";
+ version = "0.1.12";
src = fetchurl {
- url = "https://registry.npmjs.org/winser/-/winser-0.1.6.tgz";
- sha1 = "08663dc32878a12bbce162d840da5097b48466c9";
+ url = "https://registry.npmjs.org/rai/-/rai-0.1.12.tgz";
+ sha1 = "8ccfd014d0f9608630dd73c19b8e4b057754a6a6";
};
};
- "connection-parse-0.0.7" = {
- name = "connection-parse";
- packageName = "connection-parse";
- version = "0.0.7";
+ "random-access-file-1.8.1" = {
+ name = "random-access-file";
+ packageName = "random-access-file";
+ version = "1.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/connection-parse/-/connection-parse-0.0.7.tgz";
- sha1 = "18e7318aab06a699267372b10c5226d25a1c9a69";
+ url = "https://registry.npmjs.org/random-access-file/-/random-access-file-1.8.1.tgz";
+ sha512 = "3pvi9knrjp8krj1hsg8i2qmv5097fid3qnyz4wh2dvpr37x2ga6qqk7afh5f1i5sb9dsw169bara13knccdmjwnivb62xgywz868j7r";
};
};
- "simple-lru-cache-0.0.2" = {
- name = "simple-lru-cache";
- packageName = "simple-lru-cache";
- version = "0.0.2";
+ "random-access-memory-2.4.0" = {
+ name = "random-access-memory";
+ packageName = "random-access-memory";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-lru-cache/-/simple-lru-cache-0.0.2.tgz";
- sha1 = "d59cc3a193c1a5d0320f84ee732f6e4713e511dd";
+ url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-2.4.0.tgz";
+ sha1 = "72f3d865b4b55a259879473e2fb2de3569c69ee2";
};
};
- "sequence-2.2.1" = {
- name = "sequence";
- packageName = "sequence";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sequence/-/sequence-2.2.1.tgz";
- sha1 = "7f5617895d44351c0a047e764467690490a16b03";
- };
- };
- "commander-1.3.1" = {
- name = "commander";
- packageName = "commander";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-1.3.1.tgz";
- sha1 = "02443e02db96f4b32b674225451abb6e9510000e";
- };
- };
- "css-parse-1.7.0" = {
- name = "css-parse";
- packageName = "css-parse";
- version = "1.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz";
- sha1 = "321f6cf73782a6ff751111390fc05e2c657d8c9b";
- };
- };
- "glob-7.0.6" = {
- name = "glob";
- packageName = "glob";
- version = "7.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.0.6.tgz";
- sha1 = "211bafaf49e525b8cd93260d14ab136152b3f57a";
- };
- };
- "coa-2.0.0" = {
- name = "coa";
- packageName = "coa";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/coa/-/coa-2.0.0.tgz";
- sha1 = "af881ebe214fc29bee4e9e76b4956b6132295546";
- };
- };
- "css-url-regex-1.1.0" = {
- name = "css-url-regex";
- packageName = "css-url-regex";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz";
- sha1 = "83834230cc9f74c457de59eebd1543feeb83b7ec";
- };
- };
- "unquote-1.1.1" = {
- name = "unquote";
- packageName = "unquote";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz";
- sha1 = "8fded7324ec6e88a0ff8b905e7c098cdc086d544";
- };
- };
- "css-select-1.3.0-rc0" = {
- name = "css-select";
- packageName = "css-select";
- version = "1.3.0-rc0";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-select/-/css-select-1.3.0-rc0.tgz";
- sha1 = "6f93196aaae737666ea1036a8cb14a8fcb7a9231";
- };
- };
- "css-select-base-adapter-0.1.0" = {
- name = "css-select-base-adapter";
- packageName = "css-select-base-adapter";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.0.tgz";
- sha1 = "0102b3d14630df86c3eb9fa9f5456270106cf990";
- };
- };
- "css-tree-1.0.0-alpha25" = {
- name = "css-tree";
- packageName = "css-tree";
- version = "1.0.0-alpha25";
- src = fetchurl {
- url = "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha25.tgz";
- sha512 = "3a7768nyac729dk372kmbf8f28j0pajy699g45bs8vrlx605wiad3i692a8y58x437bvnfy7015lx08sxhm2vknmsi83a69dwnv2bjw";
- };
- };
- "csso-3.4.0" = {
- name = "csso";
- packageName = "csso";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/csso/-/csso-3.4.0.tgz";
- sha1 = "57b27ef553cccbf5aa964c641748641e9af113f3";
- };
- };
- "object.values-1.0.4" = {
- name = "object.values";
- packageName = "object.values";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.values/-/object.values-1.0.4.tgz";
- sha1 = "e524da09b4f66ff05df457546ec72ac99f13069a";
- };
- };
- "stable-0.1.6" = {
- name = "stable";
- packageName = "stable";
- version = "0.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/stable/-/stable-0.1.6.tgz";
- sha1 = "910f5d2aed7b520c6e777499c1f32e139fdecb10";
- };
- };
- "util.promisify-1.0.0" = {
- name = "util.promisify";
- packageName = "util.promisify";
+ "random-bytes-1.0.0" = {
+ name = "random-bytes";
+ packageName = "random-bytes";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz";
- sha512 = "28cvjkydplc2vpnqff8vylscx8851srnkl54y6i54pl6lhpr6548plvyj833jk2mfaf8h31gbn60s00azd28rzc5q5gm1hgcc1smvlb";
+ url = "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz";
+ sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b";
};
};
- "mdn-data-1.0.0" = {
- name = "mdn-data";
- packageName = "mdn-data";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.0.0.tgz";
- sha1 = "a69d9da76847b4d5834c1465ea25c0653a1fbf66";
- };
- };
- "es-abstract-1.10.0" = {
- name = "es-abstract";
- packageName = "es-abstract";
- version = "1.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz";
- sha512 = "04nd5ylkfffc08vn5kjhz0saqh44nj19f5j3ahrrhf3zvc9da5rf6snnh63xv4gfhacjbax1jajzgqv4zpm77v806jf883a2w77zs7y";
- };
- };
- "es-to-primitive-1.1.1" = {
- name = "es-to-primitive";
- packageName = "es-to-primitive";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz";
- sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d";
- };
- };
- "is-callable-1.1.3" = {
- name = "is-callable";
- packageName = "is-callable";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz";
- sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2";
- };
- };
- "is-date-object-1.0.1" = {
- name = "is-date-object";
- packageName = "is-date-object";
+ "random-iterate-1.0.1" = {
+ name = "random-iterate";
+ packageName = "random-iterate";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz";
- sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16";
+ url = "https://registry.npmjs.org/random-iterate/-/random-iterate-1.0.1.tgz";
+ sha1 = "f7d97d92dee6665ec5f6da08c7f963cad4b2ac99";
};
};
- "is-symbol-1.0.1" = {
- name = "is-symbol";
- packageName = "is-symbol";
- version = "1.0.1";
+ "randomatic-1.1.7" = {
+ name = "randomatic";
+ packageName = "randomatic";
+ version = "1.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz";
- sha1 = "3cc59f00025194b6ab2e38dbae6689256b660572";
+ url = "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz";
+ sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg";
};
};
- "object.getownpropertydescriptors-2.0.3" = {
- name = "object.getownpropertydescriptors";
- packageName = "object.getownpropertydescriptors";
- version = "2.0.3";
+ "randombytes-2.0.6" = {
+ name = "randombytes";
+ packageName = "randombytes";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz";
- sha1 = "8758c846f5b407adab0f236e0986f14b051caa16";
+ url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz";
+ sha512 = "3a0zyz736klfzzpd9vwag3gznq7lrj57igm474dq279gsnyqdgfm1brhrs78ky30gsdwz9rwnjjms00fpdpp2p3x8p9mq2zbhw3k108";
};
};
- "enhanced-resolve-2.3.0" = {
- name = "enhanced-resolve";
- packageName = "enhanced-resolve";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-2.3.0.tgz";
- sha1 = "a115c32504b6302e85a76269d7a57ccdd962e359";
- };
- };
- "resolve-from-2.0.0" = {
- name = "resolve-from";
- packageName = "resolve-from";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz";
- sha1 = "9480ab20e94ffa1d9e80a804c7ea147611966b57";
- };
- };
- "tapable-0.2.8" = {
- name = "tapable";
- packageName = "tapable";
- version = "0.2.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz";
- sha1 = "99372a5c999bf2df160afc0d74bed4f47948cd22";
- };
- };
- "memory-fs-0.3.0" = {
- name = "memory-fs";
- packageName = "memory-fs";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.3.0.tgz";
- sha1 = "7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20";
- };
- };
- "elegant-spinner-1.0.1" = {
- name = "elegant-spinner";
- packageName = "elegant-spinner";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz";
- sha1 = "db043521c95d7e303fd8f345bedc3349cfb0729e";
- };
- };
- "listify-1.0.0" = {
- name = "listify";
- packageName = "listify";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/listify/-/listify-1.0.0.tgz";
- sha1 = "03ca7ba2d150d4267773f74e57558d1053d2bee3";
- };
- };
- "promise-finally-3.0.0" = {
- name = "promise-finally";
- packageName = "promise-finally";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise-finally/-/promise-finally-3.0.0.tgz";
- sha1 = "ddd5d0f895432b1206ceb8da1275064d18e7aa23";
- };
- };
- "typings-core-2.3.3" = {
- name = "typings-core";
- packageName = "typings-core";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/typings-core/-/typings-core-2.3.3.tgz";
- sha1 = "09ec54cd5b11dd5f1ef2fc0ab31d37002ca2b5ad";
- };
- };
- "is-absolute-0.2.6" = {
- name = "is-absolute";
- packageName = "is-absolute";
- version = "0.2.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-absolute/-/is-absolute-0.2.6.tgz";
- sha1 = "20de69f3db942ef2d87b9c2da36f172235b1b5eb";
- };
- };
- "jspm-config-0.3.4" = {
- name = "jspm-config";
- packageName = "jspm-config";
- version = "0.3.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/jspm-config/-/jspm-config-0.3.4.tgz";
- sha1 = "44c26902e4ae8ece2366cedc9ff16b10a5f391c6";
- };
- };
- "lockfile-1.0.3" = {
- name = "lockfile";
- packageName = "lockfile";
+ "randomfill-1.0.3" = {
+ name = "randomfill";
+ packageName = "randomfill";
version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/lockfile/-/lockfile-1.0.3.tgz";
- sha1 = "2638fc39a0331e9cac1a04b71799931c9c50df79";
+ url = "https://registry.npmjs.org/randomfill/-/randomfill-1.0.3.tgz";
+ sha512 = "08l7hdx65kfxli7g9pcnlv84bdrccj7d267d1kfi93db6a4mihwyhvsipmx2n0yk9z45cs21isgpld6rib5saxg28s2g8nn3ap8dgk0";
};
};
- "make-error-cause-1.2.2" = {
- name = "make-error-cause";
- packageName = "make-error-cause";
- version = "1.2.2";
+ "range-parser-0.0.4" = {
+ name = "range-parser";
+ packageName = "range-parser";
+ version = "0.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/make-error-cause/-/make-error-cause-1.2.2.tgz";
- sha1 = "df0388fcd0b37816dff0a5fb8108939777dcbc9d";
+ url = "https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz";
+ sha1 = "c0427ffef51c10acba0782a46c9602e744ff620b";
};
};
- "popsicle-9.2.0" = {
- name = "popsicle";
- packageName = "popsicle";
- version = "9.2.0";
+ "range-parser-1.0.3" = {
+ name = "range-parser";
+ packageName = "range-parser";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/popsicle/-/popsicle-9.2.0.tgz";
- sha512 = "23p3a888k27q99lj4904nbcs8r51nlm4qdzs3m0xp9y4ci1rxzymzzckrblrmlmbzrlxx4i9zx7s56gcrhvi2jm3ypr3lvhgy7m3sx5";
+ url = "https://registry.npmjs.org/range-parser/-/range-parser-1.0.3.tgz";
+ sha1 = "6872823535c692e2c2a0103826afd82c2e0ff175";
};
};
- "popsicle-proxy-agent-3.0.0" = {
- name = "popsicle-proxy-agent";
- packageName = "popsicle-proxy-agent";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/popsicle-proxy-agent/-/popsicle-proxy-agent-3.0.0.tgz";
- sha1 = "b9133c55d945759ab7ee61b7711364620d3aeadc";
- };
- };
- "popsicle-retry-3.2.1" = {
- name = "popsicle-retry";
- packageName = "popsicle-retry";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/popsicle-retry/-/popsicle-retry-3.2.1.tgz";
- sha1 = "e06e866533b42a7a123eb330cbe63a7cebcba10c";
- };
- };
- "popsicle-rewrite-1.0.0" = {
- name = "popsicle-rewrite";
- packageName = "popsicle-rewrite";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/popsicle-rewrite/-/popsicle-rewrite-1.0.0.tgz";
- sha1 = "1dd4e8ea9c3182351fb820f87934d992f7fb9007";
- };
- };
- "popsicle-status-2.0.1" = {
- name = "popsicle-status";
- packageName = "popsicle-status";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/popsicle-status/-/popsicle-status-2.0.1.tgz";
- sha1 = "8dd70c4fe7c694109add784ffe80eacac1e7b28d";
- };
- };
- "string-template-1.0.0" = {
- name = "string-template";
- packageName = "string-template";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-template/-/string-template-1.0.0.tgz";
- sha1 = "9e9f2233dc00f218718ec379a28a5673ecca8b96";
- };
- };
- "throat-3.2.0" = {
- name = "throat";
- packageName = "throat";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/throat/-/throat-3.2.0.tgz";
- sha512 = "3rnpjw8qfw0qbydd9s4pbp0qzahz1f4phbj4cc9mvz6851nrq9h1whwslsjjfrzl0qgsnjf0n8ppygh3kl7ikyj2sn9za75kdb3qipw";
- };
- };
- "touch-1.0.0" = {
- name = "touch";
- packageName = "touch";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/touch/-/touch-1.0.0.tgz";
- sha1 = "449cbe2dbae5a8c8038e30d71fa0ff464947c4de";
- };
- };
- "typescript-2.6.2" = {
- name = "typescript";
- packageName = "typescript";
- version = "2.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz";
- sha1 = "3c5b6fd7f6de0914269027f03c0946758f7673a4";
- };
- };
- "zip-object-0.1.0" = {
- name = "zip-object";
- packageName = "zip-object";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/zip-object/-/zip-object-0.1.0.tgz";
- sha1 = "c1a0da04c88c837756e248680a03ff902ec3f53a";
- };
- };
- "is-relative-0.2.1" = {
- name = "is-relative";
- packageName = "is-relative";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-relative/-/is-relative-0.2.1.tgz";
- sha1 = "d27f4c7d516d175fb610db84bbeef23c3bc97aa5";
- };
- };
- "is-unc-path-0.1.2" = {
- name = "is-unc-path";
- packageName = "is-unc-path";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-0.1.2.tgz";
- sha1 = "6ab053a72573c10250ff416a3814c35178af39b9";
- };
- };
- "make-error-1.3.0" = {
- name = "make-error";
- packageName = "make-error";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/make-error/-/make-error-1.3.0.tgz";
- sha1 = "52ad3a339ccf10ce62b4040b708fe707244b8b96";
- };
- };
- "http-proxy-agent-1.0.0" = {
- name = "http-proxy-agent";
- packageName = "http-proxy-agent";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-1.0.0.tgz";
- sha1 = "cc1ce38e453bf984a0f7702d2dd59c73d081284a";
- };
- };
- "https-proxy-agent-1.0.0" = {
- name = "https-proxy-agent";
- packageName = "https-proxy-agent";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz";
- sha1 = "35f7da6c48ce4ddbfa264891ac593ee5ff8671e6";
- };
- };
- "agent-base-2.1.1" = {
- name = "agent-base";
- packageName = "agent-base";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz";
- sha1 = "d6de10d5af6132d5bd692427d46fc538539094c7";
- };
- };
- "semver-5.0.3" = {
- name = "semver";
- packageName = "semver";
- version = "5.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz";
- sha1 = "77466de589cd5d3c95f138aa78bc569a3cb5d27a";
- };
- };
- "blueimp-md5-2.10.0" = {
- name = "blueimp-md5";
- packageName = "blueimp-md5";
- version = "2.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.10.0.tgz";
- sha512 = "18r5wdrfrrjip7xipgxyg673njbfkj46hkswp4bmb5n7zx6gmajrashp6w32rkvhanymnx6rd7mrlqgzm68ksd89sy5x9gd5qx58hqj";
- };
- };
- "color-2.0.1" = {
- name = "color";
- packageName = "color";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/color/-/color-2.0.1.tgz";
- sha512 = "1gir7mfj6033amg78p7jvpj0nk2hw61hqd81r6x3a2qmgizbw3d89k0qk62680zhm9ypcx6c9p2cgwjvb8smxv0qgvblkwza9ah5ddr";
- };
- };
- "crossroads-0.12.2" = {
- name = "crossroads";
- packageName = "crossroads";
- version = "0.12.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/crossroads/-/crossroads-0.12.2.tgz";
- sha1 = "b1d5f9c1d98af3bdd61f1bda6a86dd1aee4ff8f2";
- };
- };
- "diff2html-2.3.2" = {
- name = "diff2html";
- packageName = "diff2html";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff2html/-/diff2html-2.3.2.tgz";
- sha1 = "1c5864266d437148bc66fdd66d4ad750102d7fed";
- };
- };
- "express-4.15.5" = {
- name = "express";
- packageName = "express";
- version = "4.15.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-4.15.5.tgz";
- sha1 = "670235ca9598890a5ae8170b83db722b842ed927";
- };
- };
- "express-session-1.15.6" = {
- name = "express-session";
- packageName = "express-session";
- version = "1.15.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/express-session/-/express-session-1.15.6.tgz";
- sha512 = "100j4z1046rpprbjyf9gkbq2nzj9z8g0a5sfkrdzxv929j11l2p1a3mz2isr4pi58fhvbymsfzbaxhiv4f90x062wmh7d4q60fynjdg";
- };
- };
- "getmac-1.2.1" = {
- name = "getmac";
- packageName = "getmac";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/getmac/-/getmac-1.2.1.tgz";
- sha1 = "0d095fd0627850043eac1dcfa0b120bbdc1426d1";
- };
- };
- "hasher-1.2.0" = {
- name = "hasher";
- packageName = "hasher";
+ "range-parser-1.2.0" = {
+ name = "range-parser";
+ packageName = "range-parser";
version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hasher/-/hasher-1.2.0.tgz";
- sha1 = "8b5341c3496124b0724ac8555fbb8ca363ebbb73";
+ url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz";
+ sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e";
};
};
- "just-detect-adblock-1.0.0" = {
- name = "just-detect-adblock";
- packageName = "just-detect-adblock";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/just-detect-adblock/-/just-detect-adblock-1.0.0.tgz";
- sha1 = "7bf8660cf15571fe7cf3b49c222e4716e1605a0c";
- };
- };
- "keen.io-0.1.3" = {
- name = "keen.io";
- packageName = "keen.io";
- version = "0.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/keen.io/-/keen.io-0.1.3.tgz";
- sha1 = "5056f5c989ab14ccf62fc20ed7598115ae7d09e3";
- };
- };
- "knockout-3.4.2" = {
- name = "knockout";
- packageName = "knockout";
- version = "3.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/knockout/-/knockout-3.4.2.tgz";
- sha1 = "e87958de77ad1e936f7ce645bab8b5d7c456d937";
- };
- };
- "memorystore-1.6.0" = {
- name = "memorystore";
- packageName = "memorystore";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/memorystore/-/memorystore-1.6.0.tgz";
- sha1 = "1fb5fb5f0b2edf1add184917e918f094a9ff3465";
- };
- };
- "node-cache-4.1.1" = {
- name = "node-cache";
- packageName = "node-cache";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-cache/-/node-cache-4.1.1.tgz";
- sha1 = "08524645ee4039dedc3dcc1dd7c6b979e0619e44";
- };
- };
- "npm-5.4.2" = {
- name = "npm";
- packageName = "npm";
- version = "5.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-5.4.2.tgz";
- sha512 = "28m9zjiynb24b8bxikdaya27j87am88x1y8l70pvmh9fk3pfq0y6xvqjmpy72ld4csnz9s1hik1ff8a19sx6pyi8f5ar27b044cp8hp";
- };
- };
- "octicons-3.5.0" = {
- name = "octicons";
- packageName = "octicons";
- version = "3.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/octicons/-/octicons-3.5.0.tgz";
- sha1 = "f7ff5935674d8b114f6d80c454bfaa01797a4e30";
- };
- };
- "passport-local-1.0.0" = {
- name = "passport-local";
- packageName = "passport-local";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz";
- sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee";
- };
- };
- "raven-2.1.2" = {
+ "raven-2.3.0" = {
name = "raven";
packageName = "raven";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/raven/-/raven-2.1.2.tgz";
- sha512 = "136ylazswrblh2b1kc29xsmzk3i3bhm6vcirl1zb60fv9h0nf3hipz7qm91vs6my1lry00xrzpy1x96y51siciwwq7k3fs0ynl2j6m4";
- };
- };
- "signals-1.0.0" = {
- name = "signals";
- packageName = "signals";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/signals/-/signals-1.0.0.tgz";
- sha1 = "65f0c1599352b35372ecaae5a250e6107376ed69";
- };
- };
- "snapsvg-0.5.1" = {
- name = "snapsvg";
- packageName = "snapsvg";
- version = "0.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/snapsvg/-/snapsvg-0.5.1.tgz";
- sha1 = "0caf52c79189a290746fc446cc5e863f6bdddfe3";
- };
- };
- "superagent-3.5.2" = {
- name = "superagent";
- packageName = "superagent";
- version = "3.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/superagent/-/superagent-3.5.2.tgz";
- sha1 = "3361a3971567504c351063abeaae0faa23dbf3f8";
- };
- };
- "winston-2.3.1" = {
- name = "winston";
- packageName = "winston";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-2.3.1.tgz";
- sha1 = "0b48420d978c01804cf0230b648861598225a119";
- };
- };
- "color-string-1.5.2" = {
- name = "color-string";
- packageName = "color-string";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-string/-/color-string-1.5.2.tgz";
- sha1 = "26e45814bc3c9a7cbd6751648a41434514a773a9";
- };
- };
- "simple-swizzle-0.2.2" = {
- name = "simple-swizzle";
- packageName = "simple-swizzle";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz";
- sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a";
- };
- };
- "is-arrayish-0.3.1" = {
- name = "is-arrayish";
- packageName = "is-arrayish";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.1.tgz";
- sha1 = "c2dfc386abaa0c3e33c48db3fe87059e69065efd";
- };
- };
- "hogan.js-3.0.2" = {
- name = "hogan.js";
- packageName = "hogan.js";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hogan.js/-/hogan.js-3.0.2.tgz";
- sha1 = "4cd9e1abd4294146e7679e41d7898732b02c7bfd";
- };
- };
- "extract-opts-3.3.1" = {
- name = "extract-opts";
- packageName = "extract-opts";
- version = "3.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/extract-opts/-/extract-opts-3.3.1.tgz";
- sha1 = "5abbedc98c0d5202e3278727f9192d7e086c6be1";
- };
- };
- "eachr-3.2.0" = {
- name = "eachr";
- packageName = "eachr";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eachr/-/eachr-3.2.0.tgz";
- sha1 = "2c35e43ea086516f7997cf80b7aa64d55a4a4484";
- };
- };
- "editions-1.3.3" = {
- name = "editions";
- packageName = "editions";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/editions/-/editions-1.3.3.tgz";
- sha1 = "0907101bdda20fac3cbe334c27cbd0688dc99a5b";
- };
- };
- "typechecker-4.4.1" = {
- name = "typechecker";
- packageName = "typechecker";
- version = "4.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/typechecker/-/typechecker-4.4.1.tgz";
- sha1 = "f97b95f51b038417212d677d45a373ee7bced7e6";
- };
- };
- "underscore-1.5.2" = {
- name = "underscore";
- packageName = "underscore";
- version = "1.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.5.2.tgz";
- sha1 = "1335c5e4f5e6d33bbb4b006ba8c86a00f556de08";
- };
- };
- "lsmod-1.0.0" = {
- name = "lsmod";
- packageName = "lsmod";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lsmod/-/lsmod-1.0.0.tgz";
- sha1 = "9a00f76dca36eb23fa05350afe1b585d4299e64b";
- };
- };
- "stack-trace-0.0.9" = {
- name = "stack-trace";
- packageName = "stack-trace";
- version = "0.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz";
- sha1 = "a8f6eaeca90674c333e7c43953f275b451510695";
- };
- };
- "uuid-3.0.0" = {
- name = "uuid";
- packageName = "uuid";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/uuid/-/uuid-3.0.0.tgz";
- sha1 = "6728fc0459c450d796a99c31837569bdf672d728";
- };
- };
- "eve-0.5.4" = {
- name = "eve";
- packageName = "eve";
- version = "0.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/eve/-/eve-0.5.4.tgz";
- sha1 = "67d080b9725291d7e389e34c26860dd97f1debaa";
- };
- };
- "adm-zip-0.4.7" = {
- name = "adm-zip";
- packageName = "adm-zip";
- version = "0.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz";
- sha1 = "8606c2cbf1c426ce8c8ec00174447fd49b6eafc1";
- };
- };
- "kew-0.1.7" = {
- name = "kew";
- packageName = "kew";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/kew/-/kew-0.1.7.tgz";
- sha1 = "0a32a817ff1a9b3b12b8c9bacf4bc4d679af8e72";
- };
- };
- "npmconf-0.1.16" = {
- name = "npmconf";
- packageName = "npmconf";
- version = "0.1.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmconf/-/npmconf-0.1.16.tgz";
- sha1 = "0bdca78b8551419686b3a98004f06f0819edcd2a";
- };
- };
- "phantomjs-1.9.20" = {
- name = "phantomjs";
- packageName = "phantomjs";
- version = "1.9.20";
- src = fetchurl {
- url = "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.20.tgz";
- sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d";
- };
- };
- "follow-redirects-0.0.3" = {
- name = "follow-redirects";
- packageName = "follow-redirects";
- version = "0.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-0.0.3.tgz";
- sha1 = "6ce67a24db1fe13f226c1171a72a7ef2b17b8f65";
- };
- };
- "acorn-dynamic-import-2.0.2" = {
- name = "acorn-dynamic-import";
- packageName = "acorn-dynamic-import";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz";
- sha1 = "c752bd210bef679501b6c6cb7fc84f8f47158cc4";
- };
- };
- "enhanced-resolve-3.4.1" = {
- name = "enhanced-resolve";
- packageName = "enhanced-resolve";
- version = "3.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz";
- sha1 = "0421e339fd71419b3da13d129b3979040230476e";
- };
- };
- "escope-3.6.0" = {
- name = "escope";
- packageName = "escope";
- version = "3.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz";
- sha1 = "e01975e812781a163a6dadfdd80398dc64c889c3";
- };
- };
- "json-loader-0.5.7" = {
- name = "json-loader";
- packageName = "json-loader";
- version = "0.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-loader/-/json-loader-0.5.7.tgz";
- sha512 = "3iwy9jwca9hg6h1k7cmcdlsygn2qzjv7w72fsrfjfpdrcyd4xc5fb11sf664rvnzrfmz24f19kvi3qawif4n63lggvpg5pv73qfrcs0";
- };
- };
- "loader-runner-2.3.0" = {
- name = "loader-runner";
- packageName = "loader-runner";
version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/loader-runner/-/loader-runner-2.3.0.tgz";
- sha1 = "f482aea82d543e07921700d5a46ef26fdac6b8a2";
+ url = "https://registry.npmjs.org/raven/-/raven-2.3.0.tgz";
+ sha1 = "96f15346bdaa433b3b6d47130804506155833d69";
};
};
- "loader-utils-1.1.0" = {
- name = "loader-utils";
- packageName = "loader-utils";
+ "raw-body-0.0.3" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-0.0.3.tgz";
+ sha1 = "0cb3eb22ced1ca607d32dd8fd94a6eb383f3eb8a";
+ };
+ };
+ "raw-body-1.1.7" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-1.1.7.tgz";
+ sha1 = "1d027c2bfa116acc6623bca8f00016572a87d425";
+ };
+ };
+ "raw-body-1.3.4" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-1.3.4.tgz";
+ sha1 = "ccc7ddfc46b72861cdd5bb433c840b70b6f27f54";
+ };
+ };
+ "raw-body-2.1.7" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "2.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-2.1.7.tgz";
+ sha1 = "adfeace2e4fb3098058014d08c072dcc59758774";
+ };
+ };
+ "raw-body-2.2.0" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz";
+ sha1 = "994976cf6a5096a41162840492f0bdc5d6e7fb96";
+ };
+ };
+ "raw-body-2.3.2" = {
+ name = "raw-body";
+ packageName = "raw-body";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-body/-/raw-body-2.3.2.tgz";
+ sha1 = "bcd60c77d3eb93cde0050295c3f379389bc88f89";
+ };
+ };
+ "raw-socket-1.5.2" = {
+ name = "raw-socket";
+ packageName = "raw-socket";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.5.2.tgz";
+ sha512 = "0afwhc6rx359xqdsjiyxdlj46kb8mq4lkwy9fhmgszkp8cai9pk8927vxvg4gpg522clwx3dv1xsbnx745pip7crbjdb7kn2i8p2iqy";
+ };
+ };
+ "rc-0.4.0" = {
+ name = "rc";
+ packageName = "rc";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rc/-/rc-0.4.0.tgz";
+ sha1 = "ce24a2029ad94c3a40d09604a87227027d7210d3";
+ };
+ };
+ "rc-1.2.4" = {
+ name = "rc";
+ packageName = "rc";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.4.tgz";
+ sha1 = "a0f606caae2a3b862bbd0ef85482c0125b315fa3";
+ };
+ };
+ "rc-config-loader-2.0.1" = {
+ name = "rc-config-loader";
+ packageName = "rc-config-loader";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rc-config-loader/-/rc-config-loader-2.0.1.tgz";
+ sha512 = "2sp3cd5mzpc91g5c8k7xwdm9gnax4pf6wvg09scksc81bs5p0qpzjf6s7xi36b0lxfhs76jmm48jv23biy4b4q3d6ldx77vjvhgcyiq";
+ };
+ };
+ "re-emitter-1.1.3" = {
+ name = "re-emitter";
+ packageName = "re-emitter";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/re-emitter/-/re-emitter-1.1.3.tgz";
+ sha1 = "fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7";
+ };
+ };
+ "read-1.0.7" = {
+ name = "read";
+ packageName = "read";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read/-/read-1.0.7.tgz";
+ sha1 = "b3da19bd052431a97671d44a42634adf710b40c4";
+ };
+ };
+ "read-all-stream-3.1.0" = {
+ name = "read-all-stream";
+ packageName = "read-all-stream";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz";
+ sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa";
+ };
+ };
+ "read-cmd-shim-1.0.1" = {
+ name = "read-cmd-shim";
+ packageName = "read-cmd-shim";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz";
+ sha1 = "2d5d157786a37c055d22077c32c53f8329e91c7b";
+ };
+ };
+ "read-only-stream-2.0.0" = {
+ name = "read-only-stream";
+ packageName = "read-only-stream";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz";
+ sha1 = "2724fd6a8113d73764ac288d4386270c1dbf17f0";
+ };
+ };
+ "read-package-json-2.0.12" = {
+ name = "read-package-json";
+ packageName = "read-package-json";
+ version = "2.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.12.tgz";
+ sha512 = "15w2z3m1iysjf0zwvyc5mix8nypx42shx90alil4sslq6caj3pgk59zsn2ppxn95nls6bs7yw7khl5rmlq9gljv27w3vs2gxg9wigwv";
+ };
+ };
+ "read-pkg-1.1.0" = {
+ name = "read-pkg";
+ packageName = "read-pkg";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.1.0.tgz";
- sha1 = "c98aef488bcceda2ffb5e2de646d6a754429f5cd";
+ url = "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz";
+ sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28";
};
};
- "memory-fs-0.4.1" = {
- name = "memory-fs";
- packageName = "memory-fs";
- version = "0.4.1";
+ "read-pkg-2.0.0" = {
+ name = "read-pkg";
+ packageName = "read-pkg";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz";
- sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552";
+ url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz";
+ sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8";
};
};
- "node-libs-browser-2.1.0" = {
- name = "node-libs-browser";
- packageName = "node-libs-browser";
+ "read-pkg-3.0.0" = {
+ name = "read-pkg";
+ packageName = "read-pkg";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz";
+ sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389";
+ };
+ };
+ "read-pkg-up-1.0.1" = {
+ name = "read-pkg-up";
+ packageName = "read-pkg-up";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz";
+ sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02";
+ };
+ };
+ "read-pkg-up-2.0.0" = {
+ name = "read-pkg-up";
+ packageName = "read-pkg-up";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz";
+ sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be";
+ };
+ };
+ "read-torrent-1.3.0" = {
+ name = "read-torrent";
+ packageName = "read-torrent";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-torrent/-/read-torrent-1.3.0.tgz";
+ sha1 = "4e0ef5bea6cb24d31843eb6fa8543ad0232ab9f4";
+ };
+ };
+ "readable-stream-1.0.27-1" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "1.0.27-1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz";
+ sha1 = "6b67983c20357cefd07f0165001a16d710d91078";
+ };
+ };
+ "readable-stream-1.0.34" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "1.0.34";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz";
+ sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c";
+ };
+ };
+ "readable-stream-1.1.14" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "1.1.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
+ sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
+ };
+ };
+ "readable-stream-2.0.6" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz";
+ sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e";
+ };
+ };
+ "readable-stream-2.3.3" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz";
+ sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv";
+ };
+ };
+ "readdirp-2.1.0" = {
+ name = "readdirp";
+ packageName = "readdirp";
version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.1.0.tgz";
- sha512 = "05d8rzfa0aihb9s1i3fm0dmdvlspfrxf4pxnsd3nms75mviv86llgg2r30l7b38a9l93yb00k7dy1vs8h4nd30ihhyvyc88vb6wa374";
+ url = "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz";
+ sha1 = "4ed0ad060df3073300c48440373f72d1cc642d78";
};
};
- "uglifyjs-webpack-plugin-0.4.6" = {
- name = "uglifyjs-webpack-plugin";
- packageName = "uglifyjs-webpack-plugin";
- version = "0.4.6";
+ "readline2-0.1.1" = {
+ name = "readline2";
+ packageName = "readline2";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz";
- sha1 = "b951f4abb6bd617e66f63eb891498e391763e309";
+ url = "https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz";
+ sha1 = "99443ba6e83b830ef3051bfd7dc241a82728d568";
};
};
- "webpack-sources-1.1.0" = {
- name = "webpack-sources";
- packageName = "webpack-sources";
- version = "1.1.0";
+ "readline2-1.0.1" = {
+ name = "readline2";
+ packageName = "readline2";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz";
- sha512 = "19rska638yxsrpxavydnjckcljiy6ylh63b802hylac396p3mm6j9bj85rhyvi81jk48c33sq580ixwjkbghgwp7cl1i9hgr7bjk9ka";
+ url = "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz";
+ sha1 = "41059608ffc154757b715d9989d199ffbf372e35";
};
};
- "es6-map-0.1.5" = {
- name = "es6-map";
- packageName = "es6-map";
- version = "0.1.5";
+ "recast-0.11.23" = {
+ name = "recast";
+ packageName = "recast";
+ version = "0.11.23";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz";
- sha1 = "9136e0503dcc06a301690f0bb14ff4e364e949f0";
+ url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
+ sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
};
};
- "es6-weak-map-2.0.2" = {
- name = "es6-weak-map";
- packageName = "es6-weak-map";
- version = "2.0.2";
+ "rechoir-0.6.2" = {
+ name = "rechoir";
+ packageName = "rechoir";
+ version = "0.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz";
- sha1 = "5e3ab32251ffd1538a1f8e5ffa1357772f92d96f";
+ url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz";
+ sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
};
};
- "d-1.0.0" = {
- name = "d";
- packageName = "d";
+ "recursive-watch-1.1.2" = {
+ name = "recursive-watch";
+ packageName = "recursive-watch";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.2.tgz";
+ sha1 = "912e2d62a83c8b388d288c4343495f247bc43f8e";
+ };
+ };
+ "redent-1.0.0" = {
+ name = "redent";
+ packageName = "redent";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/d/-/d-1.0.0.tgz";
- sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f";
+ url = "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz";
+ sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde";
};
};
- "es5-ext-0.10.37" = {
- name = "es5-ext";
- packageName = "es5-ext";
- version = "0.10.37";
+ "redis-0.10.3" = {
+ name = "redis";
+ packageName = "redis";
+ version = "0.10.3";
src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.37.tgz";
- sha1 = "0ee741d148b80069ba27d020393756af257defc3";
+ url = "https://registry.npmjs.org/redis/-/redis-0.10.3.tgz";
+ sha1 = "8927fe2110ee39617bcf3fd37b89d8e123911bb6";
};
};
- "es6-iterator-2.0.3" = {
- name = "es6-iterator";
- packageName = "es6-iterator";
- version = "2.0.3";
+ "redis-0.12.1" = {
+ name = "redis";
+ packageName = "redis";
+ version = "0.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz";
- sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7";
+ url = "https://registry.npmjs.org/redis/-/redis-0.12.1.tgz";
+ sha1 = "64df76ad0fc8acebaebd2a0645e8a48fac49185e";
};
};
- "es6-set-0.1.5" = {
- name = "es6-set";
- packageName = "es6-set";
- version = "0.1.5";
+ "redis-0.7.3" = {
+ name = "redis";
+ packageName = "redis";
+ version = "0.7.3";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz";
- sha1 = "d2b3ec5d4d800ced818db538d28974db0a73ccb1";
+ url = "https://registry.npmjs.org/redis/-/redis-0.7.3.tgz";
+ sha1 = "ee57b7a44d25ec1594e44365d8165fa7d1d4811a";
};
};
- "es6-symbol-3.1.1" = {
- name = "es6-symbol";
- packageName = "es6-symbol";
- version = "3.1.1";
+ "redis-2.8.0" = {
+ name = "redis";
+ packageName = "redis";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz";
- sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77";
+ url = "https://registry.npmjs.org/redis/-/redis-2.8.0.tgz";
+ sha512 = "3a3044ax6qdvss83xgjfx10h5q91ls0mwgs3wpsnxcdsiipq3cnmqzsh6glyq0r7vsmpw49jp84c2jnfrhi2bgycrkd9hhhf6ia8lrk";
};
};
- "event-emitter-0.3.5" = {
- name = "event-emitter";
- packageName = "event-emitter";
- version = "0.3.5";
+ "redis-commands-1.3.1" = {
+ name = "redis-commands";
+ packageName = "redis-commands";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz";
- sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39";
+ url = "https://registry.npmjs.org/redis-commands/-/redis-commands-1.3.1.tgz";
+ sha1 = "81d826f45fa9c8b2011f4cd7a0fe597d241d442b";
};
};
- "big.js-3.2.0" = {
- name = "big.js";
- packageName = "big.js";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz";
- sha512 = "3qicqys1bg16slzbzjn3f0fir82r4d1h6lvy5y0cqqwzbs2iaxf93xgi6x47m7l87i102ifjn4qvjbf764gyncsxcqw7lw33mk7y4zs";
- };
- };
- "emojis-list-2.1.0" = {
- name = "emojis-list";
- packageName = "emojis-list";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz";
- sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389";
- };
- };
- "timers-browserify-2.0.4" = {
- name = "timers-browserify";
- packageName = "timers-browserify";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.4.tgz";
- sha512 = "2pddj1k7206wrs3q5z7dzwc657rbdd2m00llzz0h1241fp0y5i32qi2slmfys217hqszbqmvnmjr32msgbjgzh33nxw6py49p4j35mr";
- };
- };
- "source-list-map-2.0.0" = {
- name = "source-list-map";
- packageName = "source-list-map";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz";
- sha512 = "3q09f2w67qqhl3lwiisj4422mj9nfldg4cxmidfrjcwn3k7spm9g46x4n1j6kv39bi9khmcpyvfa3fwski488ibivyg9bwijjw2cr93";
- };
- };
- "addons-linter-0.27.0" = {
- name = "addons-linter";
- packageName = "addons-linter";
- version = "0.27.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/addons-linter/-/addons-linter-0.27.0.tgz";
- sha512 = "1pj51znvw4qfcji454ykz9iwh33jkws8dq78aavxzjjyibsssamdlsw01j81v4xy93w33d4ckq72r3nn8v9q34vh19izb7s05hqhw4y";
- };
- };
- "babel-polyfill-6.20.0" = {
- name = "babel-polyfill";
- packageName = "babel-polyfill";
- version = "6.20.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.20.0.tgz";
- sha1 = "de4a371006139e20990aac0be367d398331204e7";
- };
- };
- "babel-runtime-6.25.0" = {
- name = "babel-runtime";
- packageName = "babel-runtime";
- version = "6.25.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.25.0.tgz";
- sha1 = "33b98eaa5d482bb01a8d1aa6b437ad2b01aec41c";
- };
- };
- "bunyan-1.8.10" = {
- name = "bunyan";
- packageName = "bunyan";
- version = "1.8.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.10.tgz";
- sha1 = "201fedd26c7080b632f416072f53a90b9a52981c";
- };
- };
- "debounce-1.0.2" = {
- name = "debounce";
- packageName = "debounce";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/debounce/-/debounce-1.0.2.tgz";
- sha1 = "503cc674d8d7f737099664fb75ddbd36b9626dc6";
- };
- };
- "es6-error-4.0.2" = {
- name = "es6-error";
- packageName = "es6-error";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-error/-/es6-error-4.0.2.tgz";
- sha1 = "eec5c726eacef51b7f6b73c20db6e1b13b069c98";
- };
- };
- "event-to-promise-0.8.0" = {
- name = "event-to-promise";
- packageName = "event-to-promise";
- version = "0.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/event-to-promise/-/event-to-promise-0.8.0.tgz";
- sha1 = "4b84f11772b6f25f7752fc74d971531ac6f5b626";
- };
- };
- "firefox-profile-0.5.0" = {
- name = "firefox-profile";
- packageName = "firefox-profile";
- version = "0.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/firefox-profile/-/firefox-profile-0.5.0.tgz";
- sha1 = "036de91fe3ff218d9ed8252d924f49bca0b672bd";
- };
- };
- "fx-runner-1.0.8" = {
- name = "fx-runner";
- packageName = "fx-runner";
- version = "1.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.8.tgz";
- sha1 = "5ced3b04a8d51d634de20d1480f0dc5dd8325dec";
- };
- };
- "git-rev-sync-1.9.1" = {
- name = "git-rev-sync";
- packageName = "git-rev-sync";
- version = "1.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/git-rev-sync/-/git-rev-sync-1.9.1.tgz";
- sha1 = "a0c2e3dd392abcf6b76962e27fc75fb3223449ce";
- };
- };
- "mz-2.6.0" = {
- name = "mz";
- packageName = "mz";
+ "redis-parser-2.6.0" = {
+ name = "redis-parser";
+ packageName = "redis-parser";
version = "2.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mz/-/mz-2.6.0.tgz";
- sha1 = "c8b8521d958df0a4f2768025db69c719ee4ef1ce";
+ url = "https://registry.npmjs.org/redis-parser/-/redis-parser-2.6.0.tgz";
+ sha1 = "52ed09dacac108f1a631c07e9b69941e7a19504b";
};
};
- "node-firefox-connect-1.2.0" = {
- name = "node-firefox-connect";
- packageName = "node-firefox-connect";
- version = "1.2.0";
+ "reduce-component-1.0.1" = {
+ name = "reduce-component";
+ packageName = "reduce-component";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node-firefox-connect/-/node-firefox-connect-1.2.0.tgz";
- sha1 = "42403848313240c98514ef14b3302816fe3b84e1";
+ url = "https://registry.npmjs.org/reduce-component/-/reduce-component-1.0.1.tgz";
+ sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da";
};
};
- "node-notifier-5.1.2" = {
- name = "node-notifier";
- packageName = "node-notifier";
- version = "5.1.2";
+ "regenerator-runtime-0.10.5" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/node-notifier/-/node-notifier-5.1.2.tgz";
- sha1 = "2fa9e12605fa10009d44549d6fcd8a63dde0e4ff";
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz";
+ sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658";
};
};
- "sign-addon-0.2.1" = {
- name = "sign-addon";
- packageName = "sign-addon";
- version = "0.2.1";
+ "regenerator-runtime-0.11.1" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.2.1.tgz";
- sha1 = "0172bdd9fdee7bdc636f3833b6977a556c75388e";
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
+ sha512 = "03d4l8l8cyywh93wf5vw84lq56jh1b1d7jll4ny4z060j9hvx7w5q3q0b8q227jm93749k1c9h86r2pz0bm2xq5vp14g3r2kbvqc2rj";
};
};
- "source-map-support-0.5.0" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.5.0";
+ "regenerator-runtime-0.9.6" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.9.6";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.0.tgz";
- sha512 = "3nwgpximc17yn0lfg8658fxkm2hwbpvnbx5x1g0qgqvjm3vzld96rh1gf6iw1srbkicp0m825sq92r9bnj2r2gl8ys0f7fzivf0sjmx";
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz";
+ sha1 = "d33eb95d0d2001a4be39659707c51b0cb71ce029";
};
};
- "stream-to-promise-2.2.0" = {
- name = "stream-to-promise";
- packageName = "stream-to-promise";
- version = "2.2.0";
+ "regex-cache-0.4.4" = {
+ name = "regex-cache";
+ packageName = "regex-cache";
+ version = "0.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-to-promise/-/stream-to-promise-2.2.0.tgz";
- sha1 = "b1edb2e1c8cb11289d1b503c08d3f2aef51e650f";
+ url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz";
+ sha512 = "1crfmf19zkv0imnbbkj7bwrcyin3zxa88cs86b6apkxj8qrsmkxnydhsy2ia75q4ld10rhi2s2c36h7g77a997mh9c2z453s311jllx";
};
};
- "tmp-0.0.30" = {
- name = "tmp";
- packageName = "tmp";
- version = "0.0.30";
+ "regex-escape-3.4.8" = {
+ name = "regex-escape";
+ packageName = "regex-escape";
+ version = "3.4.8";
src = fetchurl {
- url = "https://registry.npmjs.org/tmp/-/tmp-0.0.30.tgz";
- sha1 = "72419d4a8be7d6ce75148fd8b324e593a711c2ed";
+ url = "https://registry.npmjs.org/regex-escape/-/regex-escape-3.4.8.tgz";
+ sha512 = "15ylzlxx4y88jldg7cgwv0dmw3ljpq27f9qf17d3g76dqh6ir1ig7dzvqv9nqpr3da1yd2r5ay8jqa6yk7ni5fbbrzgkhf3yha1av8c";
};
};
- "watchpack-1.3.0" = {
- name = "watchpack";
- packageName = "watchpack";
- version = "1.3.0";
+ "regex-not-1.0.0" = {
+ name = "regex-not";
+ packageName = "regex-not";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/watchpack/-/watchpack-1.3.0.tgz";
- sha1 = "5164d4faabb88dcf277f17c8a3b16bfd3da8bee3";
+ url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.0.tgz";
+ sha1 = "42f83e39771622df826b02af176525d6a5f157f9";
};
};
- "update-notifier-2.2.0" = {
- name = "update-notifier";
- packageName = "update-notifier";
- version = "2.2.0";
+ "registry-auth-token-3.3.1" = {
+ name = "registry-auth-token";
+ packageName = "registry-auth-token";
+ version = "3.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.2.0.tgz";
- sha1 = "1b5837cf90c0736d88627732b661c138f86de72f";
+ url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz";
+ sha1 = "fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006";
};
};
- "yargs-6.6.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "6.6.0";
+ "registry-url-3.1.0" = {
+ name = "registry-url";
+ packageName = "registry-url";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz";
- sha1 = "782ec21ef403345f830a808ca3d513af56065208";
+ url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz";
+ sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942";
};
};
- "zip-dir-1.0.2" = {
- name = "zip-dir";
- packageName = "zip-dir";
- version = "1.0.2";
+ "reinterval-1.1.0" = {
+ name = "reinterval";
+ packageName = "reinterval";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/zip-dir/-/zip-dir-1.0.2.tgz";
- sha1 = "253f907aead62a21acd8721d8b88032b2411c051";
+ url = "https://registry.npmjs.org/reinterval/-/reinterval-1.1.0.tgz";
+ sha1 = "3361ecfa3ca6c18283380dd0bb9546f390f5ece7";
};
};
- "ajv-5.2.3" = {
- name = "ajv";
- packageName = "ajv";
- version = "5.2.3";
+ "relateurl-0.2.7" = {
+ name = "relateurl";
+ packageName = "relateurl";
+ version = "0.2.7";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-5.2.3.tgz";
- sha1 = "c06f598778c44c6b161abafe3466b81ad1814ed2";
+ url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz";
+ sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9";
};
};
- "cheerio-1.0.0-rc.2" = {
- name = "cheerio";
- packageName = "cheerio";
- version = "1.0.0-rc.2";
+ "relative-date-1.1.3" = {
+ name = "relative-date";
+ packageName = "relative-date";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cheerio/-/cheerio-1.0.0-rc.2.tgz";
- sha1 = "4b9f53a81b27e4d5dac31c0ffd0cfa03cc6830db";
- };
- };
- "common-tags-1.4.0" = {
- name = "common-tags";
- packageName = "common-tags";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/common-tags/-/common-tags-1.4.0.tgz";
- sha1 = "1187be4f3d4cf0c0427d43f74eef1f73501614c0";
- };
- };
- "crx-parser-0.1.2" = {
- name = "crx-parser";
- packageName = "crx-parser";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/crx-parser/-/crx-parser-0.1.2.tgz";
- sha1 = "7eeeed9eddc95e22c189382e34624044a89a5a6d";
- };
- };
- "doctoc-1.3.0" = {
- name = "doctoc";
- packageName = "doctoc";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/doctoc/-/doctoc-1.3.0.tgz";
- sha1 = "7f0839851dd58c808a2cae55d9504e012d08ee30";
- };
- };
- "dispensary-0.10.19" = {
- name = "dispensary";
- packageName = "dispensary";
- version = "0.10.19";
- src = fetchurl {
- url = "https://registry.npmjs.org/dispensary/-/dispensary-0.10.19.tgz";
- sha1 = "457993df5f4a7e03f6fa00ec8ac4f8b21bebab69";
- };
- };
- "eslint-4.8.0" = {
- name = "eslint";
- packageName = "eslint";
- version = "4.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-4.8.0.tgz";
- sha1 = "229ef0e354e0e61d837c7a80fdfba825e199815e";
- };
- };
- "eslint-plugin-no-unsafe-innerhtml-1.0.16" = {
- name = "eslint-plugin-no-unsafe-innerhtml";
- packageName = "eslint-plugin-no-unsafe-innerhtml";
- version = "1.0.16";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint-plugin-no-unsafe-innerhtml/-/eslint-plugin-no-unsafe-innerhtml-1.0.16.tgz";
- sha1 = "7d02878c8e9bf7916b88836d5ac122b42f151932";
- };
- };
- "first-chunk-stream-2.0.0" = {
- name = "first-chunk-stream";
- packageName = "first-chunk-stream";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz";
- sha1 = "1bdecdb8e083c0664b91945581577a43a9f31d70";
- };
- };
- "jed-1.1.1" = {
- name = "jed";
- packageName = "jed";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jed/-/jed-1.1.1.tgz";
- sha1 = "7a549bbd9ffe1585b0cd0a191e203055bee574b4";
- };
- };
- "pino-4.10.2" = {
- name = "pino";
- packageName = "pino";
- version = "4.10.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/pino/-/pino-4.10.2.tgz";
- sha512 = "2dvx5p741a807ch31jbaxsn1qkkqjnvv8zikzjrk6pnm9da0gayl7g0swpvf87limyi61d3xfhasjy0v4fmvai2wb54pngfx2047lw4";
- };
- };
- "postcss-6.0.11" = {
- name = "postcss";
- packageName = "postcss";
- version = "6.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/postcss/-/postcss-6.0.11.tgz";
- sha512 = "1raf6rg2rp67ql9bgihz0b0laxjakl84aqf428a7d370fcq5hzfnb4gj7gkyqx5zafw6h9y1b5c666k0acjxh34n1mhlifd777wij8f";
+ url = "https://registry.npmjs.org/relative-date/-/relative-date-1.1.3.tgz";
+ sha1 = "120903040588ec7a4a399c6547fd01d0e3d2dc63";
};
};
"relaxed-json-1.0.1" = {
@@ -25334,78 +20733,6 @@ let
sha1 = "7c8d4aa2f095704cd020e32e8099bcae103f0bd4";
};
};
- "strip-bom-stream-3.0.0" = {
- name = "strip-bom-stream";
- packageName = "strip-bom-stream";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-3.0.0.tgz";
- sha1 = "956bcc5d84430f69256a90ed823765cd858e159c";
- };
- };
- "whatwg-url-6.3.0" = {
- name = "whatwg-url";
- packageName = "whatwg-url";
- version = "6.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.3.0.tgz";
- sha512 = "01m395qx0wag7d63id97v2d86ifpw677f42lys2k6bipw4n9kmwngghsb7la19impgkrg3n4ihyk3j7963rhfgd7b066a4qk09s3kxc";
- };
- };
- "yauzl-2.8.0" = {
- name = "yauzl";
- packageName = "yauzl";
- version = "2.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yauzl/-/yauzl-2.8.0.tgz";
- sha1 = "79450aff22b2a9c5a41ef54e02db907ccfbf9ee2";
- };
- };
- "parse5-3.0.3" = {
- name = "parse5";
- packageName = "parse5";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz";
- sha512 = "005xscj5zlz7pkxa5ngys7i7pdb2f4pirj1zw7hr1145zhxxgg04nhykjh1csy2ncr5lyjw8phq8m2ylqhfhi2z4hgvjb2b1rkbs0xf";
- };
- };
- "anchor-markdown-header-0.5.7" = {
- name = "anchor-markdown-header";
- packageName = "anchor-markdown-header";
- version = "0.5.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/anchor-markdown-header/-/anchor-markdown-header-0.5.7.tgz";
- sha1 = "045063d76e6a1f9cd327a57a0126aa0fdec371a7";
- };
- };
- "markdown-to-ast-3.4.0" = {
- name = "markdown-to-ast";
- packageName = "markdown-to-ast";
- version = "3.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-to-ast/-/markdown-to-ast-3.4.0.tgz";
- sha1 = "0e2cba81390b0549a9153ec3b0d915b61c164be7";
- };
- };
- "update-section-0.3.3" = {
- name = "update-section";
- packageName = "update-section";
- version = "0.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/update-section/-/update-section-0.3.3.tgz";
- sha1 = "458f17820d37820dc60e20b86d94391b00123158";
- };
- };
- "emoji-regex-6.1.3" = {
- name = "emoji-regex";
- packageName = "emoji-regex";
- version = "6.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.3.tgz";
- sha1 = "ec79a3969b02d2ecf2b72254279bf99bc7a83932";
- };
- };
"remark-5.1.0" = {
name = "remark";
packageName = "remark";
@@ -25415,24 +20742,6 @@ let
sha1 = "cb463bd3dbcb4b99794935eee1cf71d7a8e3068c";
};
};
- "structured-source-3.0.2" = {
- name = "structured-source";
- packageName = "structured-source";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/structured-source/-/structured-source-3.0.2.tgz";
- sha1 = "dd802425e0f53dc4a6e7aca3752901a1ccda7af5";
- };
- };
- "traverse-0.6.6" = {
- name = "traverse";
- packageName = "traverse";
- version = "0.6.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz";
- sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137";
- };
- };
"remark-parse-1.1.0" = {
name = "remark-parse";
packageName = "remark-parse";
@@ -25451,733 +20760,463 @@ let
sha1 = "a7105e25b9ee2bf9a49b75d2c423f11b06ae2092";
};
};
- "unified-4.2.1" = {
- name = "unified";
- packageName = "unified";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/unified/-/unified-4.2.1.tgz";
- sha1 = "76ff43aa8da430f6e7e4a55c84ebac2ad2cfcd2e";
- };
- };
- "collapse-white-space-1.0.3" = {
- name = "collapse-white-space";
- packageName = "collapse-white-space";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.3.tgz";
- sha1 = "4b906f670e5a963a87b76b0e1689643341b6023c";
- };
- };
- "parse-entities-1.1.1" = {
- name = "parse-entities";
- packageName = "parse-entities";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-entities/-/parse-entities-1.1.1.tgz";
- sha1 = "8112d88471319f27abae4d64964b122fe4e1b890";
- };
- };
- "trim-trailing-lines-1.1.0" = {
- name = "trim-trailing-lines";
- packageName = "trim-trailing-lines";
+ "remove-trailing-separator-1.1.0" = {
+ name = "remove-trailing-separator";
+ packageName = "remove-trailing-separator";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.0.tgz";
- sha1 = "7aefbb7808df9d669f6da2e438cac8c46ada7684";
+ url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
+ sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
};
};
- "unherit-1.1.0" = {
- name = "unherit";
- packageName = "unherit";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unherit/-/unherit-1.1.0.tgz";
- sha1 = "6b9aaedfbf73df1756ad9e316dd981885840cd7d";
- };
- };
- "unist-util-remove-position-1.1.1" = {
- name = "unist-util-remove-position";
- packageName = "unist-util-remove-position";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.1.tgz";
- sha1 = "5a85c1555fc1ba0c101b86707d15e50fa4c871bb";
- };
- };
- "vfile-location-2.0.2" = {
- name = "vfile-location";
- packageName = "vfile-location";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.2.tgz";
- sha1 = "d3675c59c877498e492b4756ff65e4af1a752255";
- };
- };
- "character-entities-1.2.1" = {
- name = "character-entities";
- packageName = "character-entities";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/character-entities/-/character-entities-1.2.1.tgz";
- sha1 = "f76871be5ef66ddb7f8f8e3478ecc374c27d6dca";
- };
- };
- "character-entities-legacy-1.1.1" = {
- name = "character-entities-legacy";
- packageName = "character-entities-legacy";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.1.tgz";
- sha1 = "f40779df1a101872bb510a3d295e1fccf147202f";
- };
- };
- "character-reference-invalid-1.1.1" = {
- name = "character-reference-invalid";
- packageName = "character-reference-invalid";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.1.tgz";
- sha1 = "942835f750e4ec61a308e60c2ef8cc1011202efc";
- };
- };
- "is-alphanumerical-1.0.1" = {
- name = "is-alphanumerical";
- packageName = "is-alphanumerical";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.1.tgz";
- sha1 = "dfb4aa4d1085e33bdb61c2dee9c80e9c6c19f53b";
- };
- };
- "is-decimal-1.0.1" = {
- name = "is-decimal";
- packageName = "is-decimal";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.1.tgz";
- sha1 = "f5fb6a94996ad9e8e3761fbfbd091f1fca8c4e82";
- };
- };
- "is-hexadecimal-1.0.1" = {
- name = "is-hexadecimal";
- packageName = "is-hexadecimal";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.1.tgz";
- sha1 = "6e084bbc92061fbb0971ec58b6ce6d404e24da69";
- };
- };
- "is-alphabetical-1.0.1" = {
- name = "is-alphabetical";
- packageName = "is-alphabetical";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.1.tgz";
- sha1 = "c77079cc91d4efac775be1034bf2d243f95e6f08";
- };
- };
- "unist-util-visit-1.3.0" = {
- name = "unist-util-visit";
- packageName = "unist-util-visit";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.3.0.tgz";
- sha512 = "24s5gpqr3vip7zfd3c81k1mhcj1qzlmjhxpn80n3ay8kkg3zycjdkvi6d78j1d3lva7qr1lqrf2mcz5k41as5vwh8w5xdn52drmhyzn";
- };
- };
- "unist-util-is-2.1.1" = {
- name = "unist-util-is";
- packageName = "unist-util-is";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.1.tgz";
- sha1 = "0c312629e3f960c66e931e812d3d80e77010947b";
- };
- };
- "ccount-1.0.2" = {
- name = "ccount";
- packageName = "ccount";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ccount/-/ccount-1.0.2.tgz";
- sha1 = "53b6a2f815bb77b9c2871f7b9a72c3a25f1d8e89";
- };
- };
- "longest-streak-1.0.0" = {
- name = "longest-streak";
- packageName = "longest-streak";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/longest-streak/-/longest-streak-1.0.0.tgz";
- sha1 = "d06597c4d4c31b52ccb1f5d8f8fe7148eafd6965";
- };
- };
- "markdown-table-0.4.0" = {
- name = "markdown-table";
- packageName = "markdown-table";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/markdown-table/-/markdown-table-0.4.0.tgz";
- sha1 = "890c2c1b3bfe83fb00e4129b8e4cfe645270f9d1";
- };
- };
- "stringify-entities-1.3.1" = {
- name = "stringify-entities";
- packageName = "stringify-entities";
+ "render-readme-1.3.1" = {
+ name = "render-readme";
+ packageName = "render-readme";
version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.1.tgz";
- sha1 = "b150ec2d72ac4c1b5f324b51fb6b28c9cdff058c";
+ url = "https://registry.npmjs.org/render-readme/-/render-readme-1.3.1.tgz";
+ sha1 = "d2a98f9a87dd64fa73c6877ac5c45b0f6341a797";
};
};
- "character-entities-html4-1.1.1" = {
- name = "character-entities-html4";
- packageName = "character-entities-html4";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.1.tgz";
- sha1 = "359a2a4a0f7e29d3dc2ac99bdbe21ee39438ea50";
- };
- };
- "bail-1.0.2" = {
- name = "bail";
- packageName = "bail";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bail/-/bail-1.0.2.tgz";
- sha1 = "f7d6c1731630a9f9f0d4d35ed1f962e2074a1764";
- };
- };
- "trough-1.0.1" = {
- name = "trough";
- packageName = "trough";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/trough/-/trough-1.0.1.tgz";
- sha1 = "a9fd8b0394b0ae8fff82e0633a0a36ccad5b5f86";
- };
- };
- "vfile-1.4.0" = {
- name = "vfile";
- packageName = "vfile";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vfile/-/vfile-1.4.0.tgz";
- sha1 = "c0fd6fa484f8debdb771f68c31ed75d88da97fe7";
- };
- };
- "boundary-1.0.1" = {
- name = "boundary";
- packageName = "boundary";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/boundary/-/boundary-1.0.1.tgz";
- sha1 = "4d67dc2602c0cc16dd9bce7ebf87e948290f5812";
- };
- };
- "array-from-2.1.1" = {
- name = "array-from";
- packageName = "array-from";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz";
- sha1 = "cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195";
- };
- };
- "natural-compare-lite-1.4.0" = {
- name = "natural-compare-lite";
- packageName = "natural-compare-lite";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz";
- sha1 = "17b09581988979fddafe0201e931ba933c96cbb4";
- };
- };
- "eslint-3.19.0" = {
- name = "eslint";
- packageName = "eslint";
- version = "3.19.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-3.19.0.tgz";
- sha1 = "c8fc6201c7f40dd08941b87c085767386a679acc";
- };
- };
- "inquirer-0.12.0" = {
- name = "inquirer";
- packageName = "inquirer";
- version = "0.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz";
- sha1 = "1ef2bfd63504df0bc75785fff8c2c41df12f077e";
- };
- };
- "pluralize-1.2.1" = {
- name = "pluralize";
- packageName = "pluralize";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz";
- sha1 = "d1a21483fd22bb41e58a12fa3421823140897c45";
- };
- };
- "table-3.8.3" = {
- name = "table";
- packageName = "table";
- version = "3.8.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/table/-/table-3.8.3.tgz";
- sha1 = "2bbc542f0fda9861a755d3947fefd8b3f513855f";
- };
- };
- "ajv-keywords-1.5.1" = {
- name = "ajv-keywords";
- packageName = "ajv-keywords";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz";
- sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c";
- };
- };
- "slice-ansi-0.0.4" = {
- name = "slice-ansi";
- packageName = "slice-ansi";
- version = "0.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz";
- sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35";
- };
- };
- "fast-json-parse-1.0.3" = {
- name = "fast-json-parse";
- packageName = "fast-json-parse";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz";
- sha512 = "01vq6bwp36yjvywlw5jniq4ainn8jrwxsab76bv02j77ky26qm99097g7x6j8dqrjrhfgd0vs9q6nh2milhsnsk9529s42njilsq58m";
- };
- };
- "fast-safe-stringify-1.2.1" = {
- name = "fast-safe-stringify";
- packageName = "fast-safe-stringify";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-1.2.1.tgz";
- sha512 = "2in2h3qxnsgr2kvm4pk5hlgxgx9n4hnh83rzirgscbql55k3jwgvs9hksclxzi7il0i0qbj3iqk5qlka0rf71wq9b9qij9jxmw2lrc3";
- };
- };
- "flatstr-1.0.5" = {
- name = "flatstr";
- packageName = "flatstr";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/flatstr/-/flatstr-1.0.5.tgz";
- sha1 = "5b451b08cbd48e2eac54a2bbe0bf46165aa14be3";
- };
- };
- "quick-format-unescaped-1.1.1" = {
- name = "quick-format-unescaped";
- packageName = "quick-format-unescaped";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-1.1.1.tgz";
- sha1 = "e77555ef3e66e105d4039e13ef79201284fee916";
- };
- };
- "strip-bom-buf-1.0.0" = {
- name = "strip-bom-buf";
- packageName = "strip-bom-buf";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz";
- sha1 = "1cb45aaf57530f4caf86c7f75179d2c9a51dd572";
- };
- };
- "lodash.sortby-4.7.0" = {
- name = "lodash.sortby";
- packageName = "lodash.sortby";
- version = "4.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz";
- sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438";
- };
- };
- "tr46-1.0.1" = {
- name = "tr46";
- packageName = "tr46";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz";
- sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09";
- };
- };
- "webidl-conversions-4.0.2" = {
- name = "webidl-conversions";
- packageName = "webidl-conversions";
- version = "4.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz";
- sha512 = "15gwgjh9anvzcissfhxy3gki7jxn1dy9vq5rma1sgwkbbra8wbxnvimwalgmy8anm33x56mfp492akzhs0gidwmbnadx0ck3fdq23v1";
- };
- };
- "archiver-1.3.0" = {
- name = "archiver";
- packageName = "archiver";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/archiver/-/archiver-1.3.0.tgz";
- sha1 = "4f2194d6d8f99df3f531e6881f14f15d55faaf22";
- };
- };
- "fs-extra-2.1.2" = {
- name = "fs-extra";
- packageName = "fs-extra";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz";
- sha1 = "046c70163cef9aad46b0e4a7fa467fb22d71de35";
- };
- };
- "jetpack-id-1.0.0" = {
- name = "jetpack-id";
- packageName = "jetpack-id";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/jetpack-id/-/jetpack-id-1.0.0.tgz";
- sha1 = "2cf9fbae46d8074fc16b7de0071c8efebca473a6";
- };
- };
- "walkdir-0.0.11" = {
- name = "walkdir";
- packageName = "walkdir";
- version = "0.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/walkdir/-/walkdir-0.0.11.tgz";
- sha1 = "a16d025eb931bd03b52f308caed0f40fcebe9532";
- };
- };
- "when-3.7.7" = {
- name = "when";
- packageName = "when";
- version = "3.7.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/when/-/when-3.7.7.tgz";
- sha1 = "aba03fc3bb736d6c88b091d013d8a8e590d84718";
- };
- };
- "which-1.2.4" = {
- name = "which";
- packageName = "which";
- version = "1.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.2.4.tgz";
- sha1 = "1557f96080604e5b11b3599eb9f45b50a9efd722";
- };
- };
- "winreg-0.0.12" = {
- name = "winreg";
- packageName = "winreg";
- version = "0.0.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/winreg/-/winreg-0.0.12.tgz";
- sha1 = "07105554ba1a9d08979251d129475bffae3006b7";
- };
- };
- "is-absolute-0.1.7" = {
- name = "is-absolute";
- packageName = "is-absolute";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz";
- sha1 = "847491119fccb5fb436217cc737f7faad50f603f";
- };
- };
- "isexe-1.1.2" = {
- name = "isexe";
- packageName = "isexe";
+ "repeat-element-1.1.2" = {
+ name = "repeat-element";
+ packageName = "repeat-element";
version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/isexe/-/isexe-1.1.2.tgz";
- sha1 = "36f3e22e60750920f5e7241a476a8c6a42275ad0";
+ url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz";
+ sha1 = "ef089a178d1483baae4d93eb98b4f9e4e11d990a";
};
};
- "is-relative-0.1.3" = {
- name = "is-relative";
- packageName = "is-relative";
- version = "0.1.3";
+ "repeat-string-0.2.2" = {
+ name = "repeat-string";
+ packageName = "repeat-string";
+ version = "0.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz";
- sha1 = "905fee8ae86f45b3ec614bc3c15c869df0876e82";
+ url = "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz";
+ sha1 = "c7a8d3236068362059a7e4651fc6884e8b1fb4ae";
};
};
- "shelljs-0.7.7" = {
- name = "shelljs";
- packageName = "shelljs";
- version = "0.7.7";
+ "repeat-string-1.6.1" = {
+ name = "repeat-string";
+ packageName = "repeat-string";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.7.tgz";
- sha1 = "b2f5c77ef97148f4b4f6e22682e10bba8667cff1";
+ url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
+ sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
};
};
- "es6-promise-2.3.0" = {
- name = "es6-promise";
- packageName = "es6-promise";
- version = "2.3.0";
+ "repeating-1.1.3" = {
+ name = "repeating";
+ packageName = "repeating";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz";
- sha1 = "96edb9f2fdb01995822b263dd8aadab6748181bc";
+ url = "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz";
+ sha1 = "3d4114218877537494f97f77f9785fab810fa4ac";
};
};
- "firefox-client-0.3.0" = {
- name = "firefox-client";
- packageName = "firefox-client";
- version = "0.3.0";
+ "repeating-2.0.1" = {
+ name = "repeating";
+ packageName = "repeating";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/firefox-client/-/firefox-client-0.3.0.tgz";
- sha1 = "3794460f6eb6afcf41376addcbc7462e24a4cd8b";
+ url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz";
+ sha1 = "5214c53a926d3552707527fbab415dbc08d06dda";
};
};
- "colors-0.5.1" = {
- name = "colors";
- packageName = "colors";
- version = "0.5.1";
+ "replace-ext-0.0.1" = {
+ name = "replace-ext";
+ packageName = "replace-ext";
+ version = "0.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz";
- sha1 = "7d0023eaeb154e8ee9fce75dcb923d0ed1667774";
+ url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz";
+ sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924";
};
};
- "js-select-0.6.0" = {
- name = "js-select";
- packageName = "js-select";
- version = "0.6.0";
+ "request-2.16.6" = {
+ name = "request";
+ packageName = "request";
+ version = "2.16.6";
src = fetchurl {
- url = "https://registry.npmjs.org/js-select/-/js-select-0.6.0.tgz";
- sha1 = "c284e22824d5927aec962dcdf247174aefb0d190";
+ url = "https://registry.npmjs.org/request/-/request-2.16.6.tgz";
+ sha1 = "872fe445ae72de266b37879d6ad7dc948fa01cad";
};
};
- "traverse-0.4.6" = {
- name = "traverse";
- packageName = "traverse";
- version = "0.4.6";
+ "request-2.67.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.67.0";
src = fetchurl {
- url = "https://registry.npmjs.org/traverse/-/traverse-0.4.6.tgz";
- sha1 = "d04b2280e4c792a5815429ef7b8b60c64c9ccc34";
+ url = "https://registry.npmjs.org/request/-/request-2.67.0.tgz";
+ sha1 = "8af74780e2bf11ea0ae9aa965c11f11afd272742";
};
};
- "JSONSelect-0.2.1" = {
- name = "JSONSelect";
- packageName = "JSONSelect";
- version = "0.2.1";
+ "request-2.74.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.74.0";
src = fetchurl {
- url = "https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.2.1.tgz";
- sha1 = "415418a526d33fe31d74b4defa3c836d485ec203";
+ url = "https://registry.npmjs.org/request/-/request-2.74.0.tgz";
+ sha1 = "7693ca768bbb0ea5c8ce08c084a45efa05b892ab";
};
};
- "growly-1.3.0" = {
- name = "growly";
- packageName = "growly";
- version = "1.3.0";
+ "request-2.75.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.75.0";
src = fetchurl {
- url = "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz";
- sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081";
+ url = "https://registry.npmjs.org/request/-/request-2.75.0.tgz";
+ sha1 = "d2b8268a286da13eaa5d01adf5d18cc90f657d93";
};
};
- "shellwords-0.1.1" = {
- name = "shellwords";
- packageName = "shellwords";
- version = "0.1.1";
+ "request-2.79.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.79.0";
src = fetchurl {
- url = "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz";
- sha512 = "31h1mksdbashjfpvj7xh8nqw7siqm5v1yj77pmcsbkzqi4hrpjqmzv2sifjlljjyx87sfqnmcn0yqh1hfgn669c43i2dargyi8i4p5w";
+ url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz";
+ sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de";
};
};
- "babel-polyfill-6.16.0" = {
- name = "babel-polyfill";
- packageName = "babel-polyfill";
- version = "6.16.0";
+ "request-2.81.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.81.0";
src = fetchurl {
- url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.16.0.tgz";
- sha1 = "2d45021df87e26a374b6d4d1a9c65964d17f2422";
+ url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
+ sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
};
};
- "deepcopy-0.6.3" = {
- name = "deepcopy";
- packageName = "deepcopy";
- version = "0.6.3";
+ "request-2.83.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.83.0";
src = fetchurl {
- url = "https://registry.npmjs.org/deepcopy/-/deepcopy-0.6.3.tgz";
- sha1 = "634780f2f8656ab771af8fa8431ed1ccee55c7b0";
+ url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz";
+ sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm";
};
};
- "es6-error-4.0.0" = {
- name = "es6-error";
- packageName = "es6-error";
- version = "4.0.0";
+ "request-2.9.203" = {
+ name = "request";
+ packageName = "request";
+ version = "2.9.203";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-error/-/es6-error-4.0.0.tgz";
- sha1 = "f094c7041f662599bb12720da059d6b9c7ff0f40";
+ url = "https://registry.npmjs.org/request/-/request-2.9.203.tgz";
+ sha1 = "6c1711a5407fb94a114219563e44145bcbf4723a";
};
};
- "jsonwebtoken-7.1.9" = {
- name = "jsonwebtoken";
- packageName = "jsonwebtoken";
- version = "7.1.9";
+ "request-progress-2.0.1" = {
+ name = "request-progress";
+ packageName = "request-progress";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-7.1.9.tgz";
- sha1 = "847804e5258bec5a9499a8dc4a5e7a3bae08d58a";
+ url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz";
+ sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08";
};
};
- "mz-2.5.0" = {
- name = "mz";
- packageName = "mz";
- version = "2.5.0";
+ "requestretry-1.13.0" = {
+ name = "requestretry";
+ packageName = "requestretry";
+ version = "1.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mz/-/mz-2.5.0.tgz";
- sha1 = "2859025df03d46b57bb317174b196477ce64cec1";
+ url = "https://registry.npmjs.org/requestretry/-/requestretry-1.13.0.tgz";
+ sha512 = "2d6rk1gry4jlbd4i3ghm6vn9vjcjwsyb02w9f4jc5ximih9niq4javazp9hbm658zp2fz2zm8xy1dp2rxqv2c84301p0hg7rfl7ss1f";
};
};
- "source-map-support-0.4.6" = {
- name = "source-map-support";
- packageName = "source-map-support";
- version = "0.4.6";
+ "require-directory-2.1.1" = {
+ name = "require-directory";
+ packageName = "require-directory";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.6.tgz";
- sha1 = "32552aa64b458392a85eab3b0b5ee61527167aeb";
+ url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
+ sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
};
};
- "regenerator-runtime-0.9.6" = {
- name = "regenerator-runtime";
- packageName = "regenerator-runtime";
- version = "0.9.6";
+ "require-from-string-1.2.1" = {
+ name = "require-from-string";
+ packageName = "require-from-string";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz";
- sha1 = "d33eb95d0d2001a4be39659707c51b0cb71ce029";
+ url = "https://registry.npmjs.org/require-from-string/-/require-from-string-1.2.1.tgz";
+ sha1 = "529c9ccef27380adfec9a2f965b649bbee636418";
};
};
- "joi-6.10.1" = {
- name = "joi";
- packageName = "joi";
- version = "6.10.1";
+ "require-from-string-2.0.1" = {
+ name = "require-from-string";
+ packageName = "require-from-string";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz";
- sha1 = "4d50c318079122000fe5f16af1ff8e1917b77e06";
+ url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.1.tgz";
+ sha1 = "c545233e9d7da6616e9d59adfb39fc9f588676ff";
};
};
- "lodash.once-4.1.1" = {
- name = "lodash.once";
- packageName = "lodash.once";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz";
- sha1 = "0dd3971213c7c56df880977d504c88fb471a97ac";
- };
- };
- "topo-1.1.0" = {
- name = "topo";
- packageName = "topo";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz";
- sha1 = "e9d751615d1bb87dc865db182fa1ca0a5ef536d5";
- };
- };
- "isemail-1.2.0" = {
- name = "isemail";
- packageName = "isemail";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz";
- sha1 = "be03df8cc3e29de4d2c5df6501263f1fa4595e9a";
- };
- };
- "end-of-stream-1.1.0" = {
- name = "end-of-stream";
- packageName = "end-of-stream";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz";
- sha1 = "e9353258baa9108965efc41cb0ef8ade2f3cfb07";
- };
- };
- "stream-to-array-2.3.0" = {
- name = "stream-to-array";
- packageName = "stream-to-array";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-to-array/-/stream-to-array-2.3.0.tgz";
- sha1 = "bbf6b39f5f43ec30bc71babcb37557acecf34353";
- };
- };
- "yargs-parser-4.2.1" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz";
- sha1 = "29cceac0dc4f03c6c87b4a9f217dd18c9f74871c";
- };
- };
- "jszip-2.6.1" = {
- name = "jszip";
- packageName = "jszip";
- version = "2.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jszip/-/jszip-2.6.1.tgz";
- sha1 = "b88f3a7b2e67a2a048152982c7a3756d9c4828f0";
- };
- };
- "cli-list-0.2.0" = {
- name = "cli-list";
- packageName = "cli-list";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-list/-/cli-list-0.2.0.tgz";
- sha1 = "7e673ee0dd39a611a486476e53f3c6b3941cb582";
- };
- };
- "fullname-3.3.0" = {
- name = "fullname";
- packageName = "fullname";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fullname/-/fullname-3.3.0.tgz";
- sha1 = "a08747d6921229610b8178b7614fce10cb185f5a";
- };
- };
- "humanize-string-1.0.1" = {
- name = "humanize-string";
- packageName = "humanize-string";
+ "require-main-filename-1.0.1" = {
+ name = "require-main-filename";
+ packageName = "require-main-filename";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/humanize-string/-/humanize-string-1.0.1.tgz";
- sha1 = "fce2d6c545efc25dea1f23235182c98da0180b42";
+ url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
+ sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
};
};
- "npm-keyword-4.2.0" = {
- name = "npm-keyword";
- packageName = "npm-keyword";
- version = "4.2.0";
+ "require-uncached-1.0.3" = {
+ name = "require-uncached";
+ packageName = "require-uncached";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-keyword/-/npm-keyword-4.2.0.tgz";
- sha1 = "98ffebfdbb1336f27ef5fe1baca0dcacd0acf6c0";
+ url = "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz";
+ sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3";
};
};
- "opn-4.0.2" = {
- name = "opn";
- packageName = "opn";
- version = "4.0.2";
+ "requires-port-1.0.0" = {
+ name = "requires-port";
+ packageName = "requires-port";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/opn/-/opn-4.0.2.tgz";
- sha1 = "7abc22e644dff63b0a96d5ab7f2790c0f01abc95";
+ url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz";
+ sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff";
};
};
- "parse-help-0.1.1" = {
- name = "parse-help";
- packageName = "parse-help";
- version = "0.1.1";
+ "requizzle-0.2.1" = {
+ name = "requizzle";
+ packageName = "requizzle";
+ version = "0.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-help/-/parse-help-0.1.1.tgz";
- sha1 = "2f4df942e77a5581bba9967c0c3f48e4c66d7dda";
+ url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.1.tgz";
+ sha1 = "6943c3530c4d9a7e46f1cddd51c158fc670cdbde";
+ };
+ };
+ "resolve-1.1.7" = {
+ name = "resolve";
+ packageName = "resolve";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz";
+ sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
+ };
+ };
+ "resolve-1.5.0" = {
+ name = "resolve";
+ packageName = "resolve";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz";
+ sha512 = "25scf9zkhf5yc9x3d7mfq2im5vyxmq3ih939na6jzblal7mgfcijmadl2maz501mkccykj714gvdhhmlzi86hbk7k03r9ipnwd142l6";
+ };
+ };
+ "resolve-dir-1.0.1" = {
+ name = "resolve-dir";
+ packageName = "resolve-dir";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz";
+ sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
+ };
+ };
+ "resolve-from-1.0.1" = {
+ name = "resolve-from";
+ packageName = "resolve-from";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz";
+ sha1 = "26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226";
+ };
+ };
+ "resolve-from-2.0.0" = {
+ name = "resolve-from";
+ packageName = "resolve-from";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz";
+ sha1 = "9480ab20e94ffa1d9e80a804c7ea147611966b57";
+ };
+ };
+ "resolve-from-3.0.0" = {
+ name = "resolve-from";
+ packageName = "resolve-from";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz";
+ sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
+ };
+ };
+ "resolve-url-0.2.1" = {
+ name = "resolve-url";
+ packageName = "resolve-url";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz";
+ sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a";
+ };
+ };
+ "response-time-2.3.2" = {
+ name = "response-time";
+ packageName = "response-time";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/response-time/-/response-time-2.3.2.tgz";
+ sha1 = "ffa71bab952d62f7c1d49b7434355fbc68dffc5a";
+ };
+ };
+ "responselike-1.0.2" = {
+ name = "responselike";
+ packageName = "responselike";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz";
+ sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7";
+ };
+ };
+ "restify-4.0.3" = {
+ name = "restify";
+ packageName = "restify";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/restify/-/restify-4.0.3.tgz";
+ sha1 = "e1e5b7ad9d4f6aeacd20e28f44a045f26c146dbc";
+ };
+ };
+ "restore-cursor-1.0.1" = {
+ name = "restore-cursor";
+ packageName = "restore-cursor";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz";
+ sha1 = "34661f46886327fed2991479152252df92daa541";
+ };
+ };
+ "restore-cursor-2.0.0" = {
+ name = "restore-cursor";
+ packageName = "restore-cursor";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz";
+ sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf";
+ };
+ };
+ "resumer-0.0.0" = {
+ name = "resumer";
+ packageName = "resumer";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz";
+ sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759";
+ };
+ };
+ "retry-0.10.1" = {
+ name = "retry";
+ packageName = "retry";
+ version = "0.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz";
+ sha1 = "e76388d217992c252750241d3d3956fed98d8ff4";
+ };
+ };
+ "retry-0.6.0" = {
+ name = "retry";
+ packageName = "retry";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/retry/-/retry-0.6.0.tgz";
+ sha1 = "1c010713279a6fd1e8def28af0c3ff1871caa537";
+ };
+ };
+ "retry-0.6.1" = {
+ name = "retry";
+ packageName = "retry";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/retry/-/retry-0.6.1.tgz";
+ sha1 = "fdc90eed943fde11b893554b8cc63d0e899ba918";
+ };
+ };
+ "revalidator-0.1.8" = {
+ name = "revalidator";
+ packageName = "revalidator";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz";
+ sha1 = "fece61bfa0c1b52a206bd6b18198184bdd523a3b";
+ };
+ };
+ "reverse-http-1.3.0" = {
+ name = "reverse-http";
+ packageName = "reverse-http";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/reverse-http/-/reverse-http-1.3.0.tgz";
+ sha1 = "61a9644bdea483aa281ffb62706e642f1a73a239";
+ };
+ };
+ "right-align-0.1.3" = {
+ name = "right-align";
+ packageName = "right-align";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz";
+ sha1 = "61339b722fe6a3515689210d24e14c96148613ef";
+ };
+ };
+ "rimraf-2.1.4" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.1.4.tgz";
+ sha1 = "5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2";
+ };
+ };
+ "rimraf-2.2.8" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz";
+ sha1 = "e439be2aaee327321952730f99a8929e4fc50582";
+ };
+ };
+ "rimraf-2.4.5" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz";
+ sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da";
+ };
+ };
+ "rimraf-2.6.2" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
+ sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn";
+ };
+ };
+ "ripemd160-2.0.1" = {
+ name = "ripemd160";
+ packageName = "ripemd160";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.1.tgz";
+ sha1 = "0f4584295c53a3628af7e6d79aca21ce57d1c6e7";
+ };
+ };
+ "rndm-1.2.0" = {
+ name = "rndm";
+ packageName = "rndm";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz";
+ sha1 = "f33fe9cfb52bbfd520aa18323bc65db110a1b76c";
+ };
+ };
+ "root-2.0.0" = {
+ name = "root";
+ packageName = "root";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/root/-/root-2.0.0.tgz";
+ sha1 = "5cde3bc4ee9eb314c9dc64f97d9b9787df22e2f7";
};
};
"root-check-1.0.0" = {
@@ -26189,6 +21228,1518 @@ let
sha1 = "c52a794bf0db9fad567536e41898f0c9e0a86697";
};
};
+ "router-0.6.2" = {
+ name = "router";
+ packageName = "router";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/router/-/router-0.6.2.tgz";
+ sha1 = "6f04063a2d04eba3303a1bbc6765eef63037cf3d";
+ };
+ };
+ "router-1.3.2" = {
+ name = "router";
+ packageName = "router";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/router/-/router-1.3.2.tgz";
+ sha1 = "bfaa16888a5283d5ee40d999da7a9fa15296a60c";
+ };
+ };
+ "rsvp-3.6.2" = {
+ name = "rsvp";
+ packageName = "rsvp";
+ version = "3.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rsvp/-/rsvp-3.6.2.tgz";
+ sha512 = "2bjwzsigk7685syp50amryj0sx08l155azg1z4ldx95gadlwfm07y0iyv0vfwgfchbripn2a5r04qhv546djh0biw8prgpx6r0qdx9r";
+ };
+ };
+ "run-async-0.1.0" = {
+ name = "run-async";
+ packageName = "run-async";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz";
+ sha1 = "c8ad4a5e110661e402a7d21b530e009f25f8e389";
+ };
+ };
+ "run-async-2.3.0" = {
+ name = "run-async";
+ packageName = "run-async";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz";
+ sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0";
+ };
+ };
+ "run-parallel-1.1.6" = {
+ name = "run-parallel";
+ packageName = "run-parallel";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.6.tgz";
+ sha1 = "29003c9a2163e01e2d2dfc90575f2c6c1d61a039";
+ };
+ };
+ "run-series-1.1.4" = {
+ name = "run-series";
+ packageName = "run-series";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-series/-/run-series-1.1.4.tgz";
+ sha1 = "89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9";
+ };
+ };
+ "rusha-0.8.12" = {
+ name = "rusha";
+ packageName = "rusha";
+ version = "0.8.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rusha/-/rusha-0.8.12.tgz";
+ sha1 = "5d838ce1fce8b145674ee771eaad5bcb2575e64b";
+ };
+ };
+ "rx-2.5.3" = {
+ name = "rx";
+ packageName = "rx";
+ version = "2.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rx/-/rx-2.5.3.tgz";
+ sha1 = "21adc7d80f02002af50dae97fd9dbf248755f566";
+ };
+ };
+ "rx-4.1.0" = {
+ name = "rx";
+ packageName = "rx";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz";
+ sha1 = "a5f13ff79ef3b740fe30aa803fb09f98805d4782";
+ };
+ };
+ "rx-lite-3.1.2" = {
+ name = "rx-lite";
+ packageName = "rx-lite";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz";
+ sha1 = "19ce502ca572665f3b647b10939f97fd1615f102";
+ };
+ };
+ "rx-lite-4.0.8" = {
+ name = "rx-lite";
+ packageName = "rx-lite";
+ version = "4.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz";
+ sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444";
+ };
+ };
+ "rx-lite-aggregates-4.0.8" = {
+ name = "rx-lite-aggregates";
+ packageName = "rx-lite-aggregates";
+ version = "4.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz";
+ sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be";
+ };
+ };
+ "rxjs-5.5.6" = {
+ name = "rxjs";
+ packageName = "rxjs";
+ version = "5.5.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.6.tgz";
+ sha512 = "293yj2n5f5bj8b8y9czwgm5l3bqa0g3bbghnxsxwdpiz6s2mxiw6a79w3sqq3c1by3avmb5bgk8xgi0yss5y09pxw87055l60f3k15z";
+ };
+ };
+ "safe-buffer-5.0.1" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz";
+ sha1 = "d263ca54696cd8a306b5ca6551e92de57918fbe7";
+ };
+ };
+ "safe-buffer-5.1.1" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz";
+ sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh";
+ };
+ };
+ "safe-json-parse-1.0.1" = {
+ name = "safe-json-parse";
+ packageName = "safe-json-parse";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-json-parse/-/safe-json-parse-1.0.1.tgz";
+ sha1 = "3e76723e38dfdda13c9b1d29a1e07ffee4b30b57";
+ };
+ };
+ "safe-json-stringify-1.0.4" = {
+ name = "safe-json-stringify";
+ packageName = "safe-json-stringify";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.0.4.tgz";
+ sha1 = "81a098f447e4bbc3ff3312a243521bc060ef5911";
+ };
+ };
+ "sanitize-html-1.17.0" = {
+ name = "sanitize-html";
+ packageName = "sanitize-html";
+ version = "1.17.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.17.0.tgz";
+ sha512 = "1gnj506vfw53kv0d0y0v2cg4694lyq7fbcbpjllzmls3z3b8pdrh40nw3pp70bfs851c8sklh3f4zifaznd02jkbn62z089x7kbmgg6";
+ };
+ };
+ "sax-0.3.5" = {
+ name = "sax";
+ packageName = "sax";
+ version = "0.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sax/-/sax-0.3.5.tgz";
+ sha1 = "88fcfc1f73c0c8bbd5b7c776b6d3f3501eed073d";
+ };
+ };
+ "sax-0.5.2" = {
+ name = "sax";
+ packageName = "sax";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sax/-/sax-0.5.2.tgz";
+ sha1 = "735ffaa39a1cff8ffb9598f0223abdb03a9fb2ea";
+ };
+ };
+ "sax-0.5.8" = {
+ name = "sax";
+ packageName = "sax";
+ version = "0.5.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz";
+ sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1";
+ };
+ };
+ "sax-0.6.1" = {
+ name = "sax";
+ packageName = "sax";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sax/-/sax-0.6.1.tgz";
+ sha1 = "563b19c7c1de892e09bfc4f2fc30e3c27f0952b9";
+ };
+ };
+ "sax-1.1.4" = {
+ name = "sax";
+ packageName = "sax";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sax/-/sax-1.1.4.tgz";
+ sha1 = "74b6d33c9ae1e001510f179a91168588f1aedaa9";
+ };
+ };
+ "sax-1.2.1" = {
+ name = "sax";
+ packageName = "sax";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz";
+ sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a";
+ };
+ };
+ "sax-1.2.4" = {
+ name = "sax";
+ packageName = "sax";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz";
+ sha512 = "1dn291mjsda42w8kldlbmngk6dhjxfbvvd5lckyqmwbjaj6069iq3wx0nvcfglwnpddz2qa93lzf4hv77iz43bd2qixa079sjzl799n";
+ };
+ };
+ "scoped-regex-1.0.0" = {
+ name = "scoped-regex";
+ packageName = "scoped-regex";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/scoped-regex/-/scoped-regex-1.0.0.tgz";
+ sha1 = "a346bb1acd4207ae70bd7c0c7ca9e566b6baddb8";
+ };
+ };
+ "semaphore-async-await-1.5.1" = {
+ name = "semaphore-async-await";
+ packageName = "semaphore-async-await";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semaphore-async-await/-/semaphore-async-await-1.5.1.tgz";
+ sha1 = "857bef5e3644601ca4b9570b87e9df5ca12974fa";
+ };
+ };
+ "semver-1.1.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-1.1.0.tgz";
+ sha1 = "da9b9c837e31550a7c928622bc2381de7dd7a53e";
+ };
+ };
+ "semver-2.0.11" = {
+ name = "semver";
+ packageName = "semver";
+ version = "2.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-2.0.11.tgz";
+ sha1 = "f51f07d03fa5af79beb537fc067a7e141786cced";
+ };
+ };
+ "semver-2.3.2" = {
+ name = "semver";
+ packageName = "semver";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz";
+ sha1 = "b9848f25d6cf36333073ec9ef8856d42f1233e52";
+ };
+ };
+ "semver-4.3.6" = {
+ name = "semver";
+ packageName = "semver";
+ version = "4.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz";
+ sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da";
+ };
+ };
+ "semver-5.0.3" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz";
+ sha1 = "77466de589cd5d3c95f138aa78bc569a3cb5d27a";
+ };
+ };
+ "semver-5.1.1" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.1.1.tgz";
+ sha1 = "a3292a373e6f3e0798da0b20641b9a9c5bc47e19";
+ };
+ };
+ "semver-5.3.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.3.0";
+ src = fetchurl {
+ 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 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
+ };
+ };
+ "semver-5.5.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
+ sha512 = "0h32zh035y8m6dzcqhcymbhwgmc8839fa1hhj0jfh9ivp9kmqfj1sbwnsnkzcn9qm3sqn38sa8ys2g4c638lpnmzjr0a0qndmv7f8p1";
+ };
+ };
+ "semver-diff-2.1.0" = {
+ name = "semver-diff";
+ packageName = "semver-diff";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz";
+ sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36";
+ };
+ };
+ "semver-regex-1.0.0" = {
+ name = "semver-regex";
+ packageName = "semver-regex";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz";
+ sha1 = "92a4969065f9c70c694753d55248fc68f8f652c9";
+ };
+ };
+ "semver-truncate-1.1.2" = {
+ name = "semver-truncate";
+ packageName = "semver-truncate";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz";
+ sha1 = "57f41de69707a62709a7e0104ba2117109ea47e8";
+ };
+ };
+ "semver-utils-1.1.1" = {
+ name = "semver-utils";
+ packageName = "semver-utils";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.1.tgz";
+ sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df";
+ };
+ };
+ "send-0.0.3" = {
+ name = "send";
+ packageName = "send";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.0.3.tgz";
+ sha1 = "4d5f843edf9d65dac31c8a5d2672c179ecb67184";
+ };
+ };
+ "send-0.1.0" = {
+ name = "send";
+ packageName = "send";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.1.0.tgz";
+ sha1 = "cfb08ebd3cec9b7fc1a37d9ff9e875a971cf4640";
+ };
+ };
+ "send-0.1.4" = {
+ name = "send";
+ packageName = "send";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.1.4.tgz";
+ sha1 = "be70d8d1be01de61821af13780b50345a4f71abd";
+ };
+ };
+ "send-0.11.1" = {
+ name = "send";
+ packageName = "send";
+ version = "0.11.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.11.1.tgz";
+ sha1 = "1beabfd42f9e2709f99028af3078ac12b47092d5";
+ };
+ };
+ "send-0.13.0" = {
+ name = "send";
+ packageName = "send";
+ version = "0.13.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.13.0.tgz";
+ sha1 = "518f921aeb0560aec7dcab2990b14cf6f3cce5de";
+ };
+ };
+ "send-0.13.2" = {
+ name = "send";
+ packageName = "send";
+ version = "0.13.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.13.2.tgz";
+ sha1 = "765e7607c8055452bba6f0b052595350986036de";
+ };
+ };
+ "send-0.15.3" = {
+ name = "send";
+ packageName = "send";
+ version = "0.15.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.15.3.tgz";
+ sha1 = "5013f9f99023df50d1bd9892c19e3defd1d53309";
+ };
+ };
+ "send-0.15.6" = {
+ name = "send";
+ packageName = "send";
+ version = "0.15.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.15.6.tgz";
+ sha1 = "20f23a9c925b762ab82705fe2f9db252ace47e34";
+ };
+ };
+ "send-0.16.1" = {
+ name = "send";
+ packageName = "send";
+ version = "0.16.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.16.1.tgz";
+ sha512 = "3c9rfxzsayrnka50s3hdbln9sjzad94ll4z2nx83i3rqciy4dxj05x34sjmm64k46zmk99pj8g4bcwk476a3iqzpcxgja28s8jqnl0j";
+ };
+ };
+ "sentiment-2.1.0" = {
+ name = "sentiment";
+ packageName = "sentiment";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sentiment/-/sentiment-2.1.0.tgz";
+ sha1 = "33279100c35c38519ca5e435245186c512fe0fdc";
+ };
+ };
+ "sequence-2.2.1" = {
+ name = "sequence";
+ packageName = "sequence";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sequence/-/sequence-2.2.1.tgz";
+ sha1 = "7f5617895d44351c0a047e764467690490a16b03";
+ };
+ };
+ "sequencify-0.0.7" = {
+ name = "sequencify";
+ packageName = "sequencify";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz";
+ sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c";
+ };
+ };
+ "serve-favicon-2.3.2" = {
+ name = "serve-favicon";
+ packageName = "serve-favicon";
+ version = "2.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.3.2.tgz";
+ sha1 = "dd419e268de012ab72b319d337f2105013f9381f";
+ };
+ };
+ "serve-favicon-2.4.5" = {
+ name = "serve-favicon";
+ packageName = "serve-favicon";
+ version = "2.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.5.tgz";
+ sha512 = "2gn8a5l0hh655cxq2cvvar6k1hl8cpmagplavx6svjiz9kmi968nwbzhpc2fvpcpmsfqb8s5jjq0gvn8vwwc2lx3cj57ckbcf3prcdk";
+ };
+ };
+ "serve-index-1.7.3" = {
+ name = "serve-index";
+ packageName = "serve-index";
+ version = "1.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-index/-/serve-index-1.7.3.tgz";
+ sha1 = "7a057fc6ee28dc63f64566e5fa57b111a86aecd2";
+ };
+ };
+ "serve-index-1.9.1" = {
+ name = "serve-index";
+ packageName = "serve-index";
+ version = "1.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz";
+ sha1 = "d3768d69b1e7d82e5ce050fff5b453bea12a9239";
+ };
+ };
+ "serve-static-1.10.3" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.10.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.10.3.tgz";
+ sha1 = "ce5a6ecd3101fed5ec09827dac22a9c29bfb0535";
+ };
+ };
+ "serve-static-1.12.3" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.12.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.12.3.tgz";
+ sha1 = "9f4ba19e2f3030c547f8af99107838ec38d5b1e2";
+ };
+ };
+ "serve-static-1.12.6" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.12.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.12.6.tgz";
+ sha1 = "b973773f63449934da54e5beba5e31d9f4211577";
+ };
+ };
+ "serve-static-1.13.1" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.13.1.tgz";
+ sha512 = "2ahchxbzy0wr61gjy85p35cx4rkfb5347fmglk5rb2wawla3nhx6xx8hsgvmvjcsp5vfdilvf84kcnvp832f1anylsg4sqgpdk188w5";
+ };
+ };
+ "serve-static-1.8.1" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.8.1.tgz";
+ sha1 = "08fabd39999f050fc311443f46d5888a77ecfc7c";
+ };
+ };
+ "server-destroy-1.0.1" = {
+ name = "server-destroy";
+ packageName = "server-destroy";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz";
+ sha1 = "f13bf928e42b9c3e79383e61cc3998b5d14e6cdd";
+ };
+ };
+ "service-runner-2.5.0" = {
+ name = "service-runner";
+ packageName = "service-runner";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/service-runner/-/service-runner-2.5.0.tgz";
+ sha1 = "78b347542c5c6ad2f31e78a10533045fc6414c1f";
+ };
+ };
+ "set-blocking-2.0.0" = {
+ name = "set-blocking";
+ packageName = "set-blocking";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
+ sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
+ };
+ };
+ "set-getter-0.1.0" = {
+ name = "set-getter";
+ packageName = "set-getter";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-getter/-/set-getter-0.1.0.tgz";
+ sha1 = "d769c182c9d5a51f409145f2fba82e5e86e80376";
+ };
+ };
+ "set-immediate-shim-1.0.1" = {
+ name = "set-immediate-shim";
+ packageName = "set-immediate-shim";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz";
+ sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61";
+ };
+ };
+ "set-value-0.4.3" = {
+ name = "set-value";
+ packageName = "set-value";
+ version = "0.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz";
+ sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1";
+ };
+ };
+ "set-value-2.0.0" = {
+ name = "set-value";
+ packageName = "set-value";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz";
+ sha512 = "1xdxg14zh452ih8f7826ki7xpq8wk8a831pm5zngqf8cbc4qv6mr9npks863bfqylfrhm161whf9199rmqn4i12wzmz2ks69z3343c7";
+ };
+ };
+ "setimmediate-1.0.5" = {
+ name = "setimmediate";
+ packageName = "setimmediate";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz";
+ sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
+ };
+ };
+ "setprototypeof-1.0.3" = {
+ name = "setprototypeof";
+ packageName = "setprototypeof";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz";
+ sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04";
+ };
+ };
+ "setprototypeof-1.1.0" = {
+ name = "setprototypeof";
+ packageName = "setprototypeof";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz";
+ sha512 = "2jlhhawfqdiga1m6if01ks1q3yx56k5vj6wf372589vkswvdflw7224viivxali56b0jjsckpmjy10rj6fcakhw2dbq2psr197kzw86";
+ };
+ };
+ "sha.js-2.4.10" = {
+ name = "sha.js";
+ packageName = "sha.js";
+ version = "2.4.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.10.tgz";
+ sha512 = "2lfna0mg4mzdki4p3q29rsgywbghvy6f6jy6b61zj68d2d936wfqjgqpsdjchfcqkiim53qknpcnq9iiafyidfrw154qf75a2n2cz5y";
+ };
+ };
+ "shallow-clone-0.1.2" = {
+ name = "shallow-clone";
+ packageName = "shallow-clone";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shallow-clone/-/shallow-clone-0.1.2.tgz";
+ sha1 = "5909e874ba77106d73ac414cfec1ffca87d97060";
+ };
+ };
+ "shasum-1.0.2" = {
+ name = "shasum";
+ packageName = "shasum";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz";
+ sha1 = "e7012310d8f417f4deb5712150e5678b87ae565f";
+ };
+ };
+ "shebang-command-1.2.0" = {
+ name = "shebang-command";
+ packageName = "shebang-command";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
+ sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
+ };
+ };
+ "shebang-regex-1.0.0" = {
+ name = "shebang-regex";
+ packageName = "shebang-regex";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
+ sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
+ };
+ };
+ "shell-quote-1.6.1" = {
+ name = "shell-quote";
+ packageName = "shell-quote";
+ version = "1.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.6.1.tgz";
+ sha1 = "f4781949cce402697127430ea3b3c5476f481767";
+ };
+ };
+ "shelljs-0.3.0" = {
+ name = "shelljs";
+ packageName = "shelljs";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz";
+ sha1 = "3596e6307a781544f591f37da618360f31db57b1";
+ };
+ };
+ "shelljs-0.5.3" = {
+ name = "shelljs";
+ packageName = "shelljs";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz";
+ sha1 = "c54982b996c76ef0c1e6b59fbdc5825f5b713113";
+ };
+ };
+ "shelljs-0.7.7" = {
+ name = "shelljs";
+ packageName = "shelljs";
+ version = "0.7.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.7.tgz";
+ sha1 = "b2f5c77ef97148f4b4f6e22682e10bba8667cff1";
+ };
+ };
+ "shelljs-0.7.8" = {
+ name = "shelljs";
+ packageName = "shelljs";
+ version = "0.7.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz";
+ sha1 = "decbcf874b0d1e5fb72e14b164a9683048e9acb3";
+ };
+ };
+ "shelljs-0.8.0" = {
+ name = "shelljs";
+ packageName = "shelljs";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.0.tgz";
+ sha512 = "0z8im8zw5g4r44mf2iiy61kxi5idq41b4cs6d4c3lv9shh8ag2gnp25kvwawg899bczvh9g95b07gcpabik39md8q2vmnwcjjizdgn1";
+ };
+ };
+ "shellwords-0.1.1" = {
+ name = "shellwords";
+ packageName = "shellwords";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz";
+ sha512 = "31h1mksdbashjfpvj7xh8nqw7siqm5v1yj77pmcsbkzqi4hrpjqmzv2sifjlljjyx87sfqnmcn0yqh1hfgn669c43i2dargyi8i4p5w";
+ };
+ };
+ "shush-1.0.0" = {
+ name = "shush";
+ packageName = "shush";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shush/-/shush-1.0.0.tgz";
+ sha1 = "c27415a9e458f2fed39b27cf8eb37c003782b431";
+ };
+ };
+ "sigmund-1.0.1" = {
+ name = "sigmund";
+ packageName = "sigmund";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz";
+ sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
+ };
+ };
+ "sign-addon-0.2.2" = {
+ name = "sign-addon";
+ packageName = "sign-addon";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.2.2.tgz";
+ sha512 = "3v5myvfbil1c5fsvqx32vqdv7mk62059isry4811avmkgzfv95scw8pnkwa77m6zg9g8vgsp3glqjm65k3rj8xfxnqv24mcmhjk78bz";
+ };
+ };
+ "signal-exit-3.0.2" = {
+ name = "signal-exit";
+ packageName = "signal-exit";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
+ sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
+ };
+ };
+ "signals-1.0.0" = {
+ name = "signals";
+ packageName = "signals";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/signals/-/signals-1.0.0.tgz";
+ sha1 = "65f0c1599352b35372ecaae5a250e6107376ed69";
+ };
+ };
+ "signed-varint-2.0.1" = {
+ name = "signed-varint";
+ packageName = "signed-varint";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/signed-varint/-/signed-varint-2.0.1.tgz";
+ sha1 = "50a9989da7c98c2c61dad119bc97470ef8528129";
+ };
+ };
+ "simple-concat-1.0.0" = {
+ name = "simple-concat";
+ packageName = "simple-concat";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.0.tgz";
+ sha1 = "7344cbb8b6e26fb27d66b2fc86f9f6d5997521c6";
+ };
+ };
+ "simple-get-1.4.3" = {
+ name = "simple-get";
+ packageName = "simple-get";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-get/-/simple-get-1.4.3.tgz";
+ sha1 = "e9755eda407e96da40c5e5158c9ea37b33becbeb";
+ };
+ };
+ "simple-get-2.7.0" = {
+ name = "simple-get";
+ packageName = "simple-get";
+ version = "2.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-get/-/simple-get-2.7.0.tgz";
+ sha512 = "2r1w3cxxmd92r19mjrlzwn6xypjd5vrx0gk21l2bmxcp1x54pavhmifbhq8llxfk6z2lmzly7g3l8rrdl19m65nzlcicwy7cfn3sha6";
+ };
+ };
+ "simple-git-1.89.0" = {
+ name = "simple-git";
+ packageName = "simple-git";
+ version = "1.89.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-1.89.0.tgz";
+ sha1 = "ef52fe734d5060566ce187b2bbace36c2323e34c";
+ };
+ };
+ "simple-lru-cache-0.0.2" = {
+ name = "simple-lru-cache";
+ packageName = "simple-lru-cache";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-lru-cache/-/simple-lru-cache-0.0.2.tgz";
+ sha1 = "d59cc3a193c1a5d0320f84ee732f6e4713e511dd";
+ };
+ };
+ "simple-peer-6.4.4" = {
+ name = "simple-peer";
+ packageName = "simple-peer";
+ version = "6.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-peer/-/simple-peer-6.4.4.tgz";
+ sha1 = "4e421f485ac7b13b08077a4476934d52c5ba3bb3";
+ };
+ };
+ "simple-plist-0.2.1" = {
+ name = "simple-plist";
+ packageName = "simple-plist";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-plist/-/simple-plist-0.2.1.tgz";
+ sha1 = "71766db352326928cf3a807242ba762322636723";
+ };
+ };
+ "simple-sha1-2.1.0" = {
+ name = "simple-sha1";
+ packageName = "simple-sha1";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-2.1.0.tgz";
+ sha1 = "9427bb96ff1263cc10a8414cedd51a18b919e8b3";
+ };
+ };
+ "simple-swizzle-0.2.2" = {
+ name = "simple-swizzle";
+ packageName = "simple-swizzle";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz";
+ sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a";
+ };
+ };
+ "simple-websocket-4.3.1" = {
+ name = "simple-websocket";
+ packageName = "simple-websocket";
+ version = "4.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-websocket/-/simple-websocket-4.3.1.tgz";
+ sha1 = "5d3d5751bb39aeba2f710d8eec78768df821f38d";
+ };
+ };
+ "simplediff-0.1.1" = {
+ name = "simplediff";
+ packageName = "simplediff";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simplediff/-/simplediff-0.1.1.tgz";
+ sha1 = "b0caeeb093223370033c6c3aa1130dc86c6a087c";
+ };
+ };
+ "simplesmtp-0.3.35" = {
+ name = "simplesmtp";
+ packageName = "simplesmtp";
+ version = "0.3.35";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simplesmtp/-/simplesmtp-0.3.35.tgz";
+ sha1 = "017b1eb8b26317ac36d2a2a8a932631880736a03";
+ };
+ };
+ "single-line-log-0.4.1" = {
+ name = "single-line-log";
+ packageName = "single-line-log";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/single-line-log/-/single-line-log-0.4.1.tgz";
+ sha1 = "87a55649f749d783ec0dcd804e8140d9873c7cee";
+ };
+ };
+ "single-line-log-1.1.2" = {
+ name = "single-line-log";
+ packageName = "single-line-log";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/single-line-log/-/single-line-log-1.1.2.tgz";
+ sha1 = "c2f83f273a3e1a16edb0995661da0ed5ef033364";
+ };
+ };
+ "sinopia-htpasswd-0.4.5" = {
+ name = "sinopia-htpasswd";
+ packageName = "sinopia-htpasswd";
+ version = "0.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sinopia-htpasswd/-/sinopia-htpasswd-0.4.5.tgz";
+ sha1 = "2af824ae20eccb8f902325b1a2c27dd6619805c9";
+ };
+ };
+ "siphash24-1.1.0" = {
+ name = "siphash24";
+ packageName = "siphash24";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.0.tgz";
+ sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w";
+ };
+ };
+ "skin-tone-1.0.0" = {
+ name = "skin-tone";
+ packageName = "skin-tone";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/skin-tone/-/skin-tone-1.0.0.tgz";
+ sha1 = "d4ba3e8e5e92760e4d1d3b603d772805c6cb256f";
+ };
+ };
+ "slack-node-0.2.0" = {
+ name = "slack-node";
+ packageName = "slack-node";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slack-node/-/slack-node-0.2.0.tgz";
+ sha1 = "de4b8dddaa8b793f61dbd2938104fdabf37dfa30";
+ };
+ };
+ "slash-1.0.0" = {
+ name = "slash";
+ packageName = "slash";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz";
+ sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
+ };
+ };
+ "slasp-0.0.4" = {
+ name = "slasp";
+ packageName = "slasp";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slasp/-/slasp-0.0.4.tgz";
+ sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9";
+ };
+ };
+ "slate-irc-0.7.3" = {
+ name = "slate-irc";
+ packageName = "slate-irc";
+ version = "0.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slate-irc/-/slate-irc-0.7.3.tgz";
+ sha1 = "8d01f2bc809e00a5b2faca7d8d3130d155422a77";
+ };
+ };
+ "slate-irc-parser-0.0.2" = {
+ name = "slate-irc-parser";
+ packageName = "slate-irc-parser";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slate-irc-parser/-/slate-irc-parser-0.0.2.tgz";
+ sha1 = "0c5f8f20d817bb85329da9fca135c66b05947d80";
+ };
+ };
+ "slice-ansi-0.0.4" = {
+ name = "slice-ansi";
+ packageName = "slice-ansi";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz";
+ sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35";
+ };
+ };
+ "slice-ansi-1.0.0" = {
+ name = "slice-ansi";
+ packageName = "slice-ansi";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz";
+ sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw";
+ };
+ };
+ "sliced-0.0.3" = {
+ name = "sliced";
+ packageName = "sliced";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sliced/-/sliced-0.0.3.tgz";
+ sha1 = "4f0bac2171eb17162c3ba6df81f5cf040f7c7e50";
+ };
+ };
+ "sliced-0.0.4" = {
+ name = "sliced";
+ packageName = "sliced";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sliced/-/sliced-0.0.4.tgz";
+ sha1 = "34f89a6db1f31fa525f5a570f5bcf877cf0955ee";
+ };
+ };
+ "slide-1.1.6" = {
+ name = "slide";
+ packageName = "slide";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz";
+ sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707";
+ };
+ };
+ "smart-buffer-1.1.15" = {
+ name = "smart-buffer";
+ packageName = "smart-buffer";
+ version = "1.1.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz";
+ sha1 = "7f114b5b65fab3e2a35aa775bb12f0d1c649bf16";
+ };
+ };
+ "smartdc-auth-2.3.1" = {
+ name = "smartdc-auth";
+ packageName = "smartdc-auth";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/smartdc-auth/-/smartdc-auth-2.3.1.tgz";
+ sha1 = "96568a565e9d9feb03b93a50651eee14d23adf44";
+ };
+ };
+ "smtp-connection-1.3.8" = {
+ name = "smtp-connection";
+ packageName = "smtp-connection";
+ version = "1.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/smtp-connection/-/smtp-connection-1.3.8.tgz";
+ sha1 = "55832c2160cfb3086e1dcd87fd1c19fa61b7f536";
+ };
+ };
+ "smtp-connection-2.12.0" = {
+ name = "smtp-connection";
+ packageName = "smtp-connection";
+ version = "2.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/smtp-connection/-/smtp-connection-2.12.0.tgz";
+ sha1 = "d76ef9127cb23c2259edb1e8349c2e8d5e2d74c1";
+ };
+ };
+ "snapdragon-0.8.1" = {
+ name = "snapdragon";
+ packageName = "snapdragon";
+ version = "0.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.1.tgz";
+ sha1 = "e12b5487faded3e3dea0ac91e9400bf75b401370";
+ };
+ };
+ "snapdragon-node-2.1.1" = {
+ name = "snapdragon-node";
+ packageName = "snapdragon-node";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz";
+ sha512 = "2gk18pdld8ij1bpa2mdwl8f7i4rl5d4ys3qw31hipj56wslnsfhp1vxp3q36kj1m4f34wzzlvj0282qx5xlflqf978xyqlc2viyaviv";
+ };
+ };
+ "snapdragon-util-3.0.1" = {
+ name = "snapdragon-util";
+ packageName = "snapdragon-util";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz";
+ sha512 = "1jsaqma4ycl2iq0761i1w7758z1kq7gbsij4xfb7p5cnw0qa62pszv6pr3j856n3pbxww7wwxs5wvcg2cb6vy020kw3bchashqs9clr";
+ };
+ };
+ "snapsvg-0.5.1" = {
+ name = "snapsvg";
+ packageName = "snapsvg";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snapsvg/-/snapsvg-0.5.1.tgz";
+ sha1 = "0caf52c79189a290746fc446cc5e863f6bdddfe3";
+ };
+ };
+ "sntp-0.1.4" = {
+ name = "sntp";
+ packageName = "sntp";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz";
+ sha1 = "5ef481b951a7b29affdf4afd7f26838fc1120f84";
+ };
+ };
+ "sntp-1.0.9" = {
+ name = "sntp";
+ packageName = "sntp";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
+ sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
+ };
+ };
+ "sntp-2.1.0" = {
+ name = "sntp";
+ packageName = "sntp";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz";
+ sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
+ };
+ };
+ "snyk-1.69.3" = {
+ name = "snyk";
+ packageName = "snyk";
+ version = "1.69.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.69.3.tgz";
+ sha1 = "c948a05982b206002a09d4e55fb16aee6d5e80e0";
+ };
+ };
+ "snyk-config-1.0.1" = {
+ name = "snyk-config";
+ packageName = "snyk-config";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-config/-/snyk-config-1.0.1.tgz";
+ sha1 = "f27aec2498b24027ac719214026521591111508f";
+ };
+ };
+ "snyk-go-plugin-1.4.5" = {
+ name = "snyk-go-plugin";
+ packageName = "snyk-go-plugin";
+ version = "1.4.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.4.5.tgz";
+ sha512 = "0m7m3yjv33vq1p6gwn30vxmacrahvw08j432pva601fm2b48j9f5hq8v6zdrzna2yw6xqg1dnhd7gxskpivvl4rzs3fji23yfvxgqxs";
+ };
+ };
+ "snyk-gradle-plugin-1.2.0" = {
+ name = "snyk-gradle-plugin";
+ packageName = "snyk-gradle-plugin";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-gradle-plugin/-/snyk-gradle-plugin-1.2.0.tgz";
+ sha512 = "1b2bxvwl2v4prlj942i4jkz4mahgp39j7lvy91jzv00nsk59l76b1icn48zj4zk84s00jil3pnxnfzsclhcc612d70s4wwi3x2hrrqn";
+ };
+ };
+ "snyk-module-1.8.1" = {
+ name = "snyk-module";
+ packageName = "snyk-module";
+ version = "1.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-module/-/snyk-module-1.8.1.tgz";
+ sha1 = "31d5080fb1c0dfd6fa8567dd34a523fd02bf1fca";
+ };
+ };
+ "snyk-mvn-plugin-1.1.1" = {
+ name = "snyk-mvn-plugin";
+ packageName = "snyk-mvn-plugin";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-mvn-plugin/-/snyk-mvn-plugin-1.1.1.tgz";
+ sha512 = "3h9drys1g2wh3w072rn00zw57g5xy42ap38k05gvdryiphx8p9iksb4azg4dyf2vd616jzslqid45hjd6iphafdzpk4b90mws880hqa";
+ };
+ };
+ "snyk-nuget-plugin-1.3.9" = {
+ name = "snyk-nuget-plugin";
+ packageName = "snyk-nuget-plugin";
+ version = "1.3.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-nuget-plugin/-/snyk-nuget-plugin-1.3.9.tgz";
+ sha512 = "017qpf5cy1f0x8apjc1a3qp3aa9w7v7zlyy8jb8r7q4ilsnpdzvywrxhd6s1yy3b9fiylmgmldgdcz77srqq9pm2njvdi80pyd00zqp";
+ };
+ };
+ "snyk-php-plugin-1.3.2" = {
+ name = "snyk-php-plugin";
+ packageName = "snyk-php-plugin";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-php-plugin/-/snyk-php-plugin-1.3.2.tgz";
+ sha512 = "2fihlcs2qxdbdfy1pjnf7110l6h4r16vkp0q51wqsfd8fw5s1qgb34plii6yhbfbs8a1il93i6hfn93yclbv50m2129wg7naf57jlqi";
+ };
+ };
+ "snyk-policy-1.10.1" = {
+ name = "snyk-policy";
+ packageName = "snyk-policy";
+ version = "1.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.10.1.tgz";
+ sha1 = "b1a26c8aef529c61604aca382111e535d511b763";
+ };
+ };
+ "snyk-python-plugin-1.5.3" = {
+ name = "snyk-python-plugin";
+ packageName = "snyk-python-plugin";
+ version = "1.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.5.3.tgz";
+ sha512 = "1yln7fd9x5zayvnq5hrvh44k9f37vnpirvw6gk87aq560kslsq4p2hknq02iq6az58wbc6r69g5rrszmv689c0ky3wjbmb2hmc9q7c1";
+ };
+ };
+ "snyk-recursive-readdir-2.0.0" = {
+ name = "snyk-recursive-readdir";
+ packageName = "snyk-recursive-readdir";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-recursive-readdir/-/snyk-recursive-readdir-2.0.0.tgz";
+ sha1 = "5cb59e94698169e0205a60e7d6a506d0b4d52ff3";
+ };
+ };
+ "snyk-resolve-1.0.0" = {
+ name = "snyk-resolve";
+ packageName = "snyk-resolve";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.0.tgz";
+ sha1 = "bbe9196d37f57c39251e6be75ccdd5b2097e99a2";
+ };
+ };
+ "snyk-resolve-deps-1.7.0" = {
+ name = "snyk-resolve-deps";
+ packageName = "snyk-resolve-deps";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-resolve-deps/-/snyk-resolve-deps-1.7.0.tgz";
+ sha1 = "13743a058437dff890baaf437c333c966a743cb6";
+ };
+ };
+ "snyk-sbt-plugin-1.2.2" = {
+ name = "snyk-sbt-plugin";
+ packageName = "snyk-sbt-plugin";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-1.2.2.tgz";
+ sha512 = "1sq30kk2kq0flsak5759wylylzgm6ivd6di4lmbkahy858i26yf6kf86f2m86wvlz4fcmxsbcl7p0wkd498cx193v4nbr2hq39jyjlz";
+ };
+ };
+ "snyk-tree-1.0.0" = {
+ name = "snyk-tree";
+ packageName = "snyk-tree";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-tree/-/snyk-tree-1.0.0.tgz";
+ sha1 = "0fb73176dbf32e782f19100294160448f9111cc8";
+ };
+ };
+ "snyk-try-require-1.2.0" = {
+ name = "snyk-try-require";
+ packageName = "snyk-try-require";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.2.0.tgz";
+ sha1 = "30fc2b11c07064591ee35780c826be91312f2144";
+ };
+ };
+ "socket.io-0.9.14" = {
+ name = "socket.io";
+ packageName = "socket.io";
+ version = "0.9.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-0.9.14.tgz";
+ sha1 = "81af80ebf3ee8f7f6e71b1495db91f8fa53ff667";
+ };
+ };
+ "socket.io-1.0.6" = {
+ name = "socket.io";
+ packageName = "socket.io";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-1.0.6.tgz";
+ sha1 = "b566532888dae3ac9058a12f294015ebdfa8084a";
+ };
+ };
+ "socket.io-1.7.4" = {
+ name = "socket.io";
+ packageName = "socket.io";
+ version = "1.7.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-1.7.4.tgz";
+ sha1 = "2f7ecedc3391bf2d5c73e291fe233e6e34d4dd00";
+ };
+ };
+ "socket.io-2.0.4" = {
+ name = "socket.io";
+ packageName = "socket.io";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.0.4.tgz";
+ sha1 = "c1a4590ceff87ecf13c72652f046f716b29e6014";
+ };
+ };
+ "socket.io-adapter-0.2.0" = {
+ name = "socket.io-adapter";
+ packageName = "socket.io-adapter";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.2.0.tgz";
+ sha1 = "bd39329b8961371787e24f345b074ec9cf000e33";
+ };
+ };
+ "socket.io-adapter-0.5.0" = {
+ name = "socket.io-adapter";
+ packageName = "socket.io-adapter";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz";
+ sha1 = "cb6d4bb8bec81e1078b99677f9ced0046066bb8b";
+ };
+ };
+ "socket.io-adapter-1.1.1" = {
+ name = "socket.io-adapter";
+ packageName = "socket.io-adapter";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz";
+ sha1 = "2a805e8a14d6372124dd9159ad4502f8cb07f06b";
+ };
+ };
+ "socket.io-client-0.9.11" = {
+ name = "socket.io-client";
+ packageName = "socket.io-client";
+ version = "0.9.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.11.tgz";
+ sha1 = "94defc1b29e0d8a8fe958c1cf33300f68d8a19c7";
+ };
+ };
+ "socket.io-client-1.0.6" = {
+ name = "socket.io-client";
+ packageName = "socket.io-client";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.0.6.tgz";
+ sha1 = "c86cb3e507ab2f96da4500bd34fcf46a1e9dfe5e";
+ };
+ };
+ "socket.io-client-1.7.4" = {
+ name = "socket.io-client";
+ packageName = "socket.io-client";
+ version = "1.7.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.4.tgz";
+ sha1 = "ec9f820356ed99ef6d357f0756d648717bdd4281";
+ };
+ };
+ "socket.io-client-2.0.4" = {
+ name = "socket.io-client";
+ packageName = "socket.io-client";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.0.4.tgz";
+ sha1 = "0918a552406dc5e540b380dcd97afc4a64332f8e";
+ };
+ };
+ "socket.io-parser-2.1.2" = {
+ name = "socket.io-parser";
+ packageName = "socket.io-parser";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.1.2.tgz";
+ sha1 = "876655b9edd555c5bdf7301cedf30a436c67b8b0";
+ };
+ };
+ "socket.io-parser-2.2.0" = {
+ name = "socket.io-parser";
+ packageName = "socket.io-parser";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.0.tgz";
+ sha1 = "2609601f59e6a7fab436a53be3d333fbbfcbd30a";
+ };
+ };
+ "socket.io-parser-2.3.1" = {
+ name = "socket.io-parser";
+ packageName = "socket.io-parser";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz";
+ sha1 = "dd532025103ce429697326befd64005fcfe5b4a0";
+ };
+ };
+ "socket.io-parser-3.1.2" = {
+ name = "socket.io-parser";
+ packageName = "socket.io-parser";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.1.2.tgz";
+ sha1 = "dbc2282151fc4faebbe40aeedc0772eba619f7f2";
+ };
+ };
+ "socks-1.1.10" = {
+ name = "socks";
+ packageName = "socks";
+ version = "1.1.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz";
+ sha1 = "5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a";
+ };
+ };
+ "socks-1.1.9" = {
+ name = "socks";
+ packageName = "socks";
+ version = "1.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socks/-/socks-1.1.9.tgz";
+ sha1 = "628d7e4d04912435445ac0b6e459376cb3e6d691";
+ };
+ };
+ "socks-proxy-agent-2.1.1" = {
+ name = "socks-proxy-agent";
+ packageName = "socks-proxy-agent";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-2.1.1.tgz";
+ sha512 = "33yfj0m61wn7g9s59m7mxhm6w91nkdrd7hcnnbacrj58zqgykpyr7f6lsggvc9xzysrf951ncxh4malqi11yf8z6909fasllxi6cnxh";
+ };
+ };
+ "sodium-javascript-0.5.4" = {
+ name = "sodium-javascript";
+ packageName = "sodium-javascript";
+ version = "0.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.4.tgz";
+ sha512 = "1dqdzm0qjk1rwq62b010b649wdpvlzdxpmwc972p0dcwsc86wqfcm8lbdcxlrwypkn2jq5df1xpbxhxfphnpr993ac543p9s212si30";
+ };
+ };
+ "sodium-native-2.1.4" = {
+ name = "sodium-native";
+ packageName = "sodium-native";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.1.4.tgz";
+ sha512 = "3d3bbjycbpplxgjpfz78vqr8g8hp62j37hr4c3vym7ax36qzxqan73fmqw2i3wd8ix65ysdlzbnzhrs3634ngp840gfpmm9alarc80j";
+ };
+ };
+ "sodium-universal-2.0.0" = {
+ name = "sodium-universal";
+ packageName = "sodium-universal";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sodium-universal/-/sodium-universal-2.0.0.tgz";
+ sha512 = "2rd6r7v2i3z76rzvllqx9ywk5f64q23944njcf14vv7x3l0illqn41bgdiifik4kswgys99mxsrqinq8akf3n7b15r9871km74mbivj";
+ };
+ };
+ "sort-keys-1.1.2" = {
+ name = "sort-keys";
+ packageName = "sort-keys";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz";
+ sha1 = "441b6d4d346798f1b4e49e8920adfba0e543f9ad";
+ };
+ };
+ "sort-keys-2.0.0" = {
+ name = "sort-keys";
+ packageName = "sort-keys";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz";
+ sha1 = "658535584861ec97d730d6cf41822e1f56684128";
+ };
+ };
+ "sort-keys-length-1.0.1" = {
+ name = "sort-keys-length";
+ packageName = "sort-keys-length";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz";
+ sha1 = "9cb6f4f4e9e48155a6aa0671edd336ff1479a188";
+ };
+ };
"sort-on-2.0.0" = {
name = "sort-on";
packageName = "sort-on";
@@ -26198,6 +22749,1194 @@ let
sha1 = "0df42a679d7ae4aed9c30ba2f55807d979910fcc";
};
};
+ "sorted-array-functions-1.1.0" = {
+ name = "sorted-array-functions";
+ packageName = "sorted-array-functions";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.1.0.tgz";
+ sha512 = "209rl01n6lwbsxl40lmh1v38sad3d94s0mjb4mz6r3wwwhzcahibr8m2fhlqgsjgzf3dja9wyhz7qjkw39gxlwpapyid2whs4nrzbnf";
+ };
+ };
+ "sorted-indexof-1.0.0" = {
+ name = "sorted-indexof";
+ packageName = "sorted-indexof";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-indexof/-/sorted-indexof-1.0.0.tgz";
+ sha1 = "17c742ff7cf187e2f59a15df9b81f17a62ce0899";
+ };
+ };
+ "sorted-union-stream-1.0.2" = {
+ name = "sorted-union-stream";
+ packageName = "sorted-union-stream";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-union-stream/-/sorted-union-stream-1.0.2.tgz";
+ sha1 = "558e7f57a5bf6baf6501baf2ae2c9076c4502006";
+ };
+ };
+ "source-list-map-2.0.0" = {
+ name = "source-list-map";
+ packageName = "source-list-map";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.0.tgz";
+ sha512 = "3q09f2w67qqhl3lwiisj4422mj9nfldg4cxmidfrjcwn3k7spm9g46x4n1j6kv39bi9khmcpyvfa3fwski488ibivyg9bwijjw2cr93";
+ };
+ };
+ "source-map-0.1.31" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.1.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.1.31.tgz";
+ sha1 = "9f704d0d69d9e138a81badf6ebb4fde33d151c61";
+ };
+ };
+ "source-map-0.1.32" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.1.32";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz";
+ sha1 = "c8b6c167797ba4740a8ea33252162ff08591b266";
+ };
+ };
+ "source-map-0.1.43" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.1.43";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz";
+ sha1 = "c24bc146ca517c1471f5dacbe2571b2b7f9e3346";
+ };
+ };
+ "source-map-0.2.0" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz";
+ sha1 = "dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d";
+ };
+ };
+ "source-map-0.4.4" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz";
+ sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b";
+ };
+ };
+ "source-map-0.5.7" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz";
+ sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc";
+ };
+ };
+ "source-map-0.6.1" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz";
+ sha512 = "3p7hw8p69ikj5mwapmqkacsjnbvdfk5ylyamjg9x5izkl717xvzj0vk3fnmx1n4pf54h5rs7r8ig5kk4jv4ycqqj0hv75cnx6k1lf2j";
+ };
+ };
+ "source-map-resolve-0.5.1" = {
+ name = "source-map-resolve";
+ packageName = "source-map-resolve";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz";
+ sha512 = "3ccyfzn4imm9m891wy0bqh85lxrsf82snlh7dlgvjc28rpd2m6n95x8kjmm2crcpqv6234xc2lqzp1h1cyx7xrn146nzinzzk1bd9fh";
+ };
+ };
+ "source-map-support-0.3.2" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.3.2.tgz";
+ sha1 = "737d5c901e0b78fdb53aca713d24f23ccbb10be1";
+ };
+ };
+ "source-map-support-0.4.18" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.4.18";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz";
+ sha512 = "1n37icn5xpsxs2x8szv6ifajjf066fskm04xn6agr79sid57n0yws4n0cis7m9q5hr0hxzr8dv2fnmmpgb4mvz8kiyv2g5ikbyb9g5n";
+ };
+ };
+ "source-map-support-0.4.6" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.6.tgz";
+ sha1 = "32552aa64b458392a85eab3b0b5ee61527167aeb";
+ };
+ };
+ "source-map-support-0.5.0" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.0.tgz";
+ sha512 = "3nwgpximc17yn0lfg8658fxkm2hwbpvnbx5x1g0qgqvjm3vzld96rh1gf6iw1srbkicp0m825sq92r9bnj2r2gl8ys0f7fzivf0sjmx";
+ };
+ };
+ "source-map-support-0.5.1" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.1.tgz";
+ sha512 = "276x5a16yv0nlzjdvspsnbkxqhv8lvfj7a0sfzkaasfcwa2rm1ni3h3c0fva63bfqnazbywvs4pzrnbwg43j7gpymjd9cbbndq5x4qi";
+ };
+ };
+ "source-map-support-0.5.2" = {
+ name = "source-map-support";
+ packageName = "source-map-support";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.2.tgz";
+ sha512 = "3hgzhp5z7w8w0sadaa0m7sspd2ihnba3j1rd7l53l1mvx4wjblrbjq2642zz0xxkv4bag4hs4pms7dz5rc8hk5d61d49h6hjrwxqcgp";
+ };
+ };
+ "source-map-url-0.4.0" = {
+ name = "source-map-url";
+ packageName = "source-map-url";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
+ sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
+ };
+ };
+ "sparkles-1.0.0" = {
+ name = "sparkles";
+ packageName = "sparkles";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz";
+ sha1 = "1acbbfb592436d10bbe8f785b7cc6f82815012c3";
+ };
+ };
+ "sparse-bitfield-3.0.3" = {
+ name = "sparse-bitfield";
+ packageName = "sparse-bitfield";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz";
+ sha1 = "ff4ae6e68656056ba4b3e792ab3334d38273ca11";
+ };
+ };
+ "spawn-please-0.3.0" = {
+ name = "spawn-please";
+ packageName = "spawn-please";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spawn-please/-/spawn-please-0.3.0.tgz";
+ sha1 = "db338ec4cff63abc69f1d0e08cee9eb8bebd9d11";
+ };
+ };
+ "spawn-sync-1.0.15" = {
+ name = "spawn-sync";
+ packageName = "spawn-sync";
+ version = "1.0.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spawn-sync/-/spawn-sync-1.0.15.tgz";
+ sha1 = "b00799557eb7fb0c8376c29d44e8a1ea67e57476";
+ };
+ };
+ "spdx-correct-1.0.2" = {
+ name = "spdx-correct";
+ packageName = "spdx-correct";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz";
+ sha1 = "4b3073d933ff51f3912f03ac5519498a4150db40";
+ };
+ };
+ "spdx-expression-parse-1.0.4" = {
+ name = "spdx-expression-parse";
+ packageName = "spdx-expression-parse";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz";
+ sha1 = "9bdf2f20e1f40ed447fbe273266191fced51626c";
+ };
+ };
+ "spdx-license-ids-1.2.2" = {
+ name = "spdx-license-ids";
+ packageName = "spdx-license-ids";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz";
+ sha1 = "c9df7a3424594ade6bd11900d596696dc06bac57";
+ };
+ };
+ "spdy-1.32.5" = {
+ name = "spdy";
+ packageName = "spdy";
+ version = "1.32.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdy/-/spdy-1.32.5.tgz";
+ sha1 = "70eff23cde4e97d52a445f65afddcc5695eb5edb";
+ };
+ };
+ "speedometer-0.1.4" = {
+ name = "speedometer";
+ packageName = "speedometer";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz";
+ sha1 = "9876dbd2a169d3115402d48e6ea6329c8816a50d";
+ };
+ };
+ "speedometer-1.0.0" = {
+ name = "speedometer";
+ packageName = "speedometer";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz";
+ sha1 = "cd671cb06752c22bca3370e2f334440be4fc62e2";
+ };
+ };
+ "split-0.2.10" = {
+ name = "split";
+ packageName = "split";
+ version = "0.2.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/split/-/split-0.2.10.tgz";
+ sha1 = "67097c601d697ce1368f418f06cd201cf0521a57";
+ };
+ };
+ "split-0.3.3" = {
+ name = "split";
+ packageName = "split";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/split/-/split-0.3.3.tgz";
+ sha1 = "cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f";
+ };
+ };
+ "split-1.0.1" = {
+ name = "split";
+ packageName = "split";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz";
+ sha512 = "2916kdi862ik0dlvr2wf2kvzmw8i8wk5spbr9wpdcksrkhrl3m0082jj1q4mqzvv50mlah5s4vcy6k18nacbj09kxbzp2pbysh8wg4r";
+ };
+ };
+ "split-string-3.1.0" = {
+ name = "split-string";
+ packageName = "split-string";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz";
+ sha512 = "25ih1dx2qb3lawqjxj85znd4l3x8nnigrcdlpfw8064gh2mwxic9bgg5ylgxm9gjl3v8dmyc47rycp8xvqz78jqalg0g9yqj225acrp";
+ };
+ };
+ "split2-0.2.1" = {
+ name = "split2";
+ packageName = "split2";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/split2/-/split2-0.2.1.tgz";
+ sha1 = "02ddac9adc03ec0bb78c1282ec079ca6e85ae900";
+ };
+ };
+ "split2-2.2.0" = {
+ name = "split2";
+ packageName = "split2";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz";
+ sha512 = "1plzy1n554n2gwfpavi4azb4y45dm2mwj7dq8ma99yg1z55xcdxmkibsfhsh1h19qgsrcamm0ha5qi2c3has6skvx4bix5p67czc1j4";
+ };
+ };
+ "sprintf-0.1.5" = {
+ name = "sprintf";
+ packageName = "sprintf";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sprintf/-/sprintf-0.1.5.tgz";
+ sha1 = "8f83e39a9317c1a502cb7db8050e51c679f6edcf";
+ };
+ };
+ "sprintf-js-1.0.3" = {
+ name = "sprintf-js";
+ packageName = "sprintf-js";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz";
+ sha1 = "04e6926f662895354f3dd015203633b857297e2c";
+ };
+ };
+ "srcset-1.0.0" = {
+ name = "srcset";
+ packageName = "srcset";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/srcset/-/srcset-1.0.0.tgz";
+ sha1 = "a5669de12b42f3b1d5e83ed03c71046fc48f41ef";
+ };
+ };
+ "srt2vtt-1.3.1" = {
+ name = "srt2vtt";
+ packageName = "srt2vtt";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/srt2vtt/-/srt2vtt-1.3.1.tgz";
+ sha1 = "c2b5047c2c297b693d3bab518765e4b7c24d8173";
+ };
+ };
+ "ssh-config-1.1.3" = {
+ name = "ssh-config";
+ packageName = "ssh-config";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssh-config/-/ssh-config-1.1.3.tgz";
+ sha1 = "2b19630af85b1666688b9d68f6e4218900f81f8c";
+ };
+ };
+ "ssh-key-to-pem-0.11.0" = {
+ name = "ssh-key-to-pem";
+ packageName = "ssh-key-to-pem";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssh-key-to-pem/-/ssh-key-to-pem-0.11.0.tgz";
+ sha1 = "512675a28f08f1e581779e1989ab1e13effb49e4";
+ };
+ };
+ "sshpk-1.13.1" = {
+ name = "sshpk";
+ packageName = "sshpk";
+ version = "1.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz";
+ sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3";
+ };
+ };
+ "sshpk-1.7.1" = {
+ name = "sshpk";
+ packageName = "sshpk";
+ version = "1.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.7.1.tgz";
+ sha1 = "565e386c42a77e6062fbd14c0472ff21cd53398c";
+ };
+ };
+ "sshpk-agent-1.2.1" = {
+ name = "sshpk-agent";
+ packageName = "sshpk-agent";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk-agent/-/sshpk-agent-1.2.1.tgz";
+ sha1 = "62e143c18530fda103320b3403e8ad42786d9718";
+ };
+ };
+ "ssri-4.1.6" = {
+ name = "ssri";
+ packageName = "ssri";
+ version = "4.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz";
+ sha512 = "283n1p781cl2pj3jk32blcvwjdlaixng0v5x2f9qi3ndxrmyg3hk4clsjpcfsszkymy40q426yz5skax4ivsmll2p9hhcc00ivc4ijr";
+ };
+ };
+ "stable-0.1.6" = {
+ name = "stable";
+ packageName = "stable";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stable/-/stable-0.1.6.tgz";
+ sha1 = "910f5d2aed7b520c6e777499c1f32e139fdecb10";
+ };
+ };
+ "stack-trace-0.0.10" = {
+ name = "stack-trace";
+ packageName = "stack-trace";
+ version = "0.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz";
+ sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
+ };
+ };
+ "stack-trace-0.0.9" = {
+ name = "stack-trace";
+ packageName = "stack-trace";
+ version = "0.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz";
+ sha1 = "a8f6eaeca90674c333e7c43953f275b451510695";
+ };
+ };
+ "static-extend-0.1.2" = {
+ name = "static-extend";
+ packageName = "static-extend";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz";
+ sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6";
+ };
+ };
+ "statsd-parser-0.0.4" = {
+ name = "statsd-parser";
+ packageName = "statsd-parser";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statsd-parser/-/statsd-parser-0.0.4.tgz";
+ sha1 = "cbd243953cc42effd548b5d22388ed689ec639bd";
+ };
+ };
+ "status-logger-3.1.1" = {
+ name = "status-logger";
+ packageName = "status-logger";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/status-logger/-/status-logger-3.1.1.tgz";
+ sha512 = "005i18cgcklklz0gqd9gsck97zwf2zfr9wa26lr9djafcng34nbdlqmhwrm9ixf2qgjb9mm2k72ggscb7v3zvybbkys1xfkzv6immkl";
+ };
+ };
+ "statuses-1.2.1" = {
+ name = "statuses";
+ packageName = "statuses";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz";
+ sha1 = "dded45cc18256d51ed40aec142489d5c61026d28";
+ };
+ };
+ "statuses-1.3.1" = {
+ name = "statuses";
+ packageName = "statuses";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statuses/-/statuses-1.3.1.tgz";
+ sha1 = "faf51b9eb74aaef3b3acf4ad5f61abf24cb7b93e";
+ };
+ };
+ "statuses-1.4.0" = {
+ name = "statuses";
+ packageName = "statuses";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz";
+ sha512 = "1xxwqpj713rq1idbmp7mj7cj9dl52lazgpd5x8a9g88jawbkn9xpwbgljl7cvnd0jqkll2zpdj5xy63dlis9l2k8vmx1n1gvyv8456f";
+ };
+ };
+ "steno-0.4.4" = {
+ name = "steno";
+ packageName = "steno";
+ version = "0.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/steno/-/steno-0.4.4.tgz";
+ sha1 = "071105bdfc286e6615c0403c27e9d7b5dcb855cb";
+ };
+ };
+ "stream-browserify-2.0.1" = {
+ name = "stream-browserify";
+ packageName = "stream-browserify";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz";
+ sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db";
+ };
+ };
+ "stream-buffers-2.2.0" = {
+ name = "stream-buffers";
+ packageName = "stream-buffers";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-buffers/-/stream-buffers-2.2.0.tgz";
+ sha1 = "91d5f5130d1cef96dcfa7f726945188741d09ee4";
+ };
+ };
+ "stream-collector-1.0.1" = {
+ name = "stream-collector";
+ packageName = "stream-collector";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-collector/-/stream-collector-1.0.1.tgz";
+ sha1 = "4d4e55f171356121b2c5f6559f944705ab28db15";
+ };
+ };
+ "stream-combiner-0.0.4" = {
+ name = "stream-combiner";
+ packageName = "stream-combiner";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz";
+ sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14";
+ };
+ };
+ "stream-combiner2-1.1.1" = {
+ name = "stream-combiner2";
+ packageName = "stream-combiner2";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz";
+ sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe";
+ };
+ };
+ "stream-consume-0.1.0" = {
+ name = "stream-consume";
+ packageName = "stream-consume";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz";
+ sha1 = "a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f";
+ };
+ };
+ "stream-counter-0.2.0" = {
+ name = "stream-counter";
+ packageName = "stream-counter";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz";
+ sha1 = "ded266556319c8b0e222812b9cf3b26fa7d947de";
+ };
+ };
+ "stream-each-1.2.2" = {
+ name = "stream-each";
+ packageName = "stream-each";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz";
+ sha512 = "2h4ymczmf5aqldga4sj8acqlzc3almazi2vwiv7kx63k28sz1wwkqgzzv1hn47jf49k1x94w25fmmi001h5mj3n6g9in1s6b1n5vkcr";
+ };
+ };
+ "stream-http-2.8.0" = {
+ name = "stream-http";
+ packageName = "stream-http";
+ version = "2.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.0.tgz";
+ sha512 = "2ghzil78wsr29z8p1883i0vwx9gpsspha4wvdbpvqzbknrfiavwis010i5a7vy0xx8n486f6kwmjxsk3mg1w4bjy4whvizriz28b4xi";
+ };
+ };
+ "stream-parser-0.3.1" = {
+ name = "stream-parser";
+ packageName = "stream-parser";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz";
+ sha1 = "1618548694420021a1182ff0af1911c129761773";
+ };
+ };
+ "stream-shift-1.0.0" = {
+ name = "stream-shift";
+ packageName = "stream-shift";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz";
+ sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
+ };
+ };
+ "stream-splicer-2.0.0" = {
+ name = "stream-splicer";
+ packageName = "stream-splicer";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz";
+ sha1 = "1b63be438a133e4b671cc1935197600175910d83";
+ };
+ };
+ "stream-to-array-2.3.0" = {
+ name = "stream-to-array";
+ packageName = "stream-to-array";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-to-array/-/stream-to-array-2.3.0.tgz";
+ sha1 = "bbf6b39f5f43ec30bc71babcb37557acecf34353";
+ };
+ };
+ "stream-to-promise-2.2.0" = {
+ name = "stream-to-promise";
+ packageName = "stream-to-promise";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-to-promise/-/stream-to-promise-2.2.0.tgz";
+ sha1 = "b1edb2e1c8cb11289d1b503c08d3f2aef51e650f";
+ };
+ };
+ "stream-to-pull-stream-1.7.2" = {
+ name = "stream-to-pull-stream";
+ packageName = "stream-to-pull-stream";
+ version = "1.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-to-pull-stream/-/stream-to-pull-stream-1.7.2.tgz";
+ sha1 = "757609ae1cebd33c7432d4afbe31ff78650b9dde";
+ };
+ };
+ "stream-transcoder-0.0.5" = {
+ name = "stream-transcoder";
+ packageName = "stream-transcoder";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-transcoder/-/stream-transcoder-0.0.5.tgz";
+ sha1 = "68261be4efb48840239b5791af23ee3b8bd79808";
+ };
+ };
+ "stream-transform-0.1.2" = {
+ name = "stream-transform";
+ packageName = "stream-transform";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-transform/-/stream-transform-0.1.2.tgz";
+ sha1 = "7d8e6b4e03ac4781778f8c79517501bfb0762a9f";
+ };
+ };
+ "streamline-0.10.17" = {
+ name = "streamline";
+ packageName = "streamline";
+ version = "0.10.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/streamline/-/streamline-0.10.17.tgz";
+ sha1 = "fa2170da74194dbd0b54f756523f0d0d370426af";
+ };
+ };
+ "streamline-0.4.11" = {
+ name = "streamline";
+ packageName = "streamline";
+ version = "0.4.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/streamline/-/streamline-0.4.11.tgz";
+ sha1 = "0e3c4f24a3f052b231b12d5049085a0a099be782";
+ };
+ };
+ "streamline-streams-0.1.5" = {
+ name = "streamline-streams";
+ packageName = "streamline-streams";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/streamline-streams/-/streamline-streams-0.1.5.tgz";
+ sha1 = "5b0ff80cf543f603cc3438ed178ca2aec7899b54";
+ };
+ };
+ "streamroller-0.7.0" = {
+ name = "streamroller";
+ packageName = "streamroller";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/streamroller/-/streamroller-0.7.0.tgz";
+ sha512 = "26pp7m15rrddwfr1w83nhrws5k82ld1l8njiqvhm43vckr0zszhhb8jwps2bhzylfp7xmb8p2kr86y1g97knikrlwm3blrb5mzk64ar";
+ };
+ };
+ "streamsearch-0.1.2" = {
+ name = "streamsearch";
+ packageName = "streamsearch";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz";
+ sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a";
+ };
+ };
+ "strftime-0.10.0" = {
+ name = "strftime";
+ packageName = "strftime";
+ version = "0.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strftime/-/strftime-0.10.0.tgz";
+ sha1 = "b3f0fa419295202a5a289f6d6be9f4909a617193";
+ };
+ };
+ "strict-uri-encode-1.1.0" = {
+ name = "strict-uri-encode";
+ packageName = "strict-uri-encode";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz";
+ sha1 = "279b225df1d582b1f54e65addd4352e18faa0713";
+ };
+ };
+ "string-1.6.1" = {
+ name = "string";
+ packageName = "string";
+ version = "1.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string/-/string-1.6.1.tgz";
+ sha1 = "eabe0956da7a8291c6de7486f7b35e58d031cd55";
+ };
+ };
+ "string-2.0.1" = {
+ name = "string";
+ packageName = "string";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string/-/string-2.0.1.tgz";
+ sha1 = "ef1473b3e11cb8158671856556959b9aff5fd759";
+ };
+ };
+ "string-length-1.0.1" = {
+ name = "string-length";
+ packageName = "string-length";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz";
+ sha1 = "56970fb1c38558e9e70b728bf3de269ac45adfac";
+ };
+ };
+ "string-similarity-1.2.0" = {
+ name = "string-similarity";
+ packageName = "string-similarity";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-similarity/-/string-similarity-1.2.0.tgz";
+ sha1 = "d75153cb383846318b7a39a8d9292bb4db4e9c30";
+ };
+ };
+ "string-stream-0.0.7" = {
+ name = "string-stream";
+ packageName = "string-stream";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-stream/-/string-stream-0.0.7.tgz";
+ sha1 = "cfcde82799fa62f303429aaa79336ee8834332fe";
+ };
+ };
+ "string-template-0.2.1" = {
+ name = "string-template";
+ packageName = "string-template";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz";
+ sha1 = "42932e598a352d01fc22ec3367d9d84eec6c9add";
+ };
+ };
+ "string-template-1.0.0" = {
+ name = "string-template";
+ packageName = "string-template";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-template/-/string-template-1.0.0.tgz";
+ sha1 = "9e9f2233dc00f218718ec379a28a5673ecca8b96";
+ };
+ };
+ "string-width-1.0.2" = {
+ name = "string-width";
+ packageName = "string-width";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
+ sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
+ };
+ };
+ "string-width-2.1.1" = {
+ name = "string-width";
+ packageName = "string-width";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
+ sha512 = "29s1fqgr4mnhfxwczgdghfmmc1f792m9hysvcjxw2h5lfj8ndf2b6gm02m96qk5m75g4aisijvng4pk618anwbr8i9ay2jyszkqgslw";
+ };
+ };
+ "string.prototype.codepointat-0.2.0" = {
+ name = "string.prototype.codepointat";
+ packageName = "string.prototype.codepointat";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.0.tgz";
+ sha1 = "6b26e9bd3afcaa7be3b4269b526de1b82000ac78";
+ };
+ };
+ "string2compact-1.2.2" = {
+ name = "string2compact";
+ packageName = "string2compact";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string2compact/-/string2compact-1.2.2.tgz";
+ sha1 = "420b3a9ee1c46854919b4a2aeac65c43fa50597b";
+ };
+ };
+ "string_decoder-0.10.31" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "0.10.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
+ sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
+ };
+ };
+ "string_decoder-1.0.3" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz";
+ sha512 = "22vw5mmwlyblqc2zyqwl39wyhyahhpiyknim8iz5fk6xi002x777gkswiq8fh297djs5ii4pgrys57wq33hr5zf3xfd0d7kjxkzl0g0";
+ };
+ };
+ "stringify-entities-1.3.1" = {
+ name = "stringify-entities";
+ packageName = "stringify-entities";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stringify-entities/-/stringify-entities-1.3.1.tgz";
+ sha1 = "b150ec2d72ac4c1b5f324b51fb6b28c9cdff058c";
+ };
+ };
+ "stringstream-0.0.5" = {
+ name = "stringstream";
+ packageName = "stringstream";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz";
+ sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878";
+ };
+ };
+ "strip-ansi-0.1.1" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz";
+ sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991";
+ };
+ };
+ "strip-ansi-0.3.0" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz";
+ sha1 = "25f48ea22ca79187f3174a4db8759347bb126220";
+ };
+ };
+ "strip-ansi-2.0.1" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz";
+ sha1 = "df62c1aa94ed2f114e1d0f21fd1d50482b79a60e";
+ };
+ };
+ "strip-ansi-3.0.1" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
+ sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
+ };
+ };
+ "strip-ansi-4.0.0" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
+ sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
+ };
+ };
+ "strip-bom-1.0.0" = {
+ name = "strip-bom";
+ packageName = "strip-bom";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz";
+ sha1 = "85b8862f3844b5a6d5ec8467a93598173a36f794";
+ };
+ };
+ "strip-bom-2.0.0" = {
+ name = "strip-bom";
+ packageName = "strip-bom";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz";
+ sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e";
+ };
+ };
+ "strip-bom-3.0.0" = {
+ name = "strip-bom";
+ packageName = "strip-bom";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz";
+ sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3";
+ };
+ };
+ "strip-bom-buf-1.0.0" = {
+ name = "strip-bom-buf";
+ packageName = "strip-bom-buf";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom-buf/-/strip-bom-buf-1.0.0.tgz";
+ sha1 = "1cb45aaf57530f4caf86c7f75179d2c9a51dd572";
+ };
+ };
+ "strip-bom-stream-1.0.0" = {
+ name = "strip-bom-stream";
+ packageName = "strip-bom-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz";
+ sha1 = "e7144398577d51a6bed0fa1994fa05f43fd988ee";
+ };
+ };
+ "strip-bom-stream-2.0.0" = {
+ name = "strip-bom-stream";
+ packageName = "strip-bom-stream";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz";
+ sha1 = "f87db5ef2613f6968aa545abfe1ec728b6a829ca";
+ };
+ };
+ "strip-bom-stream-3.0.0" = {
+ name = "strip-bom-stream";
+ packageName = "strip-bom-stream";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-3.0.0.tgz";
+ sha1 = "956bcc5d84430f69256a90ed823765cd858e159c";
+ };
+ };
+ "strip-eof-1.0.0" = {
+ name = "strip-eof";
+ packageName = "strip-eof";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
+ sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
+ };
+ };
+ "strip-indent-1.0.1" = {
+ name = "strip-indent";
+ packageName = "strip-indent";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz";
+ sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2";
+ };
+ };
+ "strip-json-comments-0.1.3" = {
+ name = "strip-json-comments";
+ packageName = "strip-json-comments";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz";
+ sha1 = "164c64e370a8a3cc00c9e01b539e569823f0ee54";
+ };
+ };
+ "strip-json-comments-1.0.4" = {
+ name = "strip-json-comments";
+ packageName = "strip-json-comments";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz";
+ sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91";
+ };
+ };
+ "strip-json-comments-2.0.1" = {
+ name = "strip-json-comments";
+ packageName = "strip-json-comments";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
+ sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
+ };
+ };
+ "strong-data-uri-1.0.4" = {
+ name = "strong-data-uri";
+ packageName = "strong-data-uri";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.4.tgz";
+ sha1 = "136765ebaf8e0f4ad60c4b146779f062c29d18f0";
+ };
+ };
+ "strong-log-transformer-1.0.6" = {
+ name = "strong-log-transformer";
+ packageName = "strong-log-transformer";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strong-log-transformer/-/strong-log-transformer-1.0.6.tgz";
+ sha1 = "f7fb93758a69a571140181277eea0c2eb1301fa3";
+ };
+ };
+ "structured-source-3.0.2" = {
+ name = "structured-source";
+ packageName = "structured-source";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/structured-source/-/structured-source-3.0.2.tgz";
+ sha1 = "dd802425e0f53dc4a6e7aca3752901a1ccda7af5";
+ };
+ };
+ "subarg-1.0.0" = {
+ name = "subarg";
+ packageName = "subarg";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz";
+ sha1 = "f62cf17581e996b48fc965699f54c06ae268b8d2";
+ };
+ };
+ "subcommand-2.1.0" = {
+ name = "subcommand";
+ packageName = "subcommand";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/subcommand/-/subcommand-2.1.0.tgz";
+ sha1 = "5e4ceca5a3779e3365b1511e05f866877302f760";
+ };
+ };
+ "sudo-block-1.2.0" = {
+ name = "sudo-block";
+ packageName = "sudo-block";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sudo-block/-/sudo-block-1.2.0.tgz";
+ sha1 = "cc539bf8191624d4f507d83eeb45b4cea27f3463";
+ };
+ };
+ "superagent-0.21.0" = {
+ name = "superagent";
+ packageName = "superagent";
+ version = "0.21.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/superagent/-/superagent-0.21.0.tgz";
+ sha1 = "fb15027984751ee7152200e6cd21cd6e19a5de87";
+ };
+ };
+ "superagent-3.8.2" = {
+ name = "superagent";
+ packageName = "superagent";
+ version = "3.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/superagent/-/superagent-3.8.2.tgz";
+ sha512 = "0sxwwjllf26hx079lw1w3c1zywq2af9ssi7f0n334xzz1mgnfx2lr5l532a988zyi3bigzmfidqgdrfmwv6ghgzs77qsw87yr0zhlc1";
+ };
+ };
+ "supports-color-0.2.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz";
+ sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a";
+ };
+ };
+ "supports-color-1.3.1" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-1.3.1.tgz";
+ sha1 = "15758df09d8ff3b4acc307539fabe27095e1042d";
+ };
+ };
+ "supports-color-2.0.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
+ sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
+ };
+ };
+ "supports-color-3.2.3" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "3.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz";
+ sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6";
+ };
+ };
+ "supports-color-4.2.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-4.2.0.tgz";
+ sha512 = "158ng0v99ac7csif7v6153bp63nxmlz2a613z8y09sk8jsj2rpalscgg0lfzdlpfdd5612jqsnkvrz0137inka2qjcmcjrmy2xhrkaf";
+ };
+ };
+ "supports-color-4.4.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz";
+ sha512 = "1flwwfdd7gg94xrc0b2ard3qjx4cpy600q49gx43y8pzvs7j56q78bjhv8mk18vgbggr4fd11jda8ck5cdrkc5jcjs04nlp7kwbg85c";
+ };
+ };
+ "supports-color-4.5.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz";
+ sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b";
+ };
+ };
+ "supports-color-5.1.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-5.1.0.tgz";
+ sha512 = "04q31rfgx0r6jgs2r1k6kmzab1vw3qrikiv8wsl86rxll77vdalrag7r4ypww3qp6v8k3avsjc0jxd3ga45fb5f51akm30a9b100ba7";
+ };
+ };
+ "symbol-observable-1.0.1" = {
+ name = "symbol-observable";
+ packageName = "symbol-observable";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz";
+ sha1 = "8340fc4702c3122df5d22288f88283f513d3fdd4";
+ };
+ };
+ "sync-request-3.0.0" = {
+ name = "sync-request";
+ packageName = "sync-request";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sync-request/-/sync-request-3.0.0.tgz";
+ sha1 = "8030046939b00096e625c0dd6b3905bc7b85709c";
+ };
+ };
+ "syntax-error-1.3.0" = {
+ name = "syntax-error";
+ packageName = "syntax-error";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.3.0.tgz";
+ sha1 = "1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1";
+ };
+ };
+ "table-3.8.3" = {
+ name = "table";
+ packageName = "table";
+ version = "3.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/table/-/table-3.8.3.tgz";
+ sha1 = "2bbc542f0fda9861a755d3947fefd8b3f513855f";
+ };
+ };
+ "table-4.0.2" = {
+ name = "table";
+ packageName = "table";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/table/-/table-4.0.2.tgz";
+ sha512 = "2q47avrxblc0an2g5ij8sd7ss2bqhdxy2949dk774gyg9vmsivg7fwyn885v2va72sxiv5k59ifvi3hg4ra6z95lr8in6sjyw008jai";
+ };
+ };
"tabtab-1.3.2" = {
name = "tabtab";
packageName = "tabtab";
@@ -26207,6 +23946,448 @@ let
sha1 = "bb9c2ca6324f659fde7634c2caf3c096e1187ca7";
};
};
+ "tabtab-git+https://github.com/mixu/node-tabtab.git" = {
+ name = "tabtab";
+ packageName = "tabtab";
+ version = "0.0.2";
+ src = fetchgit {
+ url = "https://github.com/mixu/node-tabtab.git";
+ rev = "94af2b878b174527b6636aec88acd46979247755";
+ sha256 = "c824206b33da96cf5c01c21f1b133a0e3568e07ee4dcc9beefa8226864cd0272";
+ };
+ };
+ "taffydb-2.6.2" = {
+ name = "taffydb";
+ packageName = "taffydb";
+ version = "2.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz";
+ sha1 = "7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268";
+ };
+ };
+ "taketalk-1.0.0" = {
+ name = "taketalk";
+ packageName = "taketalk";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/taketalk/-/taketalk-1.0.0.tgz";
+ sha1 = "b4d4f0deed206ae7df775b129ea2ca6de52f26dd";
+ };
+ };
+ "tapable-0.2.8" = {
+ name = "tapable";
+ packageName = "tapable";
+ version = "0.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tapable/-/tapable-0.2.8.tgz";
+ sha1 = "99372a5c999bf2df160afc0d74bed4f47948cd22";
+ };
+ };
+ "tape-2.3.3" = {
+ name = "tape";
+ packageName = "tape";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tape/-/tape-2.3.3.tgz";
+ sha1 = "2e7ce0a31df09f8d6851664a71842e0ca5057af7";
+ };
+ };
+ "tar-0.1.17" = {
+ name = "tar";
+ packageName = "tar";
+ version = "0.1.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-0.1.17.tgz";
+ sha1 = "408c8a95deb8e78a65b59b1a51a333183a32badc";
+ };
+ };
+ "tar-2.2.1" = {
+ name = "tar";
+ packageName = "tar";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz";
+ sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
+ };
+ };
+ "tar-3.1.15" = {
+ name = "tar";
+ packageName = "tar";
+ version = "3.1.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-3.1.15.tgz";
+ sha512 = "1ryql8hyrrhd0gdd71ishbj3cnr8ay0i0wpvy9mj3hjiy35cc1wa0h07wz8jwils98j00gr03ix3cf2j1xm43xjn9bsavwn1yr4a0x5";
+ };
+ };
+ "tar-4.3.0" = {
+ name = "tar";
+ packageName = "tar";
+ version = "4.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-4.3.0.tgz";
+ sha512 = "1844acixnz54bqf6q85avzdgq39i30d6gridz084iff0f3fh670wag8gs72k8dhbvmhxs2czlax99bfwypyfxbhrq3w80xb2kl5gbjd";
+ };
+ };
+ "tar-fs-1.16.0" = {
+ name = "tar-fs";
+ packageName = "tar-fs";
+ version = "1.16.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.0.tgz";
+ sha512 = "1i39d75rgrl2a3v3x65w7bz6az06sg7xdvp7j9zk5bqilj5znclmr7r5n9l6la6nkqikn4lkhnfrgp4hzbvp6ph77nn53g6zvmdpni3";
+ };
+ };
+ "tar-pack-3.4.1" = {
+ name = "tar-pack";
+ packageName = "tar-pack";
+ version = "3.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz";
+ sha512 = "0mgk8jd55vr7i3i29r1skhxwwbqkqfz6mbr32r5nn8h6v5xns8d2rc7835y7wj0zmppckxai7nm8r4s65kkg6yhirnwx33yixn75x1w";
+ };
+ };
+ "tar-stream-1.5.5" = {
+ name = "tar-stream";
+ packageName = "tar-stream";
+ version = "1.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.5.tgz";
+ sha512 = "219gn10gvilrq6h3yshbhn25fx46n0wlgg66h0v326jhzz8gmpxsinb8bnhx1py35z0cv2248v91k2vy6vmkajmvpmkfmizywn601wr";
+ };
+ };
+ "temp-0.6.0" = {
+ name = "temp";
+ packageName = "temp";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/temp/-/temp-0.6.0.tgz";
+ sha1 = "6b13df5cddf370f2e3a606ca40f202c419173f07";
+ };
+ };
+ "temp-0.8.3" = {
+ name = "temp";
+ packageName = "temp";
+ version = "0.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz";
+ sha1 = "e0c6bc4d26b903124410e4fed81103014dfc1f59";
+ };
+ };
+ "temp-dir-1.0.0" = {
+ name = "temp-dir";
+ packageName = "temp-dir";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz";
+ sha1 = "0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d";
+ };
+ };
+ "temp-write-3.4.0" = {
+ name = "temp-write";
+ packageName = "temp-write";
+ version = "3.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/temp-write/-/temp-write-3.4.0.tgz";
+ sha1 = "8cff630fb7e9da05f047c74ce4ce4d685457d492";
+ };
+ };
+ "tempfile-1.1.1" = {
+ name = "tempfile";
+ packageName = "tempfile";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz";
+ sha1 = "5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2";
+ };
+ };
+ "term-size-1.2.0" = {
+ name = "term-size";
+ packageName = "term-size";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz";
+ sha1 = "458b83887f288fc56d6fffbfad262e26638efa69";
+ };
+ };
+ "text-extensions-1.7.0" = {
+ name = "text-extensions";
+ packageName = "text-extensions";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/text-extensions/-/text-extensions-1.7.0.tgz";
+ sha512 = "015f82dnl58mcjf4c86lxlf2j66nhvnif56475x720bl73pkx3pvds7g2njz19ksbmbqag25rl4wij1xb6yd3in9cd4bpxn79wdk980";
+ };
+ };
+ "text-table-0.2.0" = {
+ name = "text-table";
+ packageName = "text-table";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz";
+ sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4";
+ };
+ };
+ "then-fs-2.0.0" = {
+ name = "then-fs";
+ packageName = "then-fs";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz";
+ sha1 = "72f792dd9d31705a91ae19ebfcf8b3f968c81da2";
+ };
+ };
+ "then-request-2.2.0" = {
+ name = "then-request";
+ packageName = "then-request";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/then-request/-/then-request-2.2.0.tgz";
+ sha1 = "6678b32fa0ca218fe569981bbd8871b594060d81";
+ };
+ };
+ "thenify-3.3.0" = {
+ name = "thenify";
+ packageName = "thenify";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thenify/-/thenify-3.3.0.tgz";
+ sha1 = "e69e38a1babe969b0108207978b9f62b88604839";
+ };
+ };
+ "thenify-all-1.6.0" = {
+ name = "thenify-all";
+ packageName = "thenify-all";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz";
+ sha1 = "1a1918d402d8fc3f98fbf234db0bcc8cc10e9726";
+ };
+ };
+ "thirty-two-0.0.2" = {
+ name = "thirty-two";
+ packageName = "thirty-two";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thirty-two/-/thirty-two-0.0.2.tgz";
+ sha1 = "4253e29d8cb058f0480267c5698c0e4927e54b6a";
+ };
+ };
+ "thirty-two-1.0.2" = {
+ name = "thirty-two";
+ packageName = "thirty-two";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thirty-two/-/thirty-two-1.0.2.tgz";
+ sha1 = "4ca2fffc02a51290d2744b9e3f557693ca6b627a";
+ };
+ };
+ "thriftrw-3.11.1" = {
+ name = "thriftrw";
+ packageName = "thriftrw";
+ version = "3.11.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thriftrw/-/thriftrw-3.11.1.tgz";
+ sha1 = "5a2f5165d665bb195e665e5b5b9f8897dac23acc";
+ };
+ };
+ "throat-3.2.0" = {
+ name = "throat";
+ packageName = "throat";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/throat/-/throat-3.2.0.tgz";
+ sha512 = "3rnpjw8qfw0qbydd9s4pbp0qzahz1f4phbj4cc9mvz6851nrq9h1whwslsjjfrzl0qgsnjf0n8ppygh3kl7ikyj2sn9za75kdb3qipw";
+ };
+ };
+ "throttle-1.0.3" = {
+ name = "throttle";
+ packageName = "throttle";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/throttle/-/throttle-1.0.3.tgz";
+ sha1 = "8a32e4a15f1763d997948317c5ebe3ad8a41e4b7";
+ };
+ };
+ "throttleit-1.0.0" = {
+ name = "throttleit";
+ packageName = "throttleit";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz";
+ sha1 = "9e785836daf46743145a5984b6268d828528ac6c";
+ };
+ };
+ "through-2.3.4" = {
+ name = "through";
+ packageName = "through";
+ version = "2.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through/-/through-2.3.4.tgz";
+ sha1 = "495e40e8d8a8eaebc7c275ea88c2b8fc14c56455";
+ };
+ };
+ "through-2.3.8" = {
+ name = "through";
+ packageName = "through";
+ version = "2.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
+ sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
+ };
+ };
+ "through2-0.6.5" = {
+ name = "through2";
+ packageName = "through2";
+ version = "0.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz";
+ sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48";
+ };
+ };
+ "through2-2.0.3" = {
+ name = "through2";
+ packageName = "through2";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz";
+ sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
+ };
+ };
+ "through2-filter-2.0.0" = {
+ name = "through2-filter";
+ packageName = "through2-filter";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through2-filter/-/through2-filter-2.0.0.tgz";
+ sha1 = "60bc55a0dacb76085db1f9dae99ab43f83d622ec";
+ };
+ };
+ "thunkify-2.1.2" = {
+ name = "thunkify";
+ packageName = "thunkify";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz";
+ sha1 = "faa0e9d230c51acc95ca13a361ac05ca7e04553d";
+ };
+ };
+ "thunky-0.1.0" = {
+ name = "thunky";
+ packageName = "thunky";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz";
+ sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e";
+ };
+ };
+ "thunky-1.0.2" = {
+ name = "thunky";
+ packageName = "thunky";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunky/-/thunky-1.0.2.tgz";
+ sha1 = "a862e018e3fb1ea2ec3fce5d55605cf57f247371";
+ };
+ };
+ "tildify-1.2.0" = {
+ name = "tildify";
+ packageName = "tildify";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tildify/-/tildify-1.2.0.tgz";
+ sha1 = "dcec03f55dca9b7aa3e5b04f21817eb56e63588a";
+ };
+ };
+ "time-line-1.0.1" = {
+ name = "time-line";
+ packageName = "time-line";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/time-line/-/time-line-1.0.1.tgz";
+ sha1 = "afb89542301c3b5010d118c66b5d63920f5e9a7a";
+ };
+ };
+ "time-stamp-1.1.0" = {
+ name = "time-stamp";
+ packageName = "time-stamp";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz";
+ sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3";
+ };
+ };
+ "timed-out-2.0.0" = {
+ name = "timed-out";
+ packageName = "timed-out";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz";
+ sha1 = "f38b0ae81d3747d628001f41dafc652ace671c0a";
+ };
+ };
+ "timed-out-3.1.3" = {
+ name = "timed-out";
+ packageName = "timed-out";
+ version = "3.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timed-out/-/timed-out-3.1.3.tgz";
+ sha1 = "95860bfcc5c76c277f8f8326fd0f5b2e20eba217";
+ };
+ };
+ "timed-out-4.0.1" = {
+ name = "timed-out";
+ packageName = "timed-out";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz";
+ sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f";
+ };
+ };
+ "timers-browserify-1.4.2" = {
+ name = "timers-browserify";
+ packageName = "timers-browserify";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz";
+ sha1 = "c9c58b575be8407375cb5e2462dacee74359f41d";
+ };
+ };
+ "timers-browserify-2.0.6" = {
+ name = "timers-browserify";
+ packageName = "timers-browserify";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.6.tgz";
+ sha512 = "0zvmxvcvmv91k667dy2hzd9a2knvhizxvbx73gcnbi5na3ypc3mldfljw062d7n6y2mf7n2gwwc5wr4wrdih927fxahg8s0hinyf38x";
+ };
+ };
+ "timespan-2.3.0" = {
+ name = "timespan";
+ packageName = "timespan";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz";
+ sha1 = "4902ce040bd13d845c8f59b27e9d59bad6f39929";
+ };
+ };
+ "tiny-lr-1.1.0" = {
+ name = "tiny-lr";
+ packageName = "tiny-lr";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tiny-lr/-/tiny-lr-1.1.0.tgz";
+ sha512 = "06rjm9vpcs6h1890gzzj8pbn5k70724dz61qnk2fjwgiva4klx9zzwds5iidlgc31p7q41x6qz81pbbh116ap3jznqw07camvqzm1bz";
+ };
+ };
+ "tinycolor-0.0.1" = {
+ name = "tinycolor";
+ packageName = "tinycolor";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tinycolor/-/tinycolor-0.0.1.tgz";
+ sha1 = "320b5a52d83abb5978d81a3e887d4aefb15a6164";
+ };
+ };
"titleize-1.0.0" = {
name = "titleize";
packageName = "titleize";
@@ -26216,6 +24397,2923 @@ let
sha1 = "7d350722061830ba6617631e0cfd3ea08398d95a";
};
};
+ "tmp-0.0.28" = {
+ name = "tmp";
+ packageName = "tmp";
+ version = "0.0.28";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tmp/-/tmp-0.0.28.tgz";
+ sha1 = "172735b7f614ea7af39664fa84cf0de4e515d120";
+ };
+ };
+ "tmp-0.0.29" = {
+ name = "tmp";
+ packageName = "tmp";
+ version = "0.0.29";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz";
+ sha1 = "f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0";
+ };
+ };
+ "tmp-0.0.31" = {
+ name = "tmp";
+ packageName = "tmp";
+ version = "0.0.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz";
+ sha1 = "8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7";
+ };
+ };
+ "tmp-0.0.33" = {
+ name = "tmp";
+ packageName = "tmp";
+ version = "0.0.33";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz";
+ sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d";
+ };
+ };
+ "to-absolute-glob-0.1.1" = {
+ name = "to-absolute-glob";
+ packageName = "to-absolute-glob";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz";
+ sha1 = "1cdfa472a9ef50c239ee66999b662ca0eb39937f";
+ };
+ };
+ "to-absolute-glob-2.0.2" = {
+ name = "to-absolute-glob";
+ packageName = "to-absolute-glob";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz";
+ sha1 = "1865f43d9e74b0822db9f145b78cff7d0f7c849b";
+ };
+ };
+ "to-array-0.1.3" = {
+ name = "to-array";
+ packageName = "to-array";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz";
+ sha1 = "d45dadc6363417f60f28474fea50ecddbb4f4991";
+ };
+ };
+ "to-array-0.1.4" = {
+ name = "to-array";
+ packageName = "to-array";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz";
+ sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890";
+ };
+ };
+ "to-arraybuffer-1.0.1" = {
+ name = "to-arraybuffer";
+ packageName = "to-arraybuffer";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz";
+ sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
+ };
+ };
+ "to-buffer-1.1.0" = {
+ name = "to-buffer";
+ packageName = "to-buffer";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.0.tgz";
+ sha1 = "375bc03edae5c35a8fa0b3fe95a1f3985db1dcfa";
+ };
+ };
+ "to-fast-properties-1.0.3" = {
+ name = "to-fast-properties";
+ packageName = "to-fast-properties";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz";
+ sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47";
+ };
+ };
+ "to-object-path-0.3.0" = {
+ name = "to-object-path";
+ packageName = "to-object-path";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz";
+ sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af";
+ };
+ };
+ "to-regex-3.0.1" = {
+ name = "to-regex";
+ packageName = "to-regex";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.1.tgz";
+ sha1 = "15358bee4a2c83bd76377ba1dc049d0f18837aae";
+ };
+ };
+ "to-regex-range-2.1.1" = {
+ name = "to-regex-range";
+ packageName = "to-regex-range";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz";
+ sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38";
+ };
+ };
+ "to-utf8-0.0.1" = {
+ name = "to-utf8";
+ packageName = "to-utf8";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-utf8/-/to-utf8-0.0.1.tgz";
+ sha1 = "d17aea72ff2fba39b9e43601be7b3ff72e089852";
+ };
+ };
+ "toiletdb-1.4.1" = {
+ name = "toiletdb";
+ packageName = "toiletdb";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.1.tgz";
+ sha512 = "0c9ayp39hvxd1lzl6cxvsxcys0jzfb698i3as3xrw3n9zpxwmx4sqwisv63bfsmdl10c6v4inpj5kvckhlr3nd3ny1pj264r0qags0l";
+ };
+ };
+ "token-stream-0.0.1" = {
+ name = "token-stream";
+ packageName = "token-stream";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/token-stream/-/token-stream-0.0.1.tgz";
+ sha1 = "ceeefc717a76c4316f126d0b9dbaa55d7e7df01a";
+ };
+ };
+ "toml-2.3.3" = {
+ name = "toml";
+ packageName = "toml";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/toml/-/toml-2.3.3.tgz";
+ sha512 = "16a6xk2s4y4llqya2gjgwzlvb0512sw8ahxfd4b225j2sd9i52zca1w65d69wd7frzhcz2ak3gf3r3y9ws727b5gnp1n7wh2j3gkciv";
+ };
+ };
+ "topo-1.1.0" = {
+ name = "topo";
+ packageName = "topo";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz";
+ sha1 = "e9d751615d1bb87dc865db182fa1ca0a5ef536d5";
+ };
+ };
+ "torrent-discovery-5.4.0" = {
+ name = "torrent-discovery";
+ packageName = "torrent-discovery";
+ version = "5.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-5.4.0.tgz";
+ sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29";
+ };
+ };
+ "torrent-piece-1.1.1" = {
+ name = "torrent-piece";
+ packageName = "torrent-piece";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-1.1.1.tgz";
+ sha1 = "50346e42a43b35daf2a86f414afb153629a854be";
+ };
+ };
+ "torrent-stream-1.0.3" = {
+ name = "torrent-stream";
+ packageName = "torrent-stream";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.0.3.tgz";
+ sha1 = "d8c043b44c3c448c9397a3aec42d2df55887037b";
+ };
+ };
+ "tosource-1.0.0" = {
+ name = "tosource";
+ packageName = "tosource";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tosource/-/tosource-1.0.0.tgz";
+ sha1 = "42d88dd116618bcf00d6106dd5446f3427902ff1";
+ };
+ };
+ "touch-0.0.3" = {
+ name = "touch";
+ packageName = "touch";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/touch/-/touch-0.0.3.tgz";
+ sha1 = "51aef3d449571d4f287a5d87c9c8b49181a0db1d";
+ };
+ };
+ "touch-1.0.0" = {
+ name = "touch";
+ packageName = "touch";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/touch/-/touch-1.0.0.tgz";
+ sha1 = "449cbe2dbae5a8c8038e30d71fa0ff464947c4de";
+ };
+ };
+ "touch-3.1.0" = {
+ name = "touch";
+ packageName = "touch";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz";
+ sha512 = "2a3sk3562y1ihbl06r5g1pzs37mwhhnz8f8vvcc0k8bhykczzgv9dyw71kkz4mbf81iq7wbf2nq7hpy6z6zhanj8s9d6bjk5r9pq72q";
+ };
+ };
+ "tough-cookie-2.2.2" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz";
+ sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7";
+ };
+ };
+ "tough-cookie-2.3.3" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz";
+ sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561";
+ };
+ };
+ "township-client-1.3.2" = {
+ name = "township-client";
+ packageName = "township-client";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/township-client/-/township-client-1.3.2.tgz";
+ sha512 = "3da1j7ba37apy5kqlv436dz265b8ni63ca069gy4wrj9krq236j7sp0r259ia6jk1a8d7qqg37kkk8kwmnaqwcy90wnwnjxxp8bnf78";
+ };
+ };
+ "tr46-1.0.1" = {
+ name = "tr46";
+ packageName = "tr46";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz";
+ sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09";
+ };
+ };
+ "transformers-2.1.0" = {
+ name = "transformers";
+ packageName = "transformers";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/transformers/-/transformers-2.1.0.tgz";
+ sha1 = "5d23cb35561dd85dc67fb8482309b47d53cce9a7";
+ };
+ };
+ "traverse-0.3.9" = {
+ name = "traverse";
+ packageName = "traverse";
+ version = "0.3.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz";
+ sha1 = "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9";
+ };
+ };
+ "traverse-0.4.6" = {
+ name = "traverse";
+ packageName = "traverse";
+ version = "0.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/traverse/-/traverse-0.4.6.tgz";
+ sha1 = "d04b2280e4c792a5815429ef7b8b60c64c9ccc34";
+ };
+ };
+ "traverse-0.6.6" = {
+ name = "traverse";
+ packageName = "traverse";
+ version = "0.6.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz";
+ sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137";
+ };
+ };
+ "tree-kill-1.2.0" = {
+ name = "tree-kill";
+ packageName = "tree-kill";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz";
+ sha512 = "1r0mixygpdqrm2fn92z4cyxzbnvimm16k5gdm2m2jxx8wrj3w0mql9s748hcqp2nzcnybnw74wkm211zlr9ld0j2x1q8f153mszlm8f";
+ };
+ };
+ "trim-0.0.1" = {
+ name = "trim";
+ packageName = "trim";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz";
+ sha1 = "5858547f6b290757ee95cccc666fb50084c460dd";
+ };
+ };
+ "trim-newlines-1.0.0" = {
+ name = "trim-newlines";
+ packageName = "trim-newlines";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz";
+ sha1 = "5887966bb582a4503a41eb524f7d35011815a613";
+ };
+ };
+ "trim-off-newlines-1.0.1" = {
+ name = "trim-off-newlines";
+ packageName = "trim-off-newlines";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz";
+ sha1 = "9f9ba9d9efa8764c387698bcbfeb2c848f11adb3";
+ };
+ };
+ "trim-right-1.0.1" = {
+ name = "trim-right";
+ packageName = "trim-right";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz";
+ sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003";
+ };
+ };
+ "trim-trailing-lines-1.1.0" = {
+ name = "trim-trailing-lines";
+ packageName = "trim-trailing-lines";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.0.tgz";
+ sha1 = "7aefbb7808df9d669f6da2e438cac8c46ada7684";
+ };
+ };
+ "trough-1.0.1" = {
+ name = "trough";
+ packageName = "trough";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trough/-/trough-1.0.1.tgz";
+ sha1 = "a9fd8b0394b0ae8fff82e0633a0a36ccad5b5f86";
+ };
+ };
+ "truncate-1.0.5" = {
+ name = "truncate";
+ packageName = "truncate";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/truncate/-/truncate-1.0.5.tgz";
+ sha1 = "c636c6c1f50eed7c927af06c1dbffab53c7abe28";
+ };
+ };
+ "tslib-1.9.0" = {
+ name = "tslib";
+ packageName = "tslib";
+ version = "1.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tslib/-/tslib-1.9.0.tgz";
+ sha512 = "2nlmx4clxs0pqc810crp8j98gpvlvbbc5bw8mx4sjx9ywh89s5kq87n5zhc5xc1scgk49p9x7dw37d158qi46al0q9b54jldcdqdykz";
+ };
+ };
+ "tsscmp-1.0.5" = {
+ name = "tsscmp";
+ packageName = "tsscmp";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.5.tgz";
+ sha1 = "7dc4a33af71581ab4337da91d85ca5427ebd9a97";
+ };
+ };
+ "ttl-1.3.1" = {
+ name = "ttl";
+ packageName = "ttl";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ttl/-/ttl-1.3.1.tgz";
+ sha512 = "36d1ph5z6c3p2qqyjq8ckksxs7m0anipm6lzf51dgv59iymac2zwaxj6fablw7zabpjxav32qk8z12fdfx6cdpp97b0van043vb5cgr";
+ };
+ };
+ "tty-browserify-0.0.0" = {
+ name = "tty-browserify";
+ packageName = "tty-browserify";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz";
+ sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6";
+ };
+ };
+ "tunnel-0.0.2" = {
+ name = "tunnel";
+ packageName = "tunnel";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.2.tgz";
+ sha1 = "f23bcd8b7a7b8a864261b2084f66f93193396334";
+ };
+ };
+ "tunnel-0.0.5" = {
+ name = "tunnel";
+ packageName = "tunnel";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.5.tgz";
+ sha512 = "1n2p6ca2m26hbf9gxlww91fp653cyqdbfnvxjc8jn91ybvbwbhsqg3cm4da8rrxzgfr9nsa6zpi20bv5w708753chaixbsym1v6qgl2";
+ };
+ };
+ "tunnel-agent-0.2.0" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz";
+ sha1 = "6853c2afb1b2109e45629e492bde35f459ea69e8";
+ };
+ };
+ "tunnel-agent-0.4.3" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz";
+ sha1 = "6373db76909fe570e08d73583365ed828a74eeeb";
+ };
+ };
+ "tunnel-agent-0.6.0" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
+ sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
+ };
+ };
+ "tweetnacl-0.14.5" = {
+ name = "tweetnacl";
+ packageName = "tweetnacl";
+ version = "0.14.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
+ sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
+ };
+ };
+ "twig-0.8.9" = {
+ name = "twig";
+ packageName = "twig";
+ version = "0.8.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/twig/-/twig-0.8.9.tgz";
+ sha1 = "b1594f002b684e5f029de3e54e87bec4f084b6c2";
+ };
+ };
+ "twitter-ng-0.6.2" = {
+ name = "twitter-ng";
+ packageName = "twitter-ng";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/twitter-ng/-/twitter-ng-0.6.2.tgz";
+ sha1 = "13707115dd04c9bd1f2c646da976589be4d64bc4";
+ };
+ };
+ "type-check-0.3.2" = {
+ name = "type-check";
+ packageName = "type-check";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz";
+ sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72";
+ };
+ };
+ "type-detect-4.0.7" = {
+ name = "type-detect";
+ packageName = "type-detect";
+ version = "4.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-detect/-/type-detect-4.0.7.tgz";
+ sha512 = "06b3944s70gv2pdbdkqpxp88izg727825j0lpdl0pdgs6p6nvpkzb034lycqin3a3nydd0jaafd86a991c78pabrqbd6m8cj3p7a671";
+ };
+ };
+ "type-is-1.5.7" = {
+ name = "type-is";
+ packageName = "type-is";
+ version = "1.5.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-is/-/type-is-1.5.7.tgz";
+ sha1 = "b9368a593cc6ef7d0645e78b2f4c64cbecd05e90";
+ };
+ };
+ "type-is-1.6.15" = {
+ name = "type-is";
+ packageName = "type-is";
+ version = "1.6.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz";
+ sha1 = "cab10fb4909e441c82842eafe1ad646c81804410";
+ };
+ };
+ "typechecker-4.4.1" = {
+ name = "typechecker";
+ packageName = "typechecker";
+ version = "4.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typechecker/-/typechecker-4.4.1.tgz";
+ sha1 = "f97b95f51b038417212d677d45a373ee7bced7e6";
+ };
+ };
+ "typedarray-0.0.6" = {
+ name = "typedarray";
+ packageName = "typedarray";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
+ sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
+ };
+ };
+ "typescript-2.4.2" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "2.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.4.2.tgz";
+ sha1 = "f8395f85d459276067c988aa41837a8f82870844";
+ };
+ };
+ "typescript-2.6.2" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "2.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.6.2.tgz";
+ sha1 = "3c5b6fd7f6de0914269027f03c0946758f7673a4";
+ };
+ };
+ "typewise-1.0.3" = {
+ name = "typewise";
+ packageName = "typewise";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz";
+ sha1 = "1067936540af97937cc5dcf9922486e9fa284651";
+ };
+ };
+ "typewise-core-1.2.0" = {
+ name = "typewise-core";
+ packageName = "typewise-core";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz";
+ sha1 = "97eb91805c7f55d2f941748fa50d315d991ef195";
+ };
+ };
+ "typewiselite-1.0.0" = {
+ name = "typewiselite";
+ packageName = "typewiselite";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typewiselite/-/typewiselite-1.0.0.tgz";
+ sha1 = "c8882fa1bb1092c06005a97f34ef5c8508e3664e";
+ };
+ };
+ "typings-core-2.3.3" = {
+ name = "typings-core";
+ packageName = "typings-core";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typings-core/-/typings-core-2.3.3.tgz";
+ sha1 = "09ec54cd5b11dd5f1ef2fc0ab31d37002ca2b5ad";
+ };
+ };
+ "ua-parser-js-0.7.17" = {
+ name = "ua-parser-js";
+ packageName = "ua-parser-js";
+ version = "0.7.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.17.tgz";
+ sha512 = "39ac4xrr9v9ya7rbn5cz8dss5j3s36yhpj9qrhfxxqzgy1vljns0qfyv7d76lqgdgdbfbrd91kb5x7jlg0fw2r4f3kml0v8xmv545xr";
+ };
+ };
+ "uc-first-array-1.1.8" = {
+ name = "uc-first-array";
+ packageName = "uc-first-array";
+ version = "1.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uc-first-array/-/uc-first-array-1.1.8.tgz";
+ sha512 = "3gmz15f5f5yn43v5gv1039pkhd3wwwjfd9jd4f501qz01bdlxj5f2vkg4ddy0lv4h7902n2hgw2vdlmc4a578hsr2bij1xzq5pjfc1d";
+ };
+ };
+ "uc.micro-1.0.3" = {
+ name = "uc.micro";
+ packageName = "uc.micro";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.3.tgz";
+ sha1 = "7ed50d5e0f9a9fb0a573379259f2a77458d50192";
+ };
+ };
+ "ucfirst-1.0.0" = {
+ name = "ucfirst";
+ packageName = "ucfirst";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ucfirst/-/ucfirst-1.0.0.tgz";
+ sha1 = "4e105b6448d05e264ecec435e0b919363c5f2f2f";
+ };
+ };
+ "uglify-js-1.2.5" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "1.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-1.2.5.tgz";
+ sha1 = "b542c2c76f78efb34b200b20177634330ff702b6";
+ };
+ };
+ "uglify-js-2.2.5" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "2.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.2.5.tgz";
+ sha1 = "a6e02a70d839792b9780488b7b8b184c095c99c7";
+ };
+ };
+ "uglify-js-2.3.6" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "2.3.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.3.6.tgz";
+ sha1 = "fa0984770b428b7a9b2a8058f46355d14fef211a";
+ };
+ };
+ "uglify-js-2.7.5" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "2.7.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz";
+ sha1 = "4612c0c7baaee2ba7c487de4904ae122079f2ca8";
+ };
+ };
+ "uglify-js-2.8.29" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "2.8.29";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz";
+ sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
+ };
+ };
+ "uglify-js-3.0.20" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.0.20";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.0.20.tgz";
+ sha512 = "3apvpzjbs9vds18x8pxb8ysn94658xnajl5zfagr23xpbfhgbmlmajm0lnmz9h4jk99snzf51vcc1r0l0g4gmbdzcn574vvvzy3dxrv";
+ };
+ };
+ "uglify-js-3.3.8" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.8.tgz";
+ sha512 = "1vxvyq08n6jidg18kiph7m0bjzr4v1dh188b7zgj60mkv4x1qkqrgc8756drldaj3awmn71mwsxja0zhvdm8nqqw5finrajv8dc0j2z";
+ };
+ };
+ "uglify-to-browserify-1.0.2" = {
+ name = "uglify-to-browserify";
+ packageName = "uglify-to-browserify";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
+ sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
+ };
+ };
+ "uglifyjs-webpack-plugin-0.4.6" = {
+ name = "uglifyjs-webpack-plugin";
+ packageName = "uglifyjs-webpack-plugin";
+ version = "0.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-0.4.6.tgz";
+ sha1 = "b951f4abb6bd617e66f63eb891498e391763e309";
+ };
+ };
+ "uid-0.0.2" = {
+ name = "uid";
+ packageName = "uid";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid/-/uid-0.0.2.tgz";
+ sha1 = "5e4a5d4b78138b4f70f89fd3c76fc59aa9d2f103";
+ };
+ };
+ "uid-number-0.0.5" = {
+ name = "uid-number";
+ packageName = "uid-number";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.5.tgz";
+ sha1 = "5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e";
+ };
+ };
+ "uid-number-0.0.6" = {
+ name = "uid-number";
+ packageName = "uid-number";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz";
+ sha1 = "0ea10e8035e8eb5b8e4449f06da1c730663baa81";
+ };
+ };
+ "uid-safe-2.0.0" = {
+ name = "uid-safe";
+ packageName = "uid-safe";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.0.0.tgz";
+ sha1 = "a7f3c6ca64a1f6a5d04ec0ef3e4c3d5367317137";
+ };
+ };
+ "uid-safe-2.1.4" = {
+ name = "uid-safe";
+ packageName = "uid-safe";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz";
+ sha1 = "3ad6f38368c6d4c8c75ec17623fb79aa1d071d81";
+ };
+ };
+ "uid-safe-2.1.5" = {
+ name = "uid-safe";
+ packageName = "uid-safe";
+ version = "2.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz";
+ sha512 = "2h6492mk9v9dzy26i5wfajinhi2pg729ksbcsmm0sp8s32hlr432q19g97qghfp5x98hsm77hmzwdzhgi3vhm2drz53ax7rabhydw98";
+ };
+ };
+ "uid2-0.0.3" = {
+ name = "uid2";
+ packageName = "uid2";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz";
+ sha1 = "483126e11774df2f71b8b639dcd799c376162b82";
+ };
+ };
+ "uint64be-2.0.1" = {
+ name = "uint64be";
+ packageName = "uint64be";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.1.tgz";
+ sha1 = "a310d94e4e5e0b02a95d678e33323f802bdc8428";
+ };
+ };
+ "ultron-1.0.2" = {
+ name = "ultron";
+ packageName = "ultron";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz";
+ sha1 = "ace116ab557cd197386a4e88f4685378c8b2e4fa";
+ };
+ };
+ "ultron-1.1.1" = {
+ name = "ultron";
+ packageName = "ultron";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz";
+ sha512 = "0x78hsv3jykmjl6qdqlqiz7v5nf06li8b5yvzpj6grnzwbcjch8ngyg55lm8g8mg4znvk7qbryvrr2dxacz3cvyb1nsm64qsw21g0ah";
+ };
+ };
+ "umd-3.0.1" = {
+ name = "umd";
+ packageName = "umd";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/umd/-/umd-3.0.1.tgz";
+ sha1 = "8ae556e11011f63c2596708a8837259f01b3d60e";
+ };
+ };
+ "unc-path-regex-0.1.2" = {
+ name = "unc-path-regex";
+ packageName = "unc-path-regex";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz";
+ sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa";
+ };
+ };
+ "undefsafe-0.0.3" = {
+ name = "undefsafe";
+ packageName = "undefsafe";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/undefsafe/-/undefsafe-0.0.3.tgz";
+ sha1 = "ecca3a03e56b9af17385baac812ac83b994a962f";
+ };
+ };
+ "undefsafe-2.0.1" = {
+ name = "undefsafe";
+ packageName = "undefsafe";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.1.tgz";
+ sha1 = "03b2f2a16c94556e14b2edef326cd66aaf82707a";
+ };
+ };
+ "underscore-1.2.1" = {
+ name = "underscore";
+ packageName = "underscore";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.2.1.tgz";
+ sha1 = "fc5c6b0765673d92a2d4ac8b4dc0aa88702e2bd4";
+ };
+ };
+ "underscore-1.4.4" = {
+ name = "underscore";
+ packageName = "underscore";
+ version = "1.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz";
+ sha1 = "61a6a32010622afa07963bf325203cf12239d604";
+ };
+ };
+ "underscore-1.5.2" = {
+ name = "underscore";
+ packageName = "underscore";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.5.2.tgz";
+ sha1 = "1335c5e4f5e6d33bbb4b006ba8c86a00f556de08";
+ };
+ };
+ "underscore-1.6.0" = {
+ name = "underscore";
+ packageName = "underscore";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz";
+ sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8";
+ };
+ };
+ "underscore-1.7.0" = {
+ name = "underscore";
+ packageName = "underscore";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz";
+ sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209";
+ };
+ };
+ "underscore-1.8.3" = {
+ name = "underscore";
+ packageName = "underscore";
+ version = "1.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz";
+ sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022";
+ };
+ };
+ "underscore-contrib-0.3.0" = {
+ name = "underscore-contrib";
+ packageName = "underscore-contrib";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz";
+ sha1 = "665b66c24783f8fa2b18c9f8cbb0e2c7d48c26c7";
+ };
+ };
+ "underscore.string-2.3.3" = {
+ name = "underscore.string";
+ packageName = "underscore.string";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz";
+ sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d";
+ };
+ };
+ "underscore.string-2.4.0" = {
+ name = "underscore.string";
+ packageName = "underscore.string";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz";
+ sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b";
+ };
+ };
+ "unherit-1.1.0" = {
+ name = "unherit";
+ packageName = "unherit";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unherit/-/unherit-1.1.0.tgz";
+ sha1 = "6b9aaedfbf73df1756ad9e316dd981885840cd7d";
+ };
+ };
+ "unicode-emoji-modifier-base-1.0.0" = {
+ name = "unicode-emoji-modifier-base";
+ packageName = "unicode-emoji-modifier-base";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz";
+ sha1 = "dbbd5b54ba30f287e2a8d5a249da6c0cef369459";
+ };
+ };
+ "unified-4.2.1" = {
+ name = "unified";
+ packageName = "unified";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unified/-/unified-4.2.1.tgz";
+ sha1 = "76ff43aa8da430f6e7e4a55c84ebac2ad2cfcd2e";
+ };
+ };
+ "union-value-1.0.0" = {
+ name = "union-value";
+ packageName = "union-value";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz";
+ sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4";
+ };
+ };
+ "uniq-1.0.1" = {
+ name = "uniq";
+ packageName = "uniq";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz";
+ sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff";
+ };
+ };
+ "unique-stream-1.0.0" = {
+ name = "unique-stream";
+ packageName = "unique-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz";
+ sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b";
+ };
+ };
+ "unique-stream-2.2.1" = {
+ name = "unique-stream";
+ packageName = "unique-stream";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unique-stream/-/unique-stream-2.2.1.tgz";
+ sha1 = "5aa003cfbe94c5ff866c4e7d668bb1c4dbadb369";
+ };
+ };
+ "unique-string-1.0.0" = {
+ name = "unique-string";
+ packageName = "unique-string";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz";
+ sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a";
+ };
+ };
+ "unist-util-is-2.1.1" = {
+ name = "unist-util-is";
+ packageName = "unist-util-is";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-2.1.1.tgz";
+ sha1 = "0c312629e3f960c66e931e812d3d80e77010947b";
+ };
+ };
+ "unist-util-remove-position-1.1.1" = {
+ name = "unist-util-remove-position";
+ packageName = "unist-util-remove-position";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.1.tgz";
+ sha1 = "5a85c1555fc1ba0c101b86707d15e50fa4c871bb";
+ };
+ };
+ "unist-util-visit-1.3.0" = {
+ name = "unist-util-visit";
+ packageName = "unist-util-visit";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.3.0.tgz";
+ sha512 = "24s5gpqr3vip7zfd3c81k1mhcj1qzlmjhxpn80n3ay8kkg3zycjdkvi6d78j1d3lva7qr1lqrf2mcz5k41as5vwh8w5xdn52drmhyzn";
+ };
+ };
+ "universalify-0.1.1" = {
+ name = "universalify";
+ packageName = "universalify";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/universalify/-/universalify-0.1.1.tgz";
+ sha1 = "fa71badd4437af4c148841e3b3b165f9e9e590b7";
+ };
+ };
+ "unix-crypt-td-js-1.0.0" = {
+ name = "unix-crypt-td-js";
+ packageName = "unix-crypt-td-js";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unix-crypt-td-js/-/unix-crypt-td-js-1.0.0.tgz";
+ sha1 = "1c0824150481bc7a01d49e98f1ec668d82412f3b";
+ };
+ };
+ "unixify-1.0.0" = {
+ name = "unixify";
+ packageName = "unixify";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz";
+ sha1 = "3a641c8c2ffbce4da683a5c70f03a462940c2090";
+ };
+ };
+ "unordered-array-remove-1.0.2" = {
+ name = "unordered-array-remove";
+ packageName = "unordered-array-remove";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unordered-array-remove/-/unordered-array-remove-1.0.2.tgz";
+ sha1 = "c546e8f88e317a0cf2644c97ecb57dba66d250ef";
+ };
+ };
+ "unordered-set-1.1.0" = {
+ name = "unordered-set";
+ packageName = "unordered-set";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unordered-set/-/unordered-set-1.1.0.tgz";
+ sha1 = "2ba7ef316edd0b9590cc547c74f76a2f164fecca";
+ };
+ };
+ "unordered-set-2.0.0" = {
+ name = "unordered-set";
+ packageName = "unordered-set";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unordered-set/-/unordered-set-2.0.0.tgz";
+ sha1 = "985a27e975baa20b8263aea7a791e9300941a9ec";
+ };
+ };
+ "unorm-1.4.1" = {
+ name = "unorm";
+ packageName = "unorm";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unorm/-/unorm-1.4.1.tgz";
+ sha1 = "364200d5f13646ca8bcd44490271335614792300";
+ };
+ };
+ "unpipe-1.0.0" = {
+ name = "unpipe";
+ packageName = "unpipe";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz";
+ sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
+ };
+ };
+ "unquote-1.1.1" = {
+ name = "unquote";
+ packageName = "unquote";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz";
+ sha1 = "8fded7324ec6e88a0ff8b905e7c098cdc086d544";
+ };
+ };
+ "unset-value-1.0.0" = {
+ name = "unset-value";
+ packageName = "unset-value";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz";
+ sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
+ };
+ };
+ "untildify-2.1.0" = {
+ name = "untildify";
+ packageName = "untildify";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/untildify/-/untildify-2.1.0.tgz";
+ sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0";
+ };
+ };
+ "untildify-3.0.2" = {
+ name = "untildify";
+ packageName = "untildify";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/untildify/-/untildify-3.0.2.tgz";
+ sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1";
+ };
+ };
+ "unzip-response-1.0.2" = {
+ name = "unzip-response";
+ packageName = "unzip-response";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz";
+ sha1 = "b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe";
+ };
+ };
+ "unzip-response-2.0.1" = {
+ name = "unzip-response";
+ packageName = "unzip-response";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz";
+ sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97";
+ };
+ };
+ "upath-1.0.2" = {
+ name = "upath";
+ packageName = "upath";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/upath/-/upath-1.0.2.tgz";
+ sha512 = "19nv38v416yy515gbq0lvg549w1m48mg17ibl9jp6g0pzlzg6j3lzygbw3c4ia2i9vk0ij0g4fcwfvsa9snxpgdk4a7qbprnj7s4abw";
+ };
+ };
+ "update-notifier-0.5.0" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-0.5.0.tgz";
+ sha1 = "07b5dc2066b3627ab3b4f530130f7eddda07a4cc";
+ };
+ };
+ "update-notifier-0.6.3" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "0.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-0.6.3.tgz";
+ sha1 = "776dec8daa13e962a341e8a1d98354306b67ae08";
+ };
+ };
+ "update-notifier-2.3.0" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.3.0.tgz";
+ sha1 = "4e8827a6bb915140ab093559d7014e3ebb837451";
+ };
+ };
+ "update-section-0.3.3" = {
+ name = "update-section";
+ packageName = "update-section";
+ version = "0.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-section/-/update-section-0.3.3.tgz";
+ sha1 = "458f17820d37820dc60e20b86d94391b00123158";
+ };
+ };
+ "upper-case-1.1.3" = {
+ name = "upper-case";
+ packageName = "upper-case";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz";
+ sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598";
+ };
+ };
+ "uri-js-3.0.2" = {
+ name = "uri-js";
+ packageName = "uri-js";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uri-js/-/uri-js-3.0.2.tgz";
+ sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa";
+ };
+ };
+ "urix-0.1.0" = {
+ name = "urix";
+ packageName = "urix";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz";
+ sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72";
+ };
+ };
+ "url-0.10.3" = {
+ name = "url";
+ packageName = "url";
+ version = "0.10.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url/-/url-0.10.3.tgz";
+ sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64";
+ };
+ };
+ "url-0.11.0" = {
+ name = "url";
+ packageName = "url";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz";
+ sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1";
+ };
+ };
+ "url-parse-lax-1.0.0" = {
+ name = "url-parse-lax";
+ packageName = "url-parse-lax";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz";
+ sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73";
+ };
+ };
+ "url-parse-lax-3.0.0" = {
+ name = "url-parse-lax";
+ packageName = "url-parse-lax";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz";
+ sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c";
+ };
+ };
+ "url-to-options-1.0.1" = {
+ name = "url-to-options";
+ packageName = "url-to-options";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz";
+ sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9";
+ };
+ };
+ "use-2.0.2" = {
+ name = "use";
+ packageName = "use";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/use/-/use-2.0.2.tgz";
+ sha1 = "ae28a0d72f93bf22422a18a2e379993112dec8e8";
+ };
+ };
+ "user-home-1.1.1" = {
+ name = "user-home";
+ packageName = "user-home";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz";
+ sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190";
+ };
+ };
+ "user-home-2.0.0" = {
+ name = "user-home";
+ packageName = "user-home";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz";
+ sha1 = "9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f";
+ };
+ };
+ "useragent-2.2.1" = {
+ name = "useragent";
+ packageName = "useragent";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/useragent/-/useragent-2.2.1.tgz";
+ sha1 = "cf593ef4f2d175875e8bb658ea92e18a4fd06d8e";
+ };
+ };
+ "utf7-1.0.2" = {
+ name = "utf7";
+ packageName = "utf7";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utf7/-/utf7-1.0.2.tgz";
+ sha1 = "955f490aae653ba220b9456a0a8776c199360991";
+ };
+ };
+ "utf8-2.0.0" = {
+ name = "utf8";
+ packageName = "utf8";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utf8/-/utf8-2.0.0.tgz";
+ sha1 = "79ce59eced874809cab9a71fc7102c7d45d4118d";
+ };
+ };
+ "utfx-1.0.1" = {
+ name = "utfx";
+ packageName = "utfx";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utfx/-/utfx-1.0.1.tgz";
+ sha1 = "d52b2fd632a99eca8d9d4a39eece014a6a2b0048";
+ };
+ };
+ "util-0.10.3" = {
+ name = "util";
+ packageName = "util";
+ version = "0.10.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz";
+ sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
+ };
+ };
+ "util-0.4.9" = {
+ name = "util";
+ packageName = "util";
+ version = "0.4.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util/-/util-0.4.9.tgz";
+ sha1 = "d95d5830d2328ec17dee3c80bfc50c33562b75a3";
+ };
+ };
+ "util-deprecate-1.0.2" = {
+ name = "util-deprecate";
+ packageName = "util-deprecate";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
+ sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
+ };
+ };
+ "util.promisify-1.0.0" = {
+ name = "util.promisify";
+ packageName = "util.promisify";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz";
+ sha512 = "28cvjkydplc2vpnqff8vylscx8851srnkl54y6i54pl6lhpr6548plvyj833jk2mfaf8h31gbn60s00azd28rzc5q5gm1hgcc1smvlb";
+ };
+ };
+ "utile-0.2.1" = {
+ name = "utile";
+ packageName = "utile";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utile/-/utile-0.2.1.tgz";
+ sha1 = "930c88e99098d6220834c356cbd9a770522d90d7";
+ };
+ };
+ "utile-0.3.0" = {
+ name = "utile";
+ packageName = "utile";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utile/-/utile-0.3.0.tgz";
+ sha1 = "1352c340eb820e4d8ddba039a4fbfaa32ed4ef3a";
+ };
+ };
+ "utils-merge-1.0.0" = {
+ name = "utils-merge";
+ packageName = "utils-merge";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz";
+ sha1 = "0294fb922bb9375153541c4f7096231f287c8af8";
+ };
+ };
+ "utils-merge-1.0.1" = {
+ name = "utils-merge";
+ packageName = "utils-merge";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz";
+ sha1 = "9f95710f50a267947b2ccc124741c1028427e713";
+ };
+ };
+ "utp-0.0.7" = {
+ name = "utp";
+ packageName = "utp";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utp/-/utp-0.0.7.tgz";
+ sha1 = "ae43eb7745f5fe63dcc2f277cb4164ad27087f30";
+ };
+ };
+ "utp-native-1.6.2" = {
+ name = "utp-native";
+ packageName = "utp-native";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utp-native/-/utp-native-1.6.2.tgz";
+ sha512 = "2mcnn6w5as2dvz6rj4fb33174z3a1rl9bm2cfazrr4084gq7aal0bkmkwr1cjpkvy1zgni3zdk0570fx7cmnd0k0hg18wfb2hvbigfg";
+ };
+ };
+ "uue-3.1.1" = {
+ name = "uue";
+ packageName = "uue";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uue/-/uue-3.1.1.tgz";
+ sha512 = "29ykgvcsrhwbifm7aa4mf8876c6z2ksc26cnpxf3ljwhg7vfrjz2asvl7ylkjj91alnp2d7n1xvi5qphmn0a1ci091a20mdmnbzg91i";
+ };
+ };
+ "uuid-2.0.3" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz";
+ sha1 = "67e2e863797215530dff318e5bf9dcebfd47b21a";
+ };
+ };
+ "uuid-3.0.0" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.0.0.tgz";
+ sha1 = "6728fc0459c450d796a99c31837569bdf672d728";
+ };
+ };
+ "uuid-3.0.1" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://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 = "3x5mi85l1559nkb35pfksjjgiyfyqrcvmcf0nly1xjl1kb0d37jnxd6sk0b8d331waadnqbf60nfssb563x9pvnjcw87lrh976sv18c";
+ };
+ };
+ "uuid-3.2.1" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz";
+ sha512 = "0843vl1c974n8kw5kn0kvhvhwk8y8jydr0xkwwl2963xxmkw4ingk6xj9c8m48jw2i95giglxzq5aw5v5mij9kv7fzln8pxav1cr6cd";
+ };
+ };
+ "uws-0.14.5" = {
+ name = "uws";
+ packageName = "uws";
+ version = "0.14.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uws/-/uws-0.14.5.tgz";
+ sha1 = "67aaf33c46b2a587a5f6666d00f7691328f149dc";
+ };
+ };
+ "v8-debug-1.0.1" = {
+ name = "v8-debug";
+ packageName = "v8-debug";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/v8-debug/-/v8-debug-1.0.1.tgz";
+ sha1 = "6ae1c6dae4477bb3ced79b523e4d160c1d8667fe";
+ };
+ };
+ "v8-profiler-5.7.0" = {
+ name = "v8-profiler";
+ packageName = "v8-profiler";
+ version = "5.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/v8-profiler/-/v8-profiler-5.7.0.tgz";
+ sha1 = "e8381cbebb5b5fd0ca8d2b09f6a0181a158db34d";
+ };
+ };
+ "v8flags-2.1.1" = {
+ name = "v8flags";
+ packageName = "v8flags";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz";
+ sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4";
+ };
+ };
+ "vali-date-1.0.0" = {
+ name = "vali-date";
+ packageName = "vali-date";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz";
+ sha1 = "1b904a59609fb328ef078138420934f6b86709a6";
+ };
+ };
+ "valid-identifier-0.0.1" = {
+ name = "valid-identifier";
+ packageName = "valid-identifier";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/valid-identifier/-/valid-identifier-0.0.1.tgz";
+ sha1 = "ef1d7093a9d3287e3fce92df916f8616b23f90b4";
+ };
+ };
+ "validate-npm-package-license-3.0.1" = {
+ name = "validate-npm-package-license";
+ packageName = "validate-npm-package-license";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz";
+ sha1 = "2804babe712ad3379459acfbe24746ab2c303fbc";
+ };
+ };
+ "validate-npm-package-name-3.0.0" = {
+ name = "validate-npm-package-name";
+ packageName = "validate-npm-package-name";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
+ sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
+ };
+ };
+ "validator-3.22.2" = {
+ name = "validator";
+ packageName = "validator";
+ version = "3.22.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validator/-/validator-3.22.2.tgz";
+ sha1 = "6f297ae67f7f82acc76d0afdb49f18d9a09c18c0";
+ };
+ };
+ "validator-5.2.0" = {
+ name = "validator";
+ packageName = "validator";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validator/-/validator-5.2.0.tgz";
+ sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689";
+ };
+ };
+ "varint-3.0.1" = {
+ name = "varint";
+ packageName = "varint";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/varint/-/varint-3.0.1.tgz";
+ sha1 = "9d3f53e036c0ab12000a74bc2d24cbf093a581d9";
+ };
+ };
+ "varint-4.0.1" = {
+ name = "varint";
+ packageName = "varint";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/varint/-/varint-4.0.1.tgz";
+ sha1 = "490829b942d248463b2b35097995c3bf737198e9";
+ };
+ };
+ "varint-5.0.0" = {
+ name = "varint";
+ packageName = "varint";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz";
+ sha1 = "d826b89f7490732fabc0c0ed693ed475dcb29ebf";
+ };
+ };
+ "vary-1.0.1" = {
+ name = "vary";
+ packageName = "vary";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vary/-/vary-1.0.1.tgz";
+ sha1 = "99e4981566a286118dfb2b817357df7993376d10";
+ };
+ };
+ "vary-1.1.2" = {
+ name = "vary";
+ packageName = "vary";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz";
+ sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc";
+ };
+ };
+ "vasync-1.4.3" = {
+ name = "vasync";
+ packageName = "vasync";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vasync/-/vasync-1.4.3.tgz";
+ sha1 = "c86d52e2b71613d29eedf159f3135dbe749cee37";
+ };
+ };
+ "vasync-1.6.2" = {
+ name = "vasync";
+ packageName = "vasync";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vasync/-/vasync-1.6.2.tgz";
+ sha1 = "568edcf40b2b5c35b1cc048cad085de4739703fb";
+ };
+ };
+ "vasync-1.6.3" = {
+ name = "vasync";
+ packageName = "vasync";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vasync/-/vasync-1.6.3.tgz";
+ sha1 = "4a69d7052a47f4ce85503d7641df1cbf40432a94";
+ };
+ };
+ "verror-1.1.0" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/verror/-/verror-1.1.0.tgz";
+ sha1 = "2a4b4eb14a207051e75a6f94ee51315bf173a1b0";
+ };
+ };
+ "verror-1.10.0" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
+ sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
+ };
+ };
+ "verror-1.3.3" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/verror/-/verror-1.3.3.tgz";
+ sha1 = "8a6a4ac3a8c774b6f687fece49bdffd78552e2cd";
+ };
+ };
+ "verror-1.6.0" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz";
+ sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5";
+ };
+ };
+ "vfile-1.4.0" = {
+ name = "vfile";
+ packageName = "vfile";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vfile/-/vfile-1.4.0.tgz";
+ sha1 = "c0fd6fa484f8debdb771f68c31ed75d88da97fe7";
+ };
+ };
+ "vfile-location-2.0.2" = {
+ name = "vfile-location";
+ packageName = "vfile-location";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.2.tgz";
+ sha1 = "d3675c59c877498e492b4756ff65e4af1a752255";
+ };
+ };
+ "vhost-3.0.2" = {
+ name = "vhost";
+ packageName = "vhost";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vhost/-/vhost-3.0.2.tgz";
+ sha1 = "2fb1decd4c466aa88b0f9341af33dc1aff2478d5";
+ };
+ };
+ "vinyl-0.4.6" = {
+ name = "vinyl";
+ packageName = "vinyl";
+ version = "0.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz";
+ sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847";
+ };
+ };
+ "vinyl-0.5.3" = {
+ name = "vinyl";
+ packageName = "vinyl";
+ version = "0.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz";
+ sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde";
+ };
+ };
+ "vinyl-1.2.0" = {
+ name = "vinyl";
+ packageName = "vinyl";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz";
+ sha1 = "5c88036cf565e5df05558bfc911f8656df218884";
+ };
+ };
+ "vinyl-file-2.0.0" = {
+ name = "vinyl-file";
+ packageName = "vinyl-file";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl-file/-/vinyl-file-2.0.0.tgz";
+ sha1 = "a7ebf5ffbefda1b7d18d140fcb07b223efb6751a";
+ };
+ };
+ "vinyl-fs-0.3.14" = {
+ name = "vinyl-fs";
+ packageName = "vinyl-fs";
+ version = "0.3.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz";
+ sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6";
+ };
+ };
+ "vinyl-fs-2.4.4" = {
+ name = "vinyl-fs";
+ packageName = "vinyl-fs";
+ version = "2.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz";
+ sha1 = "be6ff3270cb55dfd7d3063640de81f25d7532239";
+ };
+ };
+ "vm-browserify-0.0.4" = {
+ name = "vm-browserify";
+ packageName = "vm-browserify";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz";
+ sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73";
+ };
+ };
+ "voc-1.0.0" = {
+ name = "voc";
+ packageName = "voc";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/voc/-/voc-1.0.0.tgz";
+ sha512 = "1zss1rcd373slj9qjmy4zp7ann95isbkvjlrgp2dirpazvn1sy23hgnw6p72w0mj8hcgqpxvs0ls035zmb8isilqhqqpkmya9d3234r";
+ };
+ };
+ "void-elements-2.0.1" = {
+ name = "void-elements";
+ packageName = "void-elements";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz";
+ sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec";
+ };
+ };
+ "vows-0.8.1" = {
+ name = "vows";
+ packageName = "vows";
+ version = "0.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vows/-/vows-0.8.1.tgz";
+ sha1 = "e09e988ce594ca05a08d72abcca34e88db559131";
+ };
+ };
+ "vscode-jsonrpc-3.5.0" = {
+ name = "vscode-jsonrpc";
+ packageName = "vscode-jsonrpc";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-3.5.0.tgz";
+ sha1 = "87239d9e166b2d7352245b8a813597804c1d63aa";
+ };
+ };
+ "vscode-languageclient-3.5.0" = {
+ name = "vscode-languageclient";
+ packageName = "vscode-languageclient";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-3.5.0.tgz";
+ sha1 = "36d02cc186a8365a4467719a290fb200a9ae490a";
+ };
+ };
+ "vscode-languageserver-3.5.0" = {
+ name = "vscode-languageserver";
+ packageName = "vscode-languageserver";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-3.5.0.tgz";
+ sha1 = "d28099bc6ddda8c1dd16b707e454e1b1ddae0dba";
+ };
+ };
+ "vscode-languageserver-protocol-3.5.0" = {
+ name = "vscode-languageserver-protocol";
+ packageName = "vscode-languageserver-protocol";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.5.0.tgz";
+ sha1 = "067c5cbe27709795398d119692c97ebba1452209";
+ };
+ };
+ "vscode-languageserver-types-3.5.0" = {
+ name = "vscode-languageserver-types";
+ packageName = "vscode-languageserver-types";
+ version = "3.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.5.0.tgz";
+ sha1 = "e48d79962f0b8e02de955e3f524908e2b19c0374";
+ };
+ };
+ "vscode-uri-1.0.1" = {
+ name = "vscode-uri";
+ packageName = "vscode-uri";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.1.tgz";
+ sha1 = "11a86befeac3c4aa3ec08623651a3c81a6d0bbc8";
+ };
+ };
+ "walk-2.3.9" = {
+ name = "walk";
+ packageName = "walk";
+ version = "2.3.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/walk/-/walk-2.3.9.tgz";
+ sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b";
+ };
+ };
+ "walk-sync-0.3.2" = {
+ name = "walk-sync";
+ packageName = "walk-sync";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.2.tgz";
+ sha512 = "2cycfx3lc52h2684s54pd81wz42f9lbggff4yva194nzr5x8nxp4fl437scd2dayyvxk68v8jmk1k8m364zdh5wmaff1a2bm9b7kh0l";
+ };
+ };
+ "ware-1.3.0" = {
+ name = "ware";
+ packageName = "ware";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz";
+ sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4";
+ };
+ };
+ "watchpack-1.4.0" = {
+ name = "watchpack";
+ packageName = "watchpack";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/watchpack/-/watchpack-1.4.0.tgz";
+ sha1 = "4a1472bcbb952bd0a9bb4036801f954dfb39faac";
+ };
+ };
+ "wcwidth-1.0.1" = {
+ name = "wcwidth";
+ packageName = "wcwidth";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz";
+ sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8";
+ };
+ };
+ "weak-map-1.0.5" = {
+ name = "weak-map";
+ packageName = "weak-map";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/weak-map/-/weak-map-1.0.5.tgz";
+ sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb";
+ };
+ };
+ "webidl-conversions-4.0.2" = {
+ name = "webidl-conversions";
+ packageName = "webidl-conversions";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz";
+ sha512 = "15gwgjh9anvzcissfhxy3gki7jxn1dy9vq5rma1sgwkbbra8wbxnvimwalgmy8anm33x56mfp492akzhs0gidwmbnadx0ck3fdq23v1";
+ };
+ };
+ "webpack-sources-1.1.0" = {
+ name = "webpack-sources";
+ packageName = "webpack-sources";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.1.0.tgz";
+ sha512 = "19rska638yxsrpxavydnjckcljiy6ylh63b802hylac396p3mm6j9bj85rhyvi81jk48c33sq580ixwjkbghgwp7cl1i9hgr7bjk9ka";
+ };
+ };
+ "websocket-driver-0.7.0" = {
+ name = "websocket-driver";
+ packageName = "websocket-driver";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.0.tgz";
+ sha1 = "0caf9d2d755d93aee049d4bdd0d3fe2cca2a24eb";
+ };
+ };
+ "websocket-extensions-0.1.3" = {
+ name = "websocket-extensions";
+ packageName = "websocket-extensions";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz";
+ sha512 = "0d1n4yv45ibxf72hj7qka3j7v53dwn58savfiyvsppqhhrgg3g648ykk5v7fpb53hz85kj87m4f45r7d5iazx4yqgs381z6qnfd98cy";
+ };
+ };
+ "websocket-stream-5.1.1" = {
+ name = "websocket-stream";
+ packageName = "websocket-stream";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/websocket-stream/-/websocket-stream-5.1.1.tgz";
+ sha512 = "18iw90ncl6cpip9j7rxdf6mag5klhhn7fklhb5lz41dy3wk9vxp3lxxkmwsnldjk5zfx3fjww55xg47k5k1a4cpph92k7j26p9kk56a";
+ };
+ };
+ "whatwg-fetch-2.0.3" = {
+ name = "whatwg-fetch";
+ packageName = "whatwg-fetch";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz";
+ sha1 = "9c84ec2dcf68187ff00bc64e1274b442176e1c84";
+ };
+ };
+ "whatwg-url-6.3.0" = {
+ name = "whatwg-url";
+ packageName = "whatwg-url";
+ version = "6.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.3.0.tgz";
+ sha512 = "01m395qx0wag7d63id97v2d86ifpw677f42lys2k6bipw4n9kmwngghsb7la19impgkrg3n4ihyk3j7963rhfgd7b066a4qk09s3kxc";
+ };
+ };
+ "when-3.4.6" = {
+ name = "when";
+ packageName = "when";
+ version = "3.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/when/-/when-3.4.6.tgz";
+ sha1 = "8fbcb7cc1439d2c3a68c431f1516e6dcce9ad28c";
+ };
+ };
+ "when-3.7.7" = {
+ name = "when";
+ packageName = "when";
+ version = "3.7.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/when/-/when-3.7.7.tgz";
+ sha1 = "aba03fc3bb736d6c88b091d013d8a8e590d84718";
+ };
+ };
+ "when-3.7.8" = {
+ name = "when";
+ packageName = "when";
+ version = "3.7.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/when/-/when-3.7.8.tgz";
+ sha1 = "c7130b6a7ea04693e842cdc9e7a1f2aa39a39f82";
+ };
+ };
+ "which-1.2.14" = {
+ name = "which";
+ packageName = "which";
+ version = "1.2.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which/-/which-1.2.14.tgz";
+ sha1 = "9a87c4378f03e827cecaf1acdf56c736c01c14e5";
+ };
+ };
+ "which-1.2.4" = {
+ name = "which";
+ packageName = "which";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which/-/which-1.2.4.tgz";
+ sha1 = "1557f96080604e5b11b3599eb9f45b50a9efd722";
+ };
+ };
+ "which-1.3.0" = {
+ name = "which";
+ packageName = "which";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
+ sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
+ };
+ };
+ "which-module-1.0.0" = {
+ name = "which-module";
+ packageName = "which-module";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz";
+ sha1 = "bba63ca861948994ff307736089e3b96026c2a4f";
+ };
+ };
+ "which-module-2.0.0" = {
+ name = "which-module";
+ packageName = "which-module";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
+ sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
+ };
+ };
+ "wide-align-1.1.2" = {
+ name = "wide-align";
+ packageName = "wide-align";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
+ sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
+ };
+ };
+ "widest-line-1.0.0" = {
+ name = "widest-line";
+ packageName = "widest-line";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz";
+ sha1 = "0c09c85c2a94683d0d7eaf8ee097d564bf0e105c";
+ };
+ };
+ "widest-line-2.0.0" = {
+ name = "widest-line";
+ packageName = "widest-line";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/widest-line/-/widest-line-2.0.0.tgz";
+ sha1 = "0142a4e8a243f8882c0233aa0e0281aa76152273";
+ };
+ };
+ "win-detect-browsers-1.0.2" = {
+ name = "win-detect-browsers";
+ packageName = "win-detect-browsers";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz";
+ sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0";
+ };
+ };
+ "win-release-1.1.1" = {
+ name = "win-release";
+ packageName = "win-release";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/win-release/-/win-release-1.1.1.tgz";
+ sha1 = "5fa55e02be7ca934edfc12665632e849b72e5209";
+ };
+ };
+ "window-size-0.1.0" = {
+ name = "window-size";
+ packageName = "window-size";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz";
+ sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d";
+ };
+ };
+ "window-size-0.1.4" = {
+ name = "window-size";
+ packageName = "window-size";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz";
+ sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876";
+ };
+ };
+ "window-size-0.2.0" = {
+ name = "window-size";
+ packageName = "window-size";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz";
+ sha1 = "b4315bb4214a3d7058ebeee892e13fa24d98b075";
+ };
+ };
+ "windows-no-runnable-0.0.6" = {
+ name = "windows-no-runnable";
+ packageName = "windows-no-runnable";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/windows-no-runnable/-/windows-no-runnable-0.0.6.tgz";
+ sha1 = "91e5129088330a0fe248520cee12d1ad6bb4ddfb";
+ };
+ };
+ "winreg-0.0.12" = {
+ name = "winreg";
+ packageName = "winreg";
+ version = "0.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winreg/-/winreg-0.0.12.tgz";
+ sha1 = "07105554ba1a9d08979251d129475bffae3006b7";
+ };
+ };
+ "winreg-1.2.3" = {
+ name = "winreg";
+ packageName = "winreg";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winreg/-/winreg-1.2.3.tgz";
+ sha1 = "93ad116b2696da87d58f7265a8fcea5254a965d5";
+ };
+ };
+ "winser-0.1.6" = {
+ name = "winser";
+ packageName = "winser";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winser/-/winser-0.1.6.tgz";
+ sha1 = "08663dc32878a12bbce162d840da5097b48466c9";
+ };
+ };
+ "winston-0.6.2" = {
+ name = "winston";
+ packageName = "winston";
+ version = "0.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winston/-/winston-0.6.2.tgz";
+ sha1 = "4144fe2586cdc19a612bf8c035590132c9064bd2";
+ };
+ };
+ "winston-0.8.0" = {
+ name = "winston";
+ packageName = "winston";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winston/-/winston-0.8.0.tgz";
+ sha1 = "61d0830fa699706212206b0a2b5ca69a93043668";
+ };
+ };
+ "winston-0.8.3" = {
+ name = "winston";
+ packageName = "winston";
+ version = "0.8.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz";
+ sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0";
+ };
+ };
+ "winston-1.1.2" = {
+ name = "winston";
+ packageName = "winston";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winston/-/winston-1.1.2.tgz";
+ sha1 = "68edd769ff79d4f9528cf0e5d80021aade67480c";
+ };
+ };
+ "winston-2.1.1" = {
+ name = "winston";
+ packageName = "winston";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz";
+ sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e";
+ };
+ };
+ "winston-2.4.0" = {
+ name = "winston";
+ packageName = "winston";
+ version = "2.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winston/-/winston-2.4.0.tgz";
+ sha1 = "808050b93d52661ed9fb6c26b3f0c826708b0aee";
+ };
+ };
+ "with-4.0.3" = {
+ name = "with";
+ packageName = "with";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/with/-/with-4.0.3.tgz";
+ sha1 = "eefd154e9e79d2c8d3417b647a8f14d9fecce14e";
+ };
+ };
+ "with-5.1.1" = {
+ name = "with";
+ packageName = "with";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/with/-/with-5.1.1.tgz";
+ sha1 = "fa4daa92daf32c4ea94ed453c81f04686b575dfe";
+ };
+ };
+ "wordwrap-0.0.2" = {
+ name = "wordwrap";
+ packageName = "wordwrap";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz";
+ sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f";
+ };
+ };
+ "wordwrap-0.0.3" = {
+ name = "wordwrap";
+ packageName = "wordwrap";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz";
+ sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107";
+ };
+ };
+ "wordwrap-1.0.0" = {
+ name = "wordwrap";
+ packageName = "wordwrap";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz";
+ sha1 = "27584810891456a4171c8d0226441ade90cbcaeb";
+ };
+ };
+ "wrap-ansi-2.1.0" = {
+ name = "wrap-ansi";
+ packageName = "wrap-ansi";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
+ sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
+ };
+ };
+ "wrap-ansi-3.0.1" = {
+ name = "wrap-ansi";
+ packageName = "wrap-ansi";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz";
+ sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba";
+ };
+ };
+ "wrap-fn-0.1.5" = {
+ name = "wrap-fn";
+ packageName = "wrap-fn";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz";
+ sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845";
+ };
+ };
+ "wrappy-1.0.2" = {
+ name = "wrappy";
+ packageName = "wrappy";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
+ sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
+ };
+ };
+ "wreck-12.5.1" = {
+ name = "wreck";
+ packageName = "wreck";
+ version = "12.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wreck/-/wreck-12.5.1.tgz";
+ sha512 = "3s89p8x1i16wg1prbm40z7l00611hzk2s7kkvph6fw4cx049p3gpviqmhbgqxxi9pfjz32mx3aj7qsygmfcnvasgs43rj1ynwdd944p";
+ };
+ };
+ "wrench-1.5.9" = {
+ name = "wrench";
+ packageName = "wrench";
+ version = "1.5.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrench/-/wrench-1.5.9.tgz";
+ sha1 = "411691c63a9b2531b1700267279bdeca23b2142a";
+ };
+ };
+ "write-0.2.1" = {
+ name = "write";
+ packageName = "write";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write/-/write-0.2.1.tgz";
+ sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757";
+ };
+ };
+ "write-file-atomic-1.3.4" = {
+ name = "write-file-atomic";
+ packageName = "write-file-atomic";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz";
+ sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f";
+ };
+ };
+ "write-file-atomic-2.3.0" = {
+ name = "write-file-atomic";
+ packageName = "write-file-atomic";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz";
+ sha512 = "2sgqxmcqzjd7nq9gjh6jz7vfb0gs0ag4jvqzdq93afq3bw3jrm88mhxql9sryyb04f3ipw5jkgjfiigsmdwlz9fgsnnm3cxhcmxxqy6";
+ };
+ };
+ "write-json-file-2.3.0" = {
+ name = "write-json-file";
+ packageName = "write-json-file";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz";
+ sha1 = "2b64c8a33004d54b8698c76d585a77ceb61da32f";
+ };
+ };
+ "write-pkg-3.1.0" = {
+ name = "write-pkg";
+ packageName = "write-pkg";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz";
+ sha1 = "030a9994cc9993d25b4e75a9f1a1923607291ce9";
+ };
+ };
+ "ws-0.4.31" = {
+ name = "ws";
+ packageName = "ws";
+ version = "0.4.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-0.4.31.tgz";
+ sha1 = "5a4849e7a9ccd1ed5a81aeb4847c9fedf3122927";
+ };
+ };
+ "ws-0.4.32" = {
+ name = "ws";
+ packageName = "ws";
+ version = "0.4.32";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-0.4.32.tgz";
+ sha1 = "787a6154414f3c99ed83c5772153b20feb0cec32";
+ };
+ };
+ "ws-1.1.1" = {
+ name = "ws";
+ packageName = "ws";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-1.1.1.tgz";
+ sha1 = "082ddb6c641e85d4bb451f03d52f06eabdb1f018";
+ };
+ };
+ "ws-1.1.5" = {
+ name = "ws";
+ packageName = "ws";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz";
+ sha512 = "3iv2yz706h7wyg563jsfjdykkkxs8j49vz60r6qx5by0npfhs98rgc114kdqs15sc52mldscc22bkfpkrs08cwlqaxx8lfdjn5alwm3";
+ };
+ };
+ "ws-2.3.1" = {
+ name = "ws";
+ packageName = "ws";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-2.3.1.tgz";
+ sha1 = "6b94b3e447cb6a363f785eaf94af6359e8e81c80";
+ };
+ };
+ "ws-3.3.3" = {
+ name = "ws";
+ packageName = "ws";
+ version = "3.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz";
+ sha512 = "2887c18dlvnvc62pqgwhihzxnnj9mzbnjqa0gqg3n94k5b6fx6nm1wggisy2bg3mi7dl81vk11i49wl319yfvh255w2nrbhydmqnxcy";
+ };
+ };
+ "wtf-8-1.0.0" = {
+ name = "wtf-8";
+ packageName = "wtf-8";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz";
+ sha1 = "392d8ba2d0f1c34d1ee2d630f15d0efb68e1048a";
+ };
+ };
+ "x-default-browser-0.3.1" = {
+ name = "x-default-browser";
+ packageName = "x-default-browser";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/x-default-browser/-/x-default-browser-0.3.1.tgz";
+ sha1 = "7f6194154fd1786cf261e68b5488c47127a04977";
+ };
+ };
+ "xcode-1.0.0" = {
+ name = "xcode";
+ packageName = "xcode";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xcode/-/xcode-1.0.0.tgz";
+ sha1 = "e1f5b1443245ded38c180796df1a10fdeda084ec";
+ };
+ };
+ "xdg-basedir-2.0.0" = {
+ name = "xdg-basedir";
+ packageName = "xdg-basedir";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz";
+ sha1 = "edbc903cc385fc04523d966a335504b5504d1bd2";
+ };
+ };
+ "xdg-basedir-3.0.0" = {
+ name = "xdg-basedir";
+ packageName = "xdg-basedir";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz";
+ sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4";
+ };
+ };
+ "xhr-2.4.1" = {
+ name = "xhr";
+ packageName = "xhr";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz";
+ sha512 = "38f6fgl0n5syagym161b29l5vhyan3azv5zs3vmyd4s80svy9xl7ppczk3rdawjn70s1ws5qvbh5zf1wyrj2ifawnr7ix3by3k180m4";
+ };
+ };
+ "xml-1.0.0" = {
+ name = "xml";
+ packageName = "xml";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml/-/xml-1.0.0.tgz";
+ sha1 = "de3ee912477be2f250b60f612f34a8c4da616efe";
+ };
+ };
+ "xml-char-classes-1.0.0" = {
+ name = "xml-char-classes";
+ packageName = "xml-char-classes";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml-char-classes/-/xml-char-classes-1.0.0.tgz";
+ sha1 = "64657848a20ffc5df583a42ad8a277b4512bbc4d";
+ };
+ };
+ "xml2js-0.1.14" = {
+ name = "xml2js";
+ packageName = "xml2js";
+ version = "0.1.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.1.14.tgz";
+ sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c";
+ };
+ };
+ "xml2js-0.2.4" = {
+ name = "xml2js";
+ packageName = "xml2js";
+ version = "0.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.4.tgz";
+ sha1 = "9a5b577fa1e6cdf8923d5e1372f7a3188436e44d";
+ };
+ };
+ "xml2js-0.2.7" = {
+ name = "xml2js";
+ packageName = "xml2js";
+ version = "0.2.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.7.tgz";
+ sha1 = "1838518bb01741cae0878bab4915e494c32306af";
+ };
+ };
+ "xml2js-0.2.8" = {
+ name = "xml2js";
+ packageName = "xml2js";
+ version = "0.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.8.tgz";
+ sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2";
+ };
+ };
+ "xml2js-0.4.17" = {
+ name = "xml2js";
+ packageName = "xml2js";
+ version = "0.4.17";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.17.tgz";
+ sha1 = "17be93eaae3f3b779359c795b419705a8817e868";
+ };
+ };
+ "xml2js-0.4.19" = {
+ name = "xml2js";
+ packageName = "xml2js";
+ version = "0.4.19";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz";
+ sha512 = "3skianymbfq4rg2v5c1vwsz2kmxfik60qa892wh6a3rydd1wrv3l4vgyr8v4wd8krdf42jbmq7blp0ksbmwm332q5yr922fj8jngiks";
+ };
+ };
+ "xml2tss-0.0.5" = {
+ name = "xml2tss";
+ packageName = "xml2tss";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml2tss/-/xml2tss-0.0.5.tgz";
+ sha1 = "d76a310d6b8a7ba9e4825bb3d43f5427e9fe8f6e";
+ };
+ };
+ "xmlbuilder-0.4.2" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz";
+ sha1 = "1776d65f3fdbad470a08d8604cdeb1c4e540ff83";
+ };
+ };
+ "xmlbuilder-0.4.3" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "0.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.3.tgz";
+ sha1 = "c4614ba74e0ad196e609c9272cd9e1ddb28a8a58";
+ };
+ };
+ "xmlbuilder-4.0.0" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz";
+ sha1 = "98b8f651ca30aa624036f127d11cc66dc7b907a3";
+ };
+ };
+ "xmlbuilder-4.2.1" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.2.1.tgz";
+ sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5";
+ };
+ };
+ "xmlbuilder-8.2.2" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "8.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz";
+ sha1 = "69248673410b4ba42e1a6136551d2922335aa773";
+ };
+ };
+ "xmlbuilder-9.0.4" = {
+ name = "xmlbuilder";
+ packageName = "xmlbuilder";
+ version = "9.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.4.tgz";
+ sha1 = "519cb4ca686d005a8420d3496f3f0caeecca580f";
+ };
+ };
+ "xmlcreate-1.0.2" = {
+ name = "xmlcreate";
+ packageName = "xmlcreate";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlcreate/-/xmlcreate-1.0.2.tgz";
+ sha1 = "fa6bf762a60a413fb3dd8f4b03c5b269238d308f";
+ };
+ };
+ "xmldom-0.1.27" = {
+ name = "xmldom";
+ packageName = "xmldom";
+ version = "0.1.27";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz";
+ sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9";
+ };
+ };
+ "xmlhttprequest-1.4.2" = {
+ name = "xmlhttprequest";
+ packageName = "xmlhttprequest";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.4.2.tgz";
+ sha1 = "01453a1d9bed1e8f172f6495bbf4c8c426321500";
+ };
+ };
+ "xmlhttprequest-https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz" = {
+ name = "xmlhttprequest";
+ packageName = "xmlhttprequest";
+ version = "1.5.0";
+ src = fetchurl {
+ name = "xmlhttprequest-1.5.0.tar.gz";
+ url = https://codeload.github.com/LearnBoost/node-XMLHttpRequest/tar.gz/0f36d0b5ebc03d85f860d42a64ae9791e1daa433;
+ sha256 = "28dd0394d85befe8be4e9cd9f6803102780c62cbb09298cb174b52ff9777624f";
+ };
+ };
+ "xmlhttprequest-ssl-1.5.3" = {
+ name = "xmlhttprequest-ssl";
+ packageName = "xmlhttprequest-ssl";
+ version = "1.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz";
+ sha1 = "185a888c04eca46c3e4070d99f7b49de3528992d";
+ };
+ };
+ "xmlhttprequest-ssl-1.5.5" = {
+ name = "xmlhttprequest-ssl";
+ packageName = "xmlhttprequest-ssl";
+ version = "1.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz";
+ sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e";
+ };
+ };
+ "xoauth2-0.1.8" = {
+ name = "xoauth2";
+ packageName = "xoauth2";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xoauth2/-/xoauth2-0.1.8.tgz";
+ sha1 = "b916ff10ecfb54320f16f24a3e975120653ab0d2";
+ };
+ };
+ "xorshift-0.2.1" = {
+ name = "xorshift";
+ packageName = "xorshift";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xorshift/-/xorshift-0.2.1.tgz";
+ sha1 = "fcd82267e9351c13f0fb9c73307f25331d29c63a";
+ };
+ };
+ "xpath.js-1.0.7" = {
+ name = "xpath.js";
+ packageName = "xpath.js";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xpath.js/-/xpath.js-1.0.7.tgz";
+ sha1 = "7e94627f541276cbc6a6b02b5d35e9418565b3e4";
+ };
+ };
+ "xpath.js-1.1.0" = {
+ name = "xpath.js";
+ packageName = "xpath.js";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xpath.js/-/xpath.js-1.1.0.tgz";
+ sha512 = "1ymd8ry54702m8plqvqq4450hhsn7z4p7af48z13dx2bf928hakggd6gi6q13gk36cpavwag20nfr7j4njsjv5fywxw2axqyj8sl3wf";
+ };
+ };
+ "xregexp-2.0.0" = {
+ name = "xregexp";
+ packageName = "xregexp";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz";
+ sha1 = "52a63e56ca0b84a7f3a5f3d61872f126ad7a5943";
+ };
+ };
+ "xregexp-4.0.0" = {
+ name = "xregexp";
+ packageName = "xregexp";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xregexp/-/xregexp-4.0.0.tgz";
+ sha512 = "0b2p3pxs6fa0knpdw3qhcpqh47ci9w9r4lfhav4nsg7p7l73izpig0b3knkrsl72nq5ll4pk79is30vwm1c044lnbqyxfi8qkx8qz1w";
+ };
+ };
+ "xsalsa20-1.0.2" = {
+ name = "xsalsa20";
+ packageName = "xsalsa20";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xsalsa20/-/xsalsa20-1.0.2.tgz";
+ sha512 = "35rg34yxk4ag0qclk7bqxirgr3dgypcvkisqqj2g3y0ma16pkfy81iv79pcwff5p4spygwjh2m9v37llq7367fypqrx89s9kscwal43";
+ };
+ };
+ "xspfr-0.3.1" = {
+ name = "xspfr";
+ packageName = "xspfr";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xspfr/-/xspfr-0.3.1.tgz";
+ sha1 = "f164263325ae671f53836fb210c7ddbcfda46598";
+ };
+ };
+ "xtend-3.0.0" = {
+ name = "xtend";
+ packageName = "xtend";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz";
+ sha1 = "5cce7407baf642cba7becda568111c493f59665a";
+ };
+ };
+ "xtend-4.0.1" = {
+ name = "xtend";
+ packageName = "xtend";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
+ sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
+ };
+ };
+ "y18n-3.2.1" = {
+ name = "y18n";
+ packageName = "y18n";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz";
+ sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41";
+ };
+ };
+ "yallist-2.1.2" = {
+ name = "yallist";
+ packageName = "yallist";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
+ sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
+ };
+ };
+ "yallist-3.0.2" = {
+ name = "yallist";
+ packageName = "yallist";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz";
+ sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9";
+ };
+ };
+ "yargs-1.3.3" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "1.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz";
+ sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a";
+ };
+ };
+ "yargs-10.0.3" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "10.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-10.0.3.tgz";
+ sha512 = "1vn6jsqrhybxddyhmvkh0d43n2lk1z8081glfq80zpjfs4xgwpk0mmgdiry9zgsihmv9a2qidmp5hhyqqq8mzzkr037wla0qd1nk80f";
+ };
+ };
+ "yargs-10.1.2" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "10.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-10.1.2.tgz";
+ sha512 = "25gvc8vjalpbv69v0frmh10x203dsnl0jrnx8c2mww3qrxl69kms5ppzry3lp51lgaby524hc6qa80kgrz0zcdvas8flq26l33aix4a";
+ };
+ };
+ "yargs-3.10.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "3.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
+ sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
+ };
+ };
+ "yargs-3.15.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "3.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-3.15.0.tgz";
+ sha1 = "3d9446ef21fb3791b3985690662e4b9683c7f181";
+ };
+ };
+ "yargs-3.32.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "3.32.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz";
+ sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995";
+ };
+ };
+ "yargs-4.8.1" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "4.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz";
+ sha1 = "c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0";
+ };
+ };
+ "yargs-6.6.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "6.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz";
+ sha1 = "782ec21ef403345f830a808ca3d513af56065208";
+ };
+ };
+ "yargs-7.1.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "7.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz";
+ sha1 = "6ba318eb16961727f5d284f8ea003e8d6154d0c8";
+ };
+ };
+ "yargs-8.0.2" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "8.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz";
+ sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360";
+ };
+ };
+ "yargs-9.0.1" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "9.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz";
+ sha1 = "52acc23feecac34042078ee78c0c007f5085db4c";
+ };
+ };
+ "yargs-parser-2.4.1" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz";
+ sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4";
+ };
+ };
+ "yargs-parser-4.2.1" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz";
+ sha1 = "29cceac0dc4f03c6c87b4a9f217dd18c9f74871c";
+ };
+ };
+ "yargs-parser-5.0.0" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz";
+ sha1 = "275ecf0d7ffe05c77e64e7c86e4cd94bf0e1228a";
+ };
+ };
+ "yargs-parser-7.0.0" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz";
+ sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9";
+ };
+ };
+ "yargs-parser-8.1.0" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "8.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-8.1.0.tgz";
+ sha512 = "0jyff04yy5xlrgvccky4f7phgp99lk2r1n7dk67hkb0picdjpa2ap27g4jrm94cw1d31vw8sh2b5cvnvga2w838bgh6l1kwld1bmzy8";
+ };
+ };
+ "yauzl-2.4.1" = {
+ name = "yauzl";
+ packageName = "yauzl";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz";
+ sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005";
+ };
+ };
+ "yauzl-2.9.1" = {
+ name = "yauzl";
+ packageName = "yauzl";
+ version = "2.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz";
+ sha1 = "a81981ea70a57946133883f029c5821a89359a7f";
+ };
+ };
+ "yeast-0.1.2" = {
+ name = "yeast";
+ packageName = "yeast";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz";
+ sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419";
+ };
+ };
"yeoman-character-1.1.0" = {
name = "yeoman-character";
packageName = "yeoman-character";
@@ -26252,391 +27350,58 @@ let
sha512 = "1n6z65vkm1r31a1ms8wn32m9q61vrlz9isn43lm00qka1zvnich78zbnp29xwy72z361is2yimrpglmc55w97hbi9pas5pqlnvqbpw4";
};
};
- "execa-0.6.3" = {
- name = "execa";
- packageName = "execa";
- version = "0.6.3";
+ "zen-observable-0.5.2" = {
+ name = "zen-observable";
+ packageName = "zen-observable";
+ version = "0.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-0.6.3.tgz";
- sha1 = "57b69a594f081759c69e5370f0d17b9cb11658fe";
+ url = "https://registry.npmjs.org/zen-observable/-/zen-observable-0.5.2.tgz";
+ sha512 = "3sy4za4hd6lczig5ah6ksh92i4ds0pk9b8nn4nwjwpsyyabywrnayf78zh41jf7amm6khqyjb3iknbp2mc3nfgvpkvphj3a993py6hf";
};
};
- "filter-obj-1.1.0" = {
- name = "filter-obj";
- packageName = "filter-obj";
- version = "1.1.0";
+ "zeparser-0.0.5" = {
+ name = "zeparser";
+ packageName = "zeparser";
+ version = "0.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/filter-obj/-/filter-obj-1.1.0.tgz";
- sha1 = "9b311112bc6c6127a16e016c6c5d7f19e0805c5b";
+ url = "https://registry.npmjs.org/zeparser/-/zeparser-0.0.5.tgz";
+ sha1 = "03726561bc268f2e5444f54c665b7fd4a8c029e2";
};
};
- "p-any-1.1.0" = {
- name = "p-any";
- packageName = "p-any";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-any/-/p-any-1.1.0.tgz";
- sha512 = "3da1hqkqhwx9xiw283nnq04pvsj1a69k7k0np5126v33dmpgxyhg19s99bz6djzd6sp713yg02h3h636wlgi9v2099rlrq2mrajvz8i";
- };
- };
- "p-try-1.0.0" = {
- name = "p-try";
- packageName = "p-try";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
- sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
- };
- };
- "passwd-user-2.1.0" = {
- name = "passwd-user";
- packageName = "passwd-user";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/passwd-user/-/passwd-user-2.1.0.tgz";
- sha1 = "fad9db6ae252f8b088e0c5decd20a7da0c5d9f1e";
- };
- };
- "p-some-2.0.0" = {
- name = "p-some";
- packageName = "p-some";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/p-some/-/p-some-2.0.0.tgz";
- sha512 = "23lpz1jyj01f06bndx53w1k931l6ki6m94mgf9lqpxka3366q0w1ql0igm7bj5nc0imzdjv3x5825c05mjnhkgahw99hd0h1kk5ri0a";
- };
- };
- "aggregate-error-1.0.0" = {
- name = "aggregate-error";
- packageName = "aggregate-error";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-1.0.0.tgz";
- sha1 = "888344dad0220a72e3af50906117f48771925fac";
- };
- };
- "clean-stack-1.3.0" = {
- name = "clean-stack";
- packageName = "clean-stack";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clean-stack/-/clean-stack-1.3.0.tgz";
- sha1 = "9e821501ae979986c46b1d66d2d432db2fd4ae31";
- };
- };
- "execa-0.4.0" = {
- name = "execa";
- packageName = "execa";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/execa/-/execa-0.4.0.tgz";
- sha1 = "4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3";
- };
- };
- "cross-spawn-async-2.2.5" = {
- name = "cross-spawn-async";
- packageName = "cross-spawn-async";
- version = "2.2.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz";
- sha1 = "845ff0c0834a3ded9d160daca6d390906bb288cc";
- };
- };
- "npm-run-path-1.0.0" = {
- name = "npm-run-path";
- packageName = "npm-run-path";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-1.0.0.tgz";
- sha1 = "f5c32bf595fe81ae927daec52e82f8b000ac3c8f";
- };
- };
- "path-key-1.0.0" = {
- name = "path-key";
- packageName = "path-key";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-key/-/path-key-1.0.0.tgz";
- sha1 = "5d53d578019646c0d68800db4e146e6bdc2ac7af";
- };
- };
- "execall-1.0.0" = {
- name = "execall";
- packageName = "execall";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/execall/-/execall-1.0.0.tgz";
- sha1 = "73d0904e395b3cab0658b08d09ec25307f29bb73";
- };
- };
- "clone-regexp-1.0.0" = {
- name = "clone-regexp";
- packageName = "clone-regexp";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/clone-regexp/-/clone-regexp-1.0.0.tgz";
- sha1 = "eae0a2413f55c0942f818c229fefce845d7f3b1c";
- };
- };
- "is-regexp-1.0.0" = {
- name = "is-regexp";
- packageName = "is-regexp";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz";
- sha1 = "fd2d883545c46bac5a633e7b9a09e87fa2cb5069";
- };
- };
- "is-supported-regexp-flag-1.0.0" = {
- name = "is-supported-regexp-flag";
- packageName = "is-supported-regexp-flag";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-supported-regexp-flag/-/is-supported-regexp-flag-1.0.0.tgz";
- sha1 = "8b520c85fae7a253382d4b02652e045576e13bb8";
- };
- };
- "downgrade-root-1.2.2" = {
- name = "downgrade-root";
- packageName = "downgrade-root";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/downgrade-root/-/downgrade-root-1.2.2.tgz";
- sha1 = "531319715b0e81ffcc22eb28478ba27643e12c6c";
- };
- };
- "sudo-block-1.2.0" = {
- name = "sudo-block";
- packageName = "sudo-block";
+ "zip-1.2.0" = {
+ name = "zip";
+ packageName = "zip";
version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sudo-block/-/sudo-block-1.2.0.tgz";
- sha1 = "cc539bf8191624d4f507d83eeb45b4cea27f3463";
+ url = "https://registry.npmjs.org/zip/-/zip-1.2.0.tgz";
+ sha1 = "ad0ad42265309be42eb56fc86194e17c24e66a9c";
};
};
- "default-uid-1.0.0" = {
- name = "default-uid";
- packageName = "default-uid";
- version = "1.0.0";
+ "zip-dir-1.0.2" = {
+ name = "zip-dir";
+ packageName = "zip-dir";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/default-uid/-/default-uid-1.0.0.tgz";
- sha1 = "fcefa9df9f5ac40c8916d912dd1fe1146aa3c59e";
+ url = "https://registry.npmjs.org/zip-dir/-/zip-dir-1.0.2.tgz";
+ sha1 = "253f907aead62a21acd8721d8b88032b2411c051";
};
};
- "is-root-1.0.0" = {
- name = "is-root";
- packageName = "is-root";
- version = "1.0.0";
+ "zip-object-0.1.0" = {
+ name = "zip-object";
+ packageName = "zip-object";
+ version = "0.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-root/-/is-root-1.0.0.tgz";
- sha1 = "07b6c233bc394cd9d02ba15c966bd6660d6342d5";
+ url = "https://registry.npmjs.org/zip-object/-/zip-object-0.1.0.tgz";
+ sha1 = "c1a0da04c88c837756e248680a03ff902ec3f53a";
};
};
- "is-docker-1.1.0" = {
- name = "is-docker";
- packageName = "is-docker";
- version = "1.1.0";
+ "zip-stream-1.2.0" = {
+ name = "zip-stream";
+ packageName = "zip-stream";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-docker/-/is-docker-1.1.0.tgz";
- sha1 = "f04374d4eee5310e9a8e113bf1495411e46176a1";
- };
- };
- "npmlog-2.0.4" = {
- name = "npmlog";
- packageName = "npmlog";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/npmlog/-/npmlog-2.0.4.tgz";
- sha1 = "98b52530f2514ca90d09ec5b22c8846722375692";
- };
- };
- "gauge-1.2.7" = {
- name = "gauge";
- packageName = "gauge";
- version = "1.2.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/gauge/-/gauge-1.2.7.tgz";
- sha1 = "e9cec5483d3d4ee0ef44b60a7d99e4935e136d93";
- };
- };
- "lodash.pad-4.5.1" = {
- name = "lodash.pad";
- packageName = "lodash.pad";
- version = "4.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.pad/-/lodash.pad-4.5.1.tgz";
- sha1 = "4330949a833a7c8da22cc20f6a26c4d59debba70";
- };
- };
- "lodash.padend-4.6.1" = {
- name = "lodash.padend";
- packageName = "lodash.padend";
- version = "4.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.6.1.tgz";
- sha1 = "53ccba047d06e158d311f45da625f4e49e6f166e";
- };
- };
- "lodash.padstart-4.6.1" = {
- name = "lodash.padstart";
- packageName = "lodash.padstart";
- version = "4.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.6.1.tgz";
- sha1 = "d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b";
- };
- };
- "bin-version-check-2.1.0" = {
- name = "bin-version-check";
- packageName = "bin-version-check";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bin-version-check/-/bin-version-check-2.1.0.tgz";
- sha1 = "e4e5df290b9069f7d111324031efc13fdd11a5b0";
- };
- };
- "each-async-1.1.1" = {
- name = "each-async";
- packageName = "each-async";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/each-async/-/each-async-1.1.1.tgz";
- sha1 = "dee5229bdf0ab6ba2012a395e1b869abf8813473";
- };
- };
- "object-values-1.0.0" = {
- name = "object-values";
- packageName = "object-values";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-values/-/object-values-1.0.0.tgz";
- sha1 = "72af839630119e5b98c3b02bb8c27e3237158105";
- };
- };
- "twig-0.8.9" = {
- name = "twig";
- packageName = "twig";
- version = "0.8.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/twig/-/twig-0.8.9.tgz";
- sha1 = "b1594f002b684e5f029de3e54e87bec4f084b6c2";
- };
- };
- "bin-version-1.0.4" = {
- name = "bin-version";
- packageName = "bin-version";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/bin-version/-/bin-version-1.0.4.tgz";
- sha1 = "9eb498ee6fd76f7ab9a7c160436f89579435d78e";
- };
- };
- "semver-truncate-1.1.2" = {
- name = "semver-truncate";
- packageName = "semver-truncate";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz";
- sha1 = "57f41de69707a62709a7e0104ba2117109ea47e8";
- };
- };
- "find-versions-1.2.1" = {
- name = "find-versions";
- packageName = "find-versions";
- version = "1.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/find-versions/-/find-versions-1.2.1.tgz";
- sha1 = "cbde9f12e38575a0af1be1b9a2c5d5fd8f186b62";
- };
- };
- "semver-regex-1.0.0" = {
- name = "semver-regex";
- packageName = "semver-regex";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz";
- sha1 = "92a4969065f9c70c694753d55248fc68f8f652c9";
- };
- };
- "grouped-queue-0.3.3" = {
- name = "grouped-queue";
- packageName = "grouped-queue";
- version = "0.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/grouped-queue/-/grouped-queue-0.3.3.tgz";
- sha1 = "c167d2a5319c5a0e0964ef6a25b7c2df8996c85c";
- };
- };
- "is-scoped-1.0.0" = {
- name = "is-scoped";
- packageName = "is-scoped";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-scoped/-/is-scoped-1.0.0.tgz";
- sha1 = "449ca98299e713038256289ecb2b540dc437cb30";
- };
- };
- "log-symbols-2.1.0" = {
- name = "log-symbols";
- packageName = "log-symbols";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.1.0.tgz";
- sha512 = "36h090zjf2rfivlbhl50iymid2wggwncngy539cylicpdwrc3jvyqpxs2mmmybqjir313xs70vliczq511zypjx8jphvm006fpqpdyc";
- };
- };
- "mem-fs-1.1.3" = {
- name = "mem-fs";
- packageName = "mem-fs";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/mem-fs/-/mem-fs-1.1.3.tgz";
- sha1 = "b8ae8d2e3fcb6f5d3f9165c12d4551a065d989cc";
- };
- };
- "scoped-regex-1.0.0" = {
- name = "scoped-regex";
- packageName = "scoped-regex";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/scoped-regex/-/scoped-regex-1.0.0.tgz";
- sha1 = "a346bb1acd4207ae70bd7c0c7ca9e566b6baddb8";
- };
- };
- "vinyl-file-2.0.0" = {
- name = "vinyl-file";
- packageName = "vinyl-file";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl-file/-/vinyl-file-2.0.0.tgz";
- sha1 = "a7ebf5ffbefda1b7d18d140fcb07b223efb6751a";
- };
- };
- "strip-bom-stream-2.0.0" = {
- name = "strip-bom-stream";
- packageName = "strip-bom-stream";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz";
- sha1 = "f87db5ef2613f6968aa545abfe1ec728b6a829ca";
- };
- };
- "pad-component-0.0.1" = {
- name = "pad-component";
- packageName = "pad-component";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pad-component/-/pad-component-0.0.1.tgz";
- sha1 = "ad1f22ce1bf0fdc0d6ddd908af17f351a404b8ac";
- };
- };
- "taketalk-1.0.0" = {
- name = "taketalk";
- packageName = "taketalk";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/taketalk/-/taketalk-1.0.0.tgz";
- sha1 = "b4d4f0deed206ae7df775b129ea2ca6de52f26dd";
+ url = "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz";
+ sha1 = "a8bc45f4c1b49699c6b90198baacaacdbcd4ba04";
};
};
};
@@ -26645,13 +27410,18 @@ in
alloy = nodeEnv.buildNodePackage {
name = "alloy";
packageName = "alloy";
- version = "1.10.10";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/alloy/-/alloy-1.10.10.tgz";
- sha512 = "130wmdphlwj27xss7wi4n3ygmcsl265k5qhv81s6njlhc9gkvx7j31iz5h0dcyckjdyl8sqqyk8vfbc55kr5q6k4xjc1lbz5chk2jg7";
+ url = "https://registry.npmjs.org/alloy/-/alloy-1.11.0.tgz";
+ sha512 = "0ix07a7vxyrlkplb3wxfpflg7yhcb9csh1k8410rjkrqmshviiiw8iwysf36936mrm5qz66v8mx5r9r7ky46zwi82mgdn66w0ag0865";
};
dependencies = [
+ sources."JSV-4.0.2"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."array-unique-0.3.2"
sources."async-2.6.0"
+ sources."babel-code-frame-6.26.0"
(sources."babel-core-6.26.0" // {
dependencies = [
sources."source-map-0.5.7"
@@ -26662,104 +27432,99 @@ in
sources."source-map-0.5.7"
];
})
- sources."babel-traverse-6.26.0"
- sources."babel-types-6.26.0"
- sources."babylon-6.18.0"
- sources."chmodr-1.0.2"
- sources."colors-0.6.0-1"
- sources."commander-0.6.1"
- sources."deasync-0.1.12"
- sources."ejs-2.3.4"
- sources."fs-extra-3.0.1"
- sources."global-paths-0.1.2"
- (sources."jsonlint-1.5.1" // {
- dependencies = [
- sources."chalk-0.4.0"
- sources."ansi-styles-1.0.0"
- sources."strip-ansi-0.1.1"
- ];
- })
- sources."moment-2.17.1"
- sources."node.extend-1.0.10"
- sources."pkginfo-0.2.2"
- sources."resolve-1.5.0"
- sources."source-map-0.6.1"
- sources."walk-sync-0.3.2"
- sources."xml2tss-0.0.5"
- sources."xmldom-0.1.19"
- sources."lodash-4.17.4"
- sources."babel-code-frame-6.26.0"
sources."babel-helpers-6.24.1"
sources."babel-messages-6.23.0"
sources."babel-register-6.26.0"
sources."babel-runtime-6.26.0"
sources."babel-template-6.26.0"
- sources."convert-source-map-1.5.1"
- sources."debug-2.6.9"
- sources."json5-0.5.1"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."private-0.1.8"
- sources."slash-1.0.0"
- sources."chalk-1.1.3"
- sources."esutils-2.0.2"
- sources."js-tokens-3.0.2"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."core-js-2.5.3"
- sources."home-or-tmp-2.0.0"
- sources."mkdirp-0.5.1"
- sources."source-map-support-0.4.18"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."minimist-0.0.8"
- sources."regenerator-runtime-0.11.1"
- sources."ms-2.0.0"
- sources."brace-expansion-1.1.8"
+ sources."babel-traverse-6.26.0"
+ sources."babel-types-6.26.0"
+ sources."babylon-6.18.0"
sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."detect-indent-4.0.0"
- sources."jsesc-1.3.0"
- sources."trim-right-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."number-is-nan-1.0.1"
- sources."globals-9.18.0"
- sources."invariant-2.2.2"
- sources."loose-envify-1.3.1"
- sources."to-fast-properties-1.0.3"
sources."bindings-1.2.1"
- sources."nan-2.8.0"
- sources."graceful-fs-4.1.11"
- sources."jsonfile-3.0.1"
- sources."universalify-0.1.1"
- sources."array-unique-0.2.1"
+ sources."brace-expansion-1.1.8"
+ sources."chalk-1.1.3"
+ sources."chmodr-1.0.2"
+ sources."colors-1.1.2"
+ sources."commander-2.13.0"
+ sources."concat-map-0.0.1"
+ sources."convert-source-map-1.5.1"
+ sources."core-js-2.5.3"
+ sources."deasync-0.1.12"
+ sources."debug-2.6.9"
+ sources."detect-indent-4.0.0"
+ sources."ejs-2.5.7"
+ sources."ensure-posix-path-1.0.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."esutils-2.0.2"
+ sources."fs-extra-5.0.0"
(sources."global-modules-0.2.3" // {
dependencies = [
sources."is-windows-0.2.0"
];
})
- sources."is-windows-0.1.1"
+ sources."global-paths-1.0.0"
sources."global-prefix-0.1.5"
+ sources."globals-9.18.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."has-color-0.1.7"
+ sources."home-or-tmp-2.0.0"
sources."homedir-polyfill-1.0.1"
sources."ini-1.3.5"
- sources."which-1.3.0"
- sources."parse-passwd-1.0.0"
+ sources."invariant-2.2.2"
+ sources."is-3.2.1"
+ sources."is-finite-1.0.2"
+ sources."is-windows-1.0.1"
sources."isexe-2.0.0"
- sources."nomnom-1.8.1"
- sources."JSV-4.0.2"
- sources."underscore-1.6.0"
- sources."has-color-0.1.7"
- sources."is-0.3.0"
- sources."path-parse-1.0.5"
- sources."ensure-posix-path-1.0.2"
+ sources."js-tokens-3.0.2"
+ sources."jsesc-1.3.0"
+ sources."json5-0.5.1"
+ sources."jsonfile-4.0.0"
+ (sources."jsonlint-1.6.2" // {
+ dependencies = [
+ sources."ansi-styles-1.0.0"
+ sources."chalk-0.4.0"
+ sources."strip-ansi-0.1.1"
+ ];
+ })
+ sources."lodash-4.17.4"
+ sources."loose-envify-1.3.1"
sources."matcher-collection-1.0.5"
- sources."xml2js-0.2.8"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.20.1"
+ sources."ms-2.0.0"
+ sources."nan-2.8.0"
+ sources."node.extend-2.0.0"
+ sources."nomnom-1.8.1"
+ sources."number-is-nan-1.0.1"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."parse-passwd-1.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.5"
+ sources."pkginfo-0.4.1"
+ sources."private-0.1.8"
+ sources."regenerator-runtime-0.11.1"
+ sources."repeating-2.0.1"
+ sources."resolve-1.5.0"
sources."sax-0.5.8"
+ sources."slash-1.0.0"
+ sources."source-map-0.6.1"
+ sources."source-map-support-0.4.18"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."to-fast-properties-1.0.3"
+ sources."trim-right-1.0.1"
+ sources."underscore-1.6.0"
+ sources."universalify-0.1.1"
+ sources."walk-sync-0.3.2"
+ sources."which-1.3.0"
+ sources."xml2js-0.2.8"
+ sources."xml2tss-0.0.5"
+ sources."xmldom-0.1.27"
];
buildInputs = globalBuildInputs;
meta = {
@@ -26779,106 +27544,106 @@ in
sha512 = "149a2ndf9hbminr1y95b9l9p7pprrsw2j05w1mbmr0gbm07sqa6vk4x91ws7clnzc80mli1mgnw9xl5mllqfmiynjdrmss6k9zncvcp";
};
dependencies = [
- sources."chromium-pickle-js-0.2.0"
- sources."commander-2.12.2"
- sources."cuint-0.2.2"
- sources."glob-6.0.4"
- sources."minimatch-3.0.4"
- sources."mkdirp-0.5.1"
- (sources."mksnapshot-0.3.1" // {
- dependencies = [
- sources."glob-7.1.2"
- ];
- })
- sources."tmp-0.0.28"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."minimist-0.0.8"
- sources."decompress-zip-0.3.0"
- sources."fs-extra-0.26.7"
- sources."request-2.83.0"
- sources."binary-0.3.0"
- sources."graceful-fs-4.1.11"
- sources."mkpath-0.1.0"
- sources."nopt-3.0.6"
- sources."q-1.5.1"
- sources."readable-stream-1.1.14"
- (sources."touch-0.0.3" // {
- dependencies = [
- sources."nopt-1.0.10"
- ];
- })
- sources."chainsaw-0.1.0"
- sources."buffers-0.1.1"
- sources."traverse-0.3.9"
sources."abbrev-1.1.1"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."jsonfile-2.4.0"
- sources."klaw-1.3.1"
- sources."rimraf-2.6.2"
- sources."fs.realpath-1.0.0"
+ sources."ajv-5.5.2"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."safe-buffer-5.1.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."binary-0.3.0"
sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ sources."buffers-0.1.1"
+ sources."caseless-0.12.0"
+ sources."chainsaw-0.1.0"
+ sources."chromium-pickle-js-0.2.0"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
];
})
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
+ sources."cuint-0.2.2"
sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
+ sources."decompress-zip-0.3.0"
+ sources."delayed-stream-1.0.0"
sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."fs-extra-0.26.7"
+ sources."fs.realpath-1.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-6.0.4"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-signature-1.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-0.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-2.4.0"
+ sources."jsprim-1.4.1"
+ sources."klaw-1.3.1"
sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."mkpath-0.1.0"
+ (sources."mksnapshot-0.3.1" // {
+ dependencies = [
+ sources."glob-7.1.2"
+ ];
+ })
+ sources."nopt-3.0.6"
+ sources."oauth-sign-0.8.2"
+ 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."punycode-1.4.1"
+ sources."q-1.5.1"
+ sources."qs-6.5.1"
+ sources."readable-stream-1.1.14"
+ sources."request-2.83.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."sntp-2.1.0"
+ sources."sshpk-1.13.1"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.5"
+ sources."tmp-0.0.28"
+ (sources."touch-0.0.3" // {
+ dependencies = [
+ sources."nopt-1.0.10"
+ ];
+ })
+ sources."tough-cookie-2.3.3"
+ sources."traverse-0.3.9"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -26898,126 +27663,164 @@ in
sha1 = "e991dfa17dc5d7d91731180851fd9cbfbadf73c3";
};
dependencies = [
+ sources."@types/form-data-2.2.1"
+ sources."@types/node-8.5.9"
+ sources."@types/request-2.0.13"
+ sources."@types/tough-cookie-2.3.2"
+ sources."@types/uuid-3.4.3"
+ sources."JSV-4.0.2"
sources."adal-node-0.1.21"
+ sources."ajv-5.5.2"
+ sources."amdefine-1.0.1"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-1.0.0"
+ sources."applicationinsights-0.16.0"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
sources."async-1.4.2"
- (sources."azure-common-0.9.18" // {
- dependencies = [
- sources."xml2js-0.2.7"
- sources."validator-3.22.2"
- ];
- })
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
sources."azure-arm-authorization-2.0.0"
- (sources."azure-arm-cdn-1.0.3" // {
+ (sources."azure-arm-batch-0.3.0" // {
dependencies = [
+ sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ ];
+ })
+ (sources."azure-arm-cdn-1.0.3" // {
+ dependencies = [
sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
];
})
(sources."azure-arm-commerce-0.2.0" // {
dependencies = [
- sources."ms-rest-azure-1.15.7"
- sources."ms-rest-1.15.7"
sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
];
})
sources."azure-arm-compute-3.0.0-preview"
(sources."azure-arm-datalake-analytics-1.0.2-preview" // {
dependencies = [
+ sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
];
})
(sources."azure-arm-datalake-store-1.0.2-preview" // {
dependencies = [
+ sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
- ];
- })
- sources."azure-arm-hdinsight-0.2.2"
- sources."azure-arm-hdinsight-jobs-0.1.0"
- sources."azure-arm-insights-0.11.3"
- sources."azure-arm-iothub-1.0.1-preview"
- (sources."azure-arm-servermanagement-0.1.2" // {
- dependencies = [
- sources."ms-rest-azure-1.15.7"
- sources."ms-rest-1.15.7"
- sources."async-0.2.7"
- ];
- })
- sources."azure-arm-network-4.0.1"
- (sources."azure-arm-powerbiembedded-0.1.0" // {
- dependencies = [
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
- ];
- })
- sources."azure-arm-trafficmanager-1.1.0-preview"
- sources."azure-arm-dns-2.0.0-preview"
- (sources."azure-arm-website-0.11.4" // {
- dependencies = [
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
- ];
- })
- (sources."azure-arm-rediscache-0.2.3" // {
- dependencies = [
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
];
})
(sources."azure-arm-devtestlabs-0.1.0" // {
dependencies = [
+ sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
];
})
- sources."azure-graph-2.1.0-preview"
- sources."azure-gallery-2.0.0-pre.18"
- (sources."azure-keyvault-0.11.0" // {
+ sources."azure-arm-dns-2.0.0-preview"
+ sources."azure-arm-hdinsight-0.2.2"
+ sources."azure-arm-hdinsight-jobs-0.1.0"
+ sources."azure-arm-insights-0.11.3"
+ sources."azure-arm-iothub-1.0.1-preview"
+ sources."azure-arm-network-4.0.1"
+ (sources."azure-arm-powerbiembedded-0.1.0" // {
dependencies = [
+ sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ ];
+ })
+ (sources."azure-arm-rediscache-0.2.3" // {
+ dependencies = [
sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ ];
+ })
+ (sources."azure-arm-resource-1.6.1-preview" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ ];
+ })
+ (sources."azure-arm-servermanagement-0.1.2" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ ];
+ })
+ (sources."azure-arm-storage-0.15.0-preview" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ ];
+ })
+ sources."azure-arm-trafficmanager-1.1.0-preview"
+ (sources."azure-arm-website-0.11.4" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
];
})
sources."azure-asm-compute-0.18.0"
sources."azure-asm-hdinsight-0.10.2"
- sources."azure-asm-trafficmanager-0.10.3"
sources."azure-asm-mgmt-0.10.1"
+ sources."azure-asm-network-0.13.0"
+ sources."azure-asm-sb-0.10.1"
+ sources."azure-asm-sql-0.10.1"
+ sources."azure-asm-storage-0.12.0"
+ sources."azure-asm-subscription-0.10.1"
+ sources."azure-asm-trafficmanager-0.10.3"
+ (sources."azure-asm-website-0.10.4" // {
+ dependencies = [
+ sources."moment-2.14.1"
+ ];
+ })
+ (sources."azure-batch-0.5.2" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ ];
+ })
+ (sources."azure-common-0.9.18" // {
+ dependencies = [
+ sources."validator-3.22.2"
+ sources."xml2js-0.2.7"
+ ];
+ })
+ sources."azure-gallery-2.0.0-pre.18"
+ sources."azure-graph-2.1.0-preview"
+ (sources."azure-keyvault-0.11.0" // {
+ dependencies = [
+ sources."async-0.2.7"
+ sources."ms-rest-1.15.7"
+ sources."ms-rest-azure-1.15.7"
+ ];
+ })
(sources."azure-monitoring-0.10.2" // {
dependencies = [
sources."moment-2.6.0"
];
})
- sources."azure-asm-network-0.13.0"
- (sources."azure-arm-resource-1.6.1-preview" // {
+ (sources."azure-servicefabric-0.1.5" // {
dependencies = [
+ sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
- ];
- })
- (sources."azure-arm-storage-0.15.0-preview" // {
- dependencies = [
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
- ];
- })
- sources."azure-asm-sb-0.10.1"
- sources."azure-asm-sql-0.10.1"
- sources."azure-asm-storage-0.12.0"
- sources."azure-asm-subscription-0.10.1"
- (sources."azure-asm-website-0.10.4" // {
- dependencies = [
- sources."moment-2.14.1"
];
})
(sources."azure-storage-2.1.0" // {
@@ -27027,84 +27830,169 @@ in
sources."xml2js-0.2.7"
];
})
- (sources."azure-arm-batch-0.3.0" // {
- dependencies = [
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
- ];
- })
- (sources."azure-batch-0.5.2" // {
- dependencies = [
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
- ];
- })
- (sources."azure-servicefabric-0.1.5" // {
- dependencies = [
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- sources."async-0.2.7"
- ];
- })
- sources."applicationinsights-0.16.0"
+ sources."balanced-match-1.0.0"
+ sources."base64url-2.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bl-1.1.2"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ sources."browserify-mime-1.2.9"
+ sources."buffer-equal-constant-time-1.0.1"
sources."caller-id-0.1.0"
+ sources."caseless-0.12.0"
+ sources."chalk-0.4.0"
+ sources."clone-1.0.3"
+ sources."co-4.6.0"
sources."colors-1.1.2"
+ sources."combined-stream-1.0.5"
sources."commander-1.0.4"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."core-util-is-1.0.2"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."ctype-0.5.2"
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
sources."date-utils-1.2.21"
+ sources."dateformat-1.0.2-1.2.3"
+ sources."debug-0.7.4"
+ sources."deep-equal-1.0.1"
+ sources."defaults-1.0.3"
+ sources."delayed-stream-1.0.0"
+ sources."duplexer-0.1.1"
sources."easy-table-1.1.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."ecdsa-sig-formatter-1.0.9"
+ sources."envconf-0.0.4"
+ sources."escape-string-regexp-1.0.5"
sources."event-stream-3.1.5"
+ sources."extend-1.2.1"
+ sources."extsprintf-1.3.0"
sources."eyes-0.1.8"
- sources."github-0.1.6"
+ sources."fast-deep-equal-1.0.0"
sources."fast-json-patch-0.5.6"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fibers-1.0.15"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."from-0.1.7"
+ sources."fs.realpath-1.0.0"
+ sources."galaxy-0.1.12"
+ sources."generate-function-2.0.0"
+ sources."generate-object-property-1.2.0"
+ sources."getpass-0.1.7"
+ sources."github-0.1.6"
+ sources."glob-7.1.2"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-ansi-2.0.0"
+ sources."has-color-0.1.7"
+ sources."hash-base-3.0.4"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-basic-2.5.1"
+ sources."http-response-object-1.1.0"
+ sources."http-signature-1.2.0"
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-buffer-1.1.6"
+ sources."is-my-json-valid-2.17.1"
+ sources."is-property-1.0.2"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
sources."js2xmlparser-1.0.0"
+ sources."jsbn-0.1.1"
+ sources."json-edm-parser-0.1.2"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
(sources."jsonlint-1.6.2" // {
dependencies = [
sources."underscore-1.6.0"
];
})
sources."jsonminify-0.4.1"
+ sources."jsonparse-1.2.0"
+ sources."jsonpointer-4.0.1"
+ sources."jsprim-1.4.1"
sources."jsrsasign-4.8.2"
+ sources."jwa-1.1.5"
+ sources."jws-3.1.4"
sources."jwt-decode-2.2.0"
+ sources."keypress-0.1.0"
(sources."kuduscript-1.0.15" // {
dependencies = [
sources."commander-1.1.1"
sources."streamline-0.4.11"
];
})
+ sources."lodash-4.17.4"
+ sources."map-stream-0.1.0"
+ sources."md5.js-1.3.4"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
sources."moment-2.20.1"
(sources."ms-rest-2.3.0" // {
dependencies = [
+ sources."extend-3.0.1"
sources."moment-2.18.1"
sources."request-2.83.0"
sources."through-2.3.8"
sources."tunnel-0.0.5"
- sources."extend-3.0.1"
];
})
- (sources."ms-rest-azure-2.4.5" // {
+ (sources."ms-rest-azure-2.5.0" // {
dependencies = [
+ sources."adal-node-0.1.27"
sources."async-2.5.0"
- sources."adal-node-0.1.26"
sources."moment-2.18.1"
+ sources."xpath.js-1.1.0"
];
})
+ sources."mute-stream-0.0.7"
+ sources."ncp-0.4.2"
sources."node-forge-0.6.23"
+ sources."node-uuid-1.4.7"
+ sources."nomnom-1.8.1"
+ sources."oauth-sign-0.8.2"
sources."omelette-0.3.2"
+ sources."once-1.4.0"
sources."openssl-wrapper-0.2.1"
+ sources."os-homedir-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."pause-stream-0.0.11"
+ sources."performance-now-2.1.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pkginfo-0.4.1"
+ sources."process-nextick-args-1.0.7"
sources."progress-1.1.8"
+ sources."promise-7.3.1"
(sources."prompt-0.2.14" // {
dependencies = [
+ sources."async-0.2.10"
+ sources."colors-0.6.2"
(sources."winston-0.8.3" // {
dependencies = [
sources."pkginfo-0.3.1"
];
})
- sources."async-0.2.10"
- sources."colors-0.6.2"
];
})
+ sources."punycode-1.4.1"
+ sources."q-0.9.7"
+ sources."qs-6.5.1"
+ sources."read-1.0.7"
(sources."readable-stream-1.0.34" // {
dependencies = [
sources."isarray-0.0.1"
@@ -27112,48 +28000,71 @@ in
})
(sources."request-2.74.0" // {
dependencies = [
+ sources."ansi-styles-2.2.1"
+ sources."assert-plus-0.2.0"
+ sources."async-2.6.0"
sources."aws-sign2-0.6.0"
+ sources."boom-2.10.1"
sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
+ sources."commander-2.13.0"
+ sources."cryptiles-2.0.5"
sources."extend-3.0.1"
sources."form-data-1.0.1"
sources."har-validator-2.0.6"
sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
sources."http-signature-1.1.1"
sources."qs-6.2.3"
- sources."tunnel-agent-0.4.3"
sources."readable-stream-2.0.6"
- sources."async-2.6.0"
- sources."chalk-1.1.3"
- sources."commander-2.12.2"
- sources."ansi-styles-2.2.1"
- sources."strip-ansi-3.0.1"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
- sources."assert-plus-0.2.0"
+ sources."strip-ansi-3.0.1"
+ sources."tunnel-agent-0.4.3"
];
})
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."sax-0.5.2"
+ sources."sntp-2.1.0"
+ sources."source-map-0.1.43"
+ sources."split-0.2.10"
(sources."ssh-key-to-pem-0.11.0" // {
dependencies = [
sources."asn1-0.1.11"
];
})
+ sources."sshpk-1.13.1"
+ sources."stack-trace-0.0.10"
+ sources."stream-combiner-0.0.4"
sources."streamline-0.10.17"
sources."streamline-streams-0.1.5"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-0.1.1"
+ sources."supports-color-2.0.0"
(sources."sync-request-3.0.0" // {
dependencies = [
+ sources."caseless-0.11.0"
sources."readable-stream-2.3.3"
sources."string_decoder-1.0.3"
- sources."caseless-0.11.0"
];
})
+ sources."then-request-2.2.0"
sources."through-2.3.4"
+ sources."tough-cookie-2.3.3"
sources."tunnel-0.0.2"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
sources."underscore-1.4.4"
sources."user-home-2.0.0"
- sources."uuid-3.1.0"
+ sources."util-deprecate-1.0.2"
+ sources."utile-0.2.1"
+ sources."uuid-3.2.1"
sources."validator-5.2.0"
+ sources."verror-1.10.0"
+ sources."wcwidth-1.0.1"
(sources."winston-2.1.1" // {
dependencies = [
sources."async-1.0.0"
@@ -27162,156 +28073,12 @@ in
];
})
sources."wordwrap-0.0.2"
+ sources."wrappy-1.0.2"
sources."xml2js-0.1.14"
sources."xmlbuilder-0.4.3"
- sources."read-1.0.7"
- sources."jws-3.1.4"
- sources."node-uuid-1.4.7"
sources."xmldom-0.1.27"
sources."xpath.js-1.0.7"
- sources."base64url-2.0.0"
- sources."jwa-1.1.5"
- sources."safe-buffer-5.1.1"
- sources."buffer-equal-constant-time-1.0.1"
- sources."ecdsa-sig-formatter-1.0.9"
- sources."dateformat-1.0.2-1.2.3"
- sources."envconf-0.0.4"
- sources."duplexer-0.1.1"
- sources."sax-0.5.2"
- sources."browserify-mime-1.2.9"
- sources."extend-1.2.1"
- sources."json-edm-parser-0.1.2"
- sources."md5.js-1.3.4"
- sources."jsonparse-1.2.0"
- sources."hash-base-3.0.4"
- sources."inherits-2.0.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-0.10.31"
- sources."util-deprecate-1.0.2"
- sources."stack-trace-0.0.10"
- sources."keypress-0.1.0"
- sources."wcwidth-1.0.1"
- sources."defaults-1.0.3"
- sources."clone-1.0.3"
- sources."from-0.1.7"
- sources."map-stream-0.1.0"
- sources."pause-stream-0.0.11"
- sources."split-0.2.10"
- sources."stream-combiner-0.0.4"
- sources."nomnom-1.8.1"
- sources."JSV-4.0.2"
- sources."chalk-0.4.0"
- sources."has-color-0.1.7"
- sources."ansi-styles-1.0.0"
- sources."strip-ansi-0.1.1"
- sources."@types/node-8.5.2"
- sources."@types/request-2.0.9"
- sources."@types/uuid-3.4.3"
- sources."is-buffer-1.1.6"
- sources."is-stream-1.1.0"
- sources."@types/form-data-2.2.1"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."lodash-4.17.4"
- sources."debug-0.7.4"
- sources."q-0.9.7"
- sources."pkginfo-0.4.1"
- sources."revalidator-0.1.8"
- sources."utile-0.2.1"
- sources."deep-equal-1.0.1"
- sources."i-0.3.6"
- sources."mkdirp-0.5.1"
- sources."ncp-0.4.2"
- sources."rimraf-2.6.2"
- sources."minimist-0.0.8"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."cycle-1.0.3"
- sources."bl-1.1.2"
- sources."is-my-json-valid-2.17.1"
- sources."pinkie-promise-2.0.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
- sources."ctype-0.5.2"
- sources."source-map-0.1.43"
- sources."fibers-1.0.15"
- sources."galaxy-0.1.12"
- sources."amdefine-1.0.1"
- sources."concat-stream-1.6.0"
- sources."http-response-object-1.1.0"
- sources."then-request-2.2.0"
- sources."typedarray-0.0.6"
- sources."http-basic-2.5.1"
- sources."promise-7.3.1"
- sources."asap-2.0.6"
- sources."os-homedir-1.0.2"
- sources."mute-stream-0.0.7"
];
buildInputs = globalBuildInputs;
meta = {
@@ -27349,104 +28116,104 @@ in
};
dependencies = [
sources."argparse-1.0.4"
+ sources."array-find-index-1.0.2"
+ sources."balanced-match-1.0.0"
sources."bower-1.8.2"
sources."bower-endpoint-parser-0.2.1"
sources."bower-json-0.6.0"
sources."bower-logger-0.2.1"
- (sources."fs-extra-0.26.7" // {
- dependencies = [
- sources."graceful-fs-4.1.11"
- sources."glob-7.1.2"
- ];
- })
- sources."lodash-4.2.1"
- (sources."promised-temp-0.1.0" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."semver-5.4.1"
- (sources."temp-0.8.3" // {
- dependencies = [
- sources."rimraf-2.2.8"
- ];
- })
- sources."glob-6.0.4"
- sources."sprintf-js-1.0.3"
+ sources."brace-expansion-1.1.8"
+ sources."builtin-modules-1.1.1"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ sources."concat-map-0.0.1"
+ sources."currently-unhandled-0.4.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
sources."deep-extend-0.4.2"
+ sources."ends-with-0.2.0"
+ sources."error-ex-1.3.1"
+ sources."ext-list-2.2.2"
(sources."ext-name-3.0.0" // {
dependencies = [
sources."graceful-fs-4.1.11"
];
})
+ sources."find-up-1.1.2"
+ (sources."fs-extra-0.26.7" // {
+ dependencies = [
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
+ ];
+ })
+ sources."fs.realpath-1.0.0"
+ sources."get-stdin-4.0.1"
+ sources."glob-6.0.4"
sources."graceful-fs-3.0.11"
+ sources."hosted-git-info-2.5.0"
+ sources."indent-string-2.1.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
sources."intersect-1.0.1"
- sources."ends-with-0.2.0"
- sources."ext-list-2.2.2"
- sources."meow-3.7.0"
- sources."sort-keys-length-1.0.1"
- sources."mime-db-1.32.0"
- sources."camelcase-keys-2.1.0"
- sources."decamelize-1.2.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-finite-1.0.2"
+ sources."is-plain-obj-1.1.0"
+ sources."is-utf8-0.2.1"
+ sources."jsonfile-2.4.0"
+ sources."klaw-1.3.1"
+ sources."load-json-file-1.1.0"
+ sources."lodash-4.2.1"
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
+ sources."meow-3.7.0"
+ sources."mime-db-1.32.0"
+ sources."minimatch-3.0.4"
sources."minimist-1.2.0"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."natives-1.1.1"
sources."normalize-package-data-2.4.0"
+ sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."os-tmpdir-1.0.2"
+ sources."parse-json-2.2.0"
+ sources."path-exists-2.1.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-type-1.1.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ (sources."promised-temp-0.1.0" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."q-1.5.1"
+ sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
sources."redent-1.0.0"
- sources."trim-newlines-1.0.0"
- sources."camelcase-2.1.1"
- sources."currently-unhandled-0.4.1"
+ sources."repeating-2.0.1"
+ sources."rimraf-2.6.2"
+ sources."semver-5.5.0"
sources."signal-exit-3.0.2"
- sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
+ sources."sort-keys-1.1.2"
+ sources."sort-keys-length-1.0.1"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
- sources."find-up-1.1.2"
- sources."read-pkg-1.1.0"
- sources."path-exists-2.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."load-json-file-1.1.0"
- sources."path-type-1.1.0"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
+ sources."sprintf-js-1.0.3"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."is-utf8-0.2.1"
- sources."indent-string-2.1.0"
sources."strip-indent-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."number-is-nan-1.0.1"
- sources."get-stdin-4.0.1"
- sources."sort-keys-1.1.2"
- sources."is-plain-obj-1.1.0"
- sources."natives-1.1.1"
- sources."jsonfile-2.4.0"
- sources."klaw-1.3.1"
- sources."path-is-absolute-1.0.1"
- sources."rimraf-2.6.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
+ (sources."temp-0.8.3" // {
+ dependencies = [
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."trim-newlines-1.0.0"
+ sources."validate-npm-package-license-3.0.1"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."q-1.5.1"
- sources."debug-2.6.9"
- sources."mkdirp-0.5.1"
- sources."ms-2.0.0"
- sources."os-tmpdir-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -27460,23 +28227,45 @@ in
browserify = nodeEnv.buildNodePackage {
name = "browserify";
packageName = "browserify";
- version = "14.5.0";
+ version = "15.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/browserify/-/browserify-14.5.0.tgz";
- sha512 = "3p941rcrmn44115ylbnq53sdsnfm08rlvckdbkrnxvl00ibis5sxyhgrx33vm8sfyb5vgbk8x4b0fv3vwirvd7frwbdmzigsjqcx9w0";
+ url = "https://registry.npmjs.org/browserify/-/browserify-15.2.0.tgz";
+ sha512 = "353sai3zpq5rmqrw5xqkmvxpm866zpv2kiqmp90qp506vij6zvdjrk1zhlpvwmdvsyfjm07q3z2gk5z8ndx2mg55x134pmnz4a34xi0";
};
dependencies = [
+ sources."@browserify/acorn5-object-spread-5.0.1"
sources."JSONStream-1.3.2"
+ sources."acorn-4.0.13"
+ sources."array-filter-0.0.1"
+ sources."array-map-0.0.0"
+ sources."array-reduce-0.0.0"
+ sources."asn1.js-4.9.2"
sources."assert-1.4.1"
- sources."browser-pack-6.0.2"
+ sources."astw-2.2.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-1.2.1"
+ sources."bn.js-4.11.8"
+ sources."brace-expansion-1.1.8"
+ sources."brorand-1.1.0"
+ sources."browser-pack-6.0.3"
(sources."browser-resolve-1.11.2" // {
dependencies = [
sources."resolve-1.1.7"
];
})
+ sources."browserify-aes-1.1.1"
+ sources."browserify-cipher-1.0.0"
+ sources."browserify-des-1.0.0"
+ sources."browserify-rsa-4.0.1"
+ sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.2.0"
sources."buffer-5.0.8"
+ sources."buffer-xor-1.0.3"
+ sources."builtin-status-codes-3.0.0"
sources."cached-path-relative-1.0.1"
+ sources."cipher-base-1.0.4"
+ sources."combine-source-map-0.8.0"
+ sources."concat-map-0.0.1"
(sources."concat-stream-1.5.2" // {
dependencies = [
sources."readable-stream-2.0.6"
@@ -27485,51 +28274,116 @@ in
})
sources."console-browserify-1.1.0"
sources."constants-browserify-1.0.0"
+ sources."convert-source-map-1.1.3"
+ sources."core-util-is-1.0.2"
+ sources."create-ecdh-4.0.0"
+ sources."create-hash-1.1.3"
+ sources."create-hmac-1.1.6"
(sources."crypto-browserify-3.12.0" // {
dependencies = [
sources."hash-base-2.0.2"
];
})
+ sources."date-now-0.1.4"
sources."defined-1.0.0"
sources."deps-sort-2.0.0"
+ sources."des.js-1.0.0"
+ sources."detective-5.0.2"
+ sources."diffie-hellman-5.0.2"
sources."domain-browser-1.1.7"
sources."duplexer2-0.1.4"
+ sources."elliptic-6.4.0"
sources."events-1.1.1"
+ sources."evp_bytestokey-1.0.3"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
sources."glob-7.1.2"
sources."has-1.0.1"
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.3"
+ sources."hmac-drbg-1.0.1"
sources."htmlescape-1.1.1"
sources."https-browserify-1.0.0"
+ sources."ieee754-1.1.8"
+ sources."indexof-0.0.1"
+ sources."inflight-1.0.6"
sources."inherits-2.0.3"
- sources."insert-module-globals-7.0.1"
+ sources."inline-source-map-0.6.2"
+ (sources."insert-module-globals-7.0.1" // {
+ dependencies = [
+ sources."combine-source-map-0.7.2"
+ ];
+ })
+ sources."is-buffer-1.1.6"
+ sources."isarray-1.0.0"
+ sources."json-stable-stringify-0.0.1"
+ sources."jsonify-0.0.0"
+ sources."jsonparse-1.3.1"
(sources."labeled-stream-splicer-2.0.0" // {
dependencies = [
sources."isarray-0.0.1"
];
})
- (sources."module-deps-4.1.1" // {
+ sources."lexical-scope-1.2.0"
+ sources."lodash.memoize-3.0.4"
+ sources."md5.js-1.3.4"
+ sources."miller-rabin-4.0.1"
+ sources."minimalistic-assert-1.0.0"
+ sources."minimalistic-crypto-utils-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ (sources."module-deps-5.0.1" // {
dependencies = [
- sources."acorn-5.2.1"
+ sources."acorn-5.3.0"
+ sources."concat-stream-1.6.0"
];
})
+ sources."once-1.4.0"
sources."os-browserify-0.3.0"
+ sources."pako-1.0.6"
sources."parents-1.0.1"
+ sources."parse-asn1-5.1.0"
sources."path-browserify-0.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.5"
+ sources."path-platform-0.11.15"
+ sources."pbkdf2-3.0.14"
sources."process-0.11.10"
+ sources."process-nextick-args-1.0.7"
+ sources."public-encrypt-4.0.0"
sources."punycode-1.4.1"
+ sources."querystring-0.2.0"
sources."querystring-es3-0.2.1"
+ sources."randombytes-2.0.6"
+ sources."randomfill-1.0.3"
sources."read-only-stream-2.0.0"
sources."readable-stream-2.3.3"
sources."resolve-1.5.0"
+ sources."ripemd160-2.0.1"
+ sources."safe-buffer-5.1.1"
+ sources."sha.js-2.4.10"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
+ sources."source-map-0.5.7"
sources."stream-browserify-2.0.1"
- sources."stream-http-2.7.2"
+ sources."stream-combiner2-1.1.1"
+ sources."stream-http-2.8.0"
+ sources."stream-splicer-2.0.0"
sources."string_decoder-1.0.3"
- sources."subarg-1.0.0"
+ (sources."subarg-1.0.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
sources."syntax-error-1.3.0"
+ sources."through-2.3.8"
sources."through2-2.0.3"
sources."timers-browserify-1.4.2"
+ sources."to-arraybuffer-1.0.1"
sources."tty-browserify-0.0.0"
+ sources."typedarray-0.0.6"
+ sources."umd-3.0.1"
(sources."url-0.11.0" // {
dependencies = [
sources."punycode-1.3.2"
@@ -27540,91 +28394,15 @@ in
sources."inherits-2.0.1"
];
})
- sources."vm-browserify-0.0.4"
- sources."xtend-4.0.1"
- sources."jsonparse-1.3.1"
- sources."through-2.3.8"
- sources."combine-source-map-0.7.2"
- sources."umd-3.0.1"
- sources."convert-source-map-1.1.3"
- sources."inline-source-map-0.6.2"
- sources."lodash.memoize-3.0.4"
- sources."source-map-0.5.7"
- sources."pako-1.0.6"
- sources."base64-js-1.2.1"
- sources."ieee754-1.1.8"
- sources."typedarray-0.0.6"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
sources."util-deprecate-1.0.2"
- sources."date-now-0.1.4"
- sources."browserify-cipher-1.0.0"
- sources."browserify-sign-4.0.4"
- sources."create-ecdh-4.0.0"
- sources."create-hash-1.1.3"
- sources."create-hmac-1.1.6"
- sources."diffie-hellman-5.0.2"
- sources."pbkdf2-3.0.14"
- sources."public-encrypt-4.0.0"
- sources."randombytes-2.0.5"
- sources."randomfill-1.0.3"
- sources."browserify-aes-1.1.1"
- sources."browserify-des-1.0.0"
- sources."evp_bytestokey-1.0.3"
- sources."buffer-xor-1.0.3"
- sources."cipher-base-1.0.4"
- sources."safe-buffer-5.1.1"
- sources."des.js-1.0.0"
- sources."minimalistic-assert-1.0.0"
- sources."md5.js-1.3.4"
- sources."hash-base-3.0.4"
- sources."bn.js-4.11.8"
- sources."browserify-rsa-4.0.1"
- sources."elliptic-6.4.0"
- sources."parse-asn1-5.1.0"
- sources."brorand-1.1.0"
- sources."hash.js-1.1.3"
- sources."hmac-drbg-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
- sources."asn1.js-4.9.2"
- sources."ripemd160-2.0.1"
- sources."sha.js-2.4.9"
- sources."miller-rabin-4.0.1"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
+ sources."vm-browserify-0.0.4"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."function-bind-1.1.1"
- sources."is-buffer-1.1.6"
- sources."lexical-scope-1.2.0"
- sources."astw-2.2.0"
- sources."acorn-4.0.13"
- sources."stream-splicer-2.0.0"
- sources."detective-4.7.1"
- sources."stream-combiner2-1.1.1"
- sources."path-platform-0.11.15"
- sources."path-parse-1.0.5"
- sources."json-stable-stringify-0.0.1"
- sources."jsonify-0.0.0"
- sources."array-filter-0.0.1"
- sources."array-reduce-0.0.0"
- sources."array-map-0.0.0"
- sources."builtin-status-codes-3.0.0"
- sources."to-arraybuffer-1.0.1"
- sources."minimist-1.2.0"
- sources."querystring-0.2.0"
- sources."indexof-0.0.1"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
description = "browser-side require() the node way";
- homepage = "https://github.com/substack/node-browserify#readme";
+ homepage = "https://github.com/browserify/browserify#readme";
license = "MIT";
};
production = true;
@@ -27639,324 +28417,324 @@ in
sha1 = "4ffd81c55f381a5aa10c637607683a196830bdd8";
};
dependencies = [
+ sources."addr-to-ip-port-1.4.2"
+ sources."airplay-js-0.2.16"
+ sources."ansi-regex-1.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."append-0.1.1"
+ sources."array-find-0.1.1"
+ sources."array-find-index-1.0.2"
sources."array-loop-1.0.0"
sources."array-shuffle-1.0.1"
+ sources."ascli-0.3.0"
+ sources."async-0.2.10"
+ sources."aws-sign-0.2.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-1.2.0"
+ sources."bencode-1.0.0"
+ sources."bitfield-0.1.0"
+ sources."bittorrent-dht-6.4.2"
+ sources."bittorrent-tracker-7.7.0"
+ sources."blob-to-buffer-1.2.6"
+ sources."bn.js-4.11.8"
+ sources."bncode-0.5.3"
+ sources."boom-0.3.8"
+ sources."brace-expansion-1.1.8"
+ sources."buffer-alloc-unsafe-1.0.0"
+ sources."buffer-equal-0.0.1"
+ sources."buffer-equals-1.0.4"
+ sources."bufferview-1.0.1"
+ sources."builtin-modules-1.1.1"
+ sources."bytebuffer-3.5.5"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ sources."castv2-0.1.9"
sources."castv2-client-1.2.0"
sources."chalk-1.0.0"
sources."chromecast-player-0.2.3"
+ sources."chromecast-scanner-0.5.0"
+ sources."cli-width-1.1.1"
+ sources."clivas-0.1.4"
+ sources."co-3.1.0"
+ sources."codepage-1.4.0"
+ sources."colour-0.7.1"
+ sources."combined-stream-0.0.7"
+ sources."commander-2.13.0"
+ sources."compact2string-1.4.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."cookie-jar-0.2.0"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-0.1.3"
+ sources."currently-unhandled-0.4.1"
+ sources."cyclist-0.1.1"
sources."debounced-seeker-1.0.0"
sources."debug-2.6.9"
- sources."diveSync-0.3.0"
- sources."got-1.2.2"
- (sources."internal-ip-1.2.0" // {
- dependencies = [
- sources."object-assign-4.1.1"
- ];
- })
- sources."keypress-0.2.1"
- sources."mime-1.6.0"
- sources."minimist-1.2.0"
- (sources."peerflix-0.34.0" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."object-assign-4.1.1"
- sources."minimist-0.0.10"
- sources."get-stdin-5.0.1"
- sources."once-1.2.0"
- sources."end-of-stream-0.1.5"
- sources."thunky-1.0.2"
- sources."magnet-uri-4.2.3"
- sources."parse-torrent-file-2.1.4"
- sources."thirty-two-0.0.2"
- sources."bencode-0.7.0"
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
- sources."safe-buffer-5.0.1"
- sources."ultron-1.0.2"
- ];
- })
- (sources."playerui-1.2.0" // {
- dependencies = [
- sources."chalk-0.5.1"
- sources."ansi-styles-1.1.0"
- sources."has-ansi-0.1.0"
- sources."strip-ansi-0.3.0"
- sources."supports-color-0.2.0"
- sources."ansi-regex-0.2.1"
- ];
- })
- sources."query-string-1.0.1"
- sources."range-parser-1.2.0"
- (sources."read-torrent-1.3.0" // {
- dependencies = [
- sources."magnet-uri-2.0.1"
- (sources."parse-torrent-4.1.0" // {
- dependencies = [
- sources."magnet-uri-4.2.3"
- ];
- })
- sources."thirty-two-0.0.2"
- sources."parse-torrent-file-2.1.4"
- sources."bencode-0.7.0"
- sources."mime-1.2.11"
- ];
- })
- sources."router-0.6.2"
- (sources."srt2vtt-1.3.1" // {
- dependencies = [
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
- ];
- })
- sources."stream-transcoder-0.0.5"
- (sources."xml2js-0.4.19" // {
- dependencies = [
- sources."xmlbuilder-9.0.4"
- ];
- })
- sources."xspfr-0.3.1"
- sources."xtend-4.0.1"
- sources."castv2-0.1.9"
- sources."protobufjs-3.8.2"
- sources."bytebuffer-3.5.5"
- sources."ascli-0.3.0"
- sources."long-2.4.0"
- sources."bufferview-1.0.1"
- sources."colour-0.7.1"
- sources."optjs-3.2.2"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-1.0.3"
- sources."strip-ansi-2.0.1"
- sources."supports-color-1.3.1"
- sources."ansi-regex-1.1.1"
- sources."get-stdin-4.0.1"
- sources."chromecast-scanner-0.5.0"
- sources."mutate.js-0.2.0"
- sources."promiscuous-0.6.0"
- sources."time-line-1.0.1"
- sources."ware-1.3.0"
- sources."array-find-0.1.1"
- sources."multicast-dns-4.0.1"
- sources."thunky-0.1.0"
- sources."wrap-fn-0.1.5"
- sources."co-3.1.0"
- sources."ms-2.0.0"
- sources."append-0.1.1"
- sources."object-assign-1.0.0"
- sources."meow-3.7.0"
- sources."camelcase-keys-2.1.0"
sources."decamelize-1.2.0"
- sources."loud-rejection-1.6.0"
- sources."map-obj-1.0.1"
- sources."normalize-package-data-2.4.0"
- sources."read-pkg-up-1.0.1"
- sources."redent-1.0.0"
- sources."trim-newlines-1.0.0"
- sources."camelcase-2.1.1"
- sources."currently-unhandled-0.4.1"
- sources."signal-exit-3.0.2"
- sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."semver-5.4.1"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."find-up-1.1.2"
- sources."read-pkg-1.1.0"
- sources."path-exists-2.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."load-json-file-1.1.0"
- sources."path-type-1.1.0"
- sources."graceful-fs-4.1.11"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
- sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."is-utf8-0.2.1"
- sources."indent-string-2.1.0"
- sources."strip-indent-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."number-is-nan-1.0.1"
- sources."airplay-js-0.2.16"
- sources."clivas-0.1.4"
- sources."inquirer-0.8.5"
- sources."network-address-0.0.5"
- sources."numeral-1.5.6"
- sources."open-0.0.5"
- sources."optimist-0.6.1"
- sources."parse-torrent-5.8.3"
- sources."pump-0.3.5"
- sources."rc-0.4.0"
- (sources."torrent-stream-1.0.3" // {
- dependencies = [
- sources."parse-torrent-4.1.0"
- sources."once-1.3.3"
- sources."minimist-0.0.8"
- sources."debug-2.6.9"
- sources."bencode-0.8.0"
- ];
- })
- sources."windows-no-runnable-0.0.6"
- sources."mdns-js-1.0.1"
- sources."plist-2.1.0"
+ sources."decompress-response-3.3.0"
+ sources."deep-extend-0.2.11"
+ sources."delayed-stream-0.0.5"
+ sources."diveSync-0.3.0"
(sources."dns-js-0.2.1" // {
dependencies = [
sources."debug-2.6.9"
];
})
- sources."qap-3.3.1"
- sources."base64-js-1.2.0"
- sources."xmlbuilder-8.2.2"
- sources."xmldom-0.1.27"
- sources."cli-width-1.1.1"
- sources."figures-1.7.0"
- sources."lodash-3.10.1"
- sources."readline2-0.1.1"
- sources."rx-2.5.3"
- sources."through-2.3.8"
- sources."mute-stream-0.0.4"
- sources."wordwrap-0.0.3"
- sources."blob-to-buffer-1.2.6"
- sources."magnet-uri-5.1.7"
- sources."parse-torrent-file-4.0.3"
- sources."simple-get-2.7.0"
- sources."safe-buffer-5.1.1"
- sources."thirty-two-1.0.2"
- sources."uniq-1.0.1"
- sources."bencode-1.0.0"
- sources."simple-sha1-2.1.0"
- sources."rusha-0.8.9"
- sources."decompress-response-3.3.0"
- sources."once-1.4.0"
- sources."simple-concat-1.0.0"
- sources."mimic-response-1.0.0"
- sources."wrappy-1.0.2"
(sources."end-of-stream-1.0.0" // {
dependencies = [
sources."once-1.3.3"
];
})
- sources."deep-extend-0.2.11"
- sources."strip-json-comments-0.1.3"
- sources."ini-1.1.0"
- sources."bitfield-0.1.0"
- sources."bncode-0.5.3"
+ sources."error-ex-1.3.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."exit-on-epipe-1.0.1"
+ sources."fifo-0.1.4"
+ sources."figures-1.7.0"
+ sources."find-up-1.1.2"
+ sources."flatten-0.0.1"
+ sources."forever-agent-0.2.0"
+ sources."form-data-0.0.10"
(sources."fs-chunk-store-1.6.5" // {
dependencies = [
sources."mkdirp-0.5.1"
];
})
+ sources."fs.realpath-1.0.0"
+ sources."get-browser-rtc-1.0.2"
+ sources."get-stdin-4.0.1"
+ sources."glob-7.1.2"
+ sources."got-1.2.2"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-1.0.3"
sources."hat-0.0.3"
+ sources."hawk-0.10.2"
+ sources."hoek-0.7.6"
+ sources."hosted-git-info-2.5.0"
sources."immediate-chunk-store-1.0.8"
+ sources."indent-string-2.1.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.1.0"
+ sources."inquirer-0.8.5"
+ (sources."internal-ip-1.2.0" // {
+ dependencies = [
+ sources."object-assign-4.1.1"
+ ];
+ })
+ sources."ip-1.1.5"
sources."ip-set-1.0.1"
+ sources."ipaddr.js-1.5.4"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-finite-1.0.2"
+ sources."is-utf8-0.2.1"
+ sources."isarray-0.0.1"
+ sources."json-stringify-safe-3.0.0"
+ sources."k-bucket-0.6.0"
+ (sources."k-rpc-3.7.0" // {
+ dependencies = [
+ sources."bencode-1.0.0"
+ sources."k-bucket-2.0.1"
+ ];
+ })
+ sources."k-rpc-socket-1.7.2"
+ sources."keypress-0.2.1"
+ sources."load-json-file-1.1.0"
+ sources."lodash-3.10.1"
+ sources."long-2.4.0"
+ sources."loud-rejection-1.6.0"
+ sources."lru-2.0.1"
+ sources."magnet-uri-5.1.7"
+ sources."map-obj-1.0.1"
+ sources."mdns-js-1.0.1"
+ sources."meow-3.7.0"
+ sources."mime-1.6.0"
+ sources."mimic-response-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
sources."mkdirp-0.3.5"
+ sources."ms-2.0.0"
+ sources."multicast-dns-4.0.1"
+ sources."mutate.js-0.2.0"
+ sources."mute-stream-0.0.4"
+ sources."network-address-0.0.5"
+ sources."node-uuid-1.4.8"
+ sources."normalize-package-data-2.4.0"
+ sources."number-is-nan-1.0.1"
+ sources."numeral-1.5.6"
+ sources."oauth-sign-0.2.0"
+ sources."object-assign-1.0.0"
+ sources."once-1.4.0"
+ sources."open-0.0.5"
+ sources."optimist-0.6.1"
+ sources."options-0.0.6"
+ sources."optjs-3.2.2"
+ sources."pad-0.0.5"
+ sources."parse-json-2.2.0"
+ sources."parse-torrent-5.8.3"
+ sources."parse-torrent-file-4.0.3"
+ sources."path-exists-2.1.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-type-1.1.0"
+ sources."peer-wire-protocol-0.7.0"
(sources."peer-wire-swarm-0.12.1" // {
dependencies = [
sources."bncode-0.2.3"
];
})
+ (sources."peerflix-0.34.0" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ sources."debug-3.1.0"
+ sources."end-of-stream-0.1.5"
+ sources."get-stdin-5.0.1"
+ sources."isarray-1.0.0"
+ sources."magnet-uri-4.2.3"
+ sources."minimist-0.0.10"
+ sources."object-assign-4.1.1"
+ sources."once-1.2.0"
+ sources."parse-torrent-file-2.1.4"
+ sources."readable-stream-2.3.3"
+ sources."safe-buffer-5.0.1"
+ sources."string_decoder-1.0.3"
+ sources."thirty-two-0.0.2"
+ sources."thunky-1.0.2"
+ sources."ultron-1.0.2"
+ ];
+ })
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ (sources."playerui-1.2.0" // {
+ dependencies = [
+ sources."ansi-regex-0.2.1"
+ sources."ansi-styles-1.1.0"
+ sources."chalk-0.5.1"
+ sources."has-ansi-0.1.0"
+ sources."strip-ansi-0.3.0"
+ sources."supports-color-0.2.0"
+ ];
+ })
+ sources."plist-2.1.0"
+ sources."process-nextick-args-1.0.7"
+ sources."promiscuous-0.6.0"
+ sources."protobufjs-3.8.2"
+ sources."pump-0.3.5"
+ sources."qap-3.3.1"
+ sources."qs-0.5.6"
+ sources."query-string-1.0.1"
+ sources."random-access-file-1.8.1"
+ sources."random-iterate-1.0.1"
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
+ sources."rc-0.4.0"
+ sources."re-emitter-1.1.3"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ (sources."read-torrent-1.3.0" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ sources."magnet-uri-2.0.1"
+ sources."mime-1.2.11"
+ (sources."parse-torrent-4.1.0" // {
+ dependencies = [
+ sources."magnet-uri-4.2.3"
+ ];
+ })
+ sources."parse-torrent-file-2.1.4"
+ sources."thirty-two-0.0.2"
+ ];
+ })
+ sources."readable-stream-1.1.14"
+ sources."readline2-0.1.1"
+ sources."redent-1.0.0"
+ sources."repeating-2.0.1"
+ sources."request-2.16.6"
sources."rimraf-2.6.2"
+ sources."router-0.6.2"
+ sources."run-parallel-1.1.6"
+ sources."run-series-1.1.4"
+ sources."rusha-0.8.12"
+ sources."rx-2.5.3"
+ sources."safe-buffer-5.1.1"
+ sources."sax-1.2.4"
+ sources."semver-5.5.0"
+ sources."signal-exit-3.0.2"
+ sources."simple-concat-1.0.0"
+ sources."simple-get-2.7.0"
+ sources."simple-peer-6.4.4"
+ sources."simple-sha1-2.1.0"
+ (sources."simple-websocket-4.3.1" // {
+ dependencies = [
+ sources."ws-2.3.1"
+ ];
+ })
+ sources."single-line-log-0.4.1"
+ sources."sntp-0.1.4"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."speedometer-0.1.4"
+ (sources."srt2vtt-1.3.1" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.3"
+ sources."string_decoder-1.0.3"
+ ];
+ })
+ sources."stream-transcoder-0.0.5"
+ sources."string2compact-1.2.2"
+ sources."string_decoder-0.10.31"
+ sources."strip-ansi-2.0.1"
+ sources."strip-bom-2.0.0"
+ sources."strip-indent-1.0.1"
+ sources."strip-json-comments-0.1.3"
+ sources."supports-color-1.3.1"
+ sources."thirty-two-1.0.2"
+ sources."through-2.3.8"
+ sources."thunky-0.1.0"
+ sources."time-line-1.0.1"
(sources."torrent-discovery-5.4.0" // {
dependencies = [
sources."minimist-1.2.0"
];
})
sources."torrent-piece-1.1.1"
- sources."random-access-file-1.8.1"
- sources."randombytes-2.0.5"
- sources."run-parallel-1.1.6"
- sources."buffer-alloc-unsafe-1.0.0"
- sources."inherits-2.0.3"
- sources."ip-1.1.5"
- sources."flatten-0.0.1"
- sources."fifo-0.1.4"
- sources."peer-wire-protocol-0.7.0"
- sources."speedometer-0.1.4"
- sources."utp-0.0.7"
- sources."readable-stream-1.1.14"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."cyclist-0.1.1"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."bittorrent-dht-6.4.2"
- sources."bittorrent-tracker-7.7.0"
- sources."re-emitter-1.1.3"
- sources."buffer-equals-1.0.4"
- sources."k-bucket-0.6.0"
- (sources."k-rpc-3.7.0" // {
+ (sources."torrent-stream-1.0.3" // {
dependencies = [
- sources."k-bucket-2.0.1"
- sources."bencode-1.0.0"
+ sources."bencode-0.8.0"
+ sources."debug-2.6.9"
+ sources."minimist-0.0.8"
+ sources."once-1.3.3"
+ sources."parse-torrent-4.1.0"
];
})
- sources."lru-2.0.1"
- sources."buffer-equal-0.0.1"
- sources."k-rpc-socket-1.7.2"
- sources."bn.js-4.11.8"
- sources."compact2string-1.4.0"
- sources."random-iterate-1.0.1"
- sources."run-series-1.1.4"
- sources."simple-peer-6.4.4"
- (sources."simple-websocket-4.3.1" // {
- dependencies = [
- sources."ws-2.3.1"
- ];
- })
- sources."string2compact-1.2.2"
- sources."ws-1.1.5"
- sources."ipaddr.js-1.5.4"
- sources."get-browser-rtc-1.0.2"
- sources."process-nextick-args-1.0.7"
- sources."util-deprecate-1.0.2"
- sources."ultron-1.1.1"
- sources."addr-to-ip-port-1.4.2"
- sources."options-0.0.6"
- sources."pad-0.0.5"
- sources."single-line-log-0.4.1"
- sources."request-2.16.6"
- sources."form-data-0.0.10"
- sources."hawk-0.10.2"
- sources."node-uuid-1.4.8"
- sources."cookie-jar-0.2.0"
- sources."aws-sign-0.2.0"
- sources."oauth-sign-0.2.0"
- sources."forever-agent-0.2.0"
+ sources."trim-newlines-1.0.0"
sources."tunnel-agent-0.2.0"
- sources."json-stringify-safe-3.0.0"
- sources."qs-0.5.6"
- sources."combined-stream-0.0.7"
- sources."async-0.2.10"
- sources."delayed-stream-0.0.5"
- sources."hoek-0.7.6"
- sources."boom-0.3.8"
- sources."cryptiles-0.1.3"
- sources."sntp-0.1.4"
- sources."codepage-1.4.0"
- sources."utfx-1.0.1"
- sources."voc-1.0.0"
- sources."concat-stream-1.6.0"
- sources."exit-on-epipe-1.0.1"
- sources."commander-2.12.2"
sources."typedarray-0.0.6"
- sources."sax-1.2.4"
+ sources."ultron-1.1.1"
sources."underscore-1.6.0"
+ sources."uniq-1.0.1"
+ sources."utfx-1.0.1"
+ sources."util-deprecate-1.0.2"
+ sources."utp-0.0.7"
+ sources."validate-npm-package-license-3.0.1"
+ sources."voc-1.0.0"
+ sources."ware-1.3.0"
+ sources."windows-no-runnable-0.0.6"
+ sources."wordwrap-0.0.3"
+ sources."wrap-fn-0.1.5"
+ sources."wrappy-1.0.2"
+ sources."ws-1.1.5"
+ (sources."xml2js-0.4.19" // {
+ dependencies = [
+ sources."xmlbuilder-9.0.4"
+ ];
+ })
+ sources."xmlbuilder-8.2.2"
+ sources."xmldom-0.1.27"
+ sources."xspfr-0.3.1"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -27967,6 +28745,26 @@ in
production = true;
bypassCache = false;
};
+ clean-css = nodeEnv.buildNodePackage {
+ name = "clean-css";
+ packageName = "clean-css";
+ version = "4.1.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clean-css/-/clean-css-4.1.9.tgz";
+ sha1 = "35cee8ae7687a49b98034f70de00c4edd3826301";
+ };
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A well-tested CSS minifier";
+ homepage = https://github.com/jakubpawlowicz/clean-css;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = false;
+ };
coffee-script = nodeEnv.buildNodePackage {
name = "coffee-script";
packageName = "coffee-script";
@@ -27987,84 +28785,49 @@ in
coinmon = nodeEnv.buildNodePackage {
name = "coinmon";
packageName = "coinmon";
- version = "0.0.9";
+ version = "0.0.13";
src = fetchurl {
- url = "https://registry.npmjs.org/coinmon/-/coinmon-0.0.9.tgz";
- sha512 = "3hzlrghgwyf65qhz9hm1w3np5djhjjl8f1v9bpa7bmqi3593q3i0589c6lbd493i802ai74pvdkx3zp6qb6r224nyz2jx80kqi5bvp6";
+ url = "https://registry.npmjs.org/coinmon/-/coinmon-0.0.13.tgz";
+ sha512 = "2q865h8b8fks806q7qhdm728xhcw684xv37fmlphqv0rdy5y7zfj9nffcnzjmlg5b2qgfrybdpp25q27pm26c4mnxl6lq7jdk7hr6f5";
};
dependencies = [
- sources."axios-0.17.1"
- (sources."cfonts-1.1.3" // {
- dependencies = [
- sources."commander-2.9.0"
- ];
- })
- (sources."cli-table2-0.2.0" // {
- dependencies = [
- sources."strip-ansi-3.0.1"
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."commander-2.12.2"
- sources."humanize-plus-1.8.2"
- (sources."ora-1.3.0" // {
- dependencies = [
- sources."chalk-1.1.3"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."follow-redirects-1.2.6"
- sources."is-buffer-1.1.6"
- sources."debug-3.1.0"
- sources."ms-2.0.0"
- sources."babel-runtime-6.22.0"
- sources."chalk-1.0.0"
- sources."change-case-3.0.0"
- sources."window-size-0.3.0"
- sources."core-js-2.5.3"
- sources."regenerator-runtime-0.10.5"
+ sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-1.0.3"
- sources."strip-ansi-2.0.1"
- sources."supports-color-1.3.1"
- sources."ansi-regex-1.1.1"
- sources."get-stdin-4.0.1"
- sources."camel-case-3.0.0"
- sources."constant-case-2.0.0"
- sources."dot-case-2.1.1"
- sources."header-case-1.0.1"
- sources."is-lower-case-1.1.3"
- sources."is-upper-case-1.1.2"
- sources."lower-case-1.1.4"
- sources."lower-case-first-1.0.2"
- sources."no-case-2.3.2"
- sources."param-case-2.1.1"
- sources."pascal-case-2.0.1"
- sources."path-case-2.1.1"
- sources."sentence-case-2.1.1"
- sources."snake-case-2.1.0"
- sources."swap-case-1.1.2"
- sources."title-case-2.1.1"
- sources."upper-case-1.1.3"
- sources."upper-case-first-1.1.2"
- sources."graceful-readlink-1.0.1"
- sources."lodash-3.10.1"
- sources."string-width-1.0.2"
- sources."colors-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
+ sources."axios-0.17.1"
+ sources."camelo-1.1.11"
+ sources."chalk-1.1.3"
sources."cli-cursor-2.1.0"
sources."cli-spinners-1.1.0"
+ sources."cli-table2-0.2.0"
+ sources."code-point-at-1.1.0"
+ sources."colors-1.1.2"
+ sources."commander-2.13.0"
+ sources."debug-3.1.0"
+ sources."emojic-1.1.14"
+ sources."emojilib-2.2.12"
+ sources."escape-string-regexp-1.0.5"
+ sources."follow-redirects-1.4.1"
+ sources."has-ansi-2.0.0"
+ sources."humanize-plus-1.8.2"
+ sources."is-buffer-1.1.6"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."iterate-object-1.3.2"
+ sources."lodash-3.10.1"
sources."log-symbols-1.0.2"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."signal-exit-3.0.2"
sources."mimic-fn-1.1.0"
+ sources."ms-2.0.0"
+ sources."number-is-nan-1.0.1"
+ sources."onetime-2.0.1"
+ sources."ora-1.3.0"
+ sources."r-json-1.2.8"
+ sources."regex-escape-3.4.8"
+ sources."restore-cursor-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."uc-first-array-1.1.8"
+ sources."ucfirst-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -28075,6 +28838,40 @@ in
production = true;
bypassCache = false;
};
+ configurable-http-proxy = nodeEnv.buildNodePackage {
+ name = "configurable-http-proxy";
+ packageName = "configurable-http-proxy";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/configurable-http-proxy/-/configurable-http-proxy-3.1.1.tgz";
+ sha512 = "13wdwd1dgc2laqsv0mjz91pz1mmfy0c0ihbgvmd4lqi6v5gas17cp85885nkdz2y5w87yizqlb2w4l04bbxwvcw6spaq2aw5q3z3rvv";
+ };
+ dependencies = [
+ sources."async-1.0.0"
+ sources."colors-1.0.3"
+ sources."commander-2.13.0"
+ sources."cycle-1.0.3"
+ sources."eventemitter3-1.2.0"
+ sources."eyes-0.1.8"
+ sources."http-proxy-1.16.2"
+ sources."isstream-0.1.2"
+ sources."lynx-0.2.0"
+ sources."mersenne-0.0.4"
+ sources."requires-port-1.0.0"
+ sources."stack-trace-0.0.10"
+ sources."statsd-parser-0.0.4"
+ sources."strftime-0.10.0"
+ sources."winston-2.4.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A configurable-on-the-fly HTTP Proxy";
+ homepage = "https://github.com/jupyterhub/configurable-http-proxy#readme";
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = false;
+ };
cordova = nodeEnv.buildNodePackage {
name = "cordova";
packageName = "cordova";
@@ -28084,92 +28881,98 @@ in
sha1 = "2e8446d9493caafd870b1090785e7f03e2ae6a43";
};
dependencies = [
- sources."configstore-2.1.0"
- sources."cordova-common-2.2.1"
- (sources."cordova-lib-8.0.0" // {
- dependencies = [
- sources."glob-7.1.1"
- sources."nopt-4.0.1"
- (sources."plist-2.0.1" // {
- dependencies = [
- sources."base64-js-1.1.2"
- ];
- })
- sources."q-1.0.1"
- sources."shelljs-0.3.0"
- sources."base64-js-1.2.1"
- sources."isarray-1.0.0"
- sources."hash-base-2.0.2"
- sources."acorn-4.0.13"
- sources."minimist-1.2.0"
- sources."xmlbuilder-8.2.2"
- sources."qs-6.3.2"
- sources."uuid-3.1.0"
- ];
- })
- sources."editor-1.0.0"
- (sources."insight-0.8.4" // {
- dependencies = [
- (sources."configstore-1.4.0" // {
- dependencies = [
- sources."uuid-2.0.3"
- ];
- })
- sources."uuid-3.1.0"
- sources."mute-stream-0.0.5"
- sources."minimist-1.2.0"
- ];
- })
- sources."nopt-3.0.1"
- (sources."update-notifier-0.5.0" // {
- dependencies = [
- sources."configstore-1.4.0"
- sources."object-assign-3.0.0"
- sources."minimist-1.2.0"
- ];
- })
- sources."dot-prop-3.0.0"
- sources."graceful-fs-4.1.11"
- sources."mkdirp-0.5.1"
- sources."object-assign-4.1.1"
- sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.4"
- sources."uuid-2.0.3"
- sources."write-file-atomic-1.3.4"
- sources."xdg-basedir-2.0.0"
- sources."is-obj-1.0.1"
- sources."minimist-0.0.8"
- sources."os-homedir-1.0.2"
- sources."imurmurhash-0.1.4"
- sources."slide-1.1.6"
- sources."ansi-0.3.1"
- sources."bplist-parser-0.1.1"
- sources."cordova-registry-mapper-1.1.15"
- sources."elementtree-0.1.6"
- sources."glob-5.0.15"
- sources."minimatch-3.0.4"
- sources."plist-1.2.0"
- sources."q-1.5.1"
- sources."semver-5.4.1"
- sources."shelljs-0.5.3"
- sources."underscore-1.8.3"
- sources."unorm-1.4.1"
- sources."big-integer-1.6.26"
- sources."sax-0.3.5"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."base64-js-0.0.8"
- sources."xmlbuilder-4.0.0"
- sources."xmldom-0.1.27"
- sources."util-deprecate-1.0.2"
- sources."lodash-3.10.1"
+ sources."JSONStream-1.3.2"
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.4"
+ sources."acorn-5.3.0"
sources."aliasify-2.1.0"
+ sources."ansi-0.3.1"
+ sources."ansi-escapes-1.4.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."array-filter-0.0.1"
+ sources."array-flatten-1.1.1"
+ sources."array-map-0.0.0"
+ sources."array-reduce-0.0.0"
+ sources."asn1-0.2.3"
+ sources."asn1.js-4.9.2"
+ sources."assert-1.4.1"
+ sources."assert-plus-0.2.0"
+ sources."astw-2.2.0"
+ sources."async-1.5.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.8"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."big-integer-1.6.26"
+ sources."block-stream-0.0.9"
+ sources."bn.js-4.11.8"
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."boom-2.10.1"
+ sources."bplist-creator-0.0.7"
+ sources."bplist-parser-0.1.1"
+ sources."brace-expansion-1.1.8"
+ sources."brorand-1.1.0"
+ sources."browser-pack-6.0.3"
+ (sources."browser-resolve-1.11.2" // {
+ dependencies = [
+ sources."resolve-1.1.7"
+ ];
+ })
+ (sources."browserify-14.4.0" // {
+ dependencies = [
+ sources."acorn-4.0.13"
+ sources."isarray-1.0.0"
+ ];
+ })
+ sources."browserify-aes-1.1.1"
+ sources."browserify-cipher-1.0.0"
+ sources."browserify-des-1.0.0"
+ sources."browserify-rsa-4.0.1"
+ sources."browserify-sign-4.0.4"
+ sources."browserify-transform-tools-1.7.0"
+ sources."browserify-zlib-0.1.4"
+ sources."buffer-5.0.8"
+ sources."buffer-xor-1.0.3"
+ sources."builtin-modules-1.1.1"
+ sources."builtin-status-codes-3.0.0"
+ sources."builtins-1.0.3"
+ sources."bytes-3.0.0"
+ sources."cached-path-relative-1.0.1"
+ sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
+ sources."cipher-base-1.0.4"
+ sources."cli-cursor-1.0.2"
+ sources."cli-width-1.1.1"
+ sources."code-point-at-1.1.0"
+ sources."combine-source-map-0.8.0"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."compressible-2.0.12"
+ sources."compression-1.7.1"
+ sources."concat-map-0.0.1"
+ (sources."concat-stream-1.5.2" // {
+ dependencies = [
+ sources."readable-stream-2.0.6"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."configstore-2.1.0"
+ sources."console-browserify-1.1.0"
+ sources."constants-browserify-1.0.0"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."convert-source-map-1.1.3"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."cordova-app-hello-world-3.12.0"
+ sources."cordova-common-2.2.1"
sources."cordova-create-1.1.2"
(sources."cordova-fetch-1.3.0" // {
dependencies = [
@@ -28179,106 +28982,330 @@ in
})
(sources."cordova-js-4.2.2" // {
dependencies = [
+ sources."acorn-5.3.0"
sources."isarray-0.0.1"
- sources."acorn-5.2.1"
];
})
+ (sources."cordova-lib-8.0.0" // {
+ dependencies = [
+ sources."acorn-4.0.13"
+ sources."base64-js-1.2.1"
+ sources."combine-source-map-0.7.2"
+ sources."glob-7.1.1"
+ sources."hash-base-2.0.2"
+ sources."isarray-1.0.0"
+ sources."minimist-1.2.0"
+ sources."nopt-4.0.1"
+ (sources."plist-2.0.1" // {
+ dependencies = [
+ sources."base64-js-1.1.2"
+ ];
+ })
+ sources."q-1.0.1"
+ sources."qs-6.3.2"
+ sources."shelljs-0.3.0"
+ sources."uuid-3.2.1"
+ sources."xmlbuilder-8.2.2"
+ ];
+ })
+ sources."cordova-registry-mapper-1.1.15"
(sources."cordova-serve-2.0.0" // {
dependencies = [
sources."shelljs-0.5.3"
];
})
+ sources."core-util-is-1.0.2"
+ sources."create-ecdh-4.0.0"
+ sources."create-hash-1.1.3"
+ sources."create-hmac-1.1.6"
+ sources."cryptiles-2.0.5"
+ sources."crypto-browserify-3.12.0"
+ sources."dashdash-1.14.1"
+ sources."date-now-0.1.4"
+ sources."debug-2.6.9"
+ sources."deep-extend-0.4.2"
+ sources."defined-1.0.0"
+ sources."delayed-stream-1.0.0"
(sources."dep-graph-1.1.0" // {
dependencies = [
sources."underscore-1.2.1"
];
})
- sources."detect-indent-5.0.0"
+ sources."depd-1.1.2"
(sources."dependency-ls-1.1.1" // {
dependencies = [
sources."q-1.4.1"
];
})
- sources."init-package-json-1.10.1"
- sources."opener-1.4.2"
- sources."properties-parser-0.3.1"
- sources."request-2.79.0"
- sources."tar-2.2.1"
- sources."valid-identifier-0.0.1"
- (sources."xcode-1.0.0" // {
- dependencies = [
- sources."uuid-3.0.1"
- ];
- })
- sources."browserify-transform-tools-1.7.0"
- sources."falafel-2.1.0"
- sources."through-2.3.8"
- sources."acorn-5.2.1"
- sources."foreach-2.0.5"
- sources."isarray-0.0.1"
- sources."object-keys-1.0.11"
- sources."cordova-app-hello-world-3.12.0"
- sources."hosted-git-info-2.5.0"
- sources."is-url-1.2.2"
- sources."interpret-1.1.0"
- sources."rechoir-0.6.2"
- sources."resolve-1.5.0"
- sources."path-parse-1.0.5"
- (sources."browserify-14.4.0" // {
- dependencies = [
- sources."isarray-1.0.0"
- sources."acorn-4.0.13"
- ];
- })
- sources."JSONStream-1.3.2"
- sources."assert-1.4.1"
- sources."browser-pack-6.0.2"
- (sources."browser-resolve-1.11.2" // {
- dependencies = [
- sources."resolve-1.1.7"
- ];
- })
- sources."browserify-zlib-0.1.4"
- sources."buffer-5.0.8"
- sources."cached-path-relative-1.0.1"
- (sources."concat-stream-1.5.2" // {
- dependencies = [
- sources."readable-stream-2.0.6"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."console-browserify-1.1.0"
- sources."constants-browserify-1.0.0"
- sources."crypto-browserify-3.12.0"
- sources."defined-1.0.0"
sources."deps-sort-2.0.0"
+ sources."des.js-1.0.0"
+ sources."destroy-1.0.4"
+ sources."detect-indent-5.0.0"
+ sources."detective-4.7.1"
+ sources."diffie-hellman-5.0.2"
sources."domain-browser-1.1.7"
+ sources."dot-prop-3.0.0"
sources."duplexer2-0.1.4"
+ sources."duplexify-3.5.3"
+ sources."ecc-jsbn-0.1.1"
+ sources."editor-1.0.0"
+ sources."ee-first-1.1.1"
+ sources."elementtree-0.1.6"
+ sources."elliptic-6.4.0"
+ sources."encodeurl-1.0.2"
+ sources."end-of-stream-1.4.1"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."etag-1.8.1"
sources."events-1.1.1"
+ sources."evp_bytestokey-1.0.3"
+ sources."exit-hook-1.1.1"
+ sources."express-4.16.2"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."falafel-2.1.0"
+ sources."figures-1.7.0"
+ sources."finalhandler-1.1.0"
+ sources."foreach-2.0.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.1.4"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."function-bind-1.1.1"
+ sources."generate-function-2.0.0"
+ sources."generate-object-property-1.2.0"
+ sources."getpass-0.1.7"
+ sources."glob-5.0.15"
+ sources."got-3.3.1"
+ sources."graceful-fs-4.1.11"
+ sources."har-validator-2.0.6"
sources."has-1.0.1"
+ sources."has-ansi-2.0.0"
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.3"
+ sources."hawk-3.1.3"
+ sources."hmac-drbg-1.0.1"
+ sources."hoek-2.16.3"
+ sources."hosted-git-info-2.5.0"
sources."htmlescape-1.1.1"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-signature-1.1.1"
sources."https-browserify-1.0.0"
+ sources."iconv-lite-0.4.19"
+ sources."ieee754-1.1.8"
+ sources."imurmurhash-0.1.4"
+ sources."indexof-0.0.1"
+ sources."infinity-agent-2.0.3"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."init-package-json-1.10.1"
+ sources."inline-source-map-0.6.2"
+ sources."inquirer-0.10.1"
sources."insert-module-globals-7.0.1"
+ (sources."insight-0.8.4" // {
+ dependencies = [
+ (sources."configstore-1.4.0" // {
+ dependencies = [
+ sources."uuid-2.0.3"
+ ];
+ })
+ sources."minimist-1.2.0"
+ sources."mute-stream-0.0.5"
+ sources."uuid-3.2.1"
+ ];
+ })
+ sources."interpret-1.1.0"
+ sources."ipaddr.js-1.5.2"
+ sources."is-buffer-1.1.6"
+ sources."is-builtin-module-1.0.0"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-my-json-valid-2.17.1"
+ sources."is-npm-1.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-property-1.0.2"
+ sources."is-redirect-1.0.0"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-url-1.2.2"
+ sources."isarray-0.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-parse-better-errors-1.0.1"
+ sources."json-schema-0.2.3"
+ sources."json-stable-stringify-0.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonify-0.0.0"
+ sources."jsonparse-1.3.1"
+ sources."jsonpointer-4.0.1"
+ (sources."jsprim-1.4.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
sources."labeled-stream-splicer-2.0.0"
+ sources."latest-version-1.0.1"
+ sources."lexical-scope-1.2.0"
+ sources."lodash-3.10.1"
+ sources."lodash._getnative-3.9.1"
+ sources."lodash.debounce-3.1.1"
+ sources."lodash.memoize-3.0.4"
+ sources."lowercase-keys-1.0.0"
+ sources."md5.js-1.3.4"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."miller-rabin-4.0.1"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimalistic-assert-1.0.0"
+ sources."minimalistic-crypto-utils-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
sources."module-deps-4.1.1"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."negotiator-0.6.1"
+ sources."nested-error-stacks-1.0.2"
+ sources."nopt-3.0.1"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-package-arg-5.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."object-keys-1.0.11"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."once-1.4.0"
+ sources."onetime-1.1.0"
+ sources."open-0.0.5"
+ sources."opener-1.4.2"
sources."os-browserify-0.1.2"
+ sources."os-homedir-1.0.2"
+ sources."os-name-1.0.3"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."osx-release-1.1.0"
+ sources."package-json-1.2.0"
+ sources."pako-0.2.9"
sources."parents-1.0.1"
+ sources."parse-asn1-5.1.0"
+ sources."parseurl-1.3.2"
sources."path-browserify-0.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.5"
+ sources."path-platform-0.11.15"
+ sources."path-to-regexp-0.1.7"
+ sources."pbkdf2-3.0.14"
+ sources."pegjs-0.10.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."plist-1.2.0"
+ sources."prepend-http-1.0.4"
sources."process-0.11.10"
+ sources."process-nextick-args-1.0.7"
+ sources."promzard-0.3.0"
+ sources."properties-parser-0.3.1"
+ sources."proxy-addr-2.0.2"
+ sources."public-encrypt-4.0.0"
sources."punycode-1.4.1"
+ sources."q-1.5.1"
+ sources."qs-6.5.1"
+ sources."querystring-0.2.0"
sources."querystring-es3-0.2.1"
+ sources."randombytes-2.0.6"
+ sources."randomfill-1.0.3"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."rc-1.2.4"
+ sources."read-1.0.7"
+ sources."read-all-stream-3.1.0"
sources."read-only-stream-2.0.0"
+ sources."read-package-json-2.0.12"
sources."readable-stream-2.3.3"
+ sources."readline2-1.0.1"
+ sources."rechoir-0.6.2"
+ sources."registry-url-3.1.0"
+ sources."repeating-1.1.3"
+ sources."request-2.79.0"
+ sources."resolve-1.5.0"
+ sources."restore-cursor-1.0.1"
+ sources."rimraf-2.6.2"
+ sources."ripemd160-2.0.1"
+ sources."run-async-0.1.0"
+ sources."rx-lite-3.1.2"
+ sources."safe-buffer-5.1.1"
+ sources."sax-0.3.5"
+ sources."semver-5.5.0"
+ sources."semver-diff-2.1.0"
+ sources."send-0.16.1"
+ sources."serve-static-1.13.1"
+ sources."setprototypeof-1.1.0"
+ sources."sha.js-2.4.10"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
+ sources."shelljs-0.5.3"
+ sources."simple-plist-0.2.1"
+ sources."slash-1.0.0"
+ sources."slide-1.1.6"
+ sources."sntp-1.0.9"
+ sources."source-map-0.5.7"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ (sources."sshpk-1.13.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."statuses-1.3.1"
sources."stream-browserify-2.0.1"
- sources."stream-http-2.7.2"
+ sources."stream-buffers-2.2.0"
+ sources."stream-combiner2-1.1.1"
+ sources."stream-http-2.8.0"
+ sources."stream-shift-1.0.0"
+ sources."stream-splicer-2.0.0"
+ sources."string-length-1.0.1"
+ sources."string.prototype.codepointat-0.2.0"
sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
sources."subarg-1.0.0"
+ sources."supports-color-2.0.0"
sources."syntax-error-1.3.0"
+ sources."tar-2.2.1"
+ sources."through-2.3.8"
sources."through2-2.0.3"
+ sources."timed-out-2.0.0"
sources."timers-browserify-1.4.2"
+ sources."to-arraybuffer-1.0.1"
+ sources."tough-cookie-2.3.3"
sources."tty-browserify-0.0.0"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.15"
+ sources."typedarray-0.0.6"
+ sources."umd-3.0.1"
+ sources."underscore-1.8.3"
+ sources."unorm-1.4.1"
+ sources."unpipe-1.0.0"
+ (sources."update-notifier-0.5.0" // {
+ dependencies = [
+ sources."configstore-1.4.0"
+ sources."minimist-1.2.0"
+ sources."object-assign-3.0.0"
+ ];
+ })
(sources."url-0.11.0" // {
dependencies = [
sources."punycode-1.3.2"
@@ -28289,252 +29316,27 @@ in
sources."inherits-2.0.1"
];
})
- sources."vm-browserify-0.0.4"
- sources."xtend-4.0.1"
- sources."jsonparse-1.3.1"
- sources."combine-source-map-0.7.2"
- sources."umd-3.0.1"
- sources."convert-source-map-1.1.3"
- sources."inline-source-map-0.6.2"
- sources."lodash.memoize-3.0.4"
- sources."source-map-0.5.7"
- sources."pako-0.2.9"
- sources."ieee754-1.1.8"
- sources."typedarray-0.0.6"
- sources."core-util-is-1.0.2"
- sources."process-nextick-args-1.0.7"
- sources."date-now-0.1.4"
- sources."browserify-cipher-1.0.0"
- sources."browserify-sign-4.0.4"
- sources."create-ecdh-4.0.0"
- sources."create-hash-1.1.3"
- sources."create-hmac-1.1.6"
- sources."diffie-hellman-5.0.2"
- sources."pbkdf2-3.0.14"
- sources."public-encrypt-4.0.0"
- sources."randombytes-2.0.5"
- sources."randomfill-1.0.3"
- sources."browserify-aes-1.1.1"
- sources."browserify-des-1.0.0"
- sources."evp_bytestokey-1.0.3"
- sources."buffer-xor-1.0.3"
- sources."cipher-base-1.0.4"
- sources."safe-buffer-5.1.1"
- sources."des.js-1.0.0"
- sources."minimalistic-assert-1.0.0"
- sources."md5.js-1.3.4"
- sources."hash-base-3.0.4"
- sources."bn.js-4.11.8"
- sources."browserify-rsa-4.0.1"
- sources."elliptic-6.4.0"
- sources."parse-asn1-5.1.0"
- sources."brorand-1.1.0"
- sources."hash.js-1.1.3"
- sources."hmac-drbg-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
- sources."asn1.js-4.9.2"
- sources."ripemd160-2.0.1"
- sources."sha.js-2.4.9"
- sources."miller-rabin-4.0.1"
- sources."function-bind-1.1.1"
- sources."is-buffer-1.1.6"
- sources."lexical-scope-1.2.0"
- sources."astw-2.2.0"
- sources."stream-splicer-2.0.0"
- sources."detective-4.7.1"
- sources."stream-combiner2-1.1.1"
- sources."path-platform-0.11.15"
- sources."json-stable-stringify-0.0.1"
- sources."jsonify-0.0.0"
- sources."array-filter-0.0.1"
- sources."array-reduce-0.0.0"
- sources."array-map-0.0.0"
- sources."builtin-status-codes-3.0.0"
- sources."to-arraybuffer-1.0.1"
- sources."querystring-0.2.0"
- sources."indexof-0.0.1"
- sources."chalk-1.1.3"
- sources."compression-1.7.1"
- sources."express-4.16.2"
- sources."open-0.0.5"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."accepts-1.3.4"
- sources."bytes-3.0.0"
- sources."compressible-2.0.12"
- sources."debug-2.6.9"
- sources."on-headers-1.0.1"
- sources."vary-1.1.2"
- sources."mime-types-2.1.17"
- sources."negotiator-0.6.1"
- sources."mime-db-1.30.0"
- sources."ms-2.0.0"
- sources."array-flatten-1.1.1"
- (sources."body-parser-1.18.2" // {
- dependencies = [
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."content-disposition-0.5.2"
- sources."content-type-1.0.4"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."depd-1.1.1"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."finalhandler-1.1.0"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."on-finished-2.3.0"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-2.0.2"
- sources."qs-6.5.1"
- sources."range-parser-1.2.0"
- sources."send-0.16.1"
- sources."serve-static-1.13.1"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.3.1"
- sources."type-is-1.6.15"
+ sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."raw-body-2.3.2"
- sources."unpipe-1.0.0"
- sources."ee-first-1.1.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.5.2"
- sources."destroy-1.0.4"
- sources."mime-1.4.1"
- sources."media-typer-0.3.0"
- sources."fs.realpath-1.0.0"
- sources."npm-package-arg-5.1.2"
- sources."promzard-0.3.0"
- sources."read-1.0.7"
- sources."read-package-json-2.0.12"
+ sources."uuid-2.0.3"
+ sources."valid-identifier-0.0.1"
sources."validate-npm-package-license-3.0.1"
sources."validate-npm-package-name-3.0.0"
- sources."mute-stream-0.0.7"
- sources."json-parse-better-errors-1.0.1"
- sources."normalize-package-data-2.4.0"
- sources."slash-1.0.0"
- sources."is-builtin-module-1.0.0"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."builtins-1.0.3"
- sources."abbrev-1.1.1"
- sources."string.prototype.codepointat-0.2.0"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.6.0"
- sources."caseless-0.11.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.1.4"
- sources."har-validator-2.0.6"
- sources."hawk-3.1.3"
- sources."http-signature-1.1.1"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.4.3"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."commander-2.12.2"
- sources."is-my-json-valid-2.17.1"
- sources."pinkie-promise-2.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."assert-plus-0.2.0"
- (sources."jsprim-1.4.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- (sources."sshpk-1.13.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
+ sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."block-stream-0.0.9"
- sources."fstream-1.0.11"
- sources."rimraf-2.6.2"
- sources."pegjs-0.10.0"
- sources."simple-plist-0.2.1"
- sources."bplist-creator-0.0.7"
- sources."stream-buffers-2.2.0"
- sources."async-1.5.2"
- sources."inquirer-0.10.1"
- sources."lodash.debounce-3.1.1"
- sources."os-name-1.0.3"
- sources."ansi-escapes-1.4.0"
- sources."cli-cursor-1.0.2"
- sources."cli-width-1.1.1"
- sources."figures-1.7.0"
- sources."readline2-1.0.1"
- sources."run-async-0.1.0"
- sources."rx-lite-3.1.2"
- sources."restore-cursor-1.0.1"
- sources."exit-hook-1.1.1"
- sources."onetime-1.1.0"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
- sources."lodash._getnative-3.9.1"
- sources."osx-release-1.1.0"
+ sources."vm-browserify-0.0.4"
sources."win-release-1.1.1"
- sources."is-npm-1.0.0"
- sources."latest-version-1.0.1"
- sources."repeating-1.1.3"
- sources."semver-diff-2.1.0"
- sources."string-length-1.0.1"
- sources."package-json-1.2.0"
- sources."got-3.3.1"
- sources."registry-url-3.1.0"
- sources."duplexify-3.5.1"
- sources."infinity-agent-2.0.3"
- sources."is-redirect-1.0.0"
- sources."is-stream-1.1.0"
- sources."lowercase-keys-1.0.0"
- sources."nested-error-stacks-1.0.2"
- sources."prepend-http-1.0.4"
- sources."read-all-stream-3.1.0"
- sources."timed-out-2.0.0"
- sources."end-of-stream-1.4.0"
- sources."stream-shift-1.0.0"
- sources."rc-1.2.2"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."strip-json-comments-2.0.1"
- sources."is-finite-1.0.2"
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-1.3.4"
+ (sources."xcode-1.0.0" // {
+ dependencies = [
+ sources."uuid-3.0.1"
+ ];
+ })
+ sources."xdg-basedir-2.0.0"
+ sources."xmlbuilder-4.0.0"
+ sources."xmldom-0.1.27"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -28569,28 +29371,96 @@ in
dat = nodeEnv.buildNodePackage {
name = "dat";
packageName = "dat";
- version = "13.9.2";
+ version = "13.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dat/-/dat-13.9.2.tgz";
- sha512 = "05x3ij83al1f0r7fiaq788q4k81vlbmydsa1g829pq0q6795p57b12mmmx8nvc8khbbv1iphr065c7h3d7kc9ylps39xn1qdg64jz90";
+ url = "https://registry.npmjs.org/dat/-/dat-13.10.0.tgz";
+ sha512 = "05s22v6dv8mgh50m49cadbiw6ykzjl9q81j3zd4zw5zvpj9zl8xbpazw7kbyvzh58rhr6ydl44llghkl24vpn564gqbig3gnxxgmh8z";
};
dependencies = [
+ sources."abstract-random-access-1.1.2"
+ sources."ajv-5.5.2"
+ sources."ansi-diff-stream-1.2.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
+ sources."anymatch-1.3.2"
+ sources."ap-0.1.0"
+ sources."append-tree-2.4.1"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-lru-1.1.1"
+ sources."array-unique-0.2.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-0.9.2"
+ sources."asynckit-0.4.0"
+ sources."atomic-batcher-1.0.2"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bencode-1.0.0"
+ sources."bitfield-rle-2.1.0"
+ (sources."bittorrent-dht-7.10.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."blake2b-2.1.2"
+ sources."blake2b-wasm-1.1.7"
+ sources."body-0.1.0"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."buffer-alloc-unsafe-1.0.0"
+ sources."buffer-equals-1.0.4"
+ sources."buffer-indexof-1.1.1"
+ sources."bulk-write-stream-1.1.3"
sources."bytes-3.0.0"
+ sources."call-me-maybe-1.0.1"
+ sources."caseless-0.12.0"
sources."chalk-2.3.0"
sources."cli-truncate-1.1.0"
+ sources."cliclopts-1.1.1"
+ sources."co-4.6.0"
+ sources."codecs-1.2.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."colors-1.1.2"
+ sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."connections-1.4.2"
+ sources."content-types-0.1.0"
+ sources."core-util-is-1.0.2"
+ sources."corsify-2.1.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."dat-dns-1.3.2"
(sources."dat-doctor-1.3.1" // {
dependencies = [
sources."debug-2.6.9"
sources."lru-2.0.1"
+ sources."pump-1.0.3"
];
})
- sources."dat-encoding-4.0.2"
+ sources."dat-encoding-5.0.1"
+ sources."dat-ignore-2.0.0"
(sources."dat-json-1.0.1" // {
dependencies = [
+ sources."dat-encoding-4.0.2"
sources."debug-2.6.9"
];
})
- (sources."dat-link-resolve-1.1.1" // {
+ (sources."dat-link-resolve-2.1.0" // {
dependencies = [
sources."debug-2.6.9"
];
@@ -28598,63 +29468,22 @@ in
sources."dat-log-1.1.1"
(sources."dat-node-3.5.6" // {
dependencies = [
- (sources."dat-link-resolve-2.1.0" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."dat-encoding-5.0.1"
- sources."varint-5.0.0"
- sources."readable-stream-1.0.34"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
sources."minimist-0.0.8"
- sources."esprima-1.0.4"
- sources."estraverse-1.3.2"
- sources."object-keys-0.4.0"
+ sources."pump-1.0.3"
sources."unordered-set-2.0.0"
+ sources."varint-5.0.0"
];
})
sources."dat-registry-4.0.0"
- sources."debug-3.1.0"
- (sources."neat-log-1.1.2" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."prettier-bytes-1.0.4"
- sources."progress-string-1.2.2"
- (sources."prompt-1.0.0" // {
- dependencies = [
- sources."async-1.0.0"
- ];
- })
- sources."pump-1.0.3"
- sources."rimraf-2.6.2"
- sources."speedometer-1.0.0"
- (sources."subcommand-2.1.0" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- (sources."throttle-1.0.3" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."xtend-4.0.1"
- sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-4.5.0"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."slice-ansi-1.0.0"
- sources."string-width-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
+ sources."dat-secret-storage-4.0.0"
+ sources."dat-storage-1.0.3"
+ sources."dat-swarm-defaults-1.0.0"
sources."datland-swarm-defaults-1.0.2"
+ sources."debug-3.1.0"
+ sources."deep-equal-0.2.2"
+ sources."delayed-stream-1.0.0"
+ sources."directory-index-html-2.1.0"
+ sources."discovery-channel-5.4.7"
(sources."discovery-swarm-4.4.2" // {
dependencies = [
sources."thunky-0.1.0"
@@ -28665,133 +29494,53 @@ in
sources."thunky-0.1.0"
];
})
- sources."minimist-1.2.0"
- sources."thunky-1.0.2"
- sources."ms-2.0.0"
- sources."buffer-equals-1.0.4"
- sources."connections-1.4.2"
- sources."discovery-channel-5.4.6"
- sources."length-prefixed-message-3.0.3"
- sources."to-buffer-1.1.0"
- sources."utp-native-1.6.2"
- (sources."bittorrent-dht-7.8.2" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."pretty-hash-1.0.1"
- sources."bencode-1.0.0"
- sources."inherits-2.0.3"
- sources."k-bucket-3.3.1"
- sources."k-rpc-4.2.1"
- sources."lru-3.1.0"
- sources."randombytes-2.0.5"
- sources."safe-buffer-5.1.1"
- sources."simple-sha1-2.1.0"
- sources."k-rpc-socket-1.7.2"
- sources."rusha-0.8.9"
- sources."varint-3.0.1"
- sources."nan-2.8.0"
- sources."node-gyp-build-3.2.2"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."dns-socket-1.6.2"
+ sources."dns-packet-1.3.1"
+ sources."dns-socket-1.6.3"
sources."dns-txt-2.0.2"
- sources."multicast-dns-6.2.1"
- sources."network-address-1.1.2"
- sources."unordered-set-1.1.0"
- sources."dns-packet-1.2.2"
- sources."ip-1.1.5"
- sources."buffer-indexof-1.1.1"
- sources."toiletdb-1.4.0"
- sources."last-one-wins-1.0.4"
- sources."dat-dns-1.3.2"
- sources."nets-3.2.0"
- sources."call-me-maybe-1.0.1"
- sources."concat-stream-1.6.0"
- sources."typedarray-0.0.6"
- sources."request-2.83.0"
- sources."xhr-2.4.1"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
+ sources."dom-walk-0.1.1"
+ sources."duplexify-3.5.3"
+ sources."ecc-jsbn-0.1.1"
+ sources."end-of-stream-1.4.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
sources."fast-deep-equal-1.0.0"
sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."global-4.3.2"
- sources."is-function-1.0.1"
- sources."parse-headers-2.0.1"
- sources."min-document-2.19.0"
- sources."process-0.5.2"
- sources."dom-walk-0.1.1"
+ sources."fd-read-stream-1.1.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
+ sources."flat-tree-1.6.0"
sources."for-each-0.3.2"
- sources."trim-0.0.1"
- sources."random-access-memory-2.4.0"
- sources."dat-ignore-2.0.0"
- (sources."dat-storage-1.0.3" // {
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."from2-2.3.0"
+ sources."fs.realpath-1.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."global-4.3.2"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-flag-2.0.0"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-methods-0.1.0"
+ sources."http-signature-1.2.0"
+ (sources."hypercore-6.12.0" // {
dependencies = [
- sources."xtend-2.1.2"
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
+ sources."varint-5.0.0"
];
})
- sources."dat-swarm-defaults-1.0.0"
- (sources."hyperdrive-9.12.0" // {
+ sources."hypercore-protocol-6.5.2"
+ (sources."hyperdrive-9.12.2" // {
dependencies = [
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
sources."varint-4.0.1"
];
})
@@ -28801,48 +29550,103 @@ in
sources."debug-2.6.9"
];
})
- (sources."mirror-folder-2.1.1" // {
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."ip-1.1.5"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-function-1.0.1"
+ sources."is-glob-2.0.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-string-1.0.4"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isobject-2.1.0"
+ sources."isstream-0.1.2"
+ sources."iterators-0.1.0"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."k-bucket-3.3.1"
+ sources."k-rpc-4.2.1"
+ sources."k-rpc-socket-1.7.2"
+ sources."kind-of-3.2.2"
+ sources."last-one-wins-1.0.4"
+ sources."length-prefixed-message-3.0.3"
+ sources."lodash.flattendeep-4.4.0"
+ sources."lodash.throttle-4.1.1"
+ sources."lru-3.1.0"
+ sources."memory-pager-1.1.0"
+ sources."merkle-tree-stream-3.0.3"
+ sources."micromatch-2.3.11"
+ sources."mime-1.6.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."min-document-2.19.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mirror-folder-2.1.1"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."multi-random-access-2.1.1"
+ sources."multicast-dns-6.2.2"
+ sources."multicb-1.2.2"
+ sources."mute-stream-0.0.7"
+ sources."mutexify-1.2.0"
+ sources."nan-2.8.0"
+ sources."nanoassert-1.1.0"
+ sources."nanobus-3.3.0"
+ sources."nanotiming-1.0.1"
+ sources."ncp-1.0.1"
+ (sources."neat-log-1.1.2" // {
dependencies = [
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
+ sources."ansi-regex-2.1.1"
];
})
- sources."multicb-1.2.2"
+ sources."nets-3.2.0"
+ sources."network-address-1.1.2"
+ sources."node-gyp-build-3.2.2"
+ sources."normalize-path-2.1.1"
+ sources."oauth-sign-0.8.2"
+ sources."object.omit-2.0.1"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."parse-glob-3.0.4"
+ sources."parse-headers-2.0.1"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."pkginfo-0.4.1"
+ sources."preserve-0.2.0"
+ sources."prettier-bytes-1.0.4"
+ sources."pretty-hash-1.0.1"
+ sources."process-0.5.2"
+ sources."process-nextick-args-1.0.7"
+ sources."progress-string-1.2.2"
+ (sources."prompt-1.0.0" // {
+ dependencies = [
+ sources."async-1.0.0"
+ ];
+ })
+ sources."protocol-buffers-encodings-1.1.0"
+ sources."pump-2.0.1"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
(sources."random-access-file-1.8.1" // {
dependencies = [
sources."debug-2.6.9"
];
})
- sources."sparse-bitfield-3.0.3"
- sources."stream-each-1.2.2"
- sources."untildify-3.0.2"
- sources."anymatch-1.3.2"
- sources."micromatch-2.3.11"
- sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."is-glob-2.0.1"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
+ sources."random-access-memory-2.4.0"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -28852,157 +29656,87 @@ in
})
];
})
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."glob-parent-2.0.0"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
+ sources."read-1.0.7"
+ sources."readable-stream-2.3.3"
+ sources."recursive-watch-1.1.2"
+ sources."regex-cache-0.4.4"
sources."remove-trailing-separator-1.1.0"
- (sources."append-tree-2.4.0" // {
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."request-2.83.0"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."rusha-0.8.12"
+ sources."safe-buffer-5.1.1"
+ sources."signed-varint-2.0.1"
+ sources."simple-sha1-2.1.0"
+ sources."siphash24-1.1.0"
+ sources."slice-ansi-1.0.0"
+ sources."sntp-2.1.0"
+ sources."sodium-javascript-0.5.4"
+ sources."sodium-native-2.1.4"
+ sources."sodium-universal-2.0.0"
+ sources."sorted-array-functions-1.1.0"
+ sources."sorted-indexof-1.0.0"
+ sources."sparse-bitfield-3.0.3"
+ sources."speedometer-1.0.0"
+ sources."sshpk-1.13.1"
+ sources."stack-trace-0.0.10"
+ sources."status-logger-3.1.1"
+ sources."stream-collector-1.0.1"
+ sources."stream-each-1.2.2"
+ sources."stream-parser-0.3.1"
+ sources."stream-shift-1.0.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-4.0.0"
+ (sources."subcommand-2.1.0" // {
dependencies = [
- sources."xtend-4.0.1"
+ sources."debug-2.6.9"
];
})
- sources."dat-secret-storage-4.0.0"
- sources."multi-random-access-2.1.1"
- sources."array-lru-1.1.1"
- sources."brfs-1.4.3"
- sources."codecs-1.2.0"
- sources."from2-2.3.0"
- sources."mutexify-1.2.0"
- sources."protocol-buffers-3.2.1"
- sources."quote-stream-1.0.2"
- sources."resolve-1.5.0"
- (sources."static-module-1.5.0" // {
+ sources."supports-color-4.5.0"
+ (sources."throttle-1.0.3" // {
dependencies = [
- sources."quote-stream-0.0.0"
- sources."through2-0.4.2"
+ sources."debug-2.6.9"
];
})
sources."through2-2.0.3"
- sources."buffer-equal-0.0.1"
- sources."path-parse-1.0.5"
- (sources."duplexer2-0.0.2" // {
- dependencies = [
- sources."readable-stream-1.1.14"
- ];
- })
- sources."escodegen-1.3.3"
- sources."falafel-2.1.0"
- sources."has-1.0.1"
- sources."object-inspect-0.4.0"
- sources."shallow-copy-0.0.1"
- (sources."static-eval-0.2.4" // {
- dependencies = [
- sources."escodegen-0.0.28"
- ];
- })
- sources."esutils-1.0.0"
- sources."estraverse-1.5.1"
- sources."esprima-1.1.1"
- sources."source-map-0.1.43"
- sources."amdefine-1.0.1"
- sources."acorn-5.2.1"
- sources."foreach-2.0.5"
- sources."object-keys-1.0.11"
- sources."function-bind-1.1.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."protocol-buffers-schema-3.3.2"
- sources."signed-varint-2.0.1"
- sources."is-property-1.0.2"
- sources."os-homedir-1.0.2"
- sources."abstract-random-access-1.1.2"
- sources."sorted-array-functions-1.0.0"
- sources."duplexify-3.5.1"
- (sources."hypercore-6.11.0" // {
- dependencies = [
- sources."varint-5.0.0"
- ];
- })
- sources."sodium-universal-2.0.0"
- sources."stream-collector-1.0.1"
+ sources."thunky-1.0.2"
+ sources."to-buffer-1.1.0"
+ sources."toiletdb-1.4.1"
+ sources."tough-cookie-2.3.3"
+ sources."township-client-1.3.2"
+ sources."trim-0.0.1"
+ sources."ttl-1.3.1"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
sources."uint64be-2.0.1"
sources."unixify-1.0.0"
- sources."end-of-stream-1.4.0"
- sources."stream-shift-1.0.0"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."atomic-batcher-1.0.2"
- sources."bitfield-rle-2.1.0"
- sources."bulk-write-stream-1.1.3"
- sources."flat-tree-1.6.0"
- sources."hypercore-protocol-6.4.2"
- sources."memory-pager-1.1.0"
- sources."merkle-tree-stream-3.0.3"
sources."unordered-array-remove-1.0.2"
- sources."sorted-indexof-1.0.0"
- sources."sodium-javascript-0.5.4"
- sources."sodium-native-2.1.2"
- sources."blake2b-2.1.2"
- sources."nanoassert-1.1.0"
- sources."siphash24-1.1.0"
- sources."xsalsa20-1.0.2"
- sources."blake2b-wasm-1.1.4"
- sources."base64-to-uint8array-1.0.0"
- sources."corsify-2.1.0"
- sources."directory-index-html-2.1.0"
- sources."mime-1.6.0"
- sources."range-parser-1.2.0"
- sources."http-methods-0.1.0"
- sources."content-types-0.1.0"
- sources."body-0.1.0"
- sources."iterators-0.1.0"
- sources."ap-0.1.0"
- sources."fd-read-stream-1.1.0"
- sources."recursive-watch-1.1.2"
- sources."ttl-1.3.1"
- sources."buffer-alloc-unsafe-1.0.0"
- sources."mkdirp-0.5.1"
- sources."township-client-1.3.2"
- sources."is-string-1.0.4"
- sources."lodash.throttle-4.1.1"
- sources."nanobus-3.3.0"
- sources."status-logger-3.1.1"
- sources."nanotiming-1.0.1"
- sources."ansi-diff-stream-1.2.0"
- sources."lodash.flattendeep-4.4.0"
- sources."wrap-ansi-3.0.1"
- sources."colors-1.1.2"
- sources."pkginfo-0.4.1"
- sources."read-1.0.7"
- sources."revalidator-0.1.8"
+ sources."unordered-set-1.1.0"
+ sources."untildify-3.0.2"
+ sources."util-deprecate-1.0.2"
sources."utile-0.3.0"
+ sources."utp-native-1.6.2"
+ sources."uuid-3.2.1"
+ sources."varint-3.0.1"
+ sources."verror-1.10.0"
(sources."winston-2.1.1" // {
dependencies = [
sources."colors-1.0.3"
sources."pkginfo-0.3.1"
];
})
- sources."mute-stream-0.0.7"
- sources."async-0.9.2"
- sources."deep-equal-0.2.2"
- sources."i-0.3.6"
- sources."ncp-1.0.1"
- sources."cycle-1.0.3"
- sources."eyes-0.1.8"
- sources."stack-trace-0.0.10"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."cliclopts-1.1.1"
- sources."stream-parser-0.3.1"
+ sources."wrap-ansi-3.0.1"
+ sources."wrappy-1.0.2"
+ sources."xhr-2.4.1"
+ sources."xsalsa20-1.0.2"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -29042,16 +29776,58 @@ in
sha1 = "9b21d9ac5e203295f372ac37df470e9f0854c470";
};
dependencies = [
+ sources."accepts-1.2.13"
+ sources."assert-plus-1.0.0"
+ sources."async-0.9.2"
+ sources."better-curry-1.6.0"
+ sources."binaryheap-0.0.3"
+ sources."bindings-1.3.0"
sources."bluebird-2.9.9"
sources."bottleneck-1.5.3"
+ sources."buffercursor-0.0.12"
+ sources."colors-0.6.2"
+ sources."combined-stream-0.0.7"
+ sources."component-emitter-1.1.2"
+ sources."content-disposition-0.5.0"
+ sources."cookie-0.1.2"
+ sources."cookie-signature-1.0.5"
+ sources."cookiejar-2.0.1"
+ sources."core-util-is-1.0.2"
+ sources."crc-3.2.1"
+ sources."cycle-1.0.3"
+ sources."debug-2.1.3"
+ sources."delayed-stream-0.0.5"
+ sources."depd-1.0.1"
+ sources."destroy-1.0.3"
+ sources."duplexer-0.1.1"
+ sources."ee-first-1.1.0"
+ sources."es5class-2.3.1"
+ sources."escape-html-1.0.1"
+ sources."etag-1.5.1"
sources."event-stream-3.2.2"
+ sources."eventemitter3-0.1.6"
(sources."express-4.11.2" // {
dependencies = [
- sources."mime-types-2.0.14"
sources."mime-db-1.12.0"
+ sources."mime-types-2.0.14"
];
})
+ sources."extend-1.2.1"
+ sources."extsprintf-1.4.0"
+ sources."eyes-0.1.8"
+ sources."faye-websocket-0.11.1"
+ sources."finalhandler-0.3.3"
+ sources."form-data-0.1.3"
+ sources."formidable-1.0.14"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.2.4"
+ sources."from-0.1.7"
sources."hiredis-0.4.1"
+ sources."http-parser-js-0.4.9"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."ipaddr.js-1.0.5"
+ sources."isarray-0.0.1"
(sources."json-rpc2-0.8.1" // {
dependencies = [
sources."debug-1.0.5"
@@ -29059,112 +29835,70 @@ in
sources."ms-2.0.0"
];
})
+ sources."jsonparse-0.0.6"
sources."lodash-3.1.0"
+ sources."map-stream-0.1.0"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-0.0.2"
+ sources."methods-1.1.2"
+ sources."mime-1.2.11"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimist-0.0.10"
+ sources."ms-0.7.0"
+ sources."nan-2.8.0"
(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"
];
})
- sources."native-dns-packet-0.1.1"
- sources."nconf-0.7.1"
- sources."properties-1.2.1"
- sources."redis-0.12.1"
- sources."string-2.0.1"
- (sources."winston-0.8.0" // {
- dependencies = [
- sources."async-0.2.10"
- ];
- })
- (sources."superagent-0.21.0" // {
- dependencies = [
- sources."qs-1.2.0"
- sources."methods-1.0.1"
- ];
- })
- sources."through-2.3.8"
- sources."duplexer-0.1.1"
- sources."from-0.1.7"
- sources."map-stream-0.1.0"
- sources."pause-stream-0.0.11"
- sources."split-0.3.3"
- sources."stream-combiner-0.0.4"
- sources."accepts-1.2.13"
- sources."content-disposition-0.5.0"
- sources."cookie-signature-1.0.5"
- sources."debug-2.1.3"
- sources."depd-1.0.1"
- sources."escape-html-1.0.1"
- sources."etag-1.5.1"
- sources."finalhandler-0.3.3"
- sources."fresh-0.2.4"
- sources."media-typer-0.3.0"
- sources."methods-1.1.2"
- sources."on-finished-2.2.1"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.3"
- sources."proxy-addr-1.0.10"
- sources."qs-2.3.3"
- sources."range-parser-1.0.3"
- sources."send-0.11.1"
- sources."serve-static-1.8.1"
- sources."type-is-1.5.7"
- sources."vary-1.0.1"
- sources."cookie-0.1.2"
- sources."merge-descriptors-0.0.2"
- sources."utils-merge-1.0.0"
- sources."mime-types-2.1.17"
- sources."negotiator-0.5.3"
- sources."mime-db-1.30.0"
- sources."ms-0.7.0"
- sources."crc-3.2.1"
- sources."ee-first-1.1.0"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.0.5"
- sources."destroy-1.0.3"
- sources."mime-1.2.11"
- sources."bindings-1.3.0"
- sources."nan-2.8.0"
- sources."jsonparse-0.0.6"
- sources."es5class-2.3.1"
- sources."faye-websocket-0.11.1"
- sources."eventemitter3-0.1.6"
- sources."better-curry-1.6.0"
- sources."websocket-driver-0.7.0"
- sources."http-parser-js-0.4.9"
- sources."websocket-extensions-0.1.3"
(sources."native-dns-cache-git+https://github.com/okTurtles/native-dns-cache.git#8714196bb9223cc9a4064a4fddf9e82ec50b7d4d" // {
dependencies = [
sources."native-dns-packet-git+https://github.com/okTurtles/native-dns-packet.git#307e77a47ebba57a5ae9118a284e916e5ebb305a"
];
})
- sources."binaryheap-0.0.3"
- sources."buffercursor-0.0.12"
- sources."verror-1.10.0"
- sources."assert-plus-1.0.0"
- sources."core-util-is-1.0.2"
- sources."extsprintf-1.4.0"
- sources."async-0.9.2"
- sources."ini-1.3.5"
+ sources."native-dns-packet-0.1.1"
+ sources."nconf-0.7.1"
+ sources."negotiator-0.5.3"
+ sources."on-finished-2.2.1"
sources."optimist-0.6.1"
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- sources."colors-0.6.2"
- sources."cycle-1.0.3"
- sources."eyes-0.1.8"
+ sources."parseurl-1.3.2"
+ sources."path-to-regexp-0.1.3"
+ sources."pause-stream-0.0.11"
sources."pkginfo-0.3.1"
- sources."stack-trace-0.0.10"
- sources."formidable-1.0.14"
- sources."component-emitter-1.1.2"
- sources."cookiejar-2.0.1"
- sources."reduce-component-1.0.1"
- sources."extend-1.2.1"
- sources."form-data-0.1.3"
+ sources."properties-1.2.1"
+ sources."proxy-addr-1.0.10"
+ sources."qs-2.3.3"
+ sources."range-parser-1.0.3"
sources."readable-stream-1.0.27-1"
- sources."combined-stream-0.0.7"
- sources."delayed-stream-0.0.5"
- sources."isarray-0.0.1"
+ sources."redis-0.12.1"
+ sources."reduce-component-1.0.1"
+ sources."send-0.11.1"
+ sources."serve-static-1.8.1"
+ sources."split-0.3.3"
+ sources."stack-trace-0.0.10"
+ sources."stream-combiner-0.0.4"
+ sources."string-2.0.1"
sources."string_decoder-0.10.31"
- sources."inherits-2.0.3"
+ (sources."superagent-0.21.0" // {
+ dependencies = [
+ sources."methods-1.0.1"
+ sources."qs-1.2.0"
+ ];
+ })
+ sources."through-2.3.8"
+ sources."type-is-1.5.7"
+ sources."utils-merge-1.0.0"
+ sources."vary-1.0.1"
+ sources."verror-1.10.0"
+ sources."websocket-driver-0.7.0"
+ sources."websocket-extensions-0.1.3"
+ (sources."winston-0.8.0" // {
+ dependencies = [
+ sources."async-0.2.10"
+ ];
+ })
+ sources."wordwrap-0.0.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -29185,20 +29919,39 @@ in
};
dependencies = [
sources."JSONStream-0.8.4"
+ sources."abstract-leveldown-0.12.4"
sources."basic-auth-1.1.0"
- sources."cookie-signature-1.0.6"
+ sources."bindings-1.2.1"
+ sources."bl-0.8.2"
+ sources."bytewise-1.1.0"
+ sources."bytewise-core-1.2.3"
+ sources."cookie-signature-1.1.0"
+ sources."core-util-is-1.0.2"
sources."cors-2.8.4"
+ sources."deferred-leveldown-0.2.0"
sources."docker-parse-image-3.0.1"
- sources."end-of-stream-1.4.0"
+ sources."duplexify-3.5.3"
+ sources."end-of-stream-1.4.1"
+ (sources."errno-0.1.6" // {
+ dependencies = [
+ sources."prr-1.0.1"
+ ];
+ })
sources."from2-1.3.0"
(sources."fs-blob-store-5.2.1" // {
dependencies = [
- sources."readable-stream-2.3.3"
sources."isarray-1.0.0"
+ sources."readable-stream-2.3.3"
sources."string_decoder-1.0.3"
];
})
+ sources."inherits-2.0.3"
+ sources."isarray-0.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonparse-0.0.5"
sources."level-0.18.0"
+ sources."level-packager-0.18.0"
+ sources."level-post-1.0.5"
(sources."level-sublevel-6.6.1" // {
dependencies = [
(sources."levelup-0.19.1" // {
@@ -29206,8 +29959,8 @@ in
sources."xtend-3.0.0"
];
})
- sources."readable-stream-1.0.34"
sources."looper-3.0.0"
+ sources."readable-stream-1.0.34"
];
})
sources."leveldown-0.10.6"
@@ -29219,6 +29972,9 @@ in
];
})
sources."lexicographic-integer-1.1.0"
+ sources."looper-2.0.0"
+ sources."lru-cache-2.7.3"
+ sources."ltgt-2.1.3"
(sources."memdown-0.10.2" // {
dependencies = [
sources."ltgt-1.0.2"
@@ -29230,87 +29986,69 @@ in
sources."minimist-0.0.8"
];
})
+ sources."murl-0.4.1"
+ sources."nan-2.1.0"
(sources."ndjson-1.5.0" // {
dependencies = [
- sources."minimist-1.2.0"
- sources."split2-2.2.0"
- sources."through2-2.0.3"
- sources."readable-stream-2.3.3"
sources."isarray-1.0.0"
+ sources."minimist-1.2.0"
+ sources."readable-stream-2.3.3"
+ sources."split2-2.2.0"
sources."string_decoder-1.0.3"
+ sources."through2-2.0.3"
];
})
+ sources."network-address-0.0.5"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."process-nextick-args-1.0.7"
+ sources."protein-0.5.0"
+ sources."prr-0.0.0"
+ sources."pull-cat-1.1.11"
+ sources."pull-level-2.0.3"
+ sources."pull-live-1.0.1"
+ sources."pull-pushable-2.1.2"
+ sources."pull-stream-3.6.1"
+ sources."pull-window-2.1.4"
sources."pump-1.0.3"
- sources."pumpify-1.3.5"
+ (sources."pumpify-1.4.0" // {
+ dependencies = [
+ sources."pump-2.0.1"
+ ];
+ })
+ sources."readable-stream-1.1.14"
sources."relative-date-1.1.3"
sources."root-2.0.0"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.1.1"
sources."sorted-union-stream-1.0.2"
sources."split2-0.2.1"
sources."stream-collector-1.0.1"
+ sources."stream-shift-1.0.0"
+ sources."stream-to-pull-stream-1.7.2"
+ sources."string_decoder-0.10.31"
(sources."tar-stream-1.5.5" // {
dependencies = [
sources."bl-1.2.1"
- sources."readable-stream-2.3.3"
sources."isarray-1.0.0"
+ sources."readable-stream-2.3.3"
sources."string_decoder-1.0.3"
];
})
+ sources."through-2.3.8"
(sources."through2-0.6.5" // {
dependencies = [
sources."readable-stream-1.0.34"
];
})
sources."thunky-0.1.0"
- sources."xtend-4.0.1"
- sources."jsonparse-0.0.5"
- sources."through-2.3.8"
- sources."object-assign-4.1.1"
- sources."vary-1.1.2"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."inherits-2.0.3"
- sources."readable-stream-1.1.14"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."duplexify-3.5.1"
- sources."lru-cache-2.7.3"
- sources."stream-shift-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."util-deprecate-1.0.2"
- sources."level-packager-0.18.0"
- sources."bytewise-1.1.0"
- sources."ltgt-2.1.3"
- sources."pull-level-2.0.3"
- sources."pull-stream-3.6.1"
- sources."typewiselite-1.0.0"
- sources."bytewise-core-1.2.3"
sources."typewise-1.0.3"
sources."typewise-core-1.2.0"
- sources."bl-0.8.2"
- sources."deferred-leveldown-0.2.0"
- (sources."errno-0.1.6" // {
- dependencies = [
- sources."prr-1.0.1"
- ];
- })
- sources."prr-0.0.0"
- sources."semver-5.1.1"
- sources."abstract-leveldown-0.12.4"
- sources."level-post-1.0.5"
- sources."pull-cat-1.1.11"
- sources."pull-live-1.0.1"
- sources."pull-pushable-2.1.1"
- sources."pull-window-2.1.4"
- sources."stream-to-pull-stream-1.7.2"
- sources."looper-2.0.0"
- sources."bindings-1.2.1"
- sources."nan-2.1.0"
- sources."json-stringify-safe-5.0.1"
- sources."murl-0.4.1"
- sources."protein-0.5.0"
- sources."network-address-0.0.5"
+ sources."typewiselite-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."vary-1.1.2"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -29331,86 +30069,85 @@ in
};
dependencies = [
sources."JSONStream-1.3.2"
- sources."async-2.6.0"
- sources."aws4-1.6.0"
- sources."aws-sdk-2.173.0"
- sources."ini-1.3.5"
- sources."optimist-0.6.1"
- (sources."request-2.83.0" // {
- dependencies = [
- sources."punycode-1.4.1"
- ];
- })
- sources."jsonparse-1.3.1"
- sources."through-2.3.8"
- sources."lodash-4.17.4"
- sources."buffer-4.9.1"
- sources."crypto-browserify-1.0.9"
- sources."events-1.1.1"
- sources."jmespath-0.15.0"
- sources."querystring-0.2.0"
- sources."sax-1.2.1"
- sources."url-0.10.3"
- sources."uuid-3.1.0"
- sources."xml2js-0.4.17"
- sources."xmlbuilder-4.2.1"
- sources."base64-js-1.2.1"
- sources."ieee754-1.1.8"
- sources."isarray-1.0.0"
- sources."punycode-1.3.2"
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- sources."aws-sign2-0.7.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."safe-buffer-5.1.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-2.6.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sdk-2.187.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."base64-js-1.2.1"
+ sources."bcrypt-pbkdf-1.0.1"
sources."boom-4.3.1"
+ sources."buffer-4.9.1"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.5"
+ sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
];
})
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."core-util-is-1.0.2"
- sources."asn1-0.2.3"
sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
+ sources."delayed-stream-1.0.0"
sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
+ sources."events-1.1.1"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."getpass-0.1.7"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-signature-1.2.0"
+ sources."ieee754-1.1.8"
+ sources."ini-1.3.5"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jmespath-0.15.0"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonparse-1.3.1"
+ sources."jsprim-1.4.1"
+ sources."lodash-4.17.4"
sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimist-0.0.10"
+ sources."oauth-sign-0.8.2"
+ sources."optimist-0.6.1"
+ sources."performance-now-2.1.0"
+ sources."punycode-1.3.2"
+ sources."qs-6.5.1"
+ sources."querystring-0.2.0"
+ (sources."request-2.83.0" // {
+ dependencies = [
+ sources."punycode-1.4.1"
+ ];
+ })
+ sources."safe-buffer-5.1.1"
+ sources."sax-1.2.1"
+ sources."sntp-2.1.0"
+ sources."sshpk-1.13.1"
+ sources."stringstream-0.0.5"
+ sources."through-2.3.8"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."url-0.10.3"
+ sources."uuid-3.1.0"
+ sources."verror-1.10.0"
+ sources."wordwrap-0.0.3"
+ sources."xml2js-0.4.17"
+ sources."xmlbuilder-4.2.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -29430,143 +30167,148 @@ in
sha512 = "1rcghwzkjcs25iz7dvfjxkwkn35jd7vyfs9idwncz2zvasyy1nkkpg6rcgilciwppccd29j2yrdzp95nddnh8lpqz41aiw2z0v6wzg6";
};
dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."anymatch-1.3.2"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-unique-0.2.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."async-each-1.0.1"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."binary-extensions-1.11.0"
(sources."binstall-1.2.0" // {
dependencies = [
sources."chalk-1.1.3"
- sources."supports-color-2.0.0"
sources."minimist-0.0.8"
+ sources."supports-color-2.0.0"
];
})
+ sources."block-stream-0.0.9"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."caseless-0.11.0"
(sources."chalk-2.1.0" // {
dependencies = [
sources."ansi-styles-3.2.0"
];
})
sources."chokidar-1.6.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
sources."cross-spawn-4.0.0"
+ sources."cryptiles-2.0.5"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ sources."extend-3.0.1"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
+ sources."find-elm-dependencies-1.0.2"
sources."find-parent-dir-0.3.0"
sources."firstline-1.2.1"
- sources."fs-extra-0.30.0"
- sources."fsevents-1.1.2"
- sources."glob-7.1.2"
- sources."lodash-4.13.1"
- sources."minimist-1.2.0"
- sources."murmur-hash-js-1.0.0"
- (sources."node-elm-compiler-4.3.3" // {
- dependencies = [
- sources."lodash-4.14.2"
- sources."firstline-1.2.0"
- sources."rimraf-2.2.8"
- ];
- })
- sources."split-1.0.1"
- sources."supports-color-4.2.0"
- sources."xmlbuilder-8.2.2"
- sources."request-2.79.0"
- sources."tar-2.2.1"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.6.0"
- sources."caseless-0.11.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
- sources."har-validator-2.0.6"
- sources."hawk-3.1.3"
- sources."http-signature-1.1.1"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."qs-6.3.2"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.4.3"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."commander-2.12.2"
- sources."is-my-json-valid-2.17.1"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."ansi-regex-2.1.1"
+ sources."fs-extra-0.30.0"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.1.2"
+ sources."fstream-1.0.11"
sources."generate-function-2.0.0"
sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."har-validator-2.0.6"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-2.0.0"
+ sources."hawk-3.1.3"
sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."assert-plus-0.2.0"
+ sources."http-signature-1.1.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-my-json-valid-2.17.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-property-1.0.2"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-2.1.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-2.4.0"
+ sources."jsonpointer-4.0.1"
(sources."jsprim-1.4.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
- (sources."sshpk-1.13.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."core-util-is-1.0.2"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."block-stream-0.0.9"
- sources."fstream-1.0.11"
- sources."inherits-2.0.3"
- sources."graceful-fs-4.1.11"
- sources."mkdirp-0.5.1"
- sources."rimraf-2.6.2"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."path-is-absolute-1.0.1"
- sources."readdirp-2.1.0"
- sources."micromatch-2.3.11"
- sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
sources."kind-of-3.2.2"
+ sources."klaw-1.3.1"
+ sources."lodash-4.13.1"
+ sources."lru-cache-4.1.1"
+ sources."micromatch-2.3.11"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.5.1"
+ sources."murmur-hash-js-1.0.0"
+ sources."nan-2.8.0"
+ (sources."node-elm-compiler-4.3.3" // {
+ dependencies = [
+ sources."firstline-1.2.0"
+ sources."lodash-4.14.2"
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."normalize-path-2.1.1"
+ sources."oauth-sign-0.8.2"
sources."object.omit-2.0.1"
+ sources."once-1.4.0"
+ sources."os-tmpdir-1.0.2"
sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
+ sources."path-is-absolute-1.0.1"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
+ sources."process-nextick-args-1.0.7"
+ sources."pseudomap-1.0.2"
+ sources."punycode-1.4.1"
+ sources."qs-6.3.2"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -29576,46 +30318,41 @@ in
})
];
})
- sources."repeat-string-1.6.1"
- sources."isarray-1.0.0"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."binary-extensions-1.11.0"
- sources."minimatch-3.0.4"
sources."readable-stream-2.3.3"
- sources."set-immediate-shim-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."process-nextick-args-1.0.7"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."request-2.79.0"
+ sources."rimraf-2.6.2"
sources."safe-buffer-5.1.1"
+ sources."set-immediate-shim-1.0.1"
+ sources."sntp-1.0.9"
+ sources."split-1.0.1"
+ (sources."sshpk-1.13.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."lru-cache-4.1.1"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."isexe-2.0.0"
- sources."jsonfile-2.4.0"
- sources."klaw-1.3.1"
- sources."nan-2.8.0"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."find-elm-dependencies-1.0.2"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-4.2.0"
+ sources."tar-2.2.1"
sources."temp-0.8.3"
- sources."os-tmpdir-1.0.2"
sources."through-2.3.8"
- sources."has-flag-2.0.0"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."which-1.3.0"
+ sources."wrappy-1.0.2"
+ sources."xmlbuilder-8.2.2"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -29635,208 +30372,209 @@ in
sha512 = "06w3hpcnxg63wg262ldhw4s2shyr1f1bvilqshy88i4svamgxk0qzdhhma2rwcwq7qpjwjlr8m1z2qbmqw9faff5f8hl45yj3jxrs3z";
};
dependencies = [
- sources."auto-bind-1.1.0"
- sources."clipboardy-1.2.2"
- sources."conf-1.3.1"
- sources."got-7.1.0"
- sources."has-ansi-3.0.0"
- (sources."import-jsx-1.3.0" // {
- dependencies = [
- sources."has-ansi-2.0.0"
- sources."ansi-regex-2.1.1"
- ];
- })
- (sources."ink-0.3.1" // {
- dependencies = [
- sources."chalk-2.3.0"
- sources."ansi-styles-3.2.0"
- sources."supports-color-4.5.0"
- sources."strip-ansi-4.0.0"
- sources."core-js-1.2.7"
- ];
- })
- sources."ink-text-input-1.1.1"
- sources."lodash.debounce-4.0.8"
- sources."mem-1.1.0"
- (sources."meow-3.7.0" // {
- dependencies = [
- sources."minimist-1.2.0"
- sources."find-up-1.1.2"
- sources."path-exists-2.1.0"
- sources."pify-2.3.0"
- sources."indent-string-2.1.0"
- ];
- })
- sources."skin-tone-1.0.0"
- sources."arch-2.1.0"
- sources."execa-0.8.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."signal-exit-3.0.2"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."dot-prop-4.2.0"
- sources."env-paths-1.0.0"
- sources."make-dir-1.1.0"
- sources."pkg-up-2.0.0"
- sources."write-file-atomic-2.3.0"
- sources."is-obj-1.0.1"
- sources."pify-3.0.0"
- sources."find-up-2.1.0"
- sources."locate-path-2.0.0"
- sources."p-locate-2.0.0"
- sources."path-exists-3.0.0"
- sources."p-limit-1.1.0"
- sources."graceful-fs-4.1.11"
- sources."imurmurhash-0.1.4"
- sources."decompress-response-3.3.0"
- sources."duplexer3-0.1.4"
- sources."is-plain-obj-1.1.0"
- sources."is-retry-allowed-1.1.0"
- sources."isurl-1.0.0"
- sources."lowercase-keys-1.0.0"
- sources."p-cancelable-0.3.0"
- sources."p-timeout-1.2.1"
- sources."safe-buffer-5.1.1"
- sources."timed-out-4.0.1"
- sources."url-parse-lax-1.0.0"
- sources."url-to-options-1.0.1"
- sources."mimic-response-1.0.0"
- sources."has-to-string-tag-x-1.4.1"
- sources."is-object-1.0.1"
- sources."has-symbol-support-x-1.4.1"
- sources."prepend-http-1.0.4"
+ sources."ansi-escapes-3.0.0"
sources."ansi-regex-3.0.0"
+ sources."ansi-styles-2.2.1"
+ sources."arch-2.1.0"
+ sources."array-find-index-1.0.2"
+ sources."arrify-1.0.1"
+ sources."asap-2.0.6"
+ sources."auto-bind-1.2.0"
+ sources."babel-code-frame-6.26.0"
sources."babel-core-6.26.0"
+ sources."babel-generator-6.26.0"
+ sources."babel-helper-builder-react-jsx-6.26.0"
+ sources."babel-helpers-6.24.1"
+ sources."babel-messages-6.23.0"
+ sources."babel-plugin-syntax-jsx-6.18.0"
+ sources."babel-plugin-syntax-object-rest-spread-6.13.0"
sources."babel-plugin-transform-es2015-destructuring-6.23.0"
sources."babel-plugin-transform-object-rest-spread-6.26.0"
sources."babel-plugin-transform-react-jsx-6.24.1"
- sources."caller-path-2.0.0"
- sources."require-from-string-1.2.1"
- sources."resolve-from-3.0.0"
- sources."babel-code-frame-6.26.0"
- sources."babel-generator-6.26.0"
- sources."babel-helpers-6.24.1"
- sources."babel-messages-6.23.0"
sources."babel-register-6.26.0"
sources."babel-runtime-6.26.0"
sources."babel-template-6.26.0"
sources."babel-traverse-6.26.0"
sources."babel-types-6.26.0"
sources."babylon-6.18.0"
- sources."convert-source-map-1.5.1"
- sources."debug-2.6.9"
- sources."json5-0.5.1"
- sources."lodash-4.17.4"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."private-0.1.8"
- sources."slash-1.0.0"
- sources."source-map-0.5.7"
- sources."chalk-1.1.3"
- sources."esutils-2.0.2"
- sources."js-tokens-3.0.2"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."detect-indent-4.0.0"
- sources."jsesc-1.3.0"
- sources."trim-right-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."number-is-nan-1.0.1"
- sources."core-js-2.5.3"
- sources."home-or-tmp-2.0.0"
- sources."mkdirp-0.5.1"
- sources."source-map-support-0.4.18"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."minimist-0.0.8"
- sources."regenerator-runtime-0.11.1"
- sources."globals-9.18.0"
- sources."invariant-2.2.2"
- sources."loose-envify-1.3.1"
- sources."to-fast-properties-1.0.3"
- sources."ms-2.0.0"
- sources."brace-expansion-1.1.8"
sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."babel-plugin-syntax-object-rest-spread-6.13.0"
- sources."babel-helper-builder-react-jsx-6.26.0"
- sources."babel-plugin-syntax-jsx-6.18.0"
+ sources."brace-expansion-1.1.8"
+ sources."builtin-modules-1.1.1"
sources."caller-callsite-2.0.0"
+ sources."caller-path-2.0.0"
sources."callsites-2.0.0"
- sources."arrify-1.0.1"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ sources."chalk-1.1.3"
+ sources."cli-cursor-2.1.0"
+ sources."clipboardy-1.2.2"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."concat-map-0.0.1"
+ sources."conf-1.4.0"
+ sources."convert-source-map-1.5.1"
+ sources."core-js-2.5.3"
+ sources."cross-spawn-5.1.0"
+ sources."currently-unhandled-0.4.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."decompress-response-3.3.0"
+ sources."detect-indent-4.0.0"
+ sources."dot-prop-4.2.0"
+ sources."duplexer3-0.1.4"
+ sources."encoding-0.1.12"
+ sources."env-paths-1.0.0"
+ sources."error-ex-1.3.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."esutils-2.0.2"
+ sources."execa-0.8.0"
+ sources."fbjs-0.8.16"
+ sources."find-up-2.1.0"
+ sources."get-stdin-4.0.1"
+ sources."get-stream-3.0.0"
+ sources."globals-9.18.0"
+ sources."got-7.1.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-3.0.0"
+ sources."has-flag-2.0.0"
+ sources."has-symbol-support-x-1.4.1"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."home-or-tmp-2.0.0"
+ sources."hosted-git-info-2.5.0"
+ sources."iconv-lite-0.4.19"
+ (sources."import-jsx-1.3.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."has-ansi-2.0.0"
+ ];
+ })
+ sources."imurmurhash-0.1.4"
sources."indent-string-3.2.0"
+ (sources."ink-0.3.1" // {
+ dependencies = [
+ sources."ansi-styles-3.2.0"
+ sources."chalk-2.3.0"
+ sources."core-js-1.2.7"
+ sources."strip-ansi-4.0.0"
+ sources."supports-color-4.5.0"
+ ];
+ })
+ sources."ink-text-input-1.1.1"
+ sources."invariant-2.2.2"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-object-1.0.1"
+ sources."is-plain-obj-1.1.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-utf8-0.2.1"
+ sources."isexe-2.0.0"
+ sources."isomorphic-fetch-2.2.1"
+ sources."isurl-1.0.0"
+ sources."js-tokens-3.0.2"
+ sources."jsesc-1.3.0"
+ sources."json5-0.5.1"
+ sources."load-json-file-1.1.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.4"
+ sources."lodash.debounce-4.0.8"
sources."lodash.flattendeep-4.4.0"
sources."lodash.isequal-4.5.0"
sources."log-update-2.3.0"
- sources."prop-types-15.6.0"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."ansi-escapes-3.0.0"
- sources."cli-cursor-2.1.0"
- sources."wrap-ansi-3.0.1"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."mimic-fn-1.1.0"
- sources."string-width-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."fbjs-0.8.16"
- sources."object-assign-4.1.1"
- sources."isomorphic-fetch-2.2.1"
- sources."promise-7.3.1"
- sources."setimmediate-1.0.5"
- sources."ua-parser-js-0.7.17"
- sources."node-fetch-1.7.3"
- sources."whatwg-fetch-2.0.3"
- sources."encoding-0.1.12"
- sources."iconv-lite-0.4.19"
- sources."asap-2.0.6"
- sources."camelcase-keys-2.1.0"
- sources."decamelize-1.2.0"
+ sources."loose-envify-1.3.1"
sources."loud-rejection-1.6.0"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
sources."map-obj-1.0.1"
+ sources."mem-1.1.0"
+ (sources."meow-3.7.0" // {
+ dependencies = [
+ sources."find-up-1.1.2"
+ sources."indent-string-2.1.0"
+ sources."minimist-1.2.0"
+ sources."path-exists-2.1.0"
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."mimic-fn-1.1.0"
+ sources."mimic-response-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."node-fetch-1.7.3"
sources."normalize-package-data-2.4.0"
+ sources."npm-run-path-2.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."object-assign-4.1.1"
+ sources."onetime-2.0.1"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."p-cancelable-0.3.0"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-timeout-1.2.1"
+ sources."p-try-1.0.0"
+ sources."parse-json-2.2.0"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-2.0.1"
+ sources."path-type-1.1.0"
+ sources."pify-3.0.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pkg-up-2.0.0"
+ sources."prepend-http-1.0.4"
+ sources."private-0.1.8"
+ sources."promise-7.3.1"
+ sources."prop-types-15.6.0"
+ sources."pseudomap-1.0.2"
+ sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
sources."redent-1.0.0"
- sources."trim-newlines-1.0.0"
- sources."camelcase-2.1.1"
- sources."currently-unhandled-0.4.1"
- sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."semver-5.4.1"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
+ sources."regenerator-runtime-0.11.1"
+ sources."repeating-2.0.1"
+ sources."require-from-string-1.2.1"
+ sources."resolve-from-3.0.0"
+ sources."restore-cursor-2.0.0"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."setimmediate-1.0.5"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."skin-tone-1.0.0"
+ sources."slash-1.0.0"
+ sources."source-map-0.5.7"
+ sources."source-map-support-0.4.18"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
- sources."read-pkg-1.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."load-json-file-1.1.0"
- sources."path-type-1.1.0"
- sources."parse-json-2.2.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-3.0.1"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."is-utf8-0.2.1"
+ sources."strip-eof-1.0.0"
sources."strip-indent-1.0.1"
- sources."get-stdin-4.0.1"
+ sources."supports-color-2.0.0"
+ sources."timed-out-4.0.1"
+ sources."to-fast-properties-1.0.3"
+ sources."trim-newlines-1.0.0"
+ sources."trim-right-1.0.1"
+ sources."ua-parser-js-0.7.17"
sources."unicode-emoji-modifier-base-1.0.0"
+ sources."url-parse-lax-1.0.0"
+ sources."url-to-options-1.0.1"
+ sources."validate-npm-package-license-3.0.1"
+ sources."whatwg-fetch-2.0.3"
+ sources."which-1.3.0"
+ sources."wrap-ansi-3.0.1"
+ sources."write-file-atomic-2.3.0"
+ sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -29850,160 +30588,161 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "4.13.1";
+ version = "4.16.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-4.13.1.tgz";
- sha512 = "1zhzyi5ajjmgx37845pnkkvq366jzpnfsq3q52ai98xg3jmf813yrf919r28j7gh3irnm921r553yrh0aghsx8srkcb3d0ikmbma8jh";
+ url = "https://registry.npmjs.org/eslint/-/eslint-4.16.0.tgz";
+ sha512 = "330nda1zwh0sqsxsfmlmhbg903gz6n9n4zy870gc2k95wrg1bc7jysfyn98nk2bd8p821xszpygp1vs1i7csapxfb3q2dp1n3hxamb1";
};
dependencies = [
+ sources."acorn-5.3.0"
+ (sources."acorn-jsx-3.0.1" // {
+ dependencies = [
+ sources."acorn-3.3.0"
+ ];
+ })
sources."ajv-5.5.2"
+ sources."ajv-keywords-2.1.1"
+ sources."ansi-escapes-3.0.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."argparse-1.0.9"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."arrify-1.0.1"
(sources."babel-code-frame-6.26.0" // {
dependencies = [
sources."chalk-1.1.3"
sources."strip-ansi-3.0.1"
];
})
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."caller-path-0.1.0"
+ sources."callsites-0.2.0"
(sources."chalk-2.3.0" // {
dependencies = [
sources."ansi-styles-3.2.0"
sources."supports-color-4.5.0"
];
})
+ sources."chardet-0.4.2"
+ sources."circular-json-0.3.3"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ sources."co-4.6.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."concat-map-0.0.1"
sources."concat-stream-1.6.0"
+ sources."core-util-is-1.0.2"
sources."cross-spawn-5.1.0"
sources."debug-3.1.0"
- sources."doctrine-2.0.2"
+ sources."deep-is-0.1.3"
+ sources."del-2.2.2"
+ sources."doctrine-2.1.0"
+ sources."escape-string-regexp-1.0.5"
sources."eslint-scope-3.7.1"
+ sources."eslint-visitor-keys-1.0.0"
sources."espree-3.5.2"
+ sources."esprima-4.0.0"
sources."esquery-1.0.0"
+ sources."esrecurse-4.2.0"
sources."estraverse-4.2.0"
sources."esutils-2.0.2"
+ sources."external-editor-2.1.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."figures-2.0.0"
sources."file-entry-cache-2.0.0"
+ sources."flat-cache-1.3.0"
+ sources."fs.realpath-1.0.0"
sources."functional-red-black-tree-1.0.1"
sources."glob-7.1.2"
- sources."globals-11.1.0"
+ sources."globals-11.2.0"
+ sources."globby-5.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-2.0.0"
+ sources."iconv-lite-0.4.19"
sources."ignore-3.3.7"
sources."imurmurhash-0.1.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
sources."inquirer-3.3.0"
- sources."is-resolvable-1.0.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-path-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.0"
+ sources."is-path-inside-1.0.1"
+ sources."is-promise-2.1.0"
+ sources."is-resolvable-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."js-tokens-3.0.2"
sources."js-yaml-3.10.0"
+ sources."json-schema-traverse-0.3.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."levn-0.3.0"
sources."lodash-4.17.4"
+ sources."lru-cache-4.1.1"
+ sources."mimic-fn-1.1.0"
sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
sources."natural-compare-1.4.0"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
sources."optionator-0.8.2"
+ sources."os-tmpdir-1.0.2"
+ sources."path-is-absolute-1.0.1"
sources."path-is-inside-1.0.2"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
sources."pluralize-7.0.0"
+ sources."prelude-ls-1.1.2"
+ sources."process-nextick-args-1.0.7"
sources."progress-2.0.0"
+ sources."pseudomap-1.0.2"
+ sources."readable-stream-2.3.3"
sources."require-uncached-1.0.3"
- sources."semver-5.4.1"
+ sources."resolve-from-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slice-ansi-1.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
(sources."strip-ansi-4.0.0" // {
dependencies = [
sources."ansi-regex-3.0.0"
];
})
sources."strip-json-comments-2.0.1"
+ sources."supports-color-2.0.0"
sources."table-4.0.2"
sources."text-table-0.2.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."js-tokens-3.0.2"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."inherits-2.0.3"
- sources."typedarray-0.0.6"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."ms-2.0.0"
- sources."esrecurse-4.2.0"
- sources."object-assign-4.1.1"
- sources."acorn-5.2.1"
- (sources."acorn-jsx-3.0.1" // {
- dependencies = [
- sources."acorn-3.3.0"
- ];
- })
- sources."flat-cache-1.3.0"
- sources."circular-json-0.3.3"
- sources."del-2.2.2"
- sources."graceful-fs-4.1.11"
- sources."write-0.2.1"
- sources."globby-5.0.0"
- sources."is-path-cwd-1.0.0"
- sources."is-path-in-cwd-1.0.0"
- sources."pify-2.3.0"
- sources."pinkie-promise-2.0.1"
- sources."rimraf-2.6.2"
- sources."array-union-1.0.2"
- sources."arrify-1.0.1"
- sources."array-uniq-1.0.3"
- sources."is-path-inside-1.0.1"
- sources."pinkie-2.0.4"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."ansi-escapes-3.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."external-editor-2.1.0"
- sources."figures-2.0.0"
- sources."mute-stream-0.0.7"
- sources."run-async-2.3.0"
- sources."rx-lite-4.0.8"
- sources."rx-lite-aggregates-4.0.8"
- sources."string-width-2.1.1"
sources."through-2.3.8"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."signal-exit-3.0.2"
- sources."mimic-fn-1.1.0"
- sources."chardet-0.4.2"
- sources."iconv-lite-0.4.19"
sources."tmp-0.0.33"
- sources."os-tmpdir-1.0.2"
- sources."is-promise-2.1.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."argparse-1.0.9"
- sources."esprima-4.0.0"
- sources."sprintf-js-1.0.3"
- sources."prelude-ls-1.1.2"
sources."type-check-0.3.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."minimist-0.0.8"
- sources."deep-is-0.1.3"
+ sources."typedarray-0.0.6"
+ sources."util-deprecate-1.0.2"
+ sources."which-1.3.0"
sources."wordwrap-1.0.0"
- sources."fast-levenshtein-2.0.6"
- sources."caller-path-0.1.0"
- sources."resolve-from-1.0.1"
- sources."callsites-0.2.0"
- sources."ajv-keywords-2.1.1"
- sources."slice-ansi-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."write-0.2.1"
+ sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -30017,19 +30756,62 @@ in
eslint_d = nodeEnv.buildNodePackage {
name = "eslint_d";
packageName = "eslint_d";
- version = "5.2.1";
+ version = "5.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint_d/-/eslint_d-5.2.1.tgz";
- sha512 = "34bi29ay098nrgv3vqardbkc6w1q9g7bf8231919ivnr8br41w0s9r91j97chpx0mnqca8d41qlrqxy34mwd37qnlyk1iplzm7m38nl";
+ url = "https://registry.npmjs.org/eslint_d/-/eslint_d-5.2.2.tgz";
+ sha512 = "32h5278qn4pnlm2wl573mhg112diqpiazr07vxj0la2qwc3a1dlva5gsbyypnbnsis7r05kcx173qhb4wdl9w8spc7g3zk1575ciirc";
};
dependencies = [
+ sources."acorn-5.3.0"
+ (sources."acorn-jsx-3.0.1" // {
+ dependencies = [
+ sources."acorn-3.3.0"
+ ];
+ })
+ sources."ajv-5.5.2"
+ sources."ajv-keywords-2.1.1"
+ sources."ansi-escapes-3.0.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."argparse-1.0.9"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."arrify-1.0.1"
+ (sources."babel-code-frame-6.26.0" // {
+ dependencies = [
+ sources."chalk-1.1.3"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."caller-path-0.1.0"
+ sources."callsites-0.2.0"
(sources."chalk-1.1.3" // {
dependencies = [
sources."supports-color-2.0.0"
];
})
- (sources."eslint-4.13.1" // {
+ sources."chardet-0.4.2"
+ sources."circular-json-0.3.3"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ sources."co-4.6.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."core-util-is-1.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."debug-3.1.0"
+ sources."deep-is-0.1.3"
+ sources."del-2.2.2"
+ sources."doctrine-2.1.0"
+ sources."escape-string-regexp-1.0.5"
+ (sources."eslint-4.16.0" // {
dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
(sources."chalk-2.3.0" // {
dependencies = [
sources."supports-color-4.5.0"
@@ -30037,154 +30819,112 @@ in
})
sources."strip-ansi-4.0.0"
sources."supports-color-2.0.0"
- sources."ansi-styles-3.2.0"
- sources."ansi-regex-3.0.0"
];
})
+ sources."eslint-scope-3.7.1"
+ sources."eslint-visitor-keys-1.0.0"
+ sources."espree-3.5.2"
+ sources."esprima-4.0.0"
+ sources."esquery-1.0.0"
+ sources."esrecurse-4.2.0"
+ sources."estraverse-4.2.0"
+ sources."esutils-2.0.2"
+ sources."external-editor-2.1.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."figures-2.0.0"
+ sources."file-entry-cache-2.0.0"
+ sources."flat-cache-1.3.0"
+ sources."fs.realpath-1.0.0"
+ sources."functional-red-black-tree-1.0.1"
+ sources."glob-7.1.2"
+ sources."globals-11.2.0"
+ sources."globby-5.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-2.0.0"
+ sources."iconv-lite-0.4.19"
+ sources."ignore-3.3.7"
+ sources."imurmurhash-0.1.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."inquirer-3.3.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-path-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.0"
+ sources."is-path-inside-1.0.1"
+ sources."is-promise-2.1.0"
+ sources."is-resolvable-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."js-tokens-3.0.2"
+ sources."js-yaml-3.10.0"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stable-stringify-without-jsonify-1.0.1"
+ sources."levn-0.3.0"
+ sources."lodash-4.17.4"
+ sources."lru-cache-4.1.1"
+ sources."mimic-fn-1.1.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."natural-compare-1.4.0"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
sources."optionator-0.8.2"
+ sources."os-tmpdir-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-parse-1.0.5"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pluralize-7.0.0"
+ sources."prelude-ls-1.1.2"
+ sources."process-nextick-args-1.0.7"
+ sources."progress-2.0.0"
+ sources."pseudomap-1.0.2"
+ sources."readable-stream-2.3.3"
+ sources."require-uncached-1.0.3"
sources."resolve-1.5.0"
+ sources."resolve-from-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slice-ansi-1.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
(sources."supports-color-3.2.3" // {
dependencies = [
sources."has-flag-1.0.0"
];
})
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."ansi-regex-2.1.1"
- sources."ajv-5.5.2"
- (sources."babel-code-frame-6.26.0" // {
- dependencies = [
- sources."chalk-1.1.3"
- sources."strip-ansi-3.0.1"
- ];
- })
- sources."concat-stream-1.6.0"
- sources."cross-spawn-5.1.0"
- sources."debug-3.1.0"
- sources."doctrine-2.0.2"
- sources."eslint-scope-3.7.1"
- sources."espree-3.5.2"
- sources."esquery-1.0.0"
- sources."estraverse-4.2.0"
- sources."esutils-2.0.2"
- sources."file-entry-cache-2.0.0"
- sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.2"
- sources."globals-11.1.0"
- sources."ignore-3.3.7"
- sources."imurmurhash-0.1.4"
- sources."inquirer-3.3.0"
- sources."is-resolvable-1.0.1"
- sources."js-yaml-3.10.0"
- sources."json-stable-stringify-without-jsonify-1.0.1"
- sources."levn-0.3.0"
- sources."lodash-4.17.4"
- sources."minimatch-3.0.4"
- sources."mkdirp-0.5.1"
- sources."natural-compare-1.4.0"
- sources."path-is-inside-1.0.2"
- sources."pluralize-7.0.0"
- sources."progress-2.0.0"
- sources."require-uncached-1.0.3"
- sources."semver-5.4.1"
- sources."strip-json-comments-2.0.1"
sources."table-4.0.2"
sources."text-table-0.2.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."js-tokens-3.0.2"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."inherits-2.0.3"
- sources."typedarray-0.0.6"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."ms-2.0.0"
- sources."esrecurse-4.2.0"
- sources."object-assign-4.1.1"
- sources."acorn-5.2.1"
- (sources."acorn-jsx-3.0.1" // {
- dependencies = [
- sources."acorn-3.3.0"
- ];
- })
- sources."flat-cache-1.3.0"
- sources."circular-json-0.3.3"
- sources."del-2.2.2"
- sources."graceful-fs-4.1.11"
- sources."write-0.2.1"
- sources."globby-5.0.0"
- sources."is-path-cwd-1.0.0"
- sources."is-path-in-cwd-1.0.0"
- sources."pify-2.3.0"
- sources."pinkie-promise-2.0.1"
- sources."rimraf-2.6.2"
- sources."array-union-1.0.2"
- sources."arrify-1.0.1"
- sources."array-uniq-1.0.3"
- sources."is-path-inside-1.0.1"
- sources."pinkie-2.0.4"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."ansi-escapes-3.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."external-editor-2.1.0"
- sources."figures-2.0.0"
- sources."mute-stream-0.0.7"
- sources."run-async-2.3.0"
- sources."rx-lite-4.0.8"
- sources."rx-lite-aggregates-4.0.8"
- sources."string-width-2.1.1"
sources."through-2.3.8"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."signal-exit-3.0.2"
- sources."mimic-fn-1.1.0"
- sources."chardet-0.4.2"
- sources."iconv-lite-0.4.19"
sources."tmp-0.0.33"
- sources."os-tmpdir-1.0.2"
- sources."is-promise-2.1.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."argparse-1.0.9"
- sources."esprima-4.0.0"
- sources."sprintf-js-1.0.3"
- sources."prelude-ls-1.1.2"
sources."type-check-0.3.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."minimist-0.0.8"
- sources."caller-path-0.1.0"
- sources."resolve-from-1.0.1"
- sources."callsites-0.2.0"
- sources."ajv-keywords-2.1.1"
- sources."slice-ansi-1.0.0"
- sources."deep-is-0.1.3"
+ sources."typedarray-0.0.6"
+ sources."util-deprecate-1.0.2"
+ sources."which-1.3.0"
sources."wordwrap-1.0.0"
- sources."fast-levenshtein-2.0.6"
- sources."path-parse-1.0.5"
+ sources."wrappy-1.0.2"
+ sources."write-0.2.1"
+ sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -30220,165 +30960,165 @@ in
sha1 = "81f5f98043cc2517053f96ba5d61ef5db430c010";
};
dependencies = [
- sources."chalk-1.1.3"
- sources."log-update-1.0.2"
- sources."meow-3.7.0"
- (sources."ora-1.3.0" // {
- dependencies = [
- sources."cli-cursor-2.1.0"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- ];
- })
- (sources."phantomjs-prebuilt-2.1.16" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."promise-phantom-3.1.6"
- sources."zen-observable-0.5.2"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
+ sources."ajv-5.5.2"
sources."ansi-escapes-1.4.0"
- sources."cli-cursor-1.0.2"
- sources."restore-cursor-1.0.1"
- sources."exit-hook-1.1.1"
- sources."onetime-1.1.0"
- sources."camelcase-keys-2.1.0"
- sources."decamelize-1.2.0"
- sources."loud-rejection-1.6.0"
- sources."map-obj-1.0.1"
- sources."minimist-1.2.0"
- sources."normalize-package-data-2.4.0"
- sources."object-assign-4.1.1"
- sources."read-pkg-up-1.0.1"
- sources."redent-1.0.0"
- sources."trim-newlines-1.0.0"
- sources."camelcase-2.1.1"
- sources."currently-unhandled-0.4.1"
- sources."signal-exit-3.0.2"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."semver-5.4.1"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."find-up-1.1.2"
- sources."read-pkg-1.1.0"
- sources."path-exists-2.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."load-json-file-1.1.0"
- sources."path-type-1.1.0"
- sources."graceful-fs-4.1.11"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
- sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."is-utf8-0.2.1"
- sources."indent-string-2.1.0"
- sources."strip-indent-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."number-is-nan-1.0.1"
- sources."get-stdin-4.0.1"
- sources."cli-spinners-1.1.0"
- sources."log-symbols-1.0.2"
- sources."mimic-fn-1.1.0"
- sources."es6-promise-4.1.1"
- sources."extract-zip-1.6.6"
- sources."fs-extra-1.0.0"
- sources."hasha-2.2.0"
- sources."kew-0.7.0"
- sources."progress-1.1.8"
- sources."request-2.83.0"
- sources."request-progress-2.0.1"
- sources."which-1.3.0"
- sources."concat-stream-1.6.0"
- sources."debug-2.6.9"
- sources."mkdirp-0.5.0"
- sources."yauzl-2.4.1"
- sources."inherits-2.0.3"
- sources."typedarray-0.0.6"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."ms-2.0.0"
- sources."fd-slicer-1.0.1"
- sources."pend-1.2.0"
- sources."jsonfile-2.4.0"
- sources."klaw-1.3.1"
- sources."is-stream-1.1.0"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
+ sources."bcrypt-pbkdf-1.0.1"
sources."boom-4.3.1"
+ sources."builtin-modules-1.1.1"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ sources."caseless-0.12.0"
+ sources."chalk-1.1.3"
+ sources."cli-cursor-1.0.2"
+ sources."cli-spinners-1.1.0"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.5"
+ sources."concat-stream-1.6.0"
+ sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
];
})
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
+ sources."currently-unhandled-0.4.1"
sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."delayed-stream-1.0.0"
sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."throttleit-1.0.0"
+ sources."error-ex-1.3.1"
+ sources."es6-promise-4.2.4"
+ sources."escape-string-regexp-1.0.5"
+ sources."exit-hook-1.1.1"
+ sources."extend-3.0.1"
+ sources."extract-zip-1.6.6"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fd-slicer-1.0.1"
+ sources."find-up-1.1.2"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."fs-extra-1.0.0"
+ sources."get-stdin-4.0.1"
+ sources."getpass-0.1.7"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-ansi-2.0.0"
+ sources."hasha-2.2.0"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."hosted-git-info-2.5.0"
+ sources."http-signature-1.2.0"
+ sources."indent-string-2.1.0"
+ sources."inherits-2.0.3"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-finite-1.0.2"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-2.4.0"
+ sources."jsprim-1.4.1"
+ sources."kew-0.7.0"
+ sources."klaw-1.3.1"
+ sources."load-json-file-1.1.0"
+ sources."log-symbols-1.0.2"
+ sources."log-update-1.0.2"
+ sources."loud-rejection-1.6.0"
+ sources."map-obj-1.0.1"
+ sources."meow-3.7.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimic-fn-1.1.0"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.5.0"
sources."mkpath-1.0.0"
+ sources."ms-2.0.0"
sources."node-phantom-simple-2.2.4"
- sources."tmp-0.0.31"
+ sources."normalize-package-data-2.4.0"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."onetime-1.1.0"
+ (sources."ora-1.3.0" // {
+ dependencies = [
+ sources."cli-cursor-2.1.0"
+ sources."onetime-2.0.1"
+ sources."restore-cursor-2.0.0"
+ ];
+ })
sources."os-tmpdir-1.0.2"
+ sources."parse-json-2.2.0"
+ sources."path-exists-2.1.0"
+ sources."path-type-1.1.0"
+ sources."pend-1.2.0"
+ sources."performance-now-2.1.0"
+ (sources."phantomjs-prebuilt-2.1.16" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."process-nextick-args-1.0.7"
+ sources."progress-1.1.8"
+ sources."promise-phantom-3.1.6"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.3"
+ sources."redent-1.0.0"
+ sources."repeating-2.0.1"
+ sources."request-2.83.0"
+ sources."request-progress-2.0.1"
+ sources."restore-cursor-1.0.1"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-2.1.0"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."sshpk-1.13.1"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-2.0.0"
+ sources."strip-indent-1.0.1"
+ sources."supports-color-2.0.0"
+ sources."throttleit-1.0.0"
+ sources."tmp-0.0.31"
+ sources."tough-cookie-2.3.3"
+ sources."trim-newlines-1.0.0"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-license-3.0.1"
+ sources."verror-1.10.0"
+ sources."which-1.3.0"
+ sources."yauzl-2.4.1"
+ sources."zen-observable-0.5.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -30398,13 +31138,13 @@ in
sha1 = "c027feb75a512001d1287bbfb3ffaafba67eb92f";
};
dependencies = [
+ sources."bower-1.8.2"
sources."bower-endpoint-parser-0.2.1"
sources."bower-logger-0.2.1"
- sources."bower-1.8.2"
sources."glob-3.2.11"
sources."inherits-2.0.3"
- sources."minimatch-0.3.0"
sources."lru-cache-2.7.3"
+ sources."minimatch-0.3.0"
sources."sigmund-1.0.1"
];
buildInputs = globalBuildInputs;
@@ -30424,6 +31164,23 @@ in
sha1 = "77d9d7e15fd2f511ad9d84a110c7dd8fc8ecebc2";
};
dependencies = [
+ sources."anymatch-1.3.2"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-unique-0.2.1"
+ sources."async-0.2.10"
+ sources."async-each-1.0.1"
+ sources."balanced-match-1.0.0"
+ sources."binary-extensions-1.11.0"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."broadway-0.3.6"
+ sources."caller-0.0.1"
+ sources."chokidar-1.7.0"
(sources."cliff-0.1.10" // {
dependencies = [
sources."colors-1.0.3"
@@ -30431,91 +31188,92 @@ in
})
sources."clone-1.0.3"
sources."colors-0.6.2"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."cycle-1.0.3"
+ sources."deep-equal-0.1.2"
+ sources."defined-0.0.0"
+ sources."director-1.2.7"
+ sources."event-stream-0.5.3"
+ sources."eventemitter2-0.4.14"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ sources."extglob-0.3.2"
+ sources."eyes-0.1.8"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
(sources."flatiron-0.4.3" // {
dependencies = [
- sources."optimist-0.6.0"
sources."cliff-0.1.9"
+ sources."optimist-0.6.0"
sources."winston-0.8.0"
];
})
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
(sources."forever-monitor-1.7.1" // {
dependencies = [
sources."optimist-0.2.8"
];
})
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.1.3"
+ sources."glob-7.1.2"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."isarray-1.0.0"
+ sources."isobject-2.1.0"
+ sources."isstream-0.1.2"
+ sources."jsonify-0.0.0"
+ sources."kind-of-3.2.2"
+ sources."lazy-1.0.11"
+ sources."micromatch-2.3.11"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.10"
+ sources."mkdirp-0.5.1"
+ sources."mute-stream-0.0.7"
+ sources."nan-2.8.0"
(sources."nconf-0.6.9" // {
dependencies = [
sources."async-0.2.9"
sources."optimist-0.6.0"
];
})
+ sources."ncp-0.4.2"
+ sources."normalize-path-2.1.1"
sources."nssocket-0.5.3"
sources."object-assign-3.0.0"
+ sources."object.omit-2.0.1"
+ sources."once-1.4.0"
sources."optimist-0.6.1"
+ sources."parse-glob-3.0.4"
sources."path-is-absolute-1.0.1"
+ sources."pkginfo-0.3.1"
+ sources."preserve-0.2.0"
(sources."prettyjson-1.2.1" // {
dependencies = [
sources."colors-1.1.2"
sources."minimist-1.2.0"
];
})
- sources."shush-1.0.0"
- sources."timespan-2.3.0"
- (sources."utile-0.2.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."winston-0.8.3"
- sources."eyes-0.1.8"
- sources."broadway-0.3.6"
+ sources."process-nextick-args-1.0.7"
sources."prompt-0.2.14"
- sources."director-1.2.7"
- sources."eventemitter2-0.4.14"
- sources."async-0.2.10"
- sources."cycle-1.0.3"
- sources."pkginfo-0.3.1"
- sources."stack-trace-0.0.10"
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- sources."read-1.0.7"
- sources."revalidator-0.1.8"
- sources."mute-stream-0.0.7"
- sources."chokidar-1.7.0"
- sources."minimatch-3.0.4"
sources."ps-tree-0.0.3"
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."inherits-2.0.3"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
- sources."micromatch-2.3.11"
- sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -30525,52 +31283,34 @@ in
})
];
})
- sources."repeat-string-1.6.1"
- sources."isarray-1.0.0"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."binary-extensions-1.11.0"
- sources."graceful-fs-4.1.11"
+ sources."read-1.0.7"
sources."readable-stream-2.3.3"
- sources."set-immediate-shim-1.0.1"
- sources."core-util-is-1.0.2"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."nan-2.8.0"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."event-stream-0.5.3"
- sources."ini-1.3.5"
- sources."lazy-1.0.11"
- sources."strip-json-comments-0.1.3"
- sources."caller-0.0.1"
- sources."tape-2.3.3"
- sources."jsonify-0.0.0"
- sources."deep-equal-0.1.2"
- sources."defined-0.0.0"
- sources."through-2.3.8"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
sources."resumer-0.0.0"
- sources."i-0.3.6"
- sources."mkdirp-0.5.1"
- sources."ncp-0.4.2"
+ sources."revalidator-0.1.8"
sources."rimraf-2.6.2"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
+ sources."safe-buffer-5.1.1"
+ sources."set-immediate-shim-1.0.1"
+ sources."shush-1.0.0"
+ sources."stack-trace-0.0.10"
+ sources."string_decoder-1.0.3"
+ sources."strip-json-comments-0.1.3"
+ sources."tape-2.3.3"
+ sources."through-2.3.8"
+ sources."timespan-2.3.0"
+ sources."util-deprecate-1.0.2"
+ (sources."utile-0.2.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."winston-0.8.3"
+ sources."wordwrap-0.0.3"
sources."wrappy-1.0.2"
- sources."isstream-0.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -30591,14 +31331,14 @@ in
};
dependencies = [
sources."async-2.6.0"
- sources."lodash.groupby-4.6.0"
- sources."minilog-3.1.0"
- sources."simple-git-1.85.0"
- sources."tabtab-git+https://github.com/mixu/node-tabtab.git"
- sources."lodash-4.17.4"
- sources."microee-0.0.6"
sources."debug-3.1.0"
+ sources."lodash-4.17.4"
+ sources."lodash.groupby-4.6.0"
+ sources."microee-0.0.6"
+ sources."minilog-3.1.0"
sources."ms-2.0.0"
+ sources."simple-git-1.89.0"
+ sources."tabtab-git+https://github.com/mixu/node-tabtab.git"
];
buildInputs = globalBuildInputs;
meta = {
@@ -30635,21 +31375,21 @@ in
sha1 = "562b119ebb069ddb464ace2845501be97b35b6a8";
};
dependencies = [
+ sources."abbrev-1.1.1"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."concat-map-0.0.1"
sources."findup-sync-0.3.0"
- sources."grunt-known-options-1.1.0"
- sources."nopt-3.0.6"
- sources."resolve-1.1.7"
sources."glob-5.0.15"
+ sources."grunt-known-options-1.1.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."minimatch-3.0.4"
+ sources."nopt-3.0.6"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
+ sources."resolve-1.1.7"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."abbrev-1.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -30670,33 +31410,63 @@ in
sha256 = "a51a5beef55c14c68630275d51cf66c44a4462d1b20c0f08aef6d88a62ca077c";
};
dependencies = [
- sources."coffee-script-1.12.7"
- (sources."jade-1.11.0" // {
+ sources."acorn-2.7.0"
+ (sources."acorn-globals-1.0.9" // {
dependencies = [
- sources."promise-2.0.0"
- sources."is-promise-1.0.1"
- sources."source-map-0.1.43"
- sources."wordwrap-0.0.2"
- sources."acorn-1.2.2"
+ sources."acorn-2.7.0"
];
})
- (sources."q-2.0.3" // {
- dependencies = [
- sources."asap-2.0.6"
- ];
- })
- sources."xml2js-0.4.19"
- sources."msgpack-1.0.2"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."asap-1.0.0"
+ sources."camelcase-1.2.1"
+ sources."center-align-0.1.3"
sources."character-parser-1.2.1"
(sources."clean-css-3.4.28" // {
dependencies = [
sources."commander-2.8.1"
];
})
+ sources."cliui-2.1.0"
+ sources."coffee-script-1.12.7"
sources."commander-2.6.0"
sources."constantinople-3.0.2"
+ sources."css-1.0.8"
+ sources."css-parse-1.0.4"
+ sources."css-stringify-1.0.5"
+ sources."decamelize-1.2.0"
+ sources."graceful-readlink-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-promise-2.1.0"
+ (sources."jade-1.11.0" // {
+ dependencies = [
+ sources."acorn-1.2.2"
+ sources."is-promise-1.0.1"
+ sources."promise-2.0.0"
+ sources."source-map-0.1.43"
+ sources."wordwrap-0.0.2"
+ ];
+ })
sources."jstransformer-0.0.2"
+ sources."kind-of-3.2.2"
+ sources."lazy-cache-1.0.4"
+ sources."longest-1.0.1"
+ sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
+ sources."msgpack-1.0.2"
+ sources."nan-2.8.0"
+ sources."optimist-0.3.7"
+ sources."pop-iterate-1.0.1"
+ sources."promise-6.1.0"
+ (sources."q-2.0.3" // {
+ dependencies = [
+ sources."asap-2.0.6"
+ ];
+ })
+ sources."repeat-string-1.6.1"
+ sources."right-align-0.1.3"
+ sources."sax-1.2.4"
+ sources."source-map-0.4.4"
(sources."transformers-2.1.0" // {
dependencies = [
sources."uglify-js-2.2.5"
@@ -30707,45 +31477,15 @@ in
sources."source-map-0.5.7"
];
})
- sources."void-elements-2.0.1"
- sources."with-4.0.3"
- sources."source-map-0.4.4"
- sources."graceful-readlink-1.0.1"
- sources."amdefine-1.0.1"
- sources."acorn-2.7.0"
- sources."is-promise-2.1.0"
- sources."promise-6.1.0"
- sources."asap-1.0.0"
- sources."minimist-0.0.8"
- sources."css-1.0.8"
- sources."css-parse-1.0.4"
- sources."css-stringify-1.0.5"
- sources."optimist-0.3.7"
- sources."wordwrap-0.0.3"
- sources."yargs-3.10.0"
sources."uglify-to-browserify-1.0.2"
- sources."camelcase-1.2.1"
- sources."cliui-2.1.0"
- sources."decamelize-1.2.0"
- sources."window-size-0.1.0"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.2.2"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- (sources."acorn-globals-1.0.9" // {
- dependencies = [
- sources."acorn-2.7.0"
- ];
- })
- sources."pop-iterate-1.0.1"
+ sources."void-elements-2.0.1"
sources."weak-map-1.0.5"
- sources."sax-1.2.4"
+ sources."window-size-0.1.0"
+ sources."with-4.0.3"
+ sources."wordwrap-0.0.3"
+ sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.4"
- sources."nan-2.8.0"
+ sources."yargs-3.10.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -30764,150 +31504,247 @@ in
sha1 = "571ce45928dd40af6514fc4011866016c13845b4";
};
dependencies = [
+ 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."archy-1.0.0"
- sources."chalk-1.1.3"
- sources."deprecated-0.0.1"
- (sources."gulp-util-3.0.8" // {
+ sources."arr-diff-4.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."arr-union-3.1.0"
+ sources."array-differ-1.0.0"
+ sources."array-each-1.0.1"
+ sources."array-slice-1.1.0"
+ sources."array-uniq-1.0.3"
+ sources."array-unique-0.3.2"
+ sources."assign-symbols-1.0.0"
+ sources."atob-2.0.3"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
dependencies = [
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
- ];
- })
- sources."interpret-1.1.0"
- (sources."liftoff-2.5.0" // {
- dependencies = [
- sources."is-extendable-0.1.1"
- sources."is-descriptor-0.1.6"
- sources."has-values-0.1.4"
- sources."isarray-1.0.0"
- sources."for-own-0.1.5"
+ (sources."define-property-1.0.0" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
sources."kind-of-3.2.2"
];
})
- sources."minimist-1.2.0"
- sources."orchestrator-0.3.8"
- sources."pretty-hrtime-1.0.3"
- sources."semver-4.3.6"
- sources."tildify-1.2.0"
- sources."v8flags-2.1.1"
- (sources."vinyl-fs-0.3.14" // {
- dependencies = [
- (sources."through2-0.6.5" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
- sources."vinyl-0.4.6"
- sources."glob-3.1.21"
- sources."minimatch-0.2.14"
- sources."inherits-1.0.2"
- sources."minimist-0.0.8"
- sources."readable-stream-1.0.34"
- sources."clone-0.2.0"
- ];
- })
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."array-differ-1.0.0"
- sources."array-uniq-1.0.3"
sources."beeper-1.1.1"
- sources."dateformat-2.2.0"
- sources."fancy-log-1.3.2"
- sources."gulplog-1.0.0"
- sources."has-gulplog-0.1.0"
- sources."lodash._reescape-3.0.0"
- sources."lodash._reevaluate-3.0.0"
- sources."lodash._reinterpolate-3.0.0"
- sources."lodash.template-3.6.2"
- sources."multipipe-0.1.2"
- sources."object-assign-3.0.0"
- sources."replace-ext-0.0.1"
- sources."through2-2.0.3"
- sources."vinyl-0.5.3"
- sources."ansi-gray-0.1.1"
- sources."color-support-1.1.3"
- sources."time-stamp-1.1.0"
- sources."ansi-wrap-0.1.0"
- sources."glogg-1.0.0"
- sources."sparkles-1.0.0"
- sources."lodash._basecopy-3.0.1"
- sources."lodash._basetostring-3.0.1"
- sources."lodash._basevalues-3.0.0"
- sources."lodash._isiterateecall-3.0.9"
- sources."lodash.escape-3.2.0"
- sources."lodash.keys-3.1.2"
- sources."lodash.restparam-3.6.1"
- sources."lodash.templatesettings-3.1.1"
- sources."lodash._root-3.0.1"
- sources."lodash._getnative-3.9.1"
- sources."lodash.isarguments-3.1.0"
- sources."lodash.isarray-3.0.4"
- sources."duplexer2-0.0.2"
- sources."readable-stream-1.1.14"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."inherits-2.0.3"
- sources."xtend-4.0.1"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."util-deprecate-1.0.2"
- sources."clone-1.0.3"
- sources."clone-stats-0.0.1"
- sources."extend-3.0.1"
- (sources."findup-sync-2.0.0" // {
- dependencies = [
- sources."is-descriptor-1.0.1"
- sources."is-extendable-1.0.1"
- ];
- })
- sources."fined-1.1.0"
- sources."flagged-respawn-1.0.0"
- sources."is-plain-object-2.0.4"
- sources."object.map-1.0.0"
- sources."rechoir-0.6.2"
- sources."resolve-1.5.0"
- sources."detect-file-1.0.0"
- sources."is-glob-3.1.0"
- (sources."micromatch-3.1.4" // {
- dependencies = [
- sources."is-descriptor-0.1.6"
- ];
- })
- sources."resolve-dir-1.0.1"
- sources."is-extglob-2.1.1"
- sources."arr-diff-4.0.0"
- sources."array-unique-0.3.2"
+ sources."brace-expansion-1.1.8"
(sources."braces-2.3.0" // {
dependencies = [
sources."kind-of-3.2.2"
];
})
- (sources."define-property-1.0.0" // {
+ sources."cache-base-1.0.1"
+ sources."chalk-1.1.3"
+ (sources."class-utils-0.3.6" // {
dependencies = [
- sources."kind-of-5.1.0"
+ sources."define-property-0.2.5"
];
})
+ sources."clone-1.0.3"
+ sources."clone-stats-0.0.1"
+ 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."copy-descriptor-0.1.1"
+ sources."core-util-is-1.0.2"
+ sources."dateformat-2.2.0"
+ sources."debug-2.6.9"
+ sources."decode-uri-component-0.2.0"
+ sources."defaults-1.0.3"
+ sources."define-property-1.0.0"
+ 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."expand-brackets-2.1.4" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ ];
+ })
+ sources."expand-tilde-2.0.2"
+ sources."extend-3.0.1"
sources."extend-shallow-2.0.1"
- (sources."extglob-2.0.2" // {
+ (sources."extglob-2.0.4" // {
dependencies = [
sources."kind-of-5.1.0"
];
})
+ sources."fancy-log-1.3.2"
+ sources."fill-range-4.0.0"
+ sources."find-index-0.1.1"
+ (sources."findup-sync-2.0.0" // {
+ dependencies = [
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."fined-1.1.0"
+ sources."first-chunk-stream-1.0.0"
+ sources."flagged-respawn-1.0.0"
+ sources."for-in-1.0.2"
+ sources."for-own-1.0.0"
sources."fragment-cache-0.2.1"
+ sources."gaze-0.5.2"
+ sources."get-value-2.0.6"
+ sources."glob-4.5.3"
+ sources."glob-stream-3.1.18"
+ (sources."glob-watcher-0.0.6" // {
+ dependencies = [
+ sources."graceful-fs-1.2.3"
+ ];
+ })
+ sources."glob2base-0.0.12"
+ sources."global-modules-1.0.0"
+ sources."global-prefix-1.0.2"
+ sources."globule-0.1.0"
+ sources."glogg-1.0.1"
+ sources."graceful-fs-3.0.11"
+ (sources."gulp-util-3.0.8" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.3"
+ sources."string_decoder-1.0.3"
+ ];
+ })
+ sources."gulplog-1.0.0"
+ sources."has-ansi-2.0.0"
+ sources."has-gulplog-0.1.0"
+ sources."has-value-1.0.0"
+ sources."has-values-1.0.0"
+ sources."homedir-polyfill-1.0.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."interpret-1.1.0"
+ sources."is-absolute-1.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-1.0.1"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
+ sources."is-number-3.0.0"
+ sources."is-odd-1.0.0"
+ sources."is-plain-object-2.0.4"
+ sources."is-relative-1.0.0"
+ sources."is-unc-path-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."is-windows-1.0.1"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
sources."kind-of-6.0.2"
- (sources."nanomatch-1.2.6" // {
+ sources."lazy-cache-2.0.2"
+ (sources."liftoff-2.5.0" // {
+ dependencies = [
+ sources."has-values-0.1.4"
+ (sources."is-accessor-descriptor-0.1.6" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-0.1.1"
+ sources."isarray-1.0.0"
+ sources."kind-of-3.2.2"
+ ];
+ })
+ 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."make-iterator-1.0.0"
+ sources."map-cache-0.2.2"
+ sources."map-visit-1.0.0"
+ (sources."micromatch-3.1.5" // {
+ dependencies = [
+ (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."minimatch-2.0.10"
+ sources."minimist-1.2.0"
+ sources."mixin-deep-1.3.0"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."multipipe-0.1.2"
+ (sources."nanomatch-1.2.7" // {
dependencies = [
sources."kind-of-5.1.0"
];
})
+ sources."natives-1.1.1"
+ sources."object-assign-3.0.0"
+ sources."object-copy-0.1.0"
+ sources."object-visit-1.0.1"
+ 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."parse-filepath-1.0.2"
+ sources."parse-passwd-1.0.0"
+ sources."pascalcase-0.1.1"
+ sources."path-parse-1.0.5"
+ sources."path-root-0.1.1"
+ sources."path-root-regex-0.1.2"
+ sources."posix-character-classes-0.1.1"
+ sources."pretty-hrtime-1.0.3"
+ sources."process-nextick-args-1.0.7"
+ sources."readable-stream-1.1.14"
+ sources."rechoir-0.6.2"
sources."regex-not-1.0.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."replace-ext-0.0.1"
+ sources."resolve-1.5.0"
+ sources."resolve-dir-1.0.1"
+ sources."resolve-url-0.2.1"
+ sources."safe-buffer-5.1.1"
+ sources."semver-4.3.6"
+ sources."sequencify-0.0.7"
+ sources."set-getter-0.1.0"
+ sources."set-value-2.0.0"
+ sources."sigmund-1.0.1"
(sources."snapdragon-0.8.1" // {
dependencies = [
(sources."define-property-0.2.5" // {
@@ -30918,81 +31755,40 @@ in
sources."kind-of-4.0.0"
];
})
- (sources."to-regex-3.0.1" // {
- dependencies = [
- sources."define-property-0.2.5"
- ];
- })
- sources."arr-flatten-1.1.0"
- sources."fill-range-4.0.0"
- sources."isobject-3.0.1"
- sources."repeat-element-1.1.2"
sources."snapdragon-node-2.1.1"
+ sources."snapdragon-util-3.0.1"
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.1"
+ sources."source-map-url-0.4.0"
+ sources."sparkles-1.0.0"
(sources."split-string-3.1.0" // {
dependencies = [
sources."extend-shallow-3.0.2"
];
})
- sources."is-number-3.0.0"
- sources."repeat-string-1.6.1"
- sources."to-regex-range-2.1.1"
- sources."is-buffer-1.1.6"
- sources."snapdragon-util-3.0.1"
- sources."assign-symbols-1.0.0"
- sources."is-extendable-1.0.1"
- sources."is-descriptor-1.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."expand-brackets-2.1.4" // {
- dependencies = [
- sources."define-property-0.2.5"
- ];
- })
- sources."debug-2.6.9"
- sources."posix-character-classes-0.1.1"
- sources."ms-2.0.0"
- sources."map-cache-0.2.2"
- sources."is-odd-1.0.0"
- (sources."base-0.11.2" // {
- dependencies = [
- (sources."define-property-1.0.0" // {
- dependencies = [
- sources."kind-of-5.1.0"
- ];
- })
- sources."kind-of-3.2.2"
- ];
- })
- sources."source-map-0.5.7"
- sources."source-map-resolve-0.5.1"
- sources."use-2.0.2"
- sources."cache-base-1.0.1"
- (sources."class-utils-0.3.5" // {
- dependencies = [
- sources."define-property-0.2.5"
- ];
- })
- sources."component-emitter-1.2.1"
- sources."mixin-deep-1.3.0"
- sources."pascalcase-0.1.1"
- sources."collection-visit-1.0.0"
- sources."get-value-2.0.6"
- sources."has-value-1.0.0"
- sources."set-value-2.0.0"
+ sources."static-extend-0.1.2"
+ sources."stream-consume-0.1.0"
+ sources."string_decoder-0.10.31"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-1.0.0"
+ sources."supports-color-2.0.0"
+ sources."through2-2.0.3"
+ sources."tildify-1.2.0"
+ sources."time-stamp-1.1.0"
sources."to-object-path-0.3.0"
+ (sources."to-regex-3.0.1" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ ];
+ })
+ sources."to-regex-range-2.1.1"
+ sources."unc-path-regex-0.1.2"
(sources."union-value-1.0.0" // {
dependencies = [
sources."set-value-0.4.3"
];
})
+ sources."unique-stream-1.0.0"
(sources."unset-value-1.0.0" // {
dependencies = [
(sources."has-value-0.3.1" // {
@@ -31002,78 +31798,31 @@ in
})
];
})
- sources."map-visit-1.0.0"
- sources."object-visit-1.0.1"
- sources."has-values-1.0.0"
- sources."arr-union-3.1.0"
- sources."lazy-cache-2.0.2"
- sources."static-extend-0.1.2"
- sources."set-getter-0.1.0"
- sources."object-copy-0.1.0"
- sources."copy-descriptor-0.1.1"
- sources."for-in-1.0.2"
- sources."decode-uri-component-0.2.0"
- sources."source-map-url-0.4.0"
- sources."atob-2.0.3"
sources."urix-0.1.0"
- sources."resolve-url-0.2.1"
- sources."expand-tilde-2.0.2"
- sources."global-modules-1.0.0"
- sources."homedir-polyfill-1.0.1"
- sources."parse-passwd-1.0.0"
- sources."global-prefix-1.0.2"
- sources."is-windows-1.0.1"
- sources."ini-1.3.5"
- sources."which-1.3.0"
- sources."isexe-2.0.0"
- sources."object.defaults-1.1.0"
- sources."parse-filepath-1.0.2"
- sources."array-each-1.0.1"
- sources."array-slice-1.1.0"
- sources."for-own-1.0.0"
- sources."is-absolute-1.0.0"
- sources."path-root-0.1.1"
- sources."is-relative-1.0.0"
- sources."is-unc-path-1.0.0"
- sources."unc-path-regex-0.1.2"
- sources."path-root-regex-0.1.2"
- sources."make-iterator-1.0.0"
- sources."path-parse-1.0.5"
- sources."end-of-stream-0.1.5"
- sources."sequencify-0.0.7"
- sources."stream-consume-0.1.0"
- sources."once-1.3.3"
- sources."wrappy-1.0.2"
- sources."os-homedir-1.0.2"
+ sources."use-2.0.2"
sources."user-home-1.1.1"
- sources."defaults-1.0.3"
- sources."glob-stream-3.1.18"
- (sources."glob-watcher-0.0.6" // {
+ sources."util-deprecate-1.0.2"
+ sources."v8flags-2.1.1"
+ sources."vinyl-0.5.3"
+ (sources."vinyl-fs-0.3.14" // {
dependencies = [
- sources."graceful-fs-1.2.3"
+ sources."clone-0.2.0"
+ sources."glob-3.1.21"
+ sources."inherits-1.0.2"
+ sources."minimatch-0.2.14"
+ sources."minimist-0.0.8"
+ sources."readable-stream-1.0.34"
+ (sources."through2-0.6.5" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
+ sources."vinyl-0.4.6"
];
})
- sources."graceful-fs-3.0.11"
- sources."mkdirp-0.5.1"
- sources."strip-bom-1.0.0"
- sources."glob-4.5.3"
- sources."minimatch-2.0.10"
- sources."ordered-read-streams-0.1.0"
- sources."glob2base-0.0.12"
- sources."unique-stream-1.0.0"
- sources."inflight-1.0.6"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."find-index-0.1.1"
- sources."gaze-0.5.2"
- sources."globule-0.1.0"
- sources."lodash-1.0.2"
- sources."lru-cache-2.7.3"
- sources."sigmund-1.0.1"
- sources."natives-1.1.1"
- sources."first-chunk-stream-1.0.0"
- sources."is-utf8-0.2.1"
+ sources."which-1.3.0"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31093,11 +31842,11 @@ in
sha1 = "e21764eafe6429ec8dc9377b55e1ca86799704d5";
};
dependencies = [
+ sources."eventemitter3-3.0.0"
sources."http-proxy-1.0.2"
- sources."redis-0.10.3"
sources."lru-cache-2.5.2"
sources."minimist-0.0.8"
- sources."eventemitter3-3.0.0"
+ sources."redis-0.10.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31118,64 +31867,64 @@ in
};
dependencies = [
sources."async-1.4.2"
- sources."colors-1.0.3"
- sources."commander-2.6.0"
- sources."csslint-0.10.0"
- sources."glob-5.0.15"
- (sources."jshint-2.8.0" // {
- dependencies = [
- sources."minimatch-2.0.10"
- sources."glob-3.2.11"
- ];
- })
- sources."parse-glob-3.0.4"
- sources."strip-json-comments-1.0.4"
- sources."xml-1.0.0"
- sources."parserlib-0.2.5"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
+ sources."brace-expansion-1.1.8"
(sources."cli-0.6.6" // {
dependencies = [
sources."minimatch-0.3.0"
];
})
+ sources."colors-1.0.3"
+ sources."commander-2.6.0"
+ sources."concat-map-0.0.1"
sources."console-browserify-1.1.0"
- sources."exit-0.1.2"
- sources."htmlparser2-3.8.3"
- sources."shelljs-0.3.0"
- sources."lodash-3.7.0"
- sources."lru-cache-2.7.3"
- sources."sigmund-1.0.1"
+ sources."core-util-is-1.0.2"
+ sources."csslint-0.10.0"
sources."date-now-0.1.4"
+ (sources."dom-serializer-0.1.0" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ ];
+ })
+ sources."domelementtype-1.3.0"
sources."domhandler-2.3.0"
(sources."domutils-1.5.1" // {
dependencies = [
sources."entities-1.1.1"
];
})
- sources."domelementtype-1.3.0"
- sources."readable-stream-1.1.14"
sources."entities-1.0.0"
- (sources."dom-serializer-0.1.0" // {
- dependencies = [
- sources."domelementtype-1.1.3"
- ];
- })
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
+ sources."exit-0.1.2"
+ sources."glob-5.0.15"
sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."htmlparser2-3.8.3"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
sources."is-dotfile-1.0.3"
sources."is-extglob-1.0.0"
sources."is-glob-2.0.1"
- sources."glob-parent-2.0.0"
+ sources."isarray-0.0.1"
+ (sources."jshint-2.8.0" // {
+ dependencies = [
+ sources."glob-3.2.11"
+ sources."minimatch-2.0.10"
+ ];
+ })
+ sources."lodash-3.7.0"
+ sources."lru-cache-2.7.3"
+ sources."minimatch-3.0.4"
+ sources."once-1.4.0"
+ sources."parse-glob-3.0.4"
+ sources."parserlib-0.2.5"
+ sources."path-is-absolute-1.0.1"
+ sources."readable-stream-1.1.14"
+ sources."shelljs-0.3.0"
+ sources."sigmund-1.0.1"
+ sources."string_decoder-0.10.31"
+ sources."strip-json-comments-1.0.4"
+ sources."wrappy-1.0.2"
+ sources."xml-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31189,28 +31938,29 @@ in
html-minifier = nodeEnv.buildNodePackage {
name = "html-minifier";
packageName = "html-minifier";
- version = "3.5.7";
+ version = "3.5.8";
src = fetchurl {
- url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.7.tgz";
- sha512 = "31dxgy9vqkpkkmxi45mlnp7ijqigjx1s1z9j7ngvklwp6n4rck5cs3ilw3qxz0glsgj2k9n884wrcad9433ljjsh7z8w3hamagrg10q";
+ url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.8.tgz";
+ sha512 = "29sg4r25g8awvmlyzjip0c216bjcd0nq730jd5vihagf3vpxw070gi5nd7z7333givgislxfylv4jrxn4ngqxgnwns5lg3xy3lc6zjr";
};
dependencies = [
sources."camel-case-3.0.0"
sources."clean-css-4.1.9"
sources."commander-2.12.2"
sources."he-1.1.1"
+ sources."lower-case-1.1.4"
sources."ncname-1.0.0"
+ sources."no-case-2.3.2"
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
- (sources."uglify-js-3.2.2" // {
+ sources."source-map-0.5.7"
+ (sources."uglify-js-3.3.8" // {
dependencies = [
+ sources."commander-2.13.0"
sources."source-map-0.6.1"
];
})
- sources."no-case-2.3.2"
sources."upper-case-1.1.3"
- sources."lower-case-1.1.4"
- sources."source-map-0.5.7"
sources."xml-char-classes-1.0.0"
];
buildInputs = globalBuildInputs;
@@ -31225,157 +31975,204 @@ in
ionic = nodeEnv.buildNodePackage {
name = "ionic";
packageName = "ionic";
- version = "3.19.0";
+ version = "3.19.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ionic/-/ionic-3.19.0.tgz";
- sha512 = "34pv92cpzkfq8r6q0k2r47n2pj7v5n0hnldrjgh443cacc1ifbbh5n0xfgrd93l88w3pwk7gc64xnipw37d6cbk5zv9kawy88b1j6bs";
+ url = "https://registry.npmjs.org/ionic/-/ionic-3.19.1.tgz";
+ sha512 = "11hpd51qzi8fms87q1xqwc347dp9mxhvzci2jlw94ayvs1v2n3iaqwdic1g1213k91xwzp52z6y17a08via45l936bgda3pi6zfbmsk";
};
dependencies = [
sources."@ionic/cli-framework-0.1.2"
- (sources."@ionic/cli-utils-1.19.0" // {
+ (sources."@ionic/cli-utils-1.19.1" // {
dependencies = [
+ sources."bytes-1.0.0"
sources."debug-2.6.9"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
+ sources."mime-1.4.1"
+ sources."raw-body-1.1.7"
sources."setprototypeof-1.1.0"
sources."statuses-1.3.1"
- sources."mime-1.4.1"
- sources."is-glob-3.1.0"
- sources."is-extglob-2.1.1"
- sources."yallist-3.0.2"
- sources."raw-body-1.1.7"
- sources."bytes-1.0.0"
sources."string_decoder-0.10.31"
+ sources."yallist-3.0.2"
];
})
- sources."chalk-2.3.0"
- sources."opn-5.1.0"
- sources."semver-5.4.1"
- sources."tslib-1.8.1"
- sources."ncp-2.0.0"
- sources."rimraf-2.6.2"
- sources."strip-ansi-4.0.0"
- sources."superagent-3.8.2"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."ansi-regex-3.0.0"
- sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.1"
- sources."debug-3.1.0"
- sources."extend-3.0.1"
- sources."form-data-2.3.1"
- sources."formidable-1.1.1"
- sources."methods-1.1.2"
- sources."mime-1.6.0"
- sources."qs-6.5.1"
- sources."readable-stream-2.3.3"
- sources."ms-2.0.0"
- sources."asynckit-0.4.0"
- sources."combined-stream-1.0.5"
- sources."mime-types-2.1.17"
- sources."delayed-stream-1.0.0"
- sources."mime-db-1.30.0"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
sources."@ionic/discover-0.4.0"
- sources."archiver-2.1.0"
- sources."basic-auth-1.1.0"
- sources."body-parser-1.18.2"
- sources."chokidar-1.7.0"
- sources."ci-info-1.1.2"
- sources."cross-spawn-5.1.0"
- sources."dargs-5.1.0"
- sources."diff-3.4.0"
- sources."elementtree-0.1.7"
- sources."express-4.16.2"
- sources."http-proxy-middleware-0.17.4"
- sources."inquirer-3.3.0"
- sources."leek-0.0.24"
- sources."lodash-4.17.4"
- sources."minimist-1.2.0"
- sources."os-name-2.0.1"
- sources."slice-ansi-1.0.0"
- sources."ssh-config-1.1.3"
- sources."string-width-2.1.1"
- (sources."tar-4.2.0" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."tiny-lr-1.0.5"
- sources."uuid-3.1.0"
- sources."wrap-ansi-3.0.1"
- sources."ws-3.3.3"
- sources."netmask-1.0.6"
- sources."archiver-utils-1.3.0"
- sources."async-2.6.0"
- sources."buffer-crc32-0.2.13"
- sources."tar-stream-1.5.5"
- sources."zip-stream-1.2.0"
- sources."graceful-fs-4.1.11"
- sources."lazystream-1.0.0"
- sources."normalize-path-2.1.1"
- sources."remove-trailing-separator-1.1.0"
- sources."bl-1.2.1"
- sources."end-of-stream-1.4.0"
- sources."xtend-4.0.1"
- sources."compress-commons-1.2.2"
- sources."crc32-stream-2.0.0"
- sources."crc-3.5.0"
- sources."bytes-3.0.0"
- sources."content-type-1.0.4"
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."on-finished-2.3.0"
- sources."raw-body-2.3.2"
- sources."type-is-1.6.15"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."ee-first-1.1.1"
- sources."unpipe-1.0.0"
- sources."media-typer-0.3.0"
+ sources."accepts-1.3.4"
+ sources."ansi-escapes-3.0.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
- sources."micromatch-2.3.11"
+ sources."archiver-2.1.1"
+ sources."archiver-utils-1.3.0"
sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-flatten-1.1.1"
sources."array-unique-0.2.1"
+ sources."async-2.6.0"
+ sources."async-each-1.0.1"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."balanced-match-1.0.0"
+ sources."basic-auth-1.1.0"
+ sources."binary-extensions-1.11.0"
+ sources."bl-1.2.1"
+ sources."body-5.1.0"
+ sources."body-parser-1.18.2"
+ sources."brace-expansion-1.1.8"
(sources."braces-1.8.5" // {
dependencies = [
sources."kind-of-4.0.0"
];
})
+ sources."buffer-crc32-0.2.13"
+ sources."bytes-3.0.0"
+ sources."chalk-2.3.0"
+ sources."chardet-0.4.2"
+ sources."chokidar-1.7.0"
+ sources."chownr-1.0.1"
+ sources."ci-info-1.1.2"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.5"
+ sources."component-emitter-1.2.1"
+ sources."compress-commons-1.2.2"
+ sources."concat-map-0.0.1"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."continuable-cache-0.3.1"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."cookiejar-2.1.1"
+ sources."core-util-is-1.0.2"
+ sources."crc-3.5.0"
+ sources."crc32-stream-2.0.0"
+ sources."cross-spawn-5.1.0"
+ sources."dargs-5.1.0"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."diff-3.4.0"
+ sources."ee-first-1.1.1"
+ sources."elementtree-0.1.7"
+ sources."encodeurl-1.0.2"
+ sources."end-of-stream-1.4.1"
+ sources."error-7.0.2"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."etag-1.8.1"
+ sources."eventemitter3-1.2.0"
sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
+ sources."express-4.16.2"
+ sources."extend-3.0.1"
+ sources."external-editor-2.1.0"
+ sources."extglob-0.3.2"
+ sources."faye-websocket-0.10.0"
+ sources."figures-2.0.0"
+ sources."filename-regex-2.0.1"
sources."fill-range-2.2.3"
+ sources."finalhandler-1.1.0"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."form-data-2.3.1"
+ sources."formidable-1.1.1"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs-minipass-1.2.5"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.1.3"
+ sources."glob-7.1.2"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-flag-2.0.0"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-parser-js-0.4.9"
+ sources."http-proxy-1.16.2"
+ sources."http-proxy-middleware-0.17.4"
+ sources."iconv-lite-0.4.19"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."inquirer-3.3.0"
+ sources."ipaddr.js-1.5.2"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-glob-2.0.1"
sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-promise-2.1.0"
+ sources."is-wsl-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
sources."isobject-2.1.0"
+ sources."kind-of-3.2.2"
+ sources."lazystream-1.0.0"
+ sources."leek-0.0.24"
+ sources."livereload-js-2.3.0"
+ sources."lodash-4.17.4"
+ sources."lodash._baseassign-3.2.0"
+ sources."lodash._basecopy-3.0.1"
+ sources."lodash._bindcallback-3.0.1"
+ sources."lodash._createassigner-3.1.1"
+ sources."lodash._getnative-3.9.1"
+ sources."lodash._isiterateecall-3.0.9"
+ sources."lodash.assign-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."lru-cache-4.1.1"
+ sources."macos-release-1.1.0"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."micromatch-2.3.11"
+ sources."mime-1.6.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimic-fn-1.1.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."minipass-2.2.1"
+ sources."minizlib-1.1.0"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."nan-2.8.0"
+ sources."ncp-2.0.0"
+ sources."negotiator-0.6.1"
+ sources."netmask-1.0.6"
+ sources."normalize-path-2.1.1"
+ sources."object-assign-4.1.1"
+ sources."object.omit-2.0.1"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."opn-5.2.0"
+ sources."os-name-2.0.1"
+ sources."os-tmpdir-1.0.2"
+ sources."parse-glob-3.0.4"
+ sources."parseurl-1.3.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."preserve-0.2.0"
+ sources."process-nextick-args-1.0.7"
+ sources."proxy-addr-2.0.2"
+ sources."pseudomap-1.0.2"
+ sources."qs-6.5.1"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -31385,111 +32182,69 @@ in
})
];
})
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."binary-extensions-1.11.0"
- sources."set-immediate-shim-1.0.1"
- sources."nan-2.8.0"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."sax-1.1.4"
- sources."accepts-1.3.4"
- sources."array-flatten-1.1.1"
- sources."content-disposition-0.5.2"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."finalhandler-1.1.0"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-2.0.2"
sources."range-parser-1.2.0"
- sources."send-0.16.1"
- sources."serve-static-1.13.1"
- sources."utils-merge-1.0.1"
- sources."vary-1.1.2"
- sources."negotiator-0.6.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.5.2"
- sources."destroy-1.0.4"
- sources."http-proxy-1.16.2"
- sources."eventemitter3-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."readable-stream-2.3.3"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
sources."requires-port-1.0.0"
- sources."ansi-escapes-3.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."external-editor-2.1.0"
- sources."figures-2.0.0"
- sources."mute-stream-0.0.7"
+ sources."restore-cursor-2.0.0"
+ sources."rimraf-2.6.2"
+ sources."rsvp-3.6.2"
sources."run-async-2.3.0"
sources."rx-lite-4.0.8"
sources."rx-lite-aggregates-4.0.8"
- sources."through-2.3.8"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."signal-exit-3.0.2"
- sources."mimic-fn-1.1.0"
- sources."chardet-0.4.2"
- sources."tmp-0.0.33"
- sources."os-tmpdir-1.0.2"
- sources."escape-string-regexp-1.0.5"
- sources."is-promise-2.1.0"
- sources."lodash.assign-3.2.0"
- sources."rsvp-3.6.2"
- sources."lodash._baseassign-3.2.0"
- sources."lodash._createassigner-3.1.1"
- sources."lodash.keys-3.1.2"
- sources."lodash._basecopy-3.0.1"
- sources."lodash._bindcallback-3.0.1"
- sources."lodash._isiterateecall-3.0.9"
- sources."lodash.restparam-3.6.1"
- sources."lodash._getnative-3.9.1"
- sources."lodash.isarguments-3.1.0"
- sources."lodash.isarray-3.0.4"
- sources."macos-release-1.1.0"
- sources."win-release-1.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."chownr-1.0.1"
- sources."fs-minipass-1.2.3"
- sources."minipass-2.2.1"
- sources."minizlib-1.1.0"
- sources."mkdirp-0.5.1"
- sources."body-5.1.0"
- sources."faye-websocket-0.10.0"
- sources."livereload-js-2.2.2"
- sources."object-assign-4.1.1"
- sources."continuable-cache-0.3.1"
- sources."error-7.0.2"
+ sources."safe-buffer-5.1.1"
sources."safe-json-parse-1.0.1"
+ sources."sax-1.1.4"
+ sources."semver-5.5.0"
+ sources."send-0.16.1"
+ sources."serve-static-1.13.1"
+ sources."set-immediate-shim-1.0.1"
+ sources."setprototypeof-1.0.3"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slice-ansi-1.0.0"
+ sources."ssh-config-1.1.3"
+ sources."statuses-1.4.0"
sources."string-template-0.2.1"
- sources."websocket-driver-0.7.0"
- sources."http-parser-js-0.4.9"
- sources."websocket-extensions-0.1.3"
- sources."async-limiter-1.0.0"
- sources."ultron-1.1.1"
- sources."ansi-styles-3.2.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-4.0.0"
+ sources."superagent-3.8.2"
sources."supports-color-4.5.0"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."is-wsl-1.1.0"
+ (sources."tar-4.3.0" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."tar-stream-1.5.5"
+ sources."through-2.3.8"
+ sources."tiny-lr-1.1.0"
+ sources."tmp-0.0.33"
+ sources."tslib-1.9.0"
+ sources."type-is-1.6.15"
+ sources."ultron-1.1.1"
+ sources."unpipe-1.0.0"
+ sources."untildify-3.0.2"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."vary-1.1.2"
+ sources."websocket-driver-0.7.0"
+ sources."websocket-extensions-0.1.3"
+ sources."which-1.3.0"
+ sources."win-release-1.1.1"
+ sources."wrap-ansi-3.0.1"
+ sources."wrappy-1.0.2"
+ sources."ws-3.3.3"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
+ sources."zip-stream-1.2.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31527,9 +32282,23 @@ in
};
dependencies = [
sources."abbrev-1.0.9"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."argparse-1.0.9"
sources."async-1.5.2"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."camelcase-1.2.1"
+ sources."center-align-0.1.3"
+ sources."cliui-2.1.0"
+ sources."concat-map-0.0.1"
+ sources."decamelize-1.2.0"
+ sources."deep-is-0.1.3"
sources."escodegen-1.8.1"
sources."esprima-2.7.3"
+ sources."estraverse-1.9.3"
+ sources."esutils-2.0.2"
+ sources."fast-levenshtein-2.0.6"
sources."glob-5.0.15"
(sources."handlebars-4.0.11" // {
dependencies = [
@@ -31537,11 +32306,22 @@ in
sources."wordwrap-0.0.3"
];
})
+ sources."has-flag-1.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-buffer-1.1.6"
+ sources."isexe-2.0.0"
(sources."js-yaml-3.10.0" // {
dependencies = [
sources."esprima-4.0.0"
];
})
+ sources."kind-of-3.2.2"
+ sources."lazy-cache-1.0.4"
+ sources."levn-0.3.0"
+ sources."longest-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.10"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
@@ -31549,54 +32329,29 @@ in
})
sources."nopt-3.0.6"
sources."once-1.4.0"
- sources."resolve-1.1.7"
- sources."supports-color-3.2.3"
- sources."which-1.3.0"
- sources."wordwrap-1.0.0"
- sources."estraverse-1.9.3"
- sources."esutils-2.0.2"
- sources."optionator-0.8.2"
- sources."source-map-0.2.0"
- sources."prelude-ls-1.1.2"
- sources."deep-is-0.1.3"
- sources."type-check-0.3.2"
- sources."levn-0.3.0"
- sources."fast-levenshtein-2.0.6"
- sources."amdefine-1.0.1"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
sources."optimist-0.6.1"
+ sources."optionator-0.8.2"
+ sources."path-is-absolute-1.0.1"
+ sources."prelude-ls-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."resolve-1.1.7"
+ sources."right-align-0.1.3"
+ sources."source-map-0.2.0"
+ sources."sprintf-js-1.0.3"
+ sources."supports-color-3.2.3"
+ sources."type-check-0.3.2"
(sources."uglify-js-2.8.29" // {
dependencies = [
sources."source-map-0.5.7"
sources."wordwrap-0.0.2"
];
})
- sources."minimist-0.0.10"
- sources."yargs-3.10.0"
sources."uglify-to-browserify-1.0.2"
- sources."camelcase-1.2.1"
- sources."cliui-2.1.0"
- sources."decamelize-1.2.0"
+ sources."which-1.3.0"
sources."window-size-0.1.0"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.2.2"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."argparse-1.0.9"
- sources."sprintf-js-1.0.3"
- sources."has-flag-1.0.0"
- sources."isexe-2.0.0"
+ sources."wordwrap-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."yargs-3.10.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31616,12 +32371,32 @@ in
sha512 = "080s545iykbb70x7xm0nqs6s7qs0slprxcqslpv47ffyz6gx7gb8kaa1dlk9lxvkm8pfhdyyj0f6qsx7d1ydscnnl0x1wmkzagbpmzm";
};
dependencies = [
+ sources."ansi-color-0.2.1"
+ sources."ansi-styles-3.2.0"
+ sources."any-promise-1.3.0"
+ sources."assertion-error-1.1.0"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."bufrw-1.2.1"
sources."chai-4.1.2"
sources."chai-as-promised-7.1.1"
sources."chalk-2.3.0"
- sources."commander-2.12.2"
+ sources."check-error-1.0.2"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."commander-2.13.0"
+ sources."concat-map-0.0.1"
+ sources."deep-eql-3.0.1"
+ sources."deep-equal-1.0.1"
+ sources."error-7.0.2"
+ sources."escape-string-regexp-1.0.5"
sources."fast-json-patch-2.0.6"
+ sources."fs.realpath-1.0.0"
+ sources."get-func-name-2.0.0"
sources."glob-7.1.2"
+ sources."has-flag-2.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
sources."iterare-0.0.8"
(sources."jaeger-client-3.7.0" // {
dependencies = [
@@ -31629,55 +32404,35 @@ in
];
})
sources."lodash-4.17.4"
+ sources."long-2.4.0"
+ sources."minimatch-3.0.4"
sources."mz-2.7.0"
+ sources."node-int64-0.4.0"
+ sources."object-assign-4.1.1"
sources."object-hash-1.2.0"
+ sources."once-1.4.0"
sources."opentracing-0.14.1"
- sources."rxjs-5.5.5"
+ sources."path-is-absolute-1.0.1"
+ sources."pathval-1.1.0"
+ sources."rxjs-5.5.6"
sources."semaphore-async-await-1.5.1"
sources."string-similarity-1.2.0"
+ sources."string-template-0.2.1"
+ sources."supports-color-4.5.0"
+ sources."symbol-observable-1.0.1"
+ sources."thenify-3.3.0"
+ sources."thenify-all-1.6.0"
+ sources."thriftrw-3.11.1"
+ sources."type-detect-4.0.7"
sources."typescript-2.4.2"
sources."vscode-jsonrpc-3.5.0"
sources."vscode-languageserver-3.5.0"
- sources."vscode-languageserver-types-3.5.0"
- sources."assertion-error-1.0.2"
- sources."check-error-1.0.2"
- sources."deep-eql-3.0.1"
- sources."get-func-name-2.0.0"
- sources."pathval-1.1.0"
- sources."type-detect-4.0.5"
- sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-4.5.0"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."deep-equal-1.0.1"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."node-int64-0.4.0"
- sources."thriftrw-3.11.1"
- sources."xorshift-0.2.1"
- sources."bufrw-1.2.1"
- sources."error-7.0.2"
- sources."long-2.4.0"
- sources."ansi-color-0.2.1"
- sources."xtend-4.0.1"
- sources."string-template-0.2.1"
- sources."any-promise-1.3.0"
- sources."object-assign-4.1.1"
- sources."thenify-all-1.6.0"
- sources."thenify-3.3.0"
- sources."symbol-observable-1.0.1"
- sources."vscode-uri-1.0.1"
sources."vscode-languageserver-protocol-3.5.0"
+ sources."vscode-languageserver-types-3.5.0"
+ sources."vscode-uri-1.0.1"
+ sources."wrappy-1.0.2"
+ sources."xorshift-0.2.1"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31725,9 +32480,11 @@ in
];
})
sources."escape-string-regexp-1.0.5"
+ sources."graceful-fs-4.1.11"
sources."js2xmlparser-3.0.0"
sources."klaw-2.0.0"
- sources."marked-0.3.7"
+ sources."marked-0.3.12"
+ sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
(sources."requizzle-0.2.1" // {
dependencies = [
@@ -31739,8 +32496,6 @@ in
sources."underscore-1.8.3"
sources."underscore-contrib-0.3.0"
sources."xmlcreate-1.0.2"
- sources."graceful-fs-4.1.11"
- sources."minimist-0.0.8"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31760,42 +32515,42 @@ in
sha1 = "1e7252915ce681b40827ee14248c46d34e9aa62c";
};
dependencies = [
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
sources."cli-1.0.1"
+ sources."concat-map-0.0.1"
sources."console-browserify-1.1.0"
- sources."exit-0.1.2"
- sources."htmlparser2-3.8.3"
- sources."minimatch-3.0.4"
- sources."shelljs-0.3.0"
- sources."strip-json-comments-1.0.4"
- sources."lodash-3.7.0"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
+ sources."core-util-is-1.0.2"
sources."date-now-0.1.4"
+ (sources."dom-serializer-0.1.0" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ ];
+ })
+ sources."domelementtype-1.3.0"
sources."domhandler-2.3.0"
(sources."domutils-1.5.1" // {
dependencies = [
sources."entities-1.1.1"
];
})
- sources."domelementtype-1.3.0"
- sources."readable-stream-1.1.14"
sources."entities-1.0.0"
- (sources."dom-serializer-0.1.0" // {
- dependencies = [
- sources."domelementtype-1.1.3"
- ];
- })
- sources."core-util-is-1.0.2"
+ sources."exit-0.1.2"
+ sources."fs.realpath-1.0.0"
+ sources."glob-7.1.2"
+ sources."htmlparser2-3.8.3"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
sources."isarray-0.0.1"
+ sources."lodash-3.7.0"
+ sources."minimatch-3.0.4"
+ sources."once-1.4.0"
+ sources."path-is-absolute-1.0.1"
+ sources."readable-stream-1.1.14"
+ sources."shelljs-0.3.0"
sources."string_decoder-0.10.31"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
+ sources."strip-json-comments-1.0.4"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31831,20 +32586,20 @@ in
sha512 = "0x3s0bbw8f5d2i5jb08bd2dsxnf7w38fp7fj652cvp558b45mxyvy42zmghrmlyrmbk5d84d8maw4pqq3228jq0l7hkxb4fl415zs7l";
};
dependencies = [
+ sources."abbrev-1.1.1"
+ sources."bluebird-3.5.1"
+ sources."commander-2.13.0"
sources."config-chain-1.1.11"
sources."editorconfig-0.13.3"
+ sources."ini-1.3.5"
+ sources."lru-cache-3.2.0"
+ sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
sources."nopt-3.0.6"
sources."proto-list-1.2.4"
- sources."ini-1.3.5"
- sources."bluebird-3.5.1"
- sources."commander-2.12.2"
- sources."lru-cache-3.2.0"
- sources."semver-5.4.1"
- sources."sigmund-1.0.1"
sources."pseudomap-1.0.2"
- sources."minimist-0.0.8"
- sources."abbrev-1.1.1"
+ sources."semver-5.5.0"
+ sources."sigmund-1.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31864,13 +32619,13 @@ in
sha1 = "5737045085f55eb455c68b1ff4ebc01bd50e8830";
};
dependencies = [
- sources."nomnom-1.8.1"
sources."JSV-4.0.2"
- sources."underscore-1.6.0"
+ sources."ansi-styles-1.0.0"
sources."chalk-0.4.0"
sources."has-color-0.1.7"
- sources."ansi-styles-1.0.0"
+ sources."nomnom-1.8.1"
sources."strip-ansi-0.1.1"
+ sources."underscore-1.6.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31899,48 +32654,48 @@ in
json-refs = nodeEnv.buildNodePackage {
name = "json-refs";
packageName = "json-refs";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/json-refs/-/json-refs-3.0.2.tgz";
- sha512 = "0m7az6dvfn65fbak1y42663yxkachpj1fyyxxpdhkpny3bbsmgn0hpp8fb5sllmzbfyqspkqh1icpqb14pbsfnbsj7w665xmnj4a9g5";
+ url = "https://registry.npmjs.org/json-refs/-/json-refs-3.0.3.tgz";
+ sha512 = "3wagfrcaaj3vscma48jj349wbf838vi5fy0c02xfxd4k57qhf05mfw0i0624fvxfil9gfhx3sl35py85lfjx74hfkw6ra7kqw91p5cw";
};
dependencies = [
- sources."commander-2.12.2"
- sources."graphlib-2.1.1"
- sources."js-yaml-3.10.0"
- sources."lodash-4.17.4"
- sources."native-promise-only-0.8.1"
- sources."path-loader-1.0.4"
- sources."slash-1.0.0"
- sources."uri-js-3.0.2"
sources."argparse-1.0.9"
- sources."esprima-4.0.0"
- sources."sprintf-js-1.0.3"
- sources."superagent-3.8.2"
+ sources."asynckit-0.4.0"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.11.0"
sources."component-emitter-1.2.1"
sources."cookiejar-2.1.1"
+ sources."core-util-is-1.0.2"
sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."esprima-4.0.0"
sources."extend-3.0.1"
sources."form-data-2.3.1"
sources."formidable-1.1.1"
- sources."methods-1.1.2"
- sources."mime-1.6.0"
- sources."qs-6.5.1"
- sources."readable-stream-2.3.3"
- sources."ms-2.0.0"
- sources."asynckit-0.4.0"
- sources."combined-stream-1.0.5"
- sources."mime-types-2.1.17"
- sources."delayed-stream-1.0.0"
- sources."mime-db-1.30.0"
- sources."core-util-is-1.0.2"
+ sources."graphlib-2.1.5"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
+ sources."js-yaml-3.10.0"
+ sources."lodash-4.17.4"
+ sources."methods-1.1.2"
+ sources."mime-1.6.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."ms-2.0.0"
+ sources."native-promise-only-0.8.1"
+ sources."path-loader-1.0.4"
sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
sources."punycode-2.1.0"
+ sources."qs-6.5.1"
+ sources."readable-stream-2.3.3"
+ sources."safe-buffer-5.1.1"
+ sources."slash-1.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."string_decoder-1.0.3"
+ sources."superagent-3.8.2"
+ sources."uri-js-3.0.2"
+ sources."util-deprecate-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -31960,12 +32715,69 @@ in
sha512 = "3isg3ph43vqfq6m6pg0d1iy7gj2gc6jgym0gp3ng7p9fv7bf1q43isf3wbc7bc9w5swsxqjc3v304ic8iinilwrkwxgks1alaxjs3si";
};
dependencies = [
+ sources."accepts-1.3.4"
+ sources."ajv-5.5.2"
+ sources."ansi-align-2.0.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
+ sources."array-flatten-1.1.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."basic-auth-2.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
sources."body-parser-1.18.2"
+ sources."boom-4.3.1"
+ sources."boxen-1.3.0"
+ sources."bytes-3.0.0"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
sources."chalk-2.3.0"
+ sources."cli-boxes-1.0.0"
+ sources."cliui-4.0.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.5"
+ sources."compressible-2.0.12"
sources."compression-1.7.1"
+ sources."configstore-3.1.1"
sources."connect-pause-0.1.1"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."core-util-is-1.0.2"
sources."cors-2.8.4"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."crypto-random-string-1.0.0"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.4.2"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."dot-prop-4.2.0"
+ sources."duplexer3-0.1.4"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
sources."errorhandler-1.5.0"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."etag-1.8.1"
+ sources."execa-0.7.0"
(sources."express-4.16.2" // {
dependencies = [
sources."setprototypeof-1.1.0"
@@ -31977,225 +32789,173 @@ in
sources."path-to-regexp-1.7.0"
];
})
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."finalhandler-1.1.0"
+ sources."find-up-2.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."get-caller-file-1.0.2"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."global-dirs-0.1.1"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-flag-2.0.0"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."invert-kv-1.0.0"
+ sources."ipaddr.js-1.5.2"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-promise-2.1.0"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jju-1.3.0"
+ sources."jsbn-0.1.1"
sources."json-parse-helpfulerror-1.0.3"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ 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."lodash-4.17.4"
sources."lodash-id-0.14.0"
sources."lowdb-0.15.5"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."media-typer-0.3.0"
+ sources."mem-1.1.0"
+ sources."merge-descriptors-1.0.1"
sources."method-override-2.3.10"
+ sources."methods-1.1.2"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimic-fn-1.1.0"
+ sources."minimist-1.2.0"
sources."morgan-1.9.0"
+ sources."ms-2.0.0"
sources."nanoid-1.0.1"
+ sources."negotiator-0.6.1"
+ sources."npm-run-path-2.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
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."p-finally-1.0.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."package-json-4.0.1"
+ sources."parseurl-1.3.2"
+ sources."path-exists-3.0.0"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."performance-now-2.1.0"
+ sources."pify-3.0.0"
sources."please-upgrade-node-3.0.1"
sources."pluralize-7.0.0"
- sources."request-2.83.0"
- sources."server-destroy-1.0.1"
- sources."update-notifier-2.3.0"
- (sources."yargs-10.0.3" // {
- dependencies = [
- sources."strip-ansi-3.0.1"
- sources."is-fullwidth-code-point-1.0.0"
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."bytes-3.0.0"
- sources."content-type-1.0.4"
- sources."debug-2.6.9"
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."on-finished-2.3.0"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."type-is-1.6.15"
- sources."ms-2.0.0"
- sources."inherits-2.0.3"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."ee-first-1.1.1"
- sources."unpipe-1.0.0"
- sources."media-typer-0.3.0"
- sources."mime-types-2.1.17"
- sources."mime-db-1.30.0"
- sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-4.5.0"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."accepts-1.3.4"
- sources."compressible-2.0.12"
- sources."on-headers-1.0.1"
- sources."safe-buffer-5.1.1"
- sources."vary-1.1.2"
- sources."negotiator-0.6.1"
- sources."escape-html-1.0.3"
- sources."array-flatten-1.1.1"
- sources."content-disposition-0.5.2"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."encodeurl-1.0.1"
- sources."etag-1.8.1"
- sources."finalhandler-1.1.0"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
+ sources."prepend-http-1.0.4"
sources."proxy-addr-2.0.2"
- sources."range-parser-1.2.0"
- sources."send-0.16.1"
- sources."serve-static-1.13.1"
- sources."utils-merge-1.0.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.5.2"
- sources."destroy-1.0.4"
- sources."mime-1.4.1"
- sources."isarray-0.0.1"
- sources."jju-1.3.0"
- sources."graceful-fs-4.1.11"
- sources."is-promise-2.1.0"
- sources."steno-0.4.4"
- sources."basic-auth-2.0.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."core-util-is-1.0.2"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."boxen-1.3.0"
- sources."configstore-3.1.1"
- sources."import-lazy-2.1.0"
- sources."is-installed-globally-0.1.0"
- sources."is-npm-1.0.0"
- sources."latest-version-3.1.0"
- sources."semver-diff-2.1.0"
- sources."xdg-basedir-3.0.0"
- sources."ansi-align-2.0.0"
- sources."camelcase-4.1.0"
- sources."cli-boxes-1.0.0"
- sources."string-width-2.1.1"
- sources."term-size-1.2.0"
- sources."widest-line-2.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- sources."execa-0.7.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."signal-exit-3.0.2"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."dot-prop-4.2.0"
- sources."make-dir-1.1.0"
- sources."unique-string-1.0.0"
- sources."write-file-atomic-2.3.0"
- sources."is-obj-1.0.1"
- sources."pify-3.0.0"
- sources."crypto-random-string-1.0.0"
- sources."imurmurhash-0.1.4"
- sources."global-dirs-0.1.1"
- sources."is-path-inside-1.0.1"
- sources."ini-1.3.5"
- sources."path-is-inside-1.0.2"
- sources."package-json-4.0.1"
- sources."got-6.7.1"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."rc-1.2.4"
sources."registry-auth-token-3.3.1"
sources."registry-url-3.1.0"
- sources."semver-5.4.1"
- sources."create-error-class-3.0.2"
- sources."duplexer3-0.1.4"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."lowercase-keys-1.0.0"
- sources."timed-out-4.0.1"
- sources."unzip-response-2.0.1"
- sources."url-parse-lax-1.0.0"
- sources."capture-stack-trace-1.0.0"
- sources."prepend-http-1.0.4"
- sources."rc-1.2.2"
- sources."deep-extend-0.4.2"
- sources."minimist-1.2.0"
- sources."strip-json-comments-2.0.1"
- (sources."cliui-3.2.0" // {
- dependencies = [
- sources."string-width-1.0.2"
- ];
- })
- sources."decamelize-1.2.0"
- sources."find-up-2.1.0"
- sources."get-caller-file-1.0.2"
- sources."os-locale-2.1.0"
+ sources."request-2.83.0"
sources."require-directory-2.1.1"
sources."require-main-filename-1.0.1"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."semver-diff-2.1.0"
+ sources."send-0.16.1"
+ sources."serve-static-1.13.1"
+ sources."server-destroy-1.0.1"
sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.0.3"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-2.1.0"
+ sources."sshpk-1.13.1"
+ sources."statuses-1.4.0"
+ sources."steno-0.4.4"
+ sources."string-width-2.1.1"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-4.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-4.5.0"
+ sources."term-size-1.2.0"
+ sources."timed-out-4.0.1"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.15"
+ sources."unique-string-1.0.0"
+ sources."unpipe-1.0.0"
+ sources."unzip-response-2.0.1"
+ sources."update-notifier-2.3.0"
+ sources."url-parse-lax-1.0.0"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."which-1.3.0"
sources."which-module-2.0.0"
+ sources."widest-line-2.0.0"
+ (sources."wrap-ansi-2.1.0" // {
+ dependencies = [
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ (sources."yargs-10.1.2" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ ];
+ })
sources."yargs-parser-8.1.0"
- sources."wrap-ansi-2.1.0"
- sources."code-point-at-1.1.0"
- sources."number-is-nan-1.0.1"
- sources."locate-path-2.0.0"
- sources."p-locate-2.0.0"
- sources."path-exists-3.0.0"
- sources."p-limit-1.1.0"
- sources."lcid-1.0.0"
- sources."mem-1.1.0"
- sources."invert-kv-1.0.0"
- sources."mimic-fn-1.1.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -32231,19 +32991,123 @@ in
karma = nodeEnv.buildNodePackage {
name = "karma";
packageName = "karma";
- version = "1.7.1";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/karma/-/karma-1.7.1.tgz";
- sha512 = "0g4s1b3k1485yxia2b8703zyw8dxjz9npijnkapv7q9jfw1piyaa2p4hsyqiajnc4n1djri6xk76q6y0jw0n9y7a5d4g6p1f26436lk";
+ url = "https://registry.npmjs.org/karma/-/karma-2.0.0.tgz";
+ sha512 = "0iyj9ic6sj94x4xdd6wy8zgabqbl2ydrsp8h76lwrcx27ns8pzd7bg8yibsjgddzkisb9p1gp6bn46b8g5m2lh3yj5vqx55q2ks7lib";
};
dependencies = [
- sources."bluebird-3.5.1"
- sources."body-parser-1.18.2"
- sources."chokidar-1.7.0"
- sources."colors-1.1.2"
- (sources."combine-lists-1.0.1" // {
+ sources."JSONStream-1.3.2"
+ sources."accepts-1.3.3"
+ sources."acorn-4.0.13"
+ sources."addressparser-1.0.1"
+ sources."after-0.8.2"
+ sources."agent-base-2.1.1"
+ sources."ajv-5.5.2"
+ (sources."amqplib-0.5.2" // {
dependencies = [
- sources."lodash-4.17.4"
+ sources."readable-stream-1.1.14"
+ ];
+ })
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."anymatch-1.3.2"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-filter-0.0.1"
+ sources."array-map-0.0.0"
+ sources."array-reduce-0.0.0"
+ sources."array-slice-0.2.3"
+ sources."array-unique-0.2.1"
+ sources."arraybuffer.slice-0.0.7"
+ sources."asn1-0.2.3"
+ sources."asn1.js-4.9.2"
+ sources."assert-1.4.1"
+ sources."assert-plus-1.0.0"
+ sources."ast-types-0.10.1"
+ sources."astw-2.2.0"
+ sources."async-2.1.5"
+ sources."async-each-1.0.1"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ (sources."axios-0.15.3" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."base64-arraybuffer-0.1.5"
+ sources."base64-js-1.2.1"
+ sources."base64id-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."better-assert-1.0.2"
+ sources."binary-extensions-1.11.0"
+ sources."bitsyntax-0.0.4"
+ sources."bl-1.1.2"
+ sources."blob-0.0.4"
+ sources."bluebird-3.5.1"
+ sources."bn.js-4.11.8"
+ sources."body-parser-1.18.2"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."brorand-1.1.0"
+ sources."browser-pack-6.0.3"
+ (sources."browser-resolve-1.11.2" // {
+ dependencies = [
+ sources."resolve-1.1.7"
+ ];
+ })
+ (sources."browserify-14.5.0" // {
+ dependencies = [
+ sources."acorn-5.3.0"
+ sources."combine-source-map-0.7.2"
+ sources."hash-base-2.0.2"
+ sources."isarray-0.0.1"
+ sources."source-map-0.5.7"
+ ];
+ })
+ sources."browserify-aes-1.1.1"
+ sources."browserify-cipher-1.0.0"
+ sources."browserify-des-1.0.0"
+ sources."browserify-rsa-4.0.1"
+ sources."browserify-sign-4.0.4"
+ sources."browserify-zlib-0.2.0"
+ sources."buffer-5.0.8"
+ sources."buffer-more-ints-0.0.2"
+ sources."buffer-xor-1.0.3"
+ sources."buildmail-4.0.1"
+ sources."builtin-status-codes-3.0.0"
+ sources."bytes-3.0.0"
+ sources."cached-path-relative-1.0.1"
+ sources."callsite-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chalk-1.1.3"
+ sources."chokidar-1.7.0"
+ sources."cipher-base-1.0.4"
+ sources."circular-json-0.5.1"
+ sources."co-4.6.0"
+ sources."colors-1.1.2"
+ sources."combine-lists-1.0.1"
+ sources."combine-source-map-0.8.0"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.2.1"
+ sources."component-inherit-0.0.3"
+ sources."concat-map-0.0.1"
+ (sources."concat-stream-1.5.2" // {
+ dependencies = [
+ sources."readable-stream-2.0.6"
+ sources."string_decoder-0.10.31"
];
})
(sources."connect-3.6.5" // {
@@ -32251,9 +33115,59 @@ in
sources."statuses-1.3.1"
];
})
+ sources."console-browserify-1.1.0"
+ sources."constants-browserify-1.0.0"
+ sources."content-type-1.0.4"
+ sources."convert-source-map-1.1.3"
+ sources."cookie-0.3.1"
sources."core-js-2.5.3"
+ sources."core-util-is-1.0.2"
+ sources."create-ecdh-4.0.0"
+ sources."create-hash-1.1.3"
+ sources."create-hmac-1.1.6"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."crypto-browserify-3.12.0"
+ sources."custom-event-1.0.1"
+ sources."dashdash-1.14.1"
+ sources."data-uri-to-buffer-1.2.0"
+ sources."date-format-1.2.0"
+ sources."date-now-0.1.4"
+ sources."debug-2.6.9"
+ sources."deep-is-0.1.3"
+ sources."defined-1.0.0"
+ sources."degenerator-1.0.4"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."deps-sort-2.0.0"
+ sources."des.js-1.0.0"
+ sources."detective-4.7.1"
sources."di-0.0.1"
+ sources."diffie-hellman-5.0.2"
sources."dom-serialize-2.2.1"
+ sources."domain-browser-1.1.7"
+ sources."double-ended-queue-2.1.0-0"
+ sources."duplexer2-0.1.4"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."elliptic-6.4.0"
+ sources."encodeurl-1.0.2"
+ sources."engine.io-3.1.4"
+ sources."engine.io-client-3.1.4"
+ sources."engine.io-parser-2.1.2"
+ sources."ent-2.2.0"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."escodegen-1.9.0"
+ sources."esprima-3.1.3"
+ sources."estraverse-4.2.0"
+ sources."esutils-2.0.2"
+ sources."eventemitter3-1.2.0"
+ sources."events-1.1.1"
+ sources."evp_bytestokey-1.0.3"
(sources."expand-braces-0.1.2" // {
dependencies = [
sources."braces-0.1.5"
@@ -32262,87 +33176,222 @@ in
sources."repeat-string-0.2.2"
];
})
- sources."glob-7.1.2"
- sources."graceful-fs-4.1.11"
- sources."http-proxy-1.16.2"
- sources."isbinaryfile-3.0.2"
- sources."lodash-3.10.1"
- (sources."log4js-0.6.38" // {
- dependencies = [
- sources."readable-stream-1.0.34"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."mime-1.6.0"
- sources."minimatch-3.0.4"
- sources."optimist-0.6.1"
- sources."qjobs-1.1.5"
- sources."range-parser-1.2.0"
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.1"
- (sources."socket.io-1.7.3" // {
- dependencies = [
- sources."debug-2.3.3"
- sources."ms-0.7.2"
- sources."isarray-0.0.1"
- sources."component-emitter-1.1.2"
- ];
- })
- sources."source-map-0.5.7"
- sources."tmp-0.0.31"
- sources."useragent-2.2.1"
- sources."bytes-3.0.0"
- sources."content-type-1.0.4"
- sources."debug-2.6.9"
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."on-finished-2.3.0"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."type-is-1.6.15"
- sources."ms-2.0.0"
- sources."inherits-2.0.3"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."ee-first-1.1.1"
- sources."unpipe-1.0.0"
- sources."media-typer-0.3.0"
- sources."mime-types-2.1.17"
- sources."mime-db-1.30.0"
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."path-is-absolute-1.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
- sources."micromatch-2.3.11"
- sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
+ sources."extend-3.0.1"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."file-uri-to-path-1.0.0"
+ sources."filename-regex-2.0.1"
sources."fill-range-2.2.3"
+ sources."finalhandler-1.0.6"
+ sources."follow-redirects-1.0.0"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.1.3"
+ (sources."ftp-0.3.10" // {
+ dependencies = [
+ sources."readable-stream-1.1.14"
+ ];
+ })
+ sources."function-bind-1.1.1"
+ sources."generate-function-2.0.0"
+ sources."generate-object-property-1.2.0"
+ sources."get-uri-2.0.1"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-1.0.1"
+ sources."has-ansi-2.0.0"
+ sources."has-binary2-1.0.2"
+ sources."has-cors-1.1.0"
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.3"
+ sources."hawk-6.0.2"
+ sources."hipchat-notifier-1.1.0"
+ sources."hmac-drbg-1.0.1"
+ sources."hoek-4.2.0"
+ sources."htmlescape-1.1.1"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-proxy-1.16.2"
+ sources."http-proxy-agent-1.0.0"
+ sources."http-signature-1.2.0"
+ sources."httpntlm-1.6.1"
+ sources."httpreq-0.4.24"
+ sources."https-browserify-1.0.0"
+ sources."https-proxy-agent-1.0.0"
+ sources."iconv-lite-0.4.19"
+ sources."ieee754-1.1.8"
+ sources."indexof-0.0.1"
+ sources."inflection-1.10.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."inline-source-map-0.6.2"
+ sources."insert-module-globals-7.0.1"
+ sources."ip-1.0.1"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-my-json-valid-2.17.1"
sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-property-1.0.2"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isbinaryfile-3.0.2"
sources."isobject-2.1.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stable-stringify-0.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonify-0.0.0"
+ sources."jsonparse-1.3.1"
+ sources."jsonpointer-4.0.1"
+ sources."jsprim-1.4.1"
+ sources."kind-of-3.2.2"
+ sources."labeled-stream-splicer-2.0.0"
+ sources."levn-0.3.0"
+ sources."lexical-scope-1.2.0"
+ sources."libbase64-0.1.0"
+ sources."libmime-3.0.0"
+ sources."libqp-1.1.0"
+ sources."lodash-4.17.4"
+ sources."lodash.memoize-3.0.4"
+ (sources."log4js-2.5.2" // {
+ dependencies = [
+ sources."assert-plus-0.2.0"
+ sources."aws-sign2-0.6.0"
+ sources."boom-2.10.1"
+ sources."caseless-0.11.0"
+ sources."co-3.0.6"
+ sources."cryptiles-2.0.5"
+ sources."debug-3.1.0"
+ sources."form-data-2.0.0"
+ sources."har-validator-2.0.6"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-signature-1.1.1"
+ sources."iconv-lite-0.4.15"
+ sources."ip-1.1.5"
+ sources."isarray-0.0.1"
+ sources."minimist-0.0.8"
+ sources."ms-0.7.1"
+ sources."qs-6.2.3"
+ sources."readable-stream-2.0.6"
+ sources."request-2.75.0"
+ sources."sntp-1.0.9"
+ sources."socks-1.1.9"
+ sources."source-map-0.5.7"
+ sources."string_decoder-0.10.31"
+ sources."tunnel-agent-0.4.3"
+ ];
+ })
+ sources."loggly-1.1.1"
+ sources."lru-cache-2.6.5"
+ sources."mailcomposer-4.0.1"
+ (sources."mailgun-js-0.7.15" // {
+ dependencies = [
+ sources."debug-2.2.0"
+ sources."form-data-2.1.4"
+ sources."semver-5.0.3"
+ ];
+ })
+ sources."md5.js-1.3.4"
+ sources."media-typer-0.3.0"
+ sources."micromatch-2.3.11"
+ sources."miller-rabin-4.0.1"
+ sources."mime-1.6.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimalistic-assert-1.0.0"
+ sources."minimalistic-crypto-utils-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.5.1"
+ sources."module-deps-4.1.1"
+ sources."ms-2.0.0"
+ sources."nan-2.8.0"
+ sources."negotiator-0.6.1"
+ sources."netmask-1.0.6"
+ sources."node-uuid-1.4.8"
+ sources."nodemailer-2.7.2"
+ sources."nodemailer-direct-transport-3.3.2"
+ sources."nodemailer-fetch-1.6.0"
+ sources."nodemailer-shared-1.1.0"
+ sources."nodemailer-smtp-pool-2.8.2"
+ sources."nodemailer-smtp-transport-2.7.2"
+ sources."nodemailer-wellknown-0.1.10"
+ sources."normalize-path-2.1.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-component-0.0.3"
+ sources."object.omit-2.0.1"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ (sources."optimist-0.6.1" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ sources."wordwrap-0.0.3"
+ ];
+ })
+ sources."optionator-0.8.2"
+ sources."os-browserify-0.3.0"
+ sources."os-tmpdir-1.0.2"
+ sources."pac-proxy-agent-1.1.0"
+ sources."pac-resolver-2.0.0"
+ sources."pako-1.0.6"
+ sources."parents-1.0.1"
+ sources."parse-asn1-5.1.0"
+ sources."parse-glob-3.0.4"
+ sources."parseqs-0.0.5"
+ sources."parseuri-0.0.5"
+ sources."parseurl-1.3.2"
+ sources."path-browserify-0.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.5"
+ sources."path-platform-0.11.15"
+ (sources."path-proxy-1.0.0" // {
+ dependencies = [
+ sources."inflection-1.3.8"
+ ];
+ })
+ sources."pbkdf2-3.0.14"
+ sources."performance-now-2.1.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."prelude-ls-1.1.2"
+ sources."preserve-0.2.0"
+ sources."process-0.11.10"
+ sources."process-nextick-args-1.0.7"
+ sources."proxy-agent-2.0.0"
+ sources."public-encrypt-4.0.0"
+ sources."punycode-1.4.1"
+ sources."q-1.4.1"
+ sources."qjobs-1.1.5"
+ sources."qs-6.5.1"
+ sources."querystring-0.2.0"
+ sources."querystring-es3-0.2.1"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -32352,91 +33401,119 @@ in
})
];
})
- sources."repeat-string-1.6.1"
- sources."isarray-1.0.0"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."binary-extensions-1.11.0"
- sources."readable-stream-2.3.3"
- sources."set-immediate-shim-1.0.1"
- sources."core-util-is-1.0.2"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."nan-2.8.0"
- sources."finalhandler-1.0.6"
- sources."parseurl-1.3.2"
- sources."utils-merge-1.0.1"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."custom-event-1.0.1"
- sources."ent-2.2.0"
- sources."extend-3.0.1"
- sources."void-elements-2.0.1"
- sources."array-slice-0.2.3"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."eventemitter3-1.2.0"
- sources."requires-port-1.0.0"
- sources."semver-4.3.6"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- sources."engine.io-1.8.3"
- sources."has-binary-0.1.7"
- sources."object-assign-4.1.0"
- sources."socket.io-adapter-0.5.0"
- sources."socket.io-client-1.7.3"
- (sources."socket.io-parser-2.3.1" // {
+ sources."randombytes-2.0.6"
+ sources."randomfill-1.0.3"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."read-only-stream-2.0.0"
+ (sources."readable-stream-2.3.3" // {
dependencies = [
- sources."debug-2.2.0"
- sources."ms-0.7.1"
+ sources."isarray-1.0.0"
];
})
- sources."accepts-1.3.3"
- sources."base64id-1.0.0"
- sources."engine.io-parser-1.3.2"
- sources."ws-1.1.2"
- sources."cookie-0.3.1"
- sources."negotiator-0.6.1"
- sources."after-0.8.2"
- sources."arraybuffer.slice-0.0.6"
- sources."base64-arraybuffer-0.1.5"
- sources."blob-0.0.4"
- sources."wtf-8-1.0.0"
- sources."options-0.0.6"
- sources."ultron-1.0.2"
- sources."backo2-1.0.2"
- sources."component-bind-1.0.0"
- sources."component-emitter-1.2.1"
- sources."engine.io-client-1.8.3"
- sources."indexof-0.0.1"
- sources."object-component-0.0.3"
- sources."parseuri-0.0.5"
+ sources."readdirp-2.1.0"
+ sources."redis-2.8.0"
+ sources."redis-commands-1.3.1"
+ sources."redis-parser-2.6.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."request-2.83.0"
+ sources."requestretry-1.13.0"
+ sources."requires-port-1.0.0"
+ sources."resolve-1.5.0"
+ sources."rimraf-2.6.2"
+ sources."ripemd160-2.0.1"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."set-immediate-shim-1.0.1"
+ sources."setprototypeof-1.0.3"
+ sources."sha.js-2.4.10"
+ sources."shasum-1.0.2"
+ sources."shell-quote-1.6.1"
+ sources."slack-node-0.2.0"
+ sources."smart-buffer-1.1.15"
+ sources."smtp-connection-2.12.0"
+ sources."sntp-2.1.0"
+ (sources."socket.io-2.0.4" // {
+ dependencies = [
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."socket.io-adapter-1.1.1"
+ sources."socket.io-client-2.0.4"
+ sources."socket.io-parser-3.1.2"
+ sources."socks-1.1.10"
+ sources."socks-proxy-agent-2.1.1"
+ sources."source-map-0.6.1"
+ sources."sshpk-1.13.1"
+ sources."statuses-1.4.0"
+ sources."stream-browserify-2.0.1"
+ sources."stream-combiner2-1.1.1"
+ sources."stream-http-2.8.0"
+ sources."stream-splicer-2.0.0"
+ sources."streamroller-0.7.0"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."subarg-1.0.0"
+ sources."supports-color-2.0.0"
+ (sources."syntax-error-1.3.0" // {
+ dependencies = [
+ sources."acorn-4.0.13"
+ ];
+ })
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
+ sources."thunkify-2.1.2"
+ sources."timers-browserify-1.4.2"
+ sources."timespan-2.3.0"
+ sources."tmp-0.0.33"
sources."to-array-0.1.4"
- sources."component-inherit-0.0.3"
- sources."has-cors-1.1.0"
- sources."parsejson-0.0.3"
- sources."parseqs-0.0.5"
- sources."xmlhttprequest-ssl-1.5.3"
+ sources."to-arraybuffer-1.0.1"
+ sources."tough-cookie-2.3.3"
+ sources."tsscmp-1.0.5"
+ sources."tty-browserify-0.0.0"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-check-0.3.2"
+ sources."type-is-1.6.15"
+ sources."typedarray-0.0.6"
+ sources."ultron-1.1.1"
+ sources."umd-3.0.1"
+ sources."underscore-1.7.0"
+ sources."unpipe-1.0.0"
+ (sources."url-0.11.0" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
+ (sources."useragent-2.2.1" // {
+ dependencies = [
+ sources."lru-cache-2.2.4"
+ ];
+ })
+ (sources."util-0.10.3" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ ];
+ })
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."uws-0.14.5"
+ sources."verror-1.10.0"
+ sources."vm-browserify-0.0.4"
+ sources."void-elements-2.0.1"
+ sources."when-3.7.8"
+ sources."wordwrap-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."ws-3.3.3"
+ sources."xmlhttprequest-ssl-1.5.5"
+ sources."xregexp-2.0.0"
+ sources."xtend-4.0.1"
sources."yeast-0.1.2"
- sources."better-assert-1.0.2"
- sources."callsite-1.0.0"
- sources."json3-3.3.2"
- sources."os-tmpdir-1.0.2"
- sources."lru-cache-2.2.4"
];
buildInputs = globalBuildInputs;
meta = {
@@ -32457,147 +33534,147 @@ in
sha256 = "a282e834ff67715017f299468ff0d7e496d2bc0f1f7b075b557568b7feb3dba7";
};
dependencies = [
- (sources."express-3.21.2" // {
- dependencies = [
- sources."accepts-1.3.4"
- sources."negotiator-0.6.1"
- sources."uid-safe-2.0.0"
- sources."ms-2.0.0"
- sources."statuses-1.2.1"
- sources."destroy-1.0.3"
- ];
- })
- (sources."passport-0.4.0" // {
- dependencies = [
- sources."pause-0.0.1"
- ];
- })
- sources."passport-google-oauth-1.0.0"
- sources."connect-restreamer-1.0.3"
- sources."xml2js-0.4.19"
+ sources."accepts-1.2.13"
+ sources."base64-url-1.2.1"
sources."basic-auth-1.0.4"
+ sources."basic-auth-connect-1.0.0"
+ sources."batch-0.5.3"
+ sources."body-parser-1.13.3"
+ sources."bytes-2.1.0"
+ sources."commander-2.6.0"
+ sources."compressible-2.0.12"
+ sources."compression-1.5.2"
(sources."connect-2.30.2" // {
dependencies = [
- sources."escape-html-1.0.3"
- sources."vary-1.1.2"
- sources."ms-0.7.2"
sources."accepts-1.2.13"
+ sources."escape-html-1.0.3"
+ sources."ms-0.7.2"
sources."negotiator-0.5.3"
sources."send-0.13.2"
+ sources."vary-1.1.2"
];
})
+ sources."connect-restreamer-1.0.3"
+ sources."connect-timeout-1.6.2"
sources."content-disposition-0.5.0"
sources."content-type-1.0.4"
- sources."commander-2.6.0"
sources."cookie-0.1.3"
+ sources."cookie-parser-1.3.5"
sources."cookie-signature-1.0.6"
+ sources."core-util-is-1.0.2"
+ sources."crc-3.3.0"
+ sources."csrf-3.0.6"
+ sources."csurf-1.8.3"
(sources."debug-2.2.0" // {
dependencies = [
sources."ms-0.7.1"
];
})
sources."depd-1.0.1"
+ sources."destroy-1.0.4"
+ sources."ee-first-1.1.1"
+ sources."errorhandler-1.4.3"
sources."escape-html-1.0.2"
sources."etag-1.7.0"
- sources."fresh-0.3.0"
- sources."merge-descriptors-1.0.0"
- sources."methods-1.1.2"
- sources."mkdirp-0.5.1"
- sources."parseurl-1.3.2"
- sources."proxy-addr-1.0.10"
- sources."range-parser-1.0.3"
- (sources."send-0.13.0" // {
+ (sources."express-3.21.2" // {
dependencies = [
- sources."ms-0.7.1"
+ sources."accepts-1.3.4"
+ sources."destroy-1.0.3"
+ sources."ms-2.0.0"
+ sources."negotiator-0.6.1"
+ sources."statuses-1.2.1"
+ sources."uid-safe-2.0.0"
];
})
- sources."utils-merge-1.0.0"
- sources."vary-1.0.1"
- sources."basic-auth-connect-1.0.0"
- sources."body-parser-1.13.3"
- sources."bytes-2.1.0"
- sources."cookie-parser-1.3.5"
- sources."compression-1.5.2"
- sources."connect-timeout-1.6.2"
- sources."csurf-1.8.3"
- sources."errorhandler-1.4.3"
sources."express-session-1.11.3"
(sources."finalhandler-0.4.0" // {
dependencies = [
sources."escape-html-1.0.2"
];
})
+ sources."forwarded-0.1.2"
+ sources."fresh-0.3.0"
sources."http-errors-1.3.1"
+ sources."iconv-lite-0.4.11"
+ sources."inherits-2.0.3"
+ sources."ipaddr.js-1.0.5"
+ sources."isarray-0.0.1"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.0"
(sources."method-override-2.3.10" // {
dependencies = [
sources."debug-2.6.9"
];
})
+ sources."methods-1.1.2"
+ sources."mime-1.3.4"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
sources."morgan-1.6.1"
+ sources."ms-0.7.1"
sources."multiparty-3.3.2"
- sources."on-headers-1.0.1"
- sources."pause-0.1.0"
- sources."qs-4.0.0"
- (sources."response-time-2.3.2" // {
- dependencies = [
- sources."depd-1.1.1"
- ];
- })
- sources."serve-favicon-2.3.2"
- sources."serve-index-1.7.3"
- (sources."serve-static-1.10.3" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."ms-0.7.1"
- ];
- })
- sources."type-is-1.6.15"
- sources."vhost-3.0.2"
- sources."iconv-lite-0.4.11"
+ sources."negotiator-0.5.3"
+ sources."oauth-0.9.15"
sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."parseurl-1.3.2"
+ (sources."passport-0.4.0" // {
+ dependencies = [
+ sources."pause-0.0.1"
+ ];
+ })
+ sources."passport-google-oauth-1.0.0"
+ sources."passport-google-oauth1-1.0.0"
+ sources."passport-google-oauth20-1.0.0"
+ sources."passport-oauth1-1.1.0"
+ sources."passport-oauth2-1.4.0"
+ sources."passport-strategy-1.0.0"
+ sources."pause-0.1.0"
+ sources."proxy-addr-1.0.10"
+ sources."qs-4.0.0"
+ sources."random-bytes-1.0.0"
+ sources."range-parser-1.0.3"
(sources."raw-body-2.1.7" // {
dependencies = [
sources."bytes-2.4.0"
sources."iconv-lite-0.4.13"
];
})
- sources."ee-first-1.1.1"
- sources."unpipe-1.0.0"
- sources."accepts-1.2.13"
- sources."compressible-2.0.12"
- sources."mime-types-2.1.17"
- sources."negotiator-0.5.3"
- sources."mime-db-1.30.0"
- sources."ms-0.7.1"
- sources."csrf-3.0.6"
- sources."rndm-1.2.0"
- sources."tsscmp-1.0.5"
- sources."uid-safe-2.1.4"
- sources."random-bytes-1.0.0"
- sources."crc-3.3.0"
- sources."base64-url-1.2.1"
- sources."inherits-2.0.3"
- sources."statuses-1.4.0"
sources."readable-stream-1.1.14"
- sources."stream-counter-0.2.0"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."batch-0.5.3"
- sources."destroy-1.0.4"
- sources."mime-1.3.4"
- sources."media-typer-0.3.0"
- sources."minimist-0.0.8"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.0.5"
- sources."passport-strategy-1.0.0"
- sources."passport-google-oauth1-1.0.0"
- sources."passport-google-oauth20-1.0.0"
- sources."passport-oauth1-1.1.0"
- sources."oauth-0.9.15"
- sources."passport-oauth2-1.4.0"
- sources."uid2-0.0.3"
+ (sources."response-time-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ ];
+ })
+ sources."rndm-1.2.0"
sources."sax-1.2.4"
+ (sources."send-0.13.0" // {
+ dependencies = [
+ sources."ms-0.7.1"
+ ];
+ })
+ sources."serve-favicon-2.3.2"
+ sources."serve-index-1.7.3"
+ (sources."serve-static-1.10.3" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ sources."ms-0.7.1"
+ ];
+ })
+ sources."statuses-1.4.0"
+ sources."stream-counter-0.2.0"
+ sources."string_decoder-0.10.31"
+ sources."tsscmp-1.0.5"
+ sources."type-is-1.6.15"
+ sources."uid-safe-2.1.4"
+ sources."uid2-0.0.3"
+ sources."unpipe-1.0.0"
+ sources."utils-merge-1.0.0"
+ sources."vary-1.0.1"
+ sources."vhost-3.0.2"
+ sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.4"
];
buildInputs = globalBuildInputs;
@@ -32611,129 +33688,66 @@ in
lerna = nodeEnv.buildNodePackage {
name = "lerna";
packageName = "lerna";
- version = "2.5.1";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lerna/-/lerna-2.5.1.tgz";
- sha512 = "0bh7a9asvl8vb6szbr8h4h55xzyqmqap0yjqbvyqc9n8yygv5p1s81i1kqgxcbq41p37gf63gyjbws76sa44l11w5gxcgl279m9yga3";
+ url = "https://registry.npmjs.org/lerna/-/lerna-2.8.0.tgz";
+ sha512 = "2admd5d0lmnck38apsqbblrk0pffnq52s25bb591q8sazykcfz68kz9pn534sgazjl26p57y23758n8n7xvw0ilb9hd5ri6j34i7kxn";
};
dependencies = [
- sources."async-1.5.2"
- sources."chalk-2.3.0"
- sources."cmd-shim-2.0.2"
- sources."columnify-1.5.4"
- sources."command-join-2.0.0"
- (sources."conventional-changelog-cli-1.3.5" // {
- dependencies = [
- sources."read-pkg-1.1.0"
- sources."yargs-3.10.0"
- sources."wordwrap-0.0.2"
- sources."load-json-file-1.1.0"
- sources."find-up-1.1.2"
- sources."path-exists-2.1.0"
- sources."minimist-1.2.0"
- sources."camelcase-2.1.1"
- ];
- })
- sources."conventional-recommended-bump-1.1.0"
- sources."dedent-0.7.0"
- sources."execa-0.8.0"
- sources."find-up-2.1.0"
- sources."fs-extra-4.0.3"
- sources."get-port-3.2.0"
- sources."glob-7.1.2"
- sources."glob-parent-3.1.0"
- sources."globby-6.1.0"
- sources."graceful-fs-4.1.11"
- sources."hosted-git-info-2.5.0"
- (sources."inquirer-3.3.0" // {
- dependencies = [
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- ];
- })
- sources."is-ci-1.0.10"
- (sources."load-json-file-3.0.0" // {
- dependencies = [
- sources."parse-json-3.0.0"
- sources."strip-bom-3.0.0"
- ];
- })
- sources."lodash-4.17.4"
- sources."minimatch-3.0.4"
- (sources."npmlog-4.1.2" // {
- dependencies = [
- sources."string-width-1.0.2"
- sources."is-fullwidth-code-point-1.0.0"
- ];
- })
- sources."p-finally-1.0.0"
- (sources."package-json-4.0.1" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."path-exists-3.0.0"
- sources."read-cmd-shim-1.0.1"
- (sources."read-pkg-2.0.0" // {
- dependencies = [
- sources."load-json-file-2.0.0"
- sources."path-type-2.0.0"
- sources."strip-bom-3.0.0"
- ];
- })
- sources."rimraf-2.6.2"
- sources."safe-buffer-5.1.1"
- sources."semver-5.4.1"
- sources."signal-exit-3.0.2"
- (sources."strong-log-transformer-1.0.6" // {
- dependencies = [
- sources."minimist-0.1.0"
- ];
- })
- (sources."temp-write-3.3.0" // {
- dependencies = [
- sources."uuid-3.1.0"
- ];
- })
- sources."write-file-atomic-2.3.0"
- (sources."write-json-file-2.3.0" // {
- dependencies = [
- sources."pify-3.0.0"
- ];
- })
- sources."write-pkg-3.1.0"
- (sources."yargs-8.0.2" // {
- dependencies = [
- sources."camelcase-4.1.0"
- (sources."cliui-3.2.0" // {
- dependencies = [
- sources."string-width-1.0.2"
- ];
- })
- sources."read-pkg-up-2.0.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."execa-0.7.0"
- ];
- })
+ sources."JSONStream-1.3.2"
+ sources."add-stream-1.0.0"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."ansi-escapes-3.0.0"
+ sources."ansi-regex-2.1.1"
sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-4.5.0"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."array-find-index-1.0.2"
+ sources."array-ify-1.0.0"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."async-1.5.2"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."builtin-modules-1.1.1"
+ sources."byline-5.0.0"
+ sources."camelcase-1.2.1"
+ sources."camelcase-keys-2.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."center-align-0.1.3"
+ sources."chalk-2.3.0"
+ sources."chardet-0.4.2"
+ sources."ci-info-1.1.2"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ sources."cliui-2.1.0"
+ sources."clone-1.0.3"
+ sources."cmd-shim-2.0.2"
+ sources."code-point-at-1.1.0"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."mkdirp-0.5.1"
- sources."minimist-0.0.8"
- sources."strip-ansi-3.0.1"
- sources."wcwidth-1.0.1"
- sources."ansi-regex-2.1.1"
- sources."defaults-1.0.3"
- sources."clone-1.0.3"
- sources."add-stream-1.0.0"
+ sources."columnify-1.5.4"
+ sources."command-join-2.0.0"
+ sources."compare-func-1.3.2"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."console-control-strings-1.1.0"
sources."conventional-changelog-1.1.7"
- sources."meow-3.7.0"
- sources."tempfile-1.1.1"
sources."conventional-changelog-angular-1.6.0"
sources."conventional-changelog-atom-0.1.2"
+ (sources."conventional-changelog-cli-1.3.5" // {
+ dependencies = [
+ sources."camelcase-2.1.1"
+ sources."find-up-1.1.2"
+ sources."load-json-file-1.1.0"
+ sources."minimist-1.2.0"
+ sources."path-exists-2.1.0"
+ sources."read-pkg-1.1.0"
+ sources."wordwrap-0.0.2"
+ sources."yargs-3.10.0"
+ ];
+ })
sources."conventional-changelog-codemirror-0.2.1"
sources."conventional-changelog-core-1.9.5"
sources."conventional-changelog-ember-0.2.10"
@@ -32742,203 +33756,270 @@ in
sources."conventional-changelog-jquery-0.1.0"
sources."conventional-changelog-jscs-0.1.0"
sources."conventional-changelog-jshint-0.2.1"
- sources."compare-func-1.3.2"
- sources."q-1.5.1"
- sources."array-ify-1.0.0"
- sources."dot-prop-3.0.0"
- sources."is-obj-1.0.1"
sources."conventional-changelog-writer-2.0.3"
+ sources."conventional-commits-filter-1.1.1"
sources."conventional-commits-parser-2.1.0"
+ sources."conventional-recommended-bump-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."currently-unhandled-0.4.1"
+ sources."dargs-4.1.0"
sources."dateformat-1.0.12"
+ sources."decamelize-1.2.0"
+ sources."dedent-0.7.0"
+ sources."deep-extend-0.4.2"
+ sources."defaults-1.0.3"
+ sources."delegates-1.0.0"
+ sources."detect-indent-5.0.0"
+ sources."dot-prop-3.0.0"
+ sources."duplexer-0.1.1"
+ sources."duplexer3-0.1.4"
+ sources."error-ex-1.3.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-0.8.0"
+ sources."external-editor-2.1.0"
+ sources."figures-2.0.0"
+ sources."find-up-2.1.0"
+ sources."fs-extra-4.0.3"
+ sources."fs.realpath-1.0.0"
+ sources."gauge-2.7.4"
+ sources."get-caller-file-1.0.2"
sources."get-pkg-repo-1.4.0"
+ sources."get-port-3.2.0"
+ sources."get-stdin-4.0.1"
+ sources."get-stream-3.0.0"
sources."git-raw-commits-1.3.0"
sources."git-remote-origin-url-2.0.0"
sources."git-semver-tags-1.2.3"
- sources."normalize-package-data-2.4.0"
- sources."read-pkg-up-1.0.1"
- sources."through2-2.0.3"
- sources."conventional-commits-filter-1.1.1"
+ sources."gitconfiglocal-1.0.0"
+ sources."glob-7.1.2"
+ sources."glob-parent-3.1.0"
+ sources."globby-6.1.0"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
sources."handlebars-4.0.11"
- sources."json-stringify-safe-5.0.1"
- sources."split-1.0.1"
+ sources."has-flag-2.0.0"
+ sources."has-unicode-2.0.1"
+ sources."hosted-git-info-2.5.0"
+ sources."iconv-lite-0.4.19"
+ sources."imurmurhash-0.1.4"
+ sources."indent-string-2.1.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ (sources."inquirer-3.3.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."invert-kv-1.0.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-buffer-1.1.6"
+ sources."is-builtin-module-1.0.0"
+ sources."is-ci-1.1.0"
+ sources."is-extglob-2.1.1"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-glob-3.1.0"
+ sources."is-obj-1.0.1"
+ sources."is-plain-obj-1.1.0"
+ sources."is-promise-2.1.0"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
sources."is-subset-0.1.1"
+ sources."is-text-path-1.0.1"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."json-parse-better-errors-1.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-4.0.0"
+ sources."jsonparse-1.3.1"
+ sources."kind-of-3.2.2"
+ sources."lazy-cache-1.0.4"
+ sources."lcid-1.0.0"
+ (sources."load-json-file-4.0.0" // {
+ dependencies = [
+ sources."parse-json-4.0.0"
+ sources."pify-3.0.0"
+ sources."strip-bom-3.0.0"
+ ];
+ })
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.4"
+ sources."lodash._reinterpolate-3.0.0"
+ sources."lodash.template-4.4.0"
+ sources."lodash.templatesettings-4.1.0"
+ sources."longest-1.0.1"
+ sources."loud-rejection-1.6.0"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."map-obj-1.0.1"
+ sources."mem-1.1.0"
+ sources."meow-3.7.0"
+ sources."mimic-fn-1.1.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
sources."modify-values-1.0.0"
+ sources."moment-2.20.1"
+ sources."mute-stream-0.0.7"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-run-path-2.0.2"
+ (sources."npmlog-4.1.2" // {
+ dependencies = [
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."string-width-1.0.2"
+ ];
+ })
+ sources."number-is-nan-1.0.1"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
sources."optimist-0.6.1"
+ sources."os-locale-2.1.0"
+ sources."os-tmpdir-1.0.2"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ (sources."package-json-4.0.1" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."parse-github-repo-url-1.4.1"
+ sources."parse-json-2.2.0"
+ sources."path-dirname-1.0.2"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-2.0.1"
+ sources."path-type-1.1.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."prepend-http-1.0.4"
+ sources."process-nextick-args-1.0.7"
+ sources."pseudomap-1.0.2"
+ sources."q-1.5.1"
+ sources."rc-1.2.4"
+ sources."read-cmd-shim-1.0.1"
+ (sources."read-pkg-3.0.0" // {
+ dependencies = [
+ sources."path-type-3.0.0"
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.3"
+ sources."redent-1.0.0"
+ sources."registry-auth-token-3.3.1"
+ sources."registry-url-3.1.0"
+ sources."repeat-string-1.6.1"
+ sources."repeating-2.0.1"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."right-align-0.1.3"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."set-blocking-2.0.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slash-1.0.0"
+ sources."sort-keys-2.0.0"
sources."source-map-0.4.4"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."split-1.0.1"
+ sources."split2-2.2.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-2.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-indent-1.0.1"
+ sources."strip-json-comments-2.0.1"
+ (sources."strong-log-transformer-1.0.6" // {
+ dependencies = [
+ sources."minimist-0.1.0"
+ ];
+ })
+ sources."supports-color-4.5.0"
+ sources."temp-dir-1.0.0"
+ (sources."temp-write-3.4.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ sources."uuid-3.2.1"
+ ];
+ })
+ sources."tempfile-1.1.1"
+ sources."text-extensions-1.7.0"
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
+ sources."timed-out-4.0.1"
+ sources."tmp-0.0.33"
+ sources."trim-newlines-1.0.0"
+ sources."trim-off-newlines-1.0.1"
+ sources."typedarray-0.0.6"
(sources."uglify-js-2.8.29" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."wordwrap-0.0.3"
- sources."amdefine-1.0.1"
sources."uglify-to-browserify-1.0.2"
- sources."camelcase-1.2.1"
- sources."cliui-2.1.0"
- sources."decamelize-1.2.0"
- sources."window-size-0.1.0"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.2.2"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."through-2.3.8"
- sources."JSONStream-1.3.2"
- sources."is-text-path-1.0.1"
- sources."split2-2.2.0"
- sources."trim-off-newlines-1.0.1"
- sources."jsonparse-1.3.1"
- sources."text-extensions-1.7.0"
- sources."get-stdin-4.0.1"
- sources."parse-github-repo-url-1.4.1"
- sources."dargs-4.1.0"
- sources."lodash.template-4.4.0"
- sources."number-is-nan-1.0.1"
- sources."lodash._reinterpolate-3.0.0"
- sources."lodash.templatesettings-4.1.0"
- sources."gitconfiglocal-1.0.0"
- sources."pify-2.3.0"
- sources."ini-1.3.5"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."path-type-1.1.0"
- sources."parse-json-2.2.0"
- sources."pinkie-promise-2.0.1"
- sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."pinkie-2.0.4"
- sources."is-utf8-0.2.1"
- sources."readable-stream-2.3.3"
- sources."xtend-4.0.1"
- sources."core-util-is-1.0.2"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."camelcase-keys-2.1.0"
- sources."loud-rejection-1.6.0"
- sources."map-obj-1.0.1"
- sources."object-assign-4.1.1"
- sources."redent-1.0.0"
- sources."trim-newlines-1.0.0"
- sources."currently-unhandled-0.4.1"
- sources."array-find-index-1.0.2"
- sources."indent-string-2.1.0"
- sources."strip-indent-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."uuid-2.0.3"
- sources."concat-stream-1.6.0"
- sources."typedarray-0.0.6"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."locate-path-2.0.0"
- sources."p-locate-2.0.0"
- sources."p-limit-1.1.0"
- sources."jsonfile-4.0.0"
sources."universalify-0.1.1"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."is-glob-3.1.0"
- sources."path-dirname-1.0.2"
- sources."is-extglob-2.1.1"
- sources."array-union-1.0.2"
- sources."array-uniq-1.0.3"
- sources."ansi-escapes-3.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."external-editor-2.1.0"
- sources."figures-2.0.0"
- sources."mute-stream-0.0.7"
- sources."run-async-2.3.0"
- sources."rx-lite-4.0.8"
- sources."rx-lite-aggregates-4.0.8"
- sources."string-width-2.1.1"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."mimic-fn-1.1.0"
- sources."chardet-0.4.2"
- sources."iconv-lite-0.4.19"
- sources."tmp-0.0.33"
- sources."is-promise-2.1.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."ci-info-1.1.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."got-6.7.1"
- sources."registry-auth-token-3.3.1"
- sources."registry-url-3.1.0"
- sources."create-error-class-3.0.2"
- sources."duplexer3-0.1.4"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."lowercase-keys-1.0.0"
- sources."timed-out-4.0.1"
sources."unzip-response-2.0.1"
sources."url-parse-lax-1.0.0"
- sources."capture-stack-trace-1.0.0"
- sources."prepend-http-1.0.4"
- sources."rc-1.2.2"
- sources."deep-extend-0.4.2"
- sources."strip-json-comments-2.0.1"
- sources."byline-5.0.0"
- sources."duplexer-0.1.1"
- sources."moment-2.20.1"
- (sources."make-dir-1.1.0" // {
+ sources."util-deprecate-1.0.2"
+ sources."uuid-2.0.3"
+ sources."validate-npm-package-license-3.0.1"
+ sources."wcwidth-1.0.1"
+ sources."which-1.3.0"
+ sources."which-module-2.0.0"
+ sources."wide-align-1.1.2"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.3"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ (sources."write-json-file-2.3.0" // {
dependencies = [
sources."pify-3.0.0"
];
})
- sources."temp-dir-1.0.0"
- sources."imurmurhash-0.1.4"
- sources."detect-indent-5.0.0"
- sources."sort-keys-2.0.0"
- sources."is-plain-obj-1.1.0"
- sources."get-caller-file-1.0.2"
- sources."os-locale-2.1.0"
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- sources."which-module-2.0.0"
+ sources."write-pkg-3.1.0"
+ sources."xtend-4.0.1"
sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ (sources."yargs-8.0.2" // {
+ dependencies = [
+ sources."camelcase-4.1.0"
+ (sources."cliui-3.2.0" // {
+ dependencies = [
+ sources."string-width-1.0.2"
+ ];
+ })
+ sources."execa-0.7.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."load-json-file-2.0.0"
+ sources."path-type-2.0.0"
+ sources."read-pkg-2.0.0"
+ sources."read-pkg-up-2.0.0"
+ sources."strip-bom-3.0.0"
+ ];
+ })
sources."yargs-parser-7.0.0"
- sources."wrap-ansi-2.1.0"
- sources."lcid-1.0.0"
- sources."mem-1.1.0"
- sources."invert-kv-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -32949,6 +34030,116 @@ in
production = true;
bypassCache = false;
};
+ less = nodeEnv.buildNodePackage {
+ name = "less";
+ packageName = "less";
+ version = "2.7.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz";
+ sha512 = "04jbm6adzhknlcwjjdd94n8dhqwgsg0fyampis9854jf23z9g9lxs8593908ymwldl88bjipf9b9rw6xfibb29vv7s0c44wllj4ixr8";
+ };
+ dependencies = [
+ sources."ajv-4.11.8"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.6.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."boom-2.10.1"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.5"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."errno-0.1.6"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.1.4"
+ sources."getpass-0.1.7"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-1.0.5"
+ sources."har-validator-4.2.1"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-signature-1.1.1"
+ sources."image-size-0.5.5"
+ sources."is-typedarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-stable-stringify-1.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonify-0.0.0"
+ (sources."jsprim-1.4.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."mime-1.6.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."oauth-sign-0.8.2"
+ sources."performance-now-0.2.0"
+ sources."promise-7.3.1"
+ sources."prr-1.0.1"
+ sources."punycode-1.4.1"
+ sources."qs-6.4.0"
+ sources."request-2.81.0"
+ sources."safe-buffer-5.1.1"
+ sources."sntp-1.0.9"
+ sources."source-map-0.5.7"
+ (sources."sshpk-1.13.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."stringstream-0.0.5"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Leaner CSS";
+ homepage = http://lesscss.org/;
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = false;
+ };
+ less-plugin-clean-css = nodeEnv.buildNodePackage {
+ name = "less-plugin-clean-css";
+ packageName = "less-plugin-clean-css";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/less-plugin-clean-css/-/less-plugin-clean-css-1.5.1.tgz";
+ sha1 = "cc57af7aa3398957e56decebe63cb60c23429703";
+ };
+ dependencies = [
+ sources."amdefine-1.0.1"
+ sources."clean-css-3.4.28"
+ sources."commander-2.8.1"
+ sources."graceful-readlink-1.0.1"
+ sources."source-map-0.4.4"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "clean-css plugin for less.js";
+ homepage = http://lesscss.org/;
+ };
+ production = true;
+ bypassCache = false;
+ };
lcov-result-merger = nodeEnv.buildNodePackage {
name = "lcov-result-merger";
packageName = "lcov-result-merger";
@@ -32958,93 +34149,84 @@ in
sha1 = "5de1e6426f885929b77357f014de5fee1dad0553";
};
dependencies = [
- sources."through2-2.0.3"
- sources."vinyl-1.2.0"
- (sources."vinyl-fs-2.4.4" // {
- dependencies = [
- sources."is-extglob-1.0.0"
- sources."is-glob-2.0.1"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- ];
- })
- sources."readable-stream-2.3.3"
- sources."xtend-4.0.1"
- sources."core-util-is-1.0.2"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."clone-1.0.3"
- sources."clone-stats-0.0.1"
- sources."replace-ext-0.0.1"
- sources."duplexify-3.5.1"
- (sources."glob-stream-5.3.5" // {
- dependencies = [
- sources."through2-0.6.5"
- sources."readable-stream-1.0.34"
- ];
- })
- sources."graceful-fs-4.1.11"
- sources."gulp-sourcemaps-1.6.0"
- sources."is-valid-glob-0.3.0"
- sources."lazystream-1.0.0"
- sources."lodash.isequal-4.5.0"
- sources."merge-stream-1.0.1"
- sources."mkdirp-0.5.1"
- sources."object-assign-4.1.1"
- sources."strip-bom-2.0.0"
- sources."strip-bom-stream-1.0.0"
- sources."through2-filter-2.0.0"
- sources."vali-date-1.0.0"
- sources."end-of-stream-1.4.0"
- sources."stream-shift-1.0.0"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."extend-3.0.1"
- sources."glob-5.0.15"
- sources."glob-parent-3.1.0"
- (sources."micromatch-2.3.11" // {
- dependencies = [
- sources."glob-parent-2.0.0"
- ];
- })
- sources."ordered-read-streams-0.3.0"
- sources."to-absolute-glob-0.1.1"
- sources."unique-stream-2.2.1"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."is-glob-3.1.0"
- sources."path-dirname-1.0.2"
- sources."is-extglob-2.1.1"
sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
sources."array-unique-0.2.1"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
(sources."braces-1.8.5" // {
dependencies = [
sources."kind-of-4.0.0"
];
})
+ sources."clone-1.0.3"
+ sources."clone-stats-0.0.1"
+ sources."concat-map-0.0.1"
+ sources."convert-source-map-1.5.1"
+ sources."core-util-is-1.0.2"
+ sources."duplexify-3.5.3"
+ sources."end-of-stream-1.4.1"
sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ sources."extend-3.0.1"
+ sources."extend-shallow-2.0.1"
sources."extglob-0.3.2"
sources."filename-regex-2.0.1"
- sources."kind-of-3.2.2"
- sources."normalize-path-2.1.1"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
sources."fill-range-2.2.3"
+ sources."first-chunk-stream-1.0.0"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."glob-5.0.15"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-3.1.0"
+ (sources."glob-stream-5.3.5" // {
+ dependencies = [
+ sources."readable-stream-1.0.34"
+ sources."through2-0.6.5"
+ ];
+ })
+ sources."graceful-fs-4.1.11"
+ sources."gulp-sourcemaps-1.6.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-stream-1.1.0"
+ sources."is-utf8-0.2.1"
+ sources."is-valid-glob-0.3.0"
+ sources."isarray-1.0.0"
sources."isobject-2.1.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
+ sources."kind-of-3.2.2"
+ sources."lazystream-1.0.0"
+ sources."lodash.isequal-4.5.0"
+ sources."merge-stream-1.0.1"
+ (sources."micromatch-2.3.11" // {
+ dependencies = [
+ sources."glob-parent-2.0.0"
+ ];
+ })
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."normalize-path-2.1.1"
+ sources."object-assign-4.1.1"
+ sources."object.omit-2.0.1"
+ sources."once-1.4.0"
+ sources."ordered-read-streams-0.3.0"
+ sources."parse-glob-3.0.4"
+ sources."path-dirname-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."preserve-0.2.0"
+ sources."process-nextick-args-1.0.7"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -33054,25 +34236,34 @@ in
})
];
})
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
+ sources."readable-stream-2.3.3"
+ sources."regex-cache-0.4.4"
sources."remove-trailing-separator-1.1.0"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."is-stream-1.1.0"
- sources."extend-shallow-2.0.1"
- sources."json-stable-stringify-1.0.1"
- sources."jsonify-0.0.0"
- sources."convert-source-map-1.5.1"
- sources."minimist-0.0.8"
- sources."is-utf8-0.2.1"
- sources."first-chunk-stream-1.0.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."replace-ext-0.0.1"
+ sources."safe-buffer-5.1.1"
+ sources."stream-shift-1.0.0"
+ sources."string_decoder-1.0.3"
+ sources."strip-bom-2.0.0"
+ sources."strip-bom-stream-1.0.0"
+ sources."through2-2.0.3"
+ sources."through2-filter-2.0.0"
+ sources."to-absolute-glob-0.1.1"
+ sources."unique-stream-2.2.1"
+ sources."util-deprecate-1.0.2"
+ sources."vali-date-1.0.0"
+ sources."vinyl-1.2.0"
+ (sources."vinyl-fs-2.4.4" // {
+ dependencies = [
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."isarray-0.0.1"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -33092,78 +34283,177 @@ in
sha512 = "3pnrrz3blfy50s64c4wdj9gjl8zv3p72wd0vmrk86qjdd676g9sj4cwywp356r633csg568pczll7pfb6sxpm0x9fvbk4zhwvdpb70b";
};
dependencies = [
+ sources."accepts-1.3.4"
+ sources."after-0.8.2"
+ sources."ajv-5.5.2"
+ sources."anymatch-1.3.2"
+ sources."argparse-1.0.9"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-flatten-1.1.1"
+ sources."array-unique-0.2.1"
+ sources."arraybuffer.slice-0.0.7"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-each-1.0.1"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."base64-arraybuffer-0.1.5"
+ sources."base64id-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."better-assert-1.0.2"
+ sources."binary-extensions-1.11.0"
+ sources."blob-0.0.4"
sources."body-parser-1.18.2"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."bytes-3.0.0"
+ sources."callsite-1.0.0"
+ sources."caseless-0.12.0"
sources."chokidar-1.7.0"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.5"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.2.1"
+ sources."component-inherit-0.0.3"
+ sources."concat-map-0.0.1"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."core-util-is-1.0.2"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."emoji-regex-6.1.1"
+ sources."encodeurl-1.0.2"
+ sources."engine.io-3.1.4"
+ sources."engine.io-client-3.1.4"
+ sources."engine.io-parser-2.1.2"
+ sources."entities-1.1.1"
+ sources."escape-html-1.0.3"
+ sources."etag-1.8.1"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
(sources."express-4.16.2" // {
dependencies = [
sources."setprototypeof-1.1.0"
sources."statuses-1.3.1"
];
})
+ sources."extend-3.0.1"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
+ sources."finalhandler-1.1.0"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fsevents-1.1.3"
+ sources."getpass-0.1.7"
+ sources."github-slugger-1.2.0"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-binary2-1.0.2"
+ sources."has-cors-1.1.0"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."html-entities-1.2.1"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
+ sources."indexof-0.0.1"
+ sources."inherits-2.0.3"
+ sources."innertext-1.0.2"
+ sources."ipaddr.js-1.5.2"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-wsl-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isobject-2.1.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."kind-of-3.2.2"
+ sources."linkify-it-2.0.3"
sources."markdown-it-8.4.0"
sources."markdown-it-emoji-1.4.0"
sources."markdown-it-github-headings-1.1.0"
- sources."markdown-it-task-checkbox-1.0.5"
- sources."minimist-1.2.0"
- sources."opn-5.1.0"
- sources."request-2.83.0"
- (sources."socket.io-2.0.4" // {
- dependencies = [
- sources."accepts-1.3.3"
- sources."isarray-2.0.1"
- ];
- })
- sources."bytes-3.0.0"
- sources."content-type-1.0.4"
- sources."debug-2.6.9"
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."on-finished-2.3.0"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."type-is-1.6.15"
- sources."ms-2.0.0"
- sources."inherits-2.0.3"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."ee-first-1.1.1"
- sources."unpipe-1.0.0"
+ sources."markdown-it-task-checkbox-1.0.6"
+ sources."mdurl-1.0.1"
sources."media-typer-0.3.0"
- sources."mime-types-2.1.17"
- sources."mime-db-1.30.0"
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."path-is-absolute-1.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
sources."micromatch-2.3.11"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."ms-2.0.0"
+ sources."nan-2.8.0"
+ sources."negotiator-0.6.1"
sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."kind-of-3.2.2"
+ sources."oauth-sign-0.8.2"
+ sources."object-component-0.0.3"
sources."object.omit-2.0.1"
+ sources."on-finished-2.3.0"
+ sources."opn-5.2.0"
sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
+ sources."parseqs-0.0.5"
+ sources."parseuri-0.0.5"
+ sources."parseurl-1.3.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."performance-now-2.1.0"
sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
+ sources."process-nextick-args-1.0.7"
+ sources."proxy-addr-2.0.2"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -33173,147 +34463,52 @@ in
})
];
})
- sources."repeat-string-1.6.1"
- sources."isarray-1.0.0"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."binary-extensions-1.11.0"
- sources."graceful-fs-4.1.11"
- sources."minimatch-3.0.4"
- sources."readable-stream-2.3.3"
- sources."set-immediate-shim-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."nan-2.8.0"
- sources."accepts-1.3.4"
- sources."array-flatten-1.1.1"
- sources."content-disposition-0.5.2"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."finalhandler-1.1.0"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-2.0.2"
sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."readable-stream-2.3.3"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."request-2.83.0"
+ sources."safe-buffer-5.1.1"
sources."send-0.16.1"
sources."serve-static-1.13.1"
- sources."utils-merge-1.0.1"
- sources."vary-1.1.2"
- sources."negotiator-0.6.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.5.2"
- sources."destroy-1.0.4"
- sources."mime-1.4.1"
- sources."argparse-1.0.9"
- sources."entities-1.1.1"
- sources."linkify-it-2.0.3"
- sources."mdurl-1.0.1"
- sources."uc.micro-1.0.3"
- sources."sprintf-js-1.0.3"
- sources."github-slugger-1.2.0"
- sources."innertext-1.0.2"
- sources."emoji-regex-6.1.1"
- sources."html-entities-1.2.1"
- sources."is-wsl-1.1.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
+ sources."set-immediate-shim-1.0.1"
+ sources."setprototypeof-1.0.3"
+ sources."sntp-2.1.0"
+ (sources."socket.io-2.0.4" // {
dependencies = [
- sources."boom-5.2.0"
+ sources."accepts-1.3.3"
+ sources."isarray-2.0.1"
];
})
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."engine.io-3.1.4"
sources."socket.io-adapter-1.1.1"
sources."socket.io-client-2.0.4"
sources."socket.io-parser-3.1.2"
- sources."base64id-1.0.0"
- sources."engine.io-parser-2.1.1"
- sources."ws-3.3.3"
- sources."uws-0.14.5"
- sources."after-0.8.2"
- sources."arraybuffer.slice-0.0.6"
- sources."base64-arraybuffer-0.1.5"
- sources."blob-0.0.4"
- sources."has-binary2-1.0.2"
- sources."async-limiter-1.0.0"
- sources."ultron-1.1.1"
- sources."backo2-1.0.2"
- sources."component-bind-1.0.0"
- sources."component-emitter-1.2.1"
- sources."engine.io-client-3.1.4"
- sources."has-cors-1.1.0"
- sources."indexof-0.0.1"
- sources."object-component-0.0.3"
- sources."parseqs-0.0.5"
- sources."parseuri-0.0.5"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.13.1"
+ sources."statuses-1.4.0"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
sources."to-array-0.1.4"
- sources."component-inherit-0.0.3"
- sources."xmlhttprequest-ssl-1.5.4"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.15"
+ sources."uc.micro-1.0.3"
+ sources."ultron-1.1.1"
+ sources."unpipe-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."uws-0.14.5"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."ws-3.3.3"
+ sources."xmlhttprequest-ssl-1.5.5"
sources."yeast-0.1.2"
- sources."better-assert-1.0.2"
- sources."callsite-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -33333,22 +34528,122 @@ in
sha1 = "4498644bbf81a66f18dd8dffdef61c4c1c374ca3";
};
dependencies = [
+ sources."accepts-1.3.4"
+ sources."anymatch-1.3.2"
+ sources."apache-crypt-1.2.1"
+ sources."apache-md5-1.1.2"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-unique-0.2.1"
+ sources."async-each-1.0.1"
+ sources."balanced-match-1.0.0"
+ sources."basic-auth-2.0.0"
+ sources."batch-0.6.1"
+ sources."bcryptjs-2.4.3"
+ sources."binary-extensions-1.11.0"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
sources."chokidar-1.7.0"
sources."colors-1.1.2"
+ sources."concat-map-0.0.1"
sources."connect-3.5.1"
+ sources."core-util-is-1.0.2"
sources."cors-2.8.4"
+ sources."debug-2.2.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."duplexer-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."escape-html-1.0.3"
+ sources."etag-1.8.1"
sources."event-stream-3.3.4"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ sources."extglob-0.3.2"
sources."faye-websocket-0.11.1"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
+ sources."finalhandler-0.5.1"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."fresh-0.5.2"
+ sources."from-0.1.7"
+ sources."fsevents-1.1.3"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
sources."http-auth-3.1.3"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-parser-js-0.4.9"
+ sources."inherits-2.0.3"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-wsl-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isobject-2.1.0"
+ sources."kind-of-3.2.2"
+ sources."map-stream-0.1.0"
+ sources."micromatch-2.3.11"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
(sources."morgan-1.9.0" // {
dependencies = [
sources."debug-2.6.9"
sources."ms-2.0.0"
];
})
+ sources."ms-0.7.1"
+ sources."nan-2.8.0"
+ sources."negotiator-0.6.1"
+ sources."normalize-path-2.1.1"
sources."object-assign-4.1.1"
- sources."opn-5.1.0"
+ sources."object.omit-2.0.1"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."opn-5.2.0"
+ sources."parse-glob-3.0.4"
+ sources."parseurl-1.3.2"
+ sources."path-is-absolute-1.0.1"
+ sources."pause-stream-0.0.11"
+ sources."preserve-0.2.0"
+ sources."process-nextick-args-1.0.7"
sources."proxy-middleware-0.15.0"
+ (sources."randomatic-1.1.7" // {
+ dependencies = [
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ ];
+ })
+ sources."range-parser-1.2.0"
+ sources."readable-stream-2.3.3"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."safe-buffer-5.1.1"
(sources."send-0.16.1" // {
dependencies = [
sources."debug-2.6.9"
@@ -33361,117 +34656,21 @@ in
sources."ms-2.0.0"
];
})
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."inherits-2.0.3"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."path-is-absolute-1.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
- sources."micromatch-2.3.11"
- sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
- (sources."randomatic-1.1.7" // {
- dependencies = [
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- ];
- })
- sources."repeat-string-1.6.1"
- sources."isarray-1.0.0"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."binary-extensions-1.11.0"
- sources."graceful-fs-4.1.11"
- sources."minimatch-3.0.4"
- sources."readable-stream-2.3.3"
sources."set-immediate-shim-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."core-util-is-1.0.2"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."nan-2.8.0"
- sources."debug-2.2.0"
- sources."finalhandler-0.5.1"
- sources."parseurl-1.3.2"
- sources."utils-merge-1.0.0"
- sources."ms-0.7.1"
- sources."escape-html-1.0.3"
- sources."on-finished-2.3.0"
- sources."statuses-1.3.1"
- sources."unpipe-1.0.0"
- sources."ee-first-1.1.1"
- sources."vary-1.1.2"
- sources."through-2.3.8"
- sources."duplexer-0.1.1"
- sources."from-0.1.7"
- sources."map-stream-0.1.0"
- sources."pause-stream-0.0.11"
- sources."split-0.3.3"
- sources."stream-combiner-0.0.4"
- sources."websocket-driver-0.7.0"
- sources."http-parser-js-0.4.9"
- sources."websocket-extensions-0.1.3"
- sources."apache-crypt-1.2.1"
- sources."apache-md5-1.1.2"
- sources."bcryptjs-2.4.3"
- sources."uuid-3.1.0"
- sources."unix-crypt-td-js-1.0.0"
- sources."basic-auth-2.0.0"
- sources."depd-1.1.1"
- sources."on-headers-1.0.1"
- sources."is-wsl-1.1.0"
- sources."destroy-1.0.4"
- sources."encodeurl-1.0.1"
- sources."etag-1.8.1"
- sources."fresh-0.5.2"
- sources."http-errors-1.6.2"
- sources."mime-1.4.1"
- sources."range-parser-1.2.0"
sources."setprototypeof-1.0.3"
- sources."accepts-1.3.4"
- sources."batch-0.6.1"
- sources."mime-types-2.1.17"
- sources."negotiator-0.6.1"
- sources."mime-db-1.30.0"
+ sources."split-0.3.3"
+ sources."statuses-1.3.1"
+ sources."stream-combiner-0.0.4"
+ sources."string_decoder-1.0.3"
+ sources."through-2.3.8"
+ sources."unix-crypt-td-js-1.0.0"
+ sources."unpipe-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.0"
+ sources."uuid-3.2.1"
+ sources."vary-1.1.2"
+ sources."websocket-driver-0.7.0"
+ sources."websocket-extensions-0.1.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -33491,24 +34690,24 @@ in
sha1 = "e2b6b721014096e30de9c97114e1dd6696135d13";
};
dependencies = [
- sources."express-2.5.11"
- sources."jade-0.27.0"
- sources."open-0.0.2"
- sources."winston-0.6.2"
- sources."mkdirp-0.3.0"
- sources."node.extend-1.0.0"
- sources."connect-1.9.2"
- sources."mime-1.2.4"
- sources."qs-0.4.2"
- sources."formidable-1.0.17"
- sources."commander-0.6.1"
sources."async-0.1.22"
sources."colors-0.6.2"
+ sources."commander-0.6.1"
+ sources."connect-1.9.2"
sources."cycle-1.0.3"
+ sources."express-2.5.11"
sources."eyes-0.1.8"
+ sources."formidable-1.0.17"
+ sources."jade-0.27.0"
+ sources."mime-1.2.4"
+ sources."mkdirp-0.3.0"
+ sources."node.extend-1.0.0"
+ sources."open-0.0.2"
sources."pkginfo-0.2.3"
+ sources."qs-0.4.2"
sources."request-2.9.203"
sources."stack-trace-0.0.10"
+ sources."winston-0.6.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -33521,35 +34720,35 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "4.0.1";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-4.0.1.tgz";
- sha512 = "07hbr2w894az0s1hi6lglls00nwb941ymwm580q4917kwcmsg3ngagqf9cfxyjdwwivm956dpwzsrkbk4i7a404i56w1y809a3fdw3s";
+ url = "https://registry.npmjs.org/mocha/-/mocha-5.0.0.tgz";
+ sha512 = "3rxvm15qz9qdiyihc9pq4kc008iz89cqdqjlca43swmk3fc7bydlaqk1qyhaj19r5m8cxxrpiwxz5cwrp9im26fin4sgqdfbxs7ch5s";
};
dependencies = [
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
sources."browser-stdout-1.3.0"
sources."commander-2.11.0"
+ sources."concat-map-0.0.1"
sources."debug-3.1.0"
sources."diff-3.3.1"
sources."escape-string-regexp-1.0.5"
+ sources."fs.realpath-1.0.0"
sources."glob-7.1.2"
sources."growl-1.10.3"
+ sources."has-flag-2.0.0"
sources."he-1.1.1"
- sources."mkdirp-0.5.1"
- sources."supports-color-4.4.0"
- sources."ms-2.0.0"
- sources."fs.realpath-1.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
+ sources."supports-color-4.4.0"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."minimist-0.0.8"
- sources."has-flag-2.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -33569,43 +34768,43 @@ in
sha1 = "0161a13e2b3378759e36b9e05be34b46a06decd5";
};
dependencies = [
- sources."commander-2.12.2"
- sources."js-yaml-3.10.0"
- sources."json-refs-2.1.7"
sources."argparse-1.0.9"
- sources."esprima-4.0.0"
- sources."sprintf-js-1.0.3"
- sources."graphlib-2.1.1"
- sources."native-promise-only-0.8.1"
- sources."path-loader-1.0.4"
- sources."slash-1.0.0"
- sources."uri-js-3.0.2"
- sources."lodash-4.17.4"
- sources."superagent-3.8.2"
+ sources."asynckit-0.4.0"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
sources."component-emitter-1.2.1"
sources."cookiejar-2.1.1"
+ sources."core-util-is-1.0.2"
sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
+ sources."esprima-4.0.0"
sources."extend-3.0.1"
sources."form-data-2.3.1"
sources."formidable-1.1.1"
- sources."methods-1.1.2"
- sources."mime-1.6.0"
- sources."qs-6.5.1"
- sources."readable-stream-2.3.3"
- sources."ms-2.0.0"
- sources."asynckit-0.4.0"
- sources."combined-stream-1.0.5"
- sources."mime-types-2.1.17"
- sources."delayed-stream-1.0.0"
- sources."mime-db-1.30.0"
- sources."core-util-is-1.0.2"
+ sources."graphlib-2.1.5"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
+ sources."js-yaml-3.10.0"
+ sources."json-refs-2.1.7"
+ sources."lodash-4.17.4"
+ sources."methods-1.1.2"
+ sources."mime-1.6.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."ms-2.0.0"
+ sources."native-promise-only-0.8.1"
+ sources."path-loader-1.0.4"
sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
sources."punycode-2.1.0"
+ sources."qs-6.5.1"
+ sources."readable-stream-2.3.3"
+ sources."safe-buffer-5.1.1"
+ sources."slash-1.0.0"
+ sources."sprintf-js-1.0.3"
+ sources."string_decoder-1.0.3"
+ sources."superagent-3.8.2"
+ sources."uri-js-3.0.2"
+ sources."util-deprecate-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -33639,14 +34838,92 @@ in
node2nix = nodeEnv.buildNodePackage {
name = "node2nix";
packageName = "node2nix";
- version = "1.5.0";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/node2nix/-/node2nix-1.5.0.tgz";
- sha512 = "2nywjjmihrnbpbm29ipgxb3jbl2lbdnmm53vpr9b151k41xvfv74z43ldc79p15b58gdadh5gh3ilsgxxa6hqs6mbizfh4a3nkzj87i";
+ url = "https://registry.npmjs.org/node2nix/-/node2nix-1.5.1.tgz";
+ sha512 = "1iy5npqmbdgxjalbw73ybgd2pfhizi8jdg91w9dpcmj9hfz02wbl306bwia397njlz5ymcblbc700zp8qb2lvrpw7jnyfvmflpvvglp";
};
dependencies = [
- sources."optparse-1.0.5"
- sources."semver-5.4.1"
+ sources."abbrev-1.1.1"
+ sources."ajv-5.5.2"
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."base64-js-1.2.1"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."boom-4.3.1"
+ sources."builtin-modules-1.1.1"
+ sources."builtins-1.0.3"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.5"
+ sources."concat-stream-1.6.0"
+ sources."config-chain-1.1.11"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."findit-2.0.0"
+ sources."foreachasync-3.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."fs-extra-0.6.4"
+ (sources."fs.extra-1.3.2" // {
+ dependencies = [
+ sources."mkdirp-0.3.5"
+ ];
+ })
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-unicode-2.0.1"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."hosted-git-info-2.5.0"
+ sources."http-signature-1.2.0"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."is-builtin-module-1.0.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-1.0.1"
+ sources."jsprim-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimist-0.0.8"
+ sources."minipass-2.2.1"
+ sources."minizlib-1.1.0"
+ sources."mkdirp-0.5.1"
+ sources."ncp-0.4.2"
+ sources."nijs-0.0.25"
+ sources."nopt-3.0.6"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-package-arg-5.1.2"
sources."npm-registry-client-8.4.0"
(sources."npmconf-2.1.2" // {
dependencies = [
@@ -33654,134 +34931,56 @@ in
sources."semver-4.3.6"
];
})
- sources."tar-3.1.15"
- sources."temp-0.8.3"
- (sources."fs.extra-1.3.2" // {
- dependencies = [
- sources."mkdirp-0.3.5"
- ];
- })
- sources."findit-2.0.0"
- sources."base64-js-1.2.1"
- sources."slasp-0.0.4"
- sources."nijs-0.0.25"
- sources."concat-stream-1.6.0"
- sources."graceful-fs-4.1.11"
- sources."normalize-package-data-2.4.0"
- sources."npm-package-arg-5.1.2"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
sources."once-1.4.0"
+ sources."optparse-1.0.5"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-1.0.7"
+ sources."proto-list-1.2.4"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."readable-stream-2.3.3"
sources."request-2.83.0"
sources."retry-0.10.1"
- sources."slide-1.1.6"
- sources."ssri-4.1.6"
- sources."npmlog-4.1.2"
- sources."inherits-2.0.3"
- sources."typedarray-0.0.6"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
+ sources."rimraf-2.2.8"
sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
+ sources."semver-5.4.1"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slasp-0.0.4"
+ sources."slide-1.1.6"
+ sources."sntp-2.1.0"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
- sources."osenv-0.1.4"
- sources."validate-npm-package-name-3.0.0"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."builtins-1.0.3"
- sources."wrappy-1.0.2"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
+ sources."sshpk-1.13.1"
+ sources."ssri-4.1.6"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."tar-3.1.15"
+ sources."temp-0.8.3"
sources."tough-cookie-2.3.3"
sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."object-assign-4.1.1"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
- sources."ansi-regex-2.1.1"
- sources."config-chain-1.1.11"
- sources."ini-1.3.5"
- sources."mkdirp-0.5.1"
- sources."nopt-3.0.6"
+ sources."typedarray-0.0.6"
sources."uid-number-0.0.5"
- sources."proto-list-1.2.4"
- sources."minimist-0.0.8"
- sources."abbrev-1.1.1"
- sources."minipass-2.2.1"
- sources."minizlib-1.1.0"
- sources."yallist-3.0.2"
- sources."rimraf-2.2.8"
- sources."fs-extra-0.6.4"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-license-3.0.1"
+ sources."validate-npm-package-name-3.0.0"
+ sources."verror-1.10.0"
sources."walk-2.3.9"
- sources."ncp-0.4.2"
- sources."jsonfile-1.0.1"
- sources."foreachasync-3.0.0"
+ sources."wide-align-1.1.2"
+ sources."wrappy-1.0.2"
+ sources."yallist-3.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -33801,109 +35000,109 @@ in
sha1 = "9bfbe54562286284838e750eac05295853fa1c60";
};
dependencies = [
- sources."fstream-1.0.11"
- sources."glob-7.1.2"
- sources."graceful-fs-4.1.11"
- sources."minimatch-3.0.4"
- sources."mkdirp-0.5.1"
- sources."nopt-3.0.6"
- sources."npmlog-4.1.2"
- sources."osenv-0.1.4"
- sources."request-2.83.0"
- sources."rimraf-2.6.2"
- sources."semver-5.3.0"
- sources."tar-2.2.1"
- sources."which-1.3.0"
- sources."inherits-2.0.3"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."minimist-0.0.8"
sources."abbrev-1.1.1"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."object-assign-4.1.1"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
+ sources."ajv-5.5.2"
sources."ansi-regex-2.1.1"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."block-stream-0.0.9"
sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
];
})
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."block-stream-0.0.9"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-unicode-2.0.1"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-signature-1.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."nopt-3.0.6"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-1.0.7"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."readable-stream-2.3.3"
+ sources."request-2.83.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.3.0"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-2.1.0"
+ sources."sshpk-1.13.1"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."tar-2.2.1"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."which-1.3.0"
+ sources."wide-align-1.1.2"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -33940,258 +35139,262 @@ in
sha1 = "e7851eb973f380543c058db564a9812055eac640";
};
dependencies = [
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.4"
+ sources."after-0.8.2"
+ sources."ajv-4.11.8"
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."array-find-index-1.0.2"
+ sources."array-flatten-1.1.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
sources."async-0.9.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.8"
+ sources."bcrypt-pbkdf-1.0.1"
(sources."biased-opener-0.2.8" // {
dependencies = [
sources."yargs-1.3.3"
];
})
- sources."debug-2.6.9"
- sources."express-4.16.2"
- sources."glob-5.0.15"
- sources."path-is-absolute-1.0.1"
- sources."rc-1.2.2"
- sources."semver-4.3.6"
- sources."serve-favicon-2.4.5"
- sources."strong-data-uri-1.0.4"
- (sources."v8-debug-1.0.1" // {
- dependencies = [
- sources."rimraf-2.6.2"
- sources."semver-5.4.1"
- sources."qs-6.4.0"
- sources."glob-7.1.2"
- ];
- })
- sources."v8-profiler-5.7.0"
- sources."which-1.3.0"
- sources."ws-1.1.5"
- sources."yargs-3.32.0"
- (sources."browser-launcher2-0.4.6" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."minimist-1.2.0"
- sources."x-default-browser-0.3.1"
- sources."headless-0.1.7"
- sources."lodash-2.4.2"
- sources."mkdirp-0.5.1"
- sources."osenv-0.1.4"
- (sources."plist-1.2.0" // {
- dependencies = [
- sources."lodash-3.10.1"
- ];
- })
- sources."win-detect-browsers-1.0.2"
- sources."uid-0.0.2"
- sources."rimraf-2.2.8"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."base64-js-0.0.8"
- sources."xmlbuilder-4.0.0"
- sources."xmldom-0.1.27"
- sources."util-deprecate-1.0.2"
- sources."after-0.8.2"
- sources."xtend-4.0.1"
- sources."default-browser-id-1.0.4"
- sources."bplist-parser-0.1.1"
- sources."meow-3.7.0"
- sources."untildify-2.1.0"
sources."big-integer-1.6.26"
- sources."camelcase-keys-2.1.0"
- sources."decamelize-1.2.0"
- sources."loud-rejection-1.6.0"
- sources."map-obj-1.0.1"
- sources."normalize-package-data-2.4.0"
- sources."object-assign-4.1.1"
- sources."read-pkg-up-1.0.1"
- sources."redent-1.0.0"
- sources."trim-newlines-1.0.0"
- sources."camelcase-2.1.1"
- sources."currently-unhandled-0.4.1"
- sources."signal-exit-3.0.2"
- sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."find-up-1.1.2"
- sources."read-pkg-1.1.0"
- sources."path-exists-2.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."load-json-file-1.1.0"
- sources."path-type-1.1.0"
- sources."graceful-fs-4.1.11"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
- sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."is-utf8-0.2.1"
- sources."indent-string-2.1.0"
- sources."strip-indent-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."number-is-nan-1.0.1"
- sources."get-stdin-4.0.1"
- sources."ms-2.0.0"
- sources."accepts-1.3.4"
- sources."array-flatten-1.1.1"
+ sources."block-stream-0.0.9"
(sources."body-parser-1.18.2" // {
dependencies = [
sources."setprototypeof-1.0.3"
];
})
+ sources."boom-2.10.1"
+ sources."bplist-parser-0.1.1"
+ sources."brace-expansion-1.1.8"
+ (sources."browser-launcher2-0.4.6" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."builtin-modules-1.1.1"
+ sources."bytes-3.0.0"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ sources."caseless-0.12.0"
+ sources."cliui-3.2.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
sources."content-disposition-0.5.2"
sources."content-type-1.0.4"
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
- sources."depd-1.1.1"
- sources."encodeurl-1.0.1"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."currently-unhandled-0.4.1"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.4.2"
+ sources."default-browser-id-1.0.4"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."detect-libc-1.0.3"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."error-ex-1.3.1"
sources."escape-html-1.0.3"
sources."etag-1.8.1"
- sources."finalhandler-1.1.0"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."on-finished-2.3.0"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-2.0.2"
- sources."qs-6.5.1"
- sources."range-parser-1.2.0"
- sources."safe-buffer-5.1.1"
- sources."send-0.16.1"
- sources."serve-static-1.13.1"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.3.1"
- sources."type-is-1.6.15"
- sources."utils-merge-1.0.1"
- sources."vary-1.1.2"
- sources."mime-types-2.1.17"
- sources."negotiator-0.6.1"
- sources."mime-db-1.30.0"
- sources."bytes-3.0.0"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."raw-body-2.3.2"
- sources."inherits-2.0.3"
- sources."unpipe-1.0.0"
- sources."ee-first-1.1.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.5.2"
- sources."destroy-1.0.4"
- sources."mime-1.4.1"
- sources."media-typer-0.3.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."strip-json-comments-2.0.1"
- sources."truncate-1.0.5"
- sources."nan-2.8.0"
- sources."node-pre-gyp-0.6.39"
- sources."nopt-4.0.1"
- sources."npmlog-4.1.2"
- sources."request-2.81.0"
- sources."hawk-3.1.3"
- sources."detect-libc-1.0.3"
- sources."tar-2.2.1"
- sources."tar-pack-3.4.1"
- sources."abbrev-1.1.1"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."ansi-regex-2.1.1"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
+ sources."express-4.16.2"
sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."finalhandler-1.1.0"
+ sources."find-up-1.1.2"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
- sources."har-validator-4.2.1"
- sources."http-signature-1.1.1"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-0.2.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-4.11.8"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."fstream-ignore-1.0.5"
+ sources."gauge-2.7.4"
+ sources."get-stdin-4.0.1"
+ sources."getpass-0.1.7"
+ sources."glob-5.0.15"
+ sources."graceful-fs-4.1.11"
sources."har-schema-1.0.5"
- sources."co-4.6.0"
+ sources."har-validator-4.2.1"
+ sources."has-unicode-2.0.1"
+ sources."hawk-3.1.3"
+ sources."headless-0.1.7"
+ sources."hoek-2.16.3"
+ sources."hosted-git-info-2.5.0"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-signature-1.1.1"
+ sources."iconv-lite-0.4.19"
+ sources."indent-string-2.1.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."invert-kv-1.0.0"
+ sources."ipaddr.js-1.5.2"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
sources."json-stable-stringify-1.0.1"
+ sources."json-stringify-safe-5.0.1"
sources."jsonify-0.0.0"
- sources."assert-plus-0.2.0"
(sources."jsprim-1.4.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
+ sources."lcid-1.0.0"
+ sources."load-json-file-1.1.0"
+ sources."lodash-2.4.2"
+ sources."loud-rejection-1.6.0"
+ sources."map-obj-1.0.1"
+ sources."media-typer-0.3.0"
+ sources."meow-3.7.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."nan-2.8.0"
+ sources."negotiator-0.6.1"
+ sources."node-pre-gyp-0.6.39"
+ sources."nopt-4.0.1"
+ sources."normalize-package-data-2.4.0"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."on-finished-2.3.0"
+ sources."once-1.4.0"
+ sources."options-0.0.6"
+ sources."os-homedir-1.0.2"
+ sources."os-locale-1.4.0"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."parse-json-2.2.0"
+ sources."parseurl-1.3.2"
+ sources."path-exists-2.1.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."path-type-1.1.0"
+ sources."performance-now-0.2.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ (sources."plist-1.2.0" // {
+ dependencies = [
+ sources."lodash-3.10.1"
+ ];
+ })
+ sources."process-nextick-args-1.0.7"
+ sources."proxy-addr-2.0.2"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."rc-1.2.4"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.3"
+ sources."redent-1.0.0"
+ sources."repeating-2.0.1"
+ sources."request-2.81.0"
+ sources."rimraf-2.2.8"
+ sources."safe-buffer-5.1.1"
+ sources."semver-4.3.6"
+ sources."send-0.16.1"
+ sources."serve-favicon-2.4.5"
+ sources."serve-static-1.13.1"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.1.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-1.0.9"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
(sources."sshpk-1.13.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
+ sources."statuses-1.3.1"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-2.0.0"
+ sources."strip-indent-1.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."strong-data-uri-1.0.4"
+ sources."tar-2.2.1"
+ sources."tar-pack-3.4.1"
+ sources."tough-cookie-2.3.3"
+ sources."trim-newlines-1.0.0"
+ sources."truncate-1.0.5"
+ sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."fs.realpath-1.0.0"
- sources."block-stream-0.0.9"
- sources."fstream-1.0.11"
- sources."fstream-ignore-1.0.5"
+ sources."type-is-1.6.15"
+ sources."uid-0.0.2"
sources."uid-number-0.0.6"
- sources."isexe-2.0.0"
- sources."options-0.0.6"
sources."ultron-1.0.2"
- sources."cliui-3.2.0"
- sources."os-locale-1.4.0"
+ sources."unpipe-1.0.0"
+ sources."untildify-2.1.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ (sources."v8-debug-1.0.1" // {
+ dependencies = [
+ sources."glob-7.1.2"
+ sources."qs-6.4.0"
+ sources."rimraf-2.6.2"
+ sources."semver-5.5.0"
+ ];
+ })
+ sources."v8-profiler-5.7.0"
+ sources."validate-npm-package-license-3.0.1"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."which-1.3.0"
+ sources."wide-align-1.1.2"
+ sources."win-detect-browsers-1.0.2"
sources."window-size-0.1.4"
- sources."y18n-3.2.1"
sources."wrap-ansi-2.1.0"
- sources."lcid-1.0.0"
- sources."invert-kv-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."ws-1.1.5"
+ sources."x-default-browser-0.3.1"
+ sources."xmlbuilder-4.0.0"
+ sources."xmldom-0.1.27"
+ sources."xtend-4.0.1"
+ sources."y18n-3.2.1"
+ sources."yargs-3.32.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -34210,124 +35413,124 @@ in
sha512 = "2cwrivwc0ha272cly9r61bbb14kkl1s1hsmn53yr88b6pfjqj512nac6c5rphc6ak88v8gpl1f879qdd3v7386103zzr7miibpmbhis";
};
dependencies = [
- sources."mkdirp-0.5.1"
- sources."nopt-4.0.1"
- sources."npmlog-4.1.2"
- (sources."rc-1.2.2" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."request-2.81.0"
- sources."hawk-3.1.3"
- sources."rimraf-2.6.2"
- sources."semver-5.4.1"
- sources."detect-libc-1.0.3"
- sources."tar-2.2.1"
- sources."tar-pack-3.4.1"
- sources."minimist-0.0.8"
sources."abbrev-1.1.1"
- sources."osenv-0.1.4"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."object-assign-4.1.1"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
+ sources."ajv-4.11.8"
sources."ansi-regex-2.1.1"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."strip-json-comments-2.0.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."asynckit-0.4.0"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."block-stream-0.0.9"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.8"
sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."deep-extend-0.4.2"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."detect-libc-1.0.3"
+ sources."ecc-jsbn-0.1.1"
sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
- sources."har-validator-4.2.1"
- sources."http-signature-1.1.1"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-0.2.0"
- sources."qs-6.4.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-4.11.8"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."fstream-ignore-1.0.5"
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
sources."har-schema-1.0.5"
- sources."co-4.6.0"
+ sources."har-validator-4.2.1"
+ sources."has-unicode-2.0.1"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-signature-1.1.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
sources."json-stable-stringify-1.0.1"
+ sources."json-stringify-safe-5.0.1"
sources."jsonify-0.0.0"
- sources."assert-plus-0.2.0"
(sources."jsprim-1.4.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."nopt-4.0.1"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-0.2.0"
+ sources."process-nextick-args-1.0.7"
+ sources."punycode-1.4.1"
+ sources."qs-6.4.0"
+ (sources."rc-1.2.4" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."readable-stream-2.3.3"
+ sources."request-2.81.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-1.0.9"
(sources."sshpk-1.13.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."tar-2.2.1"
+ sources."tar-pack-3.4.1"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."block-stream-0.0.9"
- sources."fstream-1.0.11"
- sources."graceful-fs-4.1.11"
- sources."debug-2.6.9"
- sources."fstream-ignore-1.0.5"
sources."uid-number-0.0.6"
- sources."ms-2.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."wide-align-1.1.2"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -34341,170 +35544,301 @@ in
nodemon = nodeEnv.buildNodePackage {
name = "nodemon";
packageName = "nodemon";
- version = "1.14.1";
+ version = "1.14.11";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.14.1.tgz";
- sha512 = "16bny3b6b2rj8x1kskp3yviwxpz81pzs2v99pfxqjc0hjjl0dvpp6zn6227gkisvfrvszgf1bnxrq7w9bnbdm2aj4i5wv7y1ad17mry";
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.14.11.tgz";
+ sha512 = "11wlzxf5xjrdybvf0lr1acr7bqhdy7s66m1w5cm02g8pzbd567xziphv1pjx6i27s34qh18rjhp6prc1rapp68x1lr8gkaxi8zfwvfz";
};
dependencies = [
- sources."chokidar-1.7.0"
- sources."debug-2.6.9"
- sources."ignore-by-default-1.0.1"
- sources."minimatch-3.0.4"
- sources."pstree.remy-1.1.0"
- sources."touch-3.1.0"
- sources."undefsafe-0.0.3"
- sources."update-notifier-2.3.0"
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."inherits-2.0.3"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."path-is-absolute-1.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
- sources."micromatch-2.3.11"
- sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
+ sources."abbrev-1.1.1"
+ sources."ansi-align-2.0.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
+ (sources."anymatch-2.0.0" // {
dependencies = [
- sources."kind-of-4.0.0"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
];
})
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
+ sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
- (sources."randomatic-1.1.7" // {
+ sources."arr-union-3.1.0"
+ sources."array-unique-0.3.2"
+ sources."assign-symbols-1.0.0"
+ sources."async-each-1.0.1"
+ sources."atob-2.0.3"
+ sources."balanced-match-1.0.0"
+ (sources."base-0.11.2" // {
dependencies = [
- (sources."is-number-3.0.0" // {
+ (sources."define-property-1.0.0" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."binary-extensions-1.11.0"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.8"
+ sources."braces-2.3.0"
+ sources."cache-base-1.0.1"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."chalk-2.3.0"
+ (sources."chokidar-2.0.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ sources."has-values-0.1.4"
+ (sources."is-accessor-descriptor-0.1.6" // {
dependencies = [
sources."kind-of-3.2.2"
];
})
+ (sources."is-data-descriptor-0.1.4" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-descriptor-0.1.6"
+ sources."is-extendable-1.0.1"
+ sources."kind-of-3.2.2"
+ ];
+ })
+ (sources."class-utils-0.3.6" // {
+ dependencies = [
+ sources."define-property-0.2.5"
];
})
- sources."repeat-string-1.6.1"
- sources."isarray-1.0.0"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."binary-extensions-1.11.0"
- sources."graceful-fs-4.1.11"
- sources."readable-stream-2.3.3"
- sources."set-immediate-shim-1.0.1"
- sources."core-util-is-1.0.2"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."nan-2.8.0"
- sources."ms-2.0.0"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."ps-tree-1.1.0"
- sources."event-stream-3.3.4"
- sources."through-2.3.8"
- sources."duplexer-0.1.1"
- sources."from-0.1.7"
- sources."map-stream-0.1.0"
- sources."pause-stream-0.0.11"
- sources."split-0.3.3"
- sources."stream-combiner-0.0.4"
- sources."nopt-1.0.10"
- sources."abbrev-1.1.1"
- sources."boxen-1.3.0"
- sources."chalk-2.3.0"
- sources."configstore-3.1.1"
- sources."import-lazy-2.1.0"
- sources."is-installed-globally-0.1.0"
- sources."is-npm-1.0.0"
- sources."latest-version-3.1.0"
- sources."semver-diff-2.1.0"
- sources."xdg-basedir-3.0.0"
- sources."ansi-align-2.0.0"
- sources."camelcase-4.1.0"
sources."cli-boxes-1.0.0"
- sources."string-width-2.1.1"
- sources."term-size-1.2.0"
- sources."widest-line-2.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- sources."execa-0.7.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."signal-exit-3.0.2"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-4.5.0"
+ sources."collection-visit-1.0.0"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."dot-prop-4.2.0"
- sources."make-dir-1.1.0"
- sources."unique-string-1.0.0"
- sources."write-file-atomic-2.3.0"
- sources."is-obj-1.0.1"
- sources."pify-3.0.0"
- sources."crypto-random-string-1.0.0"
- sources."imurmurhash-0.1.4"
- sources."global-dirs-0.1.1"
- sources."is-path-inside-1.0.1"
- sources."ini-1.3.5"
- sources."path-is-inside-1.0.2"
- sources."package-json-4.0.1"
- sources."got-6.7.1"
- sources."registry-auth-token-3.3.1"
- sources."registry-url-3.1.0"
- sources."semver-5.4.1"
+ sources."component-emitter-1.2.1"
+ sources."concat-map-0.0.1"
+ sources."configstore-3.1.1"
+ sources."copy-descriptor-0.1.1"
+ sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."crypto-random-string-1.0.0"
+ sources."debug-3.1.0"
+ sources."decode-uri-component-0.2.0"
+ sources."deep-extend-0.4.2"
+ sources."define-property-1.0.0"
+ sources."dot-prop-4.2.0"
+ sources."duplexer-0.1.1"
sources."duplexer3-0.1.4"
+ sources."escape-string-regexp-1.0.5"
+ sources."event-stream-3.3.4"
+ sources."execa-0.7.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" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."fill-range-4.0.0"
+ sources."for-in-1.0.2"
+ sources."fragment-cache-0.2.1"
+ sources."from-0.1.7"
+ sources."fsevents-1.1.3"
+ sources."get-stream-3.0.0"
+ sources."get-value-2.0.6"
+ (sources."glob-parent-3.1.0" // {
+ dependencies = [
+ sources."is-glob-3.1.0"
+ ];
+ })
+ sources."global-dirs-0.1.1"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."has-flag-2.0.0"
+ sources."has-value-1.0.0"
+ sources."has-values-1.0.0"
+ sources."ignore-by-default-1.0.1"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."is-accessor-descriptor-1.0.0"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-data-descriptor-1.0.0"
+ sources."is-descriptor-1.0.2"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-2.1.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-glob-4.0.0"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ sources."is-number-3.0.0"
+ sources."is-obj-1.0.1"
+ (sources."is-odd-1.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-object-2.0.4"
sources."is-redirect-1.0.0"
sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."kind-of-6.0.2"
+ sources."latest-version-3.1.0"
+ sources."lazy-cache-2.0.2"
sources."lowercase-keys-1.0.0"
- sources."timed-out-4.0.1"
- sources."unzip-response-2.0.1"
- sources."url-parse-lax-1.0.0"
- sources."capture-stack-trace-1.0.0"
- sources."prepend-http-1.0.4"
- sources."rc-1.2.2"
- sources."deep-extend-0.4.2"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."map-cache-0.2.2"
+ sources."map-stream-0.1.0"
+ sources."map-visit-1.0.0"
+ (sources."micromatch-3.1.5" // {
+ dependencies = [
+ (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."minimatch-3.0.4"
sources."minimist-1.2.0"
+ sources."mixin-deep-1.3.0"
+ sources."ms-2.0.0"
+ sources."nan-2.8.0"
+ (sources."nanomatch-1.2.7" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."nopt-1.0.10"
+ sources."normalize-path-2.1.1"
+ sources."npm-run-path-2.0.2"
+ sources."object-copy-0.1.0"
+ sources."object-visit-1.0.1"
+ sources."object.pick-1.3.0"
+ sources."p-finally-1.0.0"
+ sources."package-json-4.0.1"
+ sources."pascalcase-0.1.1"
+ sources."path-dirname-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."pause-stream-0.0.11"
+ sources."pify-3.0.0"
+ sources."posix-character-classes-0.1.1"
+ sources."prepend-http-1.0.4"
+ sources."process-nextick-args-1.0.7"
+ sources."ps-tree-1.1.0"
+ sources."pseudomap-1.0.2"
+ sources."pstree.remy-1.1.0"
+ sources."rc-1.2.4"
+ sources."readable-stream-2.3.3"
+ sources."readdirp-2.1.0"
+ sources."regex-not-1.0.0"
+ sources."registry-auth-token-3.3.1"
+ sources."registry-url-3.1.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."resolve-url-0.2.1"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."semver-diff-2.1.0"
+ sources."set-getter-0.1.0"
+ sources."set-immediate-shim-1.0.1"
+ sources."set-value-2.0.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ (sources."snapdragon-0.8.1" // {
+ dependencies = [
+ (sources."define-property-0.2.5" // {
+ dependencies = [
+ sources."kind-of-5.1.0"
+ ];
+ })
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."snapdragon-node-2.1.1"
+ sources."snapdragon-util-3.0.1"
+ sources."source-map-0.5.7"
+ sources."source-map-resolve-0.5.1"
+ sources."source-map-url-0.4.0"
+ sources."split-0.3.3"
+ (sources."split-string-3.1.0" // {
+ dependencies = [
+ sources."extend-shallow-3.0.2"
+ sources."is-extendable-1.0.1"
+ ];
+ })
+ sources."static-extend-0.1.2"
+ sources."stream-combiner-0.0.4"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-4.0.0"
+ sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
+ sources."supports-color-4.5.0"
+ sources."term-size-1.2.0"
+ sources."through-2.3.8"
+ sources."timed-out-4.0.1"
+ sources."to-object-path-0.3.0"
+ (sources."to-regex-3.0.1" // {
+ dependencies = [
+ sources."define-property-0.2.5"
+ ];
+ })
+ sources."to-regex-range-2.1.1"
+ sources."touch-3.1.0"
+ (sources."undefsafe-2.0.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ (sources."union-value-1.0.0" // {
+ dependencies = [
+ sources."set-value-0.4.3"
+ ];
+ })
+ sources."unique-string-1.0.0"
+ (sources."unset-value-1.0.0" // {
+ dependencies = [
+ (sources."has-value-0.3.1" // {
+ dependencies = [
+ sources."isobject-2.1.0"
+ ];
+ })
+ ];
+ })
+ sources."unzip-response-2.0.1"
+ sources."update-notifier-2.3.0"
+ sources."urix-0.1.0"
+ sources."url-parse-lax-1.0.0"
+ sources."use-2.0.2"
+ sources."util-deprecate-1.0.2"
+ sources."which-1.3.0"
+ sources."widest-line-2.0.0"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
+ sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -34524,19 +35858,114 @@ in
sha1 = "1dcf3ead7902ce2df615cdfbe19f3cd9a50e28e2";
};
dependencies = [
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.4"
+ sources."addressparser-0.1.3"
+ sources."ajv-5.5.2"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."append-field-0.1.0"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."argparse-1.0.9"
+ sources."array-flatten-1.1.1"
+ sources."array-indexofobject-0.0.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."async-0.1.22"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
sources."basic-auth-1.1.0"
+ (sources."bcrypt-1.0.3" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ sources."aws-sign2-0.7.0"
+ sources."boom-4.3.1"
+ sources."caseless-0.12.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."form-data-2.3.1"
+ sources."har-validator-5.0.3"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-signature-1.2.0"
+ sources."nopt-4.0.1"
+ sources."qs-6.5.1"
+ sources."request-2.83.0"
+ sources."sntp-2.1.0"
+ sources."tunnel-agent-0.6.0"
+ ];
+ })
+ sources."bcrypt-pbkdf-1.0.1"
sources."bcryptjs-2.4.3"
+ sources."bl-1.2.1"
+ sources."block-stream-0.0.9"
sources."body-parser-1.17.2"
+ sources."boolbase-1.0.0"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.8"
+ sources."buildmail-2.0.0"
+ sources."busboy-0.2.14"
+ sources."bytes-2.4.0"
+ sources."callback-stream-1.1.0"
+ sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
(sources."cheerio-0.22.0" // {
dependencies = [
sources."domelementtype-1.1.3"
];
})
sources."clone-2.1.1"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.9.0"
+ sources."commist-1.0.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."console-control-strings-1.1.0"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
sources."cookie-0.3.1"
sources."cookie-parser-1.4.3"
+ sources."cookie-signature-1.0.6"
+ sources."cookies-0.7.1"
+ sources."core-util-is-1.0.2"
sources."cors-2.8.3"
+ sources."crc-3.4.4"
sources."cron-1.2.1"
+ sources."cryptiles-2.0.5"
+ sources."css-select-1.2.0"
+ sources."css-what-2.1.0"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.7"
+ sources."deep-extend-0.4.2"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."dicer-0.2.5"
+ sources."dom-serializer-0.1.0"
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.4.1"
+ sources."domutils-1.5.1"
+ sources."duplexify-3.5.3"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."encoding-0.1.12"
+ sources."end-of-stream-1.4.1"
+ sources."entities-1.1.1"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-3.1.3"
+ sources."etag-1.8.1"
(sources."express-4.15.3" // {
dependencies = [
sources."statuses-1.3.1"
@@ -34548,139 +35977,103 @@ in
sources."ms-0.7.2"
];
})
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."feedparser-1.1.3"
+ (sources."finalhandler-1.0.6" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
sources."follow-redirects-1.2.4"
+ sources."forever-agent-0.6.1"
+ sources."form-data-1.0.1"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.0"
sources."fs-extra-1.0.0"
sources."fs.notify-0.0.4"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."fstream-ignore-1.0.5"
+ sources."gauge-2.7.4"
+ sources."generate-function-2.0.0"
+ sources."generate-object-property-1.2.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."glob-parent-3.1.0"
+ sources."glob-stream-6.1.0"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
+ sources."har-schema-2.0.0"
+ sources."har-validator-2.0.6"
+ sources."has-ansi-2.0.0"
+ sources."has-unicode-2.0.1"
sources."hash-sum-1.0.2"
- sources."i18next-1.10.6"
- sources."is-utf8-0.2.1"
- sources."js-yaml-3.8.4"
- sources."json-stringify-safe-5.0.1"
- sources."jsonata-1.2.6"
- sources."media-typer-0.3.0"
- (sources."mqtt-2.9.0" // {
+ sources."hawk-3.1.3"
+ (sources."help-me-1.1.0" // {
dependencies = [
- sources."ws-3.3.3"
+ sources."pump-2.0.1"
];
})
- (sources."multer-1.3.0" // {
- dependencies = [
- sources."object-assign-3.0.0"
- sources."readable-stream-1.1.14"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."minimist-0.0.8"
- ];
- })
- sources."mustache-2.3.0"
- sources."nopt-3.0.6"
- sources."oauth2orize-1.8.0"
- sources."on-headers-1.0.1"
- sources."passport-0.3.2"
- sources."passport-http-bearer-1.0.1"
- sources."passport-oauth2-client-password-0.1.2"
- sources."raw-body-2.2.0"
- sources."semver-5.3.0"
- sources."sentiment-2.1.0"
- sources."uglify-js-3.0.20"
- sources."when-3.7.8"
- (sources."ws-1.1.1" // {
- dependencies = [
- sources."ultron-1.0.2"
- ];
- })
- sources."xml2js-0.4.17"
- (sources."node-red-node-feedparser-0.1.8" // {
- dependencies = [
- sources."sax-0.6.1"
- sources."readable-stream-1.0.34"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."bl-1.1.2"
- sources."qs-6.2.3"
- sources."async-2.6.0"
- ];
- })
- (sources."node-red-node-email-0.1.24" // {
- dependencies = [
- sources."addressparser-0.3.2"
- sources."clone-1.0.3"
- sources."minimist-0.0.10"
- sources."readable-stream-1.1.14"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- ];
- })
- (sources."node-red-node-twitter-0.1.12" // {
- dependencies = [
- sources."request-2.83.0"
- sources."aws-sign2-0.7.0"
- sources."caseless-0.12.0"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."qs-6.5.1"
- sources."tunnel-agent-0.6.0"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- ];
- })
- sources."node-red-node-rbe-0.1.14"
- (sources."bcrypt-1.0.3" // {
- dependencies = [
- sources."nopt-4.0.1"
- sources."request-2.83.0"
- sources."aws-sign2-0.7.0"
- sources."caseless-0.12.0"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."qs-6.5.1"
- sources."tunnel-agent-0.6.0"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- ];
- })
- sources."bytes-2.4.0"
- sources."content-type-1.0.4"
- sources."debug-2.6.7"
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.15"
- sources."on-finished-2.3.0"
- sources."qs-6.4.0"
- sources."type-is-1.6.15"
- sources."ms-2.0.0"
- sources."inherits-2.0.3"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."ee-first-1.1.1"
- sources."mime-types-2.1.17"
- sources."mime-db-1.30.0"
- sources."css-select-1.2.0"
- sources."dom-serializer-0.1.0"
- sources."entities-1.1.1"
+ sources."hoek-2.16.3"
(sources."htmlparser2-3.9.2" // {
dependencies = [
sources."domelementtype-1.3.0"
];
})
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-signature-1.1.1"
+ sources."i18next-1.10.6"
+ sources."i18next-client-1.10.3"
+ sources."iconv-lite-0.4.15"
+ sources."imap-0.8.19"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."ipaddr.js-1.4.0"
+ sources."is-absolute-1.0.0"
+ sources."is-extglob-2.1.1"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-glob-3.1.0"
+ sources."is-my-json-valid-2.17.1"
+ sources."is-negated-glob-1.0.0"
+ sources."is-property-1.0.2"
+ sources."is-relative-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-unc-path-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."is-windows-1.0.1"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."js-yaml-3.8.4"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stable-stringify-1.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."json5-0.2.0"
+ sources."jsonata-1.2.6"
+ sources."jsonfile-2.4.0"
+ sources."jsonify-0.0.0"
+ sources."jsonpointer-4.0.1"
+ (sources."jsprim-1.4.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."keygrip-1.0.2"
+ sources."klaw-1.3.1"
+ sources."leven-1.0.2"
+ sources."libbase64-0.1.0"
+ sources."libmime-1.2.0"
+ sources."libqp-1.1.0"
+ sources."lodash-4.17.4"
sources."lodash.assignin-4.2.0"
sources."lodash.bind-4.2.1"
sources."lodash.defaults-4.2.0"
@@ -34693,267 +36086,216 @@ in
sources."lodash.reduce-4.6.0"
sources."lodash.reject-4.6.0"
sources."lodash.some-4.6.0"
- sources."css-what-2.1.0"
- sources."domutils-1.5.1"
- sources."boolbase-1.0.0"
- sources."nth-check-1.0.1"
- sources."domelementtype-1.3.0"
- sources."domhandler-2.4.1"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."cookie-signature-1.0.6"
- sources."object-assign-4.1.1"
- sources."vary-1.1.2"
- sources."moment-timezone-0.5.14"
- sources."moment-2.20.1"
- sources."accepts-1.3.4"
- sources."array-flatten-1.1.1"
- sources."content-disposition-0.5.2"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- (sources."finalhandler-1.0.6" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."fresh-0.5.0"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.5"
- sources."range-parser-1.2.0"
- sources."send-0.15.3"
- sources."serve-static-1.12.3"
- sources."utils-merge-1.0.0"
- sources."negotiator-0.6.1"
- sources."unpipe-1.0.0"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.4.0"
- sources."destroy-1.0.4"
- sources."mime-1.3.4"
- sources."crc-3.4.4"
- sources."uid-safe-2.1.5"
- sources."random-bytes-1.0.0"
- sources."graceful-fs-4.1.11"
- sources."jsonfile-2.4.0"
- sources."klaw-1.3.1"
- sources."async-0.1.22"
- sources."retry-0.6.1"
- sources."cookies-0.7.1"
- sources."i18next-client-1.10.3"
- sources."json5-0.2.0"
- sources."keygrip-1.0.2"
- sources."argparse-1.0.9"
- sources."esprima-3.1.3"
- sources."sprintf-js-1.0.3"
- sources."commist-1.0.0"
- sources."concat-stream-1.6.0"
- sources."end-of-stream-1.4.0"
- sources."help-me-1.1.0"
- sources."minimist-1.2.0"
- sources."mqtt-packet-5.4.0"
- sources."pump-1.0.3"
- sources."reinterval-1.1.0"
- sources."split2-2.2.0"
- sources."websocket-stream-5.1.1"
- sources."xtend-4.0.1"
- sources."leven-1.0.2"
- sources."typedarray-0.0.6"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."callback-stream-1.1.0"
- sources."glob-stream-6.1.0"
- sources."through2-2.0.3"
- sources."extend-3.0.1"
- sources."glob-7.1.2"
- sources."glob-parent-3.1.0"
- sources."is-negated-glob-1.0.0"
- sources."ordered-read-streams-1.0.1"
- sources."pumpify-1.3.5"
- sources."remove-trailing-separator-1.1.0"
- sources."to-absolute-glob-2.0.2"
- sources."unique-stream-2.2.1"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."is-glob-3.1.0"
- sources."path-dirname-1.0.2"
- sources."is-extglob-2.1.1"
- sources."duplexify-3.5.1"
- sources."stream-shift-1.0.0"
- sources."is-absolute-1.0.0"
- sources."is-relative-1.0.0"
- sources."is-windows-1.0.1"
- sources."is-unc-path-1.0.0"
- sources."unc-path-regex-0.1.2"
- sources."json-stable-stringify-1.0.1"
- sources."through2-filter-2.0.0"
- sources."jsonify-0.0.0"
- sources."bl-1.2.1"
- sources."async-limiter-1.0.0"
- sources."ultron-1.1.1"
- sources."append-field-0.1.0"
- sources."busboy-0.2.14"
- sources."mkdirp-0.5.1"
- sources."dicer-0.2.5"
- sources."streamsearch-0.1.2"
- sources."abbrev-1.1.1"
- sources."uid2-0.0.3"
- sources."passport-strategy-1.0.0"
- sources."pause-0.0.1"
- sources."commander-2.9.0"
- sources."source-map-0.5.7"
- sources."graceful-readlink-1.0.1"
- sources."options-0.0.6"
- sources."sax-1.2.4"
- sources."xmlbuilder-4.2.1"
- sources."lodash-4.17.4"
- sources."feedparser-1.1.3"
- (sources."request-2.74.0" // {
- dependencies = [
- sources."readable-stream-2.0.6"
- sources."isarray-1.0.0"
- ];
- })
- sources."addressparser-0.1.3"
- sources."array-indexofobject-0.0.1"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.6.0"
- sources."caseless-0.11.0"
- sources."combined-stream-1.0.5"
- sources."forever-agent-0.6.1"
- sources."form-data-1.0.1"
- sources."har-validator-2.0.6"
- sources."hawk-3.1.3"
- sources."http-signature-1.1.1"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."node-uuid-1.4.8"
- sources."oauth-sign-0.8.2"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.4.3"
- sources."delayed-stream-1.0.0"
- sources."chalk-1.1.3"
- sources."is-my-json-valid-2.17.1"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."assert-plus-0.2.0"
- (sources."jsprim-1.4.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- (sources."sshpk-1.13.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."nodemailer-1.11.0"
- sources."poplib-0.1.7"
- (sources."mailparser-0.6.2" // {
- dependencies = [
- sources."addressparser-1.0.1"
- ];
- })
- sources."imap-0.8.19"
- sources."libmime-1.2.0"
(sources."mailcomposer-2.1.0" // {
dependencies = [
sources."needle-0.10.0"
];
})
+ (sources."mailparser-0.6.2" // {
+ dependencies = [
+ sources."addressparser-1.0.1"
+ ];
+ })
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.3.4"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimelib-0.3.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.20.1"
+ sources."moment-timezone-0.5.14"
+ (sources."mqtt-2.9.0" // {
+ dependencies = [
+ sources."ws-3.3.3"
+ ];
+ })
+ sources."mqtt-packet-5.4.0"
+ sources."ms-2.0.0"
+ (sources."multer-1.3.0" // {
+ dependencies = [
+ sources."isarray-0.0.1"
+ sources."minimist-0.0.8"
+ sources."object-assign-3.0.0"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."mustache-2.3.0"
+ sources."nan-2.6.2"
sources."needle-0.11.0"
+ sources."negotiator-0.6.1"
+ sources."node-pre-gyp-0.6.36"
+ (sources."node-red-node-email-0.1.24" // {
+ dependencies = [
+ sources."addressparser-0.3.2"
+ sources."clone-1.0.3"
+ sources."isarray-0.0.1"
+ sources."minimist-0.0.10"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ (sources."node-red-node-feedparser-0.1.8" // {
+ dependencies = [
+ sources."async-2.6.0"
+ sources."bl-1.1.2"
+ sources."isarray-0.0.1"
+ sources."qs-6.2.3"
+ sources."readable-stream-1.0.34"
+ sources."sax-0.6.1"
+ sources."string_decoder-0.10.31"
+ ];
+ })
+ sources."node-red-node-rbe-0.1.14"
+ (sources."node-red-node-twitter-0.1.12" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ sources."aws-sign2-0.7.0"
+ sources."boom-4.3.1"
+ sources."caseless-0.12.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."form-data-2.3.1"
+ sources."har-validator-5.0.3"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-signature-1.2.0"
+ sources."qs-6.5.1"
+ sources."request-2.83.0"
+ sources."sntp-2.1.0"
+ sources."tunnel-agent-0.6.0"
+ ];
+ })
+ sources."node-uuid-1.4.8"
+ sources."nodemailer-1.11.0"
sources."nodemailer-direct-transport-1.1.0"
sources."nodemailer-smtp-transport-1.1.0"
- sources."libbase64-0.1.0"
- sources."libqp-1.1.0"
- sources."buildmail-2.0.0"
- sources."smtp-connection-1.3.8"
sources."nodemailer-wellknown-0.1.10"
- sources."optimist-0.6.1"
- sources."wordwrap-0.0.3"
- sources."mimelib-0.3.1"
- sources."encoding-0.1.12"
- sources."uue-3.1.0"
- sources."utf7-1.0.2"
- sources."twitter-ng-0.6.2"
- sources."oauth-0.9.14"
- sources."performance-now-2.1.0"
- sources."uuid-3.1.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."nan-2.6.2"
- sources."node-pre-gyp-0.6.36"
+ sources."nopt-3.0.6"
sources."npmlog-4.1.2"
- sources."rc-1.2.2"
- sources."rimraf-2.6.2"
- sources."tar-2.2.1"
- sources."tar-pack-3.4.1"
- sources."osenv-0.1.4"
+ sources."nth-check-1.0.1"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-0.9.14"
+ sources."oauth-sign-0.8.2"
+ sources."oauth2orize-1.8.0"
+ sources."object-assign-4.1.1"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."once-1.4.0"
+ sources."optimist-0.6.1"
+ sources."options-0.0.6"
+ sources."ordered-read-streams-1.0.1"
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
+ sources."osenv-0.1.4"
+ sources."parseurl-1.3.2"
+ sources."passport-0.3.2"
+ sources."passport-http-bearer-1.0.1"
+ sources."passport-oauth2-client-password-0.1.2"
+ sources."passport-strategy-1.0.0"
+ sources."path-dirname-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."pause-0.0.1"
+ sources."performance-now-2.1.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."poplib-0.1.7"
+ sources."process-nextick-args-1.0.7"
+ sources."proxy-addr-1.1.5"
+ sources."pump-1.0.3"
+ sources."pumpify-1.4.0"
+ sources."punycode-1.4.1"
+ sources."qs-6.4.0"
+ sources."random-bytes-1.0.0"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.2.0"
+ sources."rc-1.2.4"
+ sources."readable-stream-2.3.3"
+ sources."reinterval-1.1.0"
+ sources."remove-trailing-separator-1.1.0"
+ (sources."request-2.74.0" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.0.6"
+ ];
+ })
+ sources."retry-0.6.1"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."sax-1.2.4"
+ sources."semver-5.3.0"
+ sources."send-0.15.3"
+ sources."sentiment-2.1.0"
+ sources."serve-static-1.12.3"
sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
+ sources."setprototypeof-1.0.3"
sources."signal-exit-3.0.2"
+ sources."smtp-connection-1.3.8"
+ sources."sntp-1.0.9"
+ sources."source-map-0.5.7"
+ sources."split2-2.2.0"
+ sources."sprintf-js-1.0.3"
+ (sources."sshpk-1.13.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."statuses-1.4.0"
+ sources."stream-shift-1.0.0"
+ sources."streamsearch-0.1.2"
sources."string-width-1.0.2"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
- sources."block-stream-0.0.9"
- sources."fstream-1.0.11"
- sources."fstream-ignore-1.0.5"
+ sources."supports-color-2.0.0"
+ sources."tar-2.2.1"
+ sources."tar-pack-3.4.1"
+ sources."through2-2.0.3"
+ sources."through2-filter-2.0.0"
+ sources."to-absolute-glob-2.0.2"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ sources."twitter-ng-0.6.2"
+ sources."type-is-1.6.15"
+ sources."typedarray-0.0.6"
+ sources."uglify-js-3.0.20"
sources."uid-number-0.0.6"
+ sources."uid-safe-2.1.5"
+ sources."uid2-0.0.3"
+ sources."ultron-1.1.1"
+ sources."unc-path-regex-0.1.2"
+ sources."unique-stream-2.2.1"
+ sources."unpipe-1.0.0"
+ sources."utf7-1.0.2"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.0"
+ sources."uue-3.1.1"
+ sources."uuid-3.2.1"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."websocket-stream-5.1.1"
+ sources."when-3.7.8"
+ sources."wide-align-1.1.2"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ (sources."ws-1.1.1" // {
+ dependencies = [
+ sources."ultron-1.0.2"
+ ];
+ })
+ sources."xml2js-0.4.17"
+ sources."xmlbuilder-4.2.1"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -34974,114 +36316,114 @@ in
sha256 = "46424d7f9553ce7313cc09995ab11d237dd02257c29f260cfb38d2799e7c7746";
};
dependencies = [
- sources."mongoose-3.6.7"
- sources."mongoose-lifecycle-1.0.0"
+ sources."active-x-obfuscator-0.0.1"
+ sources."addressparser-1.0.1"
+ sources."argparse-0.1.16"
+ sources."async-0.1.22"
+ sources."base64id-0.1.0"
+ sources."bson-0.1.8"
+ sources."buffer-crc32-0.2.13"
+ sources."buildmail-4.0.1"
+ sources."bytes-0.2.0"
+ sources."coffee-script-1.12.7"
+ sources."commander-0.6.1"
+ (sources."config-0.4.15" // {
+ dependencies = [
+ sources."js-yaml-0.3.7"
+ ];
+ })
+ (sources."connect-2.7.6" // {
+ dependencies = [
+ sources."buffer-crc32-0.1.1"
+ ];
+ })
+ sources."connect-flash-0.1.0"
+ sources."cookie-0.0.5"
+ sources."cookie-signature-1.0.1"
+ sources."debug-3.1.0"
+ sources."diff-1.0.8"
+ sources."ejs-0.8.3"
+ sources."esprima-1.0.4"
(sources."express-3.2.0" // {
dependencies = [
sources."ms-2.0.0"
];
})
sources."express-partials-0.0.6"
- sources."connect-flash-0.1.0"
- sources."ejs-0.8.3"
- (sources."config-0.4.15" // {
- dependencies = [
- sources."js-yaml-0.3.7"
- ];
- })
- sources."async-0.1.22"
- (sources."socket.io-0.9.14" // {
- dependencies = [
- sources."commander-2.1.0"
- ];
- })
- sources."semver-1.1.0"
- sources."moment-2.1.0"
- sources."nodemailer-0.3.35"
- (sources."net-ping-1.1.7" // {
- dependencies = [
- sources."nan-2.3.5"
- ];
- })
- sources."js-yaml-2.1.0"
+ sources."eyes-0.1.8"
+ sources."formidable-1.0.11"
+ sources."fresh-0.1.0"
+ sources."glob-4.0.6"
+ sources."graceful-fs-3.0.11"
sources."hooks-0.2.1"
+ sources."iconv-lite-0.4.15"
+ sources."inherits-2.0.3"
+ sources."js-yaml-2.1.0"
+ sources."libbase64-0.1.0"
+ sources."libmime-3.0.0"
+ sources."libqp-1.1.0"
+ sources."lru-cache-2.7.3"
+ sources."mailcomposer-4.0.2"
+ sources."methods-0.0.1"
+ sources."mime-1.2.6"
+ sources."minimatch-1.0.0"
+ sources."minimist-0.0.10"
+ sources."mkdirp-0.3.5"
+ sources."moment-2.1.0"
sources."mongodb-1.2.14"
- sources."ms-0.1.0"
- sources."sliced-0.0.3"
- sources."muri-0.3.1"
+ sources."mongoose-3.6.7"
+ sources."mongoose-lifecycle-1.0.0"
+ sources."mpath-0.1.1"
(sources."mpromise-0.2.1" // {
dependencies = [
sources."sliced-0.0.4"
];
})
- sources."mpath-0.1.1"
- sources."bson-0.1.8"
- (sources."connect-2.7.6" // {
+ sources."ms-0.1.0"
+ sources."muri-0.3.1"
+ sources."nan-1.0.0"
+ sources."natives-1.1.1"
+ (sources."net-ping-1.1.7" // {
dependencies = [
- sources."buffer-crc32-0.1.1"
+ sources."nan-2.3.5"
];
})
- sources."commander-0.6.1"
- sources."range-parser-0.0.4"
- sources."mkdirp-0.3.5"
- sources."cookie-0.0.5"
- sources."buffer-crc32-0.2.13"
- sources."fresh-0.1.0"
- sources."methods-0.0.1"
- sources."send-0.1.0"
- sources."cookie-signature-1.0.1"
- sources."debug-3.1.0"
- sources."qs-0.5.1"
- sources."formidable-1.0.11"
- sources."bytes-0.2.0"
- sources."pause-0.0.1"
- sources."mime-1.2.6"
- sources."coffee-script-1.12.7"
- sources."vows-0.8.1"
- sources."eyes-0.1.8"
- sources."diff-1.0.8"
- sources."glob-4.0.6"
- sources."graceful-fs-3.0.11"
- sources."inherits-2.0.3"
- sources."minimatch-1.0.0"
- sources."once-1.4.0"
- sources."natives-1.1.1"
- sources."lru-cache-2.7.3"
- sources."sigmund-1.0.1"
- sources."wrappy-1.0.2"
- sources."socket.io-client-0.9.11"
- sources."policyfile-0.0.4"
- sources."base64id-0.1.0"
- sources."redis-0.7.3"
- sources."uglify-js-1.2.5"
- sources."ws-0.4.32"
- sources."xmlhttprequest-1.4.2"
- sources."active-x-obfuscator-0.0.1"
- sources."nan-1.0.0"
- sources."tinycolor-0.0.1"
- sources."options-0.0.6"
- sources."zeparser-0.0.5"
- sources."mailcomposer-4.0.2"
- sources."simplesmtp-0.3.35"
- sources."optimist-0.6.1"
- sources."buildmail-4.0.1"
- sources."libmime-3.0.0"
- sources."addressparser-1.0.1"
- sources."libbase64-0.1.0"
- sources."libqp-1.1.0"
+ sources."nodemailer-0.3.35"
sources."nodemailer-fetch-1.6.0"
sources."nodemailer-shared-1.1.0"
+ sources."once-1.4.0"
+ sources."optimist-0.6.1"
+ sources."options-0.0.6"
+ sources."pause-0.0.1"
+ sources."policyfile-0.0.4"
sources."punycode-1.4.1"
- sources."iconv-lite-0.4.15"
+ sources."qs-0.5.1"
sources."rai-0.1.12"
- sources."xoauth2-0.1.8"
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- sources."raw-socket-1.5.1"
- sources."argparse-0.1.16"
- sources."esprima-1.0.4"
+ sources."range-parser-0.0.4"
+ sources."raw-socket-1.5.2"
+ sources."redis-0.7.3"
+ sources."semver-1.1.0"
+ sources."send-0.1.0"
+ sources."sigmund-1.0.1"
+ sources."simplesmtp-0.3.35"
+ sources."sliced-0.0.3"
+ (sources."socket.io-0.9.14" // {
+ dependencies = [
+ sources."commander-2.1.0"
+ ];
+ })
+ sources."socket.io-client-0.9.11"
+ sources."tinycolor-0.0.1"
+ sources."uglify-js-1.2.5"
sources."underscore-1.7.0"
sources."underscore.string-2.4.0"
+ sources."vows-0.8.1"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ sources."ws-0.4.32"
+ sources."xmlhttprequest-1.4.2"
+ sources."xoauth2-0.1.8"
+ sources."zeparser-0.0.5"
];
buildInputs = globalBuildInputs;
meta = {
@@ -35118,8 +36460,101 @@ in
sha256 = "e1b252cd883fd8c5c4618b157d03b3fb869fa6aad4170ef51e34681069d50bf5";
};
dependencies = [
- sources."semver-4.3.6"
+ sources."abbrev-1.1.1"
+ sources."ajv-5.5.2"
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
sources."argparse-0.1.15"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ (sources."block-stream-0.0.9" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ sources."caseless-0.12.0"
+ sources."chownr-0.0.2"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."coffee-script-1.12.7"
+ sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ (sources."config-chain-1.1.11" // {
+ dependencies = [
+ sources."ini-1.3.5"
+ ];
+ })
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."couch-login-0.1.20"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."dashdash-1.14.1"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."findit-1.2.0"
+ sources."foreachasync-3.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."fs-extra-0.6.4"
+ (sources."fs.extra-1.3.2" // {
+ dependencies = [
+ sources."rimraf-2.2.8"
+ ];
+ })
+ sources."fs.realpath-1.0.0"
+ (sources."fstream-0.1.31" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."graceful-fs-2.0.3"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-unicode-2.0.1"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-signature-1.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.1.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-1.0.1"
+ sources."jsprim-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.3.5"
+ sources."natives-1.1.1"
+ sources."ncp-0.4.2"
+ sources."nopt-2.2.1"
(sources."npm-registry-client-0.2.27" // {
dependencies = [
sources."semver-2.0.11"
@@ -35132,150 +36567,57 @@ in
sources."semver-2.3.2"
];
})
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."osenv-0.0.3"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-1.0.7"
+ sources."proto-list-1.2.4"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."readable-stream-2.3.3"
+ sources."request-2.83.0"
+ sources."retry-0.6.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."semver-4.3.6"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slide-1.1.6"
+ sources."sntp-2.1.0"
+ sources."sshpk-1.13.1"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
(sources."tar-0.1.17" // {
dependencies = [
- sources."inherits-1.0.2"
sources."graceful-fs-3.0.11"
+ sources."inherits-1.0.2"
sources."mkdirp-0.5.1"
];
})
(sources."temp-0.6.0" // {
dependencies = [
- sources."rimraf-2.1.4"
sources."graceful-fs-1.2.3"
+ sources."rimraf-2.1.4"
];
})
- (sources."fs.extra-1.3.2" // {
- dependencies = [
- sources."rimraf-2.2.8"
- ];
- })
- sources."findit-1.2.0"
- sources."coffee-script-1.12.7"
- sources."underscore-1.4.4"
- sources."underscore.string-2.3.3"
- sources."request-2.83.0"
- sources."graceful-fs-2.0.3"
- sources."slide-1.1.6"
- sources."chownr-0.0.2"
- sources."mkdirp-0.3.5"
- sources."rimraf-2.6.2"
- sources."retry-0.6.0"
- sources."couch-login-0.1.20"
- sources."npmlog-4.1.2"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."safe-buffer-5.1.1"
- sources."stringstream-0.0.5"
sources."tough-cookie-2.3.3"
sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."core-util-is-1.0.2"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
+ sources."underscore-1.4.4"
+ sources."underscore.string-2.3.3"
sources."util-deprecate-1.0.2"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."object-assign-4.1.1"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
- sources."ansi-regex-2.1.1"
- (sources."config-chain-1.1.11" // {
- dependencies = [
- sources."ini-1.3.5"
- ];
- })
- sources."osenv-0.0.3"
- sources."nopt-2.2.1"
- sources."ini-1.1.0"
- sources."proto-list-1.2.4"
- sources."abbrev-1.1.1"
- (sources."block-stream-0.0.9" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
- (sources."fstream-0.1.31" // {
- dependencies = [
- sources."inherits-2.0.3"
- ];
- })
- sources."natives-1.1.1"
- sources."minimist-0.0.8"
- sources."fs-extra-0.6.4"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
sources."walk-2.3.9"
- sources."ncp-0.4.2"
- sources."jsonfile-1.0.1"
- sources."foreachasync-3.0.0"
+ sources."wide-align-1.1.2"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -35288,335 +36630,339 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "2.13.0";
+ version = "2.14.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.13.0.tgz";
- sha512 = "3gqr04g6asacfpr7bmz0mqn3mga6vyq106wmjiyz7p4z1m58ia6zk3541s35hpf5g6wmkv52pmal8wnzxair9286jsr722lxrnn78f2";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.14.0.tgz";
+ sha512 = "1yk2hf3npvf7kjmiapbq8np5dsb9sx8iiinnfm69vabh55ahzxdv3m14s2sbbsx5q0n269jyz3qhiqx5krhvmbpgqpihas5nvwwlras";
};
dependencies = [
+ sources."abbrev-1.1.1"
+ sources."align-text-0.1.4"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-1.4.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."ansicolors-0.3.2"
+ sources."archy-1.0.0"
+ sources."argparse-1.0.9"
+ sources."asap-2.0.6"
+ sources."async-1.5.2"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.2"
sources."bluebird-3.5.1"
+ sources."bops-0.1.1"
+ sources."boxen-0.3.1"
+ sources."brace-expansion-1.1.8"
+ sources."builtin-modules-1.1.1"
+ sources."camelcase-1.2.1"
+ sources."capture-stack-trace-1.0.0"
+ sources."center-align-0.1.3"
sources."chalk-1.1.3"
sources."cint-8.2.1"
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-1.0.2"
sources."cli-table-0.3.1"
- sources."commander-2.12.2"
- sources."fast-diff-1.1.2"
- sources."find-up-1.1.2"
- sources."get-stdin-5.0.1"
- sources."json-parse-helpfulerror-1.0.3"
- sources."lodash-4.17.4"
- sources."node-alias-1.0.4"
- sources."npm-3.10.10"
- (sources."npmi-2.0.1" // {
- dependencies = [
- sources."semver-4.3.6"
- ];
- })
- sources."semver-5.4.1"
- sources."semver-utils-1.1.1"
- (sources."snyk-1.61.2" // {
- dependencies = [
- sources."update-notifier-0.5.0"
- sources."minimist-1.2.0"
- sources."async-0.9.2"
- sources."lazy-cache-0.2.7"
- sources."for-in-0.1.8"
- sources."yargs-4.8.1"
- sources."cliui-3.2.0"
- sources."window-size-0.2.0"
- sources."camelcase-3.0.0"
- sources."latest-version-1.0.1"
- sources."repeating-1.1.3"
- sources."package-json-1.2.0"
- sources."got-3.3.1"
- sources."object-assign-3.0.0"
- sources."timed-out-2.0.0"
- ];
- })
- sources."spawn-please-0.3.0"
- (sources."update-notifier-2.3.0" // {
- dependencies = [
- sources."boxen-1.3.0"
- sources."chalk-2.3.0"
- sources."configstore-3.1.1"
- sources."latest-version-3.1.0"
- sources."xdg-basedir-3.0.0"
- sources."camelcase-4.1.0"
- sources."string-width-2.1.1"
- sources."widest-line-2.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- sources."ansi-styles-3.2.0"
- sources."supports-color-4.5.0"
- sources."dot-prop-4.2.0"
- sources."write-file-atomic-2.3.0"
- sources."pify-3.0.0"
- sources."package-json-4.0.1"
- sources."got-6.7.1"
- sources."timed-out-4.0.1"
- sources."unzip-response-2.0.1"
- ];
- })
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
+ sources."cli-width-2.2.0"
+ sources."clite-0.3.0"
+ sources."cliui-2.1.0"
+ sources."clone-deep-0.3.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
sources."colors-1.0.3"
- sources."path-exists-2.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."jju-1.3.0"
- sources."abbrev-1.1.1"
- sources."ansi-escapes-1.4.0"
+ sources."commander-2.13.0"
+ sources."concat-map-0.0.1"
(sources."configstore-1.4.0" // {
dependencies = [
sources."uuid-2.0.3"
];
})
+ sources."core-util-is-1.0.2"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."crypto-random-string-1.0.0"
sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.4.2"
+ sources."dot-prop-3.0.0"
+ sources."duplexer2-0.1.4"
+ sources."duplexer3-0.1.4"
+ sources."duplexify-3.5.3"
+ sources."email-validator-1.1.1"
+ sources."end-of-stream-1.4.1"
+ sources."error-ex-1.3.1"
sources."es6-promise-3.3.1"
- sources."hasbin-1.2.3"
- sources."inquirer-1.0.3"
- sources."needle-2.1.0"
- sources."open-0.0.5"
- sources."os-name-1.0.3"
- sources."proxy-from-env-1.0.0"
- sources."snyk-config-1.0.1"
- sources."snyk-go-plugin-1.4.3"
- sources."snyk-gradle-plugin-1.2.0"
- sources."snyk-module-1.8.1"
- sources."snyk-mvn-plugin-1.1.0"
- (sources."snyk-nuget-plugin-1.3.6" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."es6-promise-4.1.1"
- ];
- })
- (sources."snyk-php-plugin-1.3.0" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."snyk-policy-1.10.1"
- sources."snyk-python-plugin-1.4.0"
- sources."snyk-recursive-readdir-2.0.0"
- sources."snyk-resolve-1.0.0"
- (sources."snyk-resolve-deps-1.7.0" // {
- dependencies = [
- sources."update-notifier-0.6.3"
- sources."configstore-2.1.0"
- sources."uuid-2.0.3"
- ];
- })
- sources."snyk-sbt-plugin-1.2.0"
- sources."snyk-tree-1.0.0"
- sources."snyk-try-require-1.2.0"
- (sources."tempfile-1.1.1" // {
- dependencies = [
- sources."uuid-2.0.3"
- ];
- })
- sources."then-fs-2.0.0"
- sources."undefsafe-0.0.3"
- sources."url-0.11.0"
- sources."uuid-3.1.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.0"
+ sources."execa-0.7.0"
+ sources."exit-hook-1.1.1"
+ sources."fast-diff-1.1.2"
+ sources."figures-1.7.0"
+ sources."filled-array-1.1.0"
+ sources."find-up-1.1.2"
+ sources."for-in-1.0.2"
+ sources."for-own-1.0.0"
+ sources."get-caller-file-1.0.2"
+ sources."get-stdin-5.0.1"
+ sources."get-stream-3.0.0"
+ sources."global-dirs-0.1.1"
+ sources."got-5.7.1"
sources."graceful-fs-4.1.11"
+ sources."graphlib-2.1.5"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-2.0.0"
+ sources."hasbin-1.2.3"
+ sources."hosted-git-info-2.5.0"
+ sources."iconv-lite-0.4.19"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."infinity-agent-2.0.3"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."inquirer-1.0.3"
+ sources."invert-kv-1.0.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-buffer-1.1.6"
+ sources."is-builtin-module-1.0.0"
+ sources."is-extendable-0.1.1"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-object-2.0.4"
+ sources."is-promise-2.1.0"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."jju-1.3.0"
+ sources."js-yaml-3.10.0"
+ sources."json-parse-helpfulerror-1.0.3"
+ sources."json5-0.5.1"
+ sources."kind-of-3.2.2"
+ sources."latest-version-2.0.0"
+ sources."lazy-cache-1.0.4"
+ sources."lcid-1.0.0"
+ sources."load-json-file-1.1.0"
+ sources."lodash-4.17.4"
+ sources."lodash.assign-4.2.0"
+ sources."lodash.clonedeep-4.5.0"
+ sources."lodash.defaults-4.2.0"
+ sources."lodash.defaultsdeep-4.6.0"
+ sources."lodash.mergewith-4.6.0"
+ sources."longest-1.0.1"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."minimatch-3.0.2"
+ sources."minimist-0.0.8"
+ sources."mixin-object-2.0.1"
sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.6"
+ sources."nconf-0.7.2"
+ sources."needle-2.1.1"
+ sources."nested-error-stacks-1.0.2"
+ sources."node-alias-1.0.4"
+ sources."node-status-codes-1.0.0"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-3.10.10"
+ sources."npm-run-path-2.0.2"
+ (sources."npmi-2.0.1" // {
+ dependencies = [
+ sources."semver-4.3.6"
+ ];
+ })
+ sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
+ sources."object-keys-1.0.11"
+ sources."once-1.4.0"
+ sources."onetime-1.1.0"
+ sources."open-0.0.5"
+ sources."os-homedir-1.0.2"
+ sources."os-locale-1.4.0"
+ sources."os-name-1.0.3"
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.4"
- sources."write-file-atomic-1.3.4"
- sources."xdg-basedir-2.0.0"
- sources."minimist-0.0.8"
- sources."os-homedir-1.0.2"
- sources."imurmurhash-0.1.4"
- sources."slide-1.1.6"
- sources."ms-2.0.0"
- sources."async-1.5.2"
- sources."cli-cursor-1.0.2"
- sources."cli-width-2.2.0"
- sources."figures-1.7.0"
- sources."mute-stream-0.0.6"
+ sources."osx-release-1.1.0"
+ sources."p-finally-1.0.0"
+ sources."package-json-2.4.0"
+ sources."parse-json-2.2.0"
+ sources."path-exists-2.1.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."path-type-1.1.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."prepend-http-1.0.4"
+ sources."process-nextick-args-1.0.7"
+ sources."promise-7.3.1"
+ sources."proxy-from-env-1.0.0"
+ sources."pseudomap-1.0.2"
+ sources."punycode-1.3.2"
+ sources."querystring-0.2.0"
+ sources."rc-1.2.4"
+ sources."rc-config-loader-2.0.1"
+ sources."read-all-stream-3.1.0"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.3"
+ sources."registry-auth-token-3.3.1"
+ sources."registry-url-3.1.0"
+ sources."repeat-string-1.6.1"
+ sources."repeating-2.0.1"
+ sources."require-directory-2.1.1"
+ sources."require-from-string-2.0.1"
+ sources."require-main-filename-1.0.1"
+ sources."restore-cursor-1.0.1"
+ sources."right-align-0.1.3"
sources."run-async-2.3.0"
sources."rx-4.1.0"
- sources."string-width-1.0.2"
- sources."through-2.3.8"
- sources."restore-cursor-1.0.1"
- sources."exit-hook-1.1.1"
- sources."onetime-1.1.0"
- sources."is-promise-2.1.0"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
- sources."iconv-lite-0.4.19"
- sources."osx-release-1.1.0"
- sources."win-release-1.1.1"
- sources."nconf-0.7.2"
- sources."path-is-absolute-1.0.1"
- sources."ini-1.3.5"
- sources."yargs-3.15.0"
- sources."camelcase-1.2.1"
- sources."cliui-2.1.0"
- sources."decamelize-1.2.0"
- sources."window-size-0.1.4"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."wordwrap-0.0.2"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.2.2"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."graphlib-2.1.1"
- sources."toml-2.3.3"
- sources."clone-deep-0.3.0"
- sources."for-own-1.0.0"
- sources."is-plain-object-2.0.4"
+ sources."safe-buffer-5.1.1"
+ sources."sax-1.2.4"
+ sources."semver-5.5.0"
+ sources."semver-diff-2.1.0"
+ sources."semver-utils-1.1.1"
+ sources."set-blocking-2.0.0"
(sources."shallow-clone-0.1.2" // {
dependencies = [
sources."kind-of-2.0.1"
];
})
- sources."for-in-1.0.2"
- sources."isobject-3.0.1"
- sources."is-extendable-0.1.1"
- sources."mixin-object-2.0.1"
- sources."hosted-git-info-2.5.0"
- sources."xml2js-0.4.19"
- sources."zip-1.2.0"
- sources."sax-1.2.4"
- sources."xmlbuilder-9.0.4"
- sources."bops-0.1.1"
- sources."base64-js-0.0.2"
- sources."to-utf8-0.0.1"
- sources."email-validator-1.1.1"
- sources."js-yaml-3.10.0"
- sources."lodash.clonedeep-4.5.0"
- sources."argparse-1.0.9"
- sources."esprima-4.0.0"
- sources."sprintf-js-1.0.3"
- sources."minimatch-3.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."ansicolors-0.3.2"
- sources."clite-0.3.0"
- sources."lru-cache-4.1.1"
- sources."lodash.defaults-4.2.0"
- sources."lodash.defaultsdeep-4.6.0"
- sources."lodash.mergewith-4.6.0"
- sources."boxen-0.3.1"
- sources."is-npm-1.0.0"
- sources."latest-version-2.0.0"
- sources."semver-diff-2.1.0"
- sources."filled-array-1.1.0"
- sources."repeating-2.0.1"
- sources."widest-line-1.0.0"
- sources."is-finite-1.0.2"
- sources."dot-prop-3.0.0"
- sources."is-obj-1.0.1"
- sources."package-json-2.4.0"
- sources."got-5.7.1"
- sources."registry-auth-token-3.3.1"
- sources."registry-url-3.1.0"
- sources."create-error-class-3.0.2"
- sources."duplexer2-0.1.4"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."is-stream-1.1.0"
- sources."lowercase-keys-1.0.0"
- sources."node-status-codes-1.0.0"
- sources."parse-json-2.2.0"
- sources."read-all-stream-3.1.0"
- sources."readable-stream-2.3.3"
- sources."timed-out-3.1.3"
- sources."unzip-response-1.0.2"
- sources."url-parse-lax-1.0.0"
- sources."capture-stack-trace-1.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."core-util-is-1.0.2"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."prepend-http-1.0.4"
- sources."rc-1.2.2"
- sources."deep-extend-0.4.2"
- sources."strip-json-comments-2.0.1"
- sources."get-caller-file-1.0.2"
- sources."lodash.assign-4.2.0"
- sources."os-locale-1.4.0"
- sources."read-pkg-up-1.0.1"
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- sources."set-blocking-2.0.0"
- sources."which-module-1.0.0"
- sources."y18n-3.2.1"
- sources."yargs-parser-2.4.1"
- sources."wrap-ansi-2.1.0"
- sources."lcid-1.0.0"
- sources."invert-kv-1.0.0"
- sources."read-pkg-1.1.0"
- sources."load-json-file-1.1.0"
- sources."normalize-package-data-2.4.0"
- sources."path-type-1.1.0"
- sources."pify-2.3.0"
- sources."strip-bom-2.0.0"
- sources."is-utf8-0.2.1"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slide-1.1.6"
+ (sources."snyk-1.69.3" // {
+ dependencies = [
+ sources."async-0.9.2"
+ sources."camelcase-3.0.0"
+ sources."cliui-3.2.0"
+ sources."for-in-0.1.8"
+ sources."got-3.3.1"
+ sources."latest-version-1.0.1"
+ sources."lazy-cache-0.2.7"
+ sources."minimist-1.2.0"
+ sources."object-assign-3.0.0"
+ sources."package-json-1.2.0"
+ sources."repeating-1.1.3"
+ sources."timed-out-2.0.0"
+ sources."update-notifier-0.5.0"
+ sources."window-size-0.2.0"
+ sources."yargs-4.8.1"
+ ];
+ })
+ sources."snyk-config-1.0.1"
+ sources."snyk-go-plugin-1.4.5"
+ sources."snyk-gradle-plugin-1.2.0"
+ sources."snyk-module-1.8.1"
+ sources."snyk-mvn-plugin-1.1.1"
+ (sources."snyk-nuget-plugin-1.3.9" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."es6-promise-4.2.4"
+ ];
+ })
+ (sources."snyk-php-plugin-1.3.2" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."snyk-policy-1.10.1"
+ sources."snyk-python-plugin-1.5.3"
+ sources."snyk-recursive-readdir-2.0.0"
+ sources."snyk-resolve-1.0.0"
+ (sources."snyk-resolve-deps-1.7.0" // {
+ dependencies = [
+ sources."configstore-2.1.0"
+ sources."update-notifier-0.6.3"
+ sources."uuid-2.0.3"
+ ];
+ })
+ sources."snyk-sbt-plugin-1.2.2"
+ sources."snyk-tree-1.0.0"
+ sources."snyk-try-require-1.2.0"
+ sources."spawn-please-0.3.0"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."archy-1.0.0"
- sources."promise-7.3.1"
- sources."asap-2.0.6"
- sources."string-length-1.0.1"
- sources."duplexify-3.5.1"
- sources."infinity-agent-2.0.3"
- sources."nested-error-stacks-1.0.2"
- sources."end-of-stream-1.4.0"
+ sources."sprintf-js-1.0.3"
sources."stream-shift-1.0.0"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."punycode-1.3.2"
- sources."querystring-0.2.0"
- sources."import-lazy-2.1.0"
- sources."is-installed-globally-0.1.0"
- sources."ansi-align-2.0.0"
- sources."cli-boxes-1.0.0"
- sources."term-size-1.2.0"
- sources."execa-0.7.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."signal-exit-3.0.2"
+ sources."string-length-1.0.1"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-2.0.0"
sources."strip-eof-1.0.0"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."make-dir-1.1.0"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-2.0.0"
+ (sources."tempfile-1.1.1" // {
+ dependencies = [
+ sources."uuid-2.0.3"
+ ];
+ })
+ sources."term-size-1.2.0"
+ sources."then-fs-2.0.0"
+ sources."through-2.3.8"
+ sources."timed-out-3.1.3"
+ sources."to-utf8-0.0.1"
+ sources."toml-2.3.3"
+ sources."undefsafe-0.0.3"
sources."unique-string-1.0.0"
- sources."crypto-random-string-1.0.0"
- sources."global-dirs-0.1.1"
- sources."is-path-inside-1.0.1"
- sources."path-is-inside-1.0.2"
- sources."duplexer3-0.1.4"
+ sources."unzip-response-1.0.2"
+ (sources."update-notifier-2.3.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
+ sources."boxen-1.3.0"
+ sources."camelcase-4.1.0"
+ sources."chalk-2.3.0"
+ sources."configstore-3.1.1"
+ sources."dot-prop-4.2.0"
+ sources."got-6.7.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."latest-version-3.1.0"
+ sources."package-json-4.0.1"
+ sources."pify-3.0.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."supports-color-4.5.0"
+ sources."timed-out-4.0.1"
+ sources."unzip-response-2.0.1"
+ sources."widest-line-2.0.0"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
+ ];
+ })
+ sources."url-0.11.0"
+ sources."url-parse-lax-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-license-3.0.1"
+ sources."which-1.3.0"
+ sources."which-module-1.0.0"
+ sources."widest-line-1.0.0"
+ sources."win-release-1.1.1"
+ sources."window-size-0.1.4"
+ sources."wordwrap-0.0.2"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-1.3.4"
+ sources."xdg-basedir-2.0.0"
+ sources."xml2js-0.4.19"
+ sources."xmlbuilder-9.0.4"
+ sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ sources."yargs-3.15.0"
+ sources."yargs-parser-2.4.1"
+ sources."zip-1.2.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -35636,127 +36982,128 @@ in
sha512 = "0hbwm017cl5ybzw14l44mbinhnv38jrnbpg1ngkdibhc5hiimm8hqr2pi5dzh6flvxr0x6nym93029i7j41clr6rlvn1ab6r5cgdl4f";
};
dependencies = [
- sources."chalk-2.3.0"
- sources."cli-table2-0.2.0"
- sources."cvss-1.0.2"
- sources."https-proxy-agent-2.1.1"
- (sources."inquirer-3.3.0" // {
- dependencies = [
- sources."lodash-4.17.4"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."ansi-regex-3.0.0"
- ];
- })
- sources."nodesecurity-npm-utils-6.0.0"
- sources."semver-5.4.1"
- sources."wreck-12.5.1"
- (sources."yargs-9.0.1" // {
- dependencies = [
- sources."string-width-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- ];
- })
- sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-4.5.0"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."lodash-3.10.1"
- sources."string-width-1.0.2"
- sources."colors-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."strip-ansi-3.0.1"
- sources."number-is-nan-1.0.1"
- sources."ansi-regex-2.1.1"
- sources."agent-base-4.1.2"
- sources."debug-3.1.0"
- sources."es6-promisify-5.0.0"
- sources."es6-promise-4.1.1"
- sources."ms-2.0.0"
+ sources."agent-base-4.2.0"
sources."ansi-escapes-3.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."external-editor-2.1.0"
- sources."figures-2.0.0"
- sources."mute-stream-0.0.7"
- sources."run-async-2.3.0"
- sources."rx-lite-4.0.8"
- sources."rx-lite-aggregates-4.0.8"
- sources."through-2.3.8"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."signal-exit-3.0.2"
- sources."mimic-fn-1.1.0"
- sources."chardet-0.4.2"
- sources."iconv-lite-0.4.19"
- sources."tmp-0.0.33"
- sources."os-tmpdir-1.0.2"
- sources."is-promise-2.1.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.0"
sources."boom-5.2.0"
- sources."hoek-4.2.0"
+ sources."builtin-modules-1.1.1"
sources."camelcase-4.1.0"
+ sources."chalk-2.3.0"
+ sources."chardet-0.4.2"
+ sources."cli-cursor-2.1.0"
+ sources."cli-table2-0.2.0"
+ sources."cli-width-2.2.0"
(sources."cliui-3.2.0" // {
dependencies = [
sources."string-width-1.0.2"
];
})
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."colors-1.1.2"
+ sources."cross-spawn-5.1.0"
+ sources."cvss-1.0.2"
+ sources."debug-3.1.0"
sources."decamelize-1.2.0"
+ sources."error-ex-1.3.1"
+ sources."es6-promise-4.2.4"
+ sources."es6-promisify-5.0.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-0.7.0"
+ sources."external-editor-2.1.0"
+ sources."figures-2.0.0"
+ sources."find-up-2.1.0"
sources."get-caller-file-1.0.2"
+ sources."get-stream-3.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-flag-2.0.0"
+ sources."hoek-4.2.0"
+ sources."hosted-git-info-2.5.0"
+ sources."https-proxy-agent-2.1.1"
+ sources."iconv-lite-0.4.19"
+ (sources."inquirer-3.3.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."lodash-4.17.4"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."invert-kv-1.0.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-promise-2.1.0"
+ sources."is-stream-1.1.0"
+ sources."isexe-2.0.0"
+ sources."lcid-1.0.0"
+ sources."load-json-file-2.0.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-3.10.1"
+ sources."lru-cache-4.1.1"
+ sources."mem-1.1.0"
+ sources."mimic-fn-1.1.0"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."nodesecurity-npm-utils-6.0.0"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-run-path-2.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."onetime-2.0.1"
sources."os-locale-2.1.0"
+ sources."os-tmpdir-1.0.2"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."parse-json-2.2.0"
+ sources."path-exists-3.0.0"
+ sources."path-key-2.0.1"
+ sources."path-type-2.0.0"
+ sources."pify-2.3.0"
+ sources."pseudomap-1.0.2"
+ sources."read-pkg-2.0.0"
sources."read-pkg-up-2.0.0"
sources."require-directory-2.1.1"
sources."require-main-filename-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."run-async-2.3.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."semver-5.5.0"
sources."set-blocking-2.0.0"
- sources."which-module-2.0.0"
- sources."y18n-3.2.1"
- sources."yargs-parser-7.0.0"
- sources."wrap-ansi-2.1.0"
- sources."execa-0.7.0"
- sources."lcid-1.0.0"
- sources."mem-1.1.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."invert-kv-1.0.0"
- sources."find-up-2.1.0"
- sources."read-pkg-2.0.0"
- sources."locate-path-2.0.0"
- sources."p-locate-2.0.0"
- sources."path-exists-3.0.0"
- sources."p-limit-1.1.0"
- sources."load-json-file-2.0.0"
- sources."normalize-package-data-2.4.0"
- sources."path-type-2.0.0"
- sources."graceful-fs-4.1.11"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
- sources."strip-bom-3.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
+ sources."signal-exit-3.0.2"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-3.0.0"
+ sources."strip-eof-1.0.0"
+ sources."supports-color-4.5.0"
+ sources."through-2.3.8"
+ sources."tmp-0.0.33"
+ sources."validate-npm-package-license-3.0.1"
+ sources."which-1.3.0"
+ sources."which-module-2.0.0"
+ sources."wrap-ansi-2.1.0"
+ sources."wreck-12.5.1"
+ sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ (sources."yargs-9.0.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."yargs-parser-7.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -35777,26 +37124,26 @@ in
};
dependencies = [
sources."async-2.6.0"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."concat-map-0.0.1"
+ sources."fs.realpath-1.0.0"
sources."glob-7.1.2"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
sources."lodash-4.17.4"
sources."lokijs-1.5.1"
+ sources."minimatch-3.0.4"
+ sources."once-1.4.0"
+ sources."path-is-absolute-1.0.1"
sources."pegjs-0.10.0"
sources."vscode-jsonrpc-3.5.0"
sources."vscode-languageclient-3.5.0"
sources."vscode-languageserver-3.5.0"
sources."vscode-languageserver-protocol-3.5.0"
- sources."vscode-uri-1.0.1"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
sources."vscode-languageserver-types-3.5.0"
+ sources."vscode-uri-1.0.1"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -35816,20 +37163,82 @@ in
sha1 = "fbedac4c5c0b721f4c241287b81bdc3e4c7987c9";
};
dependencies = [
+ sources."accepts-1.3.4"
+ sources."ajv-5.5.2"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."ansi-regex-2.1.1"
+ sources."argparse-1.0.9"
+ sources."array-flatten-1.1.1"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
sources."async-0.9.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
sources."babybird-0.0.1"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bl-1.2.1"
+ sources."bluebird-3.5.1"
(sources."body-parser-1.18.2" // {
dependencies = [
sources."content-type-1.0.4"
];
})
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ sources."builtin-modules-1.1.1"
+ sources."bunyan-1.8.12"
+ sources."bunyan-syslog-udp-0.1.0"
+ sources."busboy-0.2.14"
+ sources."bytes-3.0.0"
+ sources."camelcase-1.2.1"
+ sources."caseless-0.12.0"
+ sources."center-align-0.1.3"
+ sources."clarinet-0.11.0"
+ sources."cliui-2.1.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."colors-1.1.2"
+ sources."combined-stream-1.0.5"
+ sources."compressible-2.0.12"
sources."compression-1.7.1"
+ sources."concat-map-0.0.1"
sources."connect-busboy-0.0.2"
+ sources."content-disposition-0.5.2"
sources."content-type-git+https://github.com/wikimedia/content-type.git#master"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
sources."core-js-2.5.3"
+ sources."core-util-is-1.0.2"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."define-properties-1.1.2"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."dicer-0.2.5"
sources."diff-1.4.0"
+ sources."dnscache-1.0.1"
+ sources."dom-storage-2.0.2"
sources."domino-1.0.30"
+ sources."dtrace-provider-0.8.6"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
sources."entities-1.1.1"
+ sources."error-ex-1.3.1"
+ sources."escape-html-1.0.3"
+ sources."esprima-4.0.0"
+ sources."etag-1.8.1"
(sources."express-4.16.2" // {
dependencies = [
sources."content-type-1.0.4"
@@ -35840,255 +37249,198 @@ in
(sources."express-handlebars-3.0.0" // {
dependencies = [
sources."async-1.5.2"
- sources."yargs-3.10.0"
sources."wordwrap-0.0.2"
+ sources."yargs-3.10.0"
];
})
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
(sources."finalhandler-1.1.0" // {
dependencies = [
sources."statuses-1.3.1"
];
})
- sources."js-yaml-3.10.0"
- sources."mediawiki-title-0.6.5"
- sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access"
- sources."pegjs-git+https://github.com/tstarling/pegjs.git#fork"
- sources."prfun-2.1.4"
- sources."request-2.83.0"
- sources."semver-5.4.1"
- sources."serve-favicon-2.4.5"
- (sources."service-runner-2.4.8" // {
+ sources."find-up-1.1.2"
+ sources."foreach-2.0.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."function-bind-1.1.1"
+ sources."gelf-stream-1.1.1"
+ sources."gelfling-0.3.1"
+ sources."get-caller-file-1.0.2"
+ sources."getpass-0.1.7"
+ sources."glob-6.0.4"
+ sources."graceful-fs-4.1.11"
+ sources."handlebars-4.0.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-symbols-1.0.0"
+ sources."hat-0.0.3"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."hosted-git-info-2.5.0"
+ sources."hot-shots-4.8.0"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."invert-kv-1.0.0"
+ sources."ipaddr.js-1.5.2"
+ sources."is-arguments-1.0.2"
+ sources."is-arrayish-0.2.1"
+ sources."is-buffer-1.1.6"
+ sources."is-builtin-module-1.0.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-0.0.1"
+ sources."isstream-0.1.2"
+ sources."js-yaml-3.10.0"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."kad-git+https://github.com/gwicke/kad.git#master"
+ sources."kad-fs-0.0.4"
+ sources."kad-localstorage-0.0.7"
+ sources."kad-memstore-0.0.1"
+ sources."kind-of-3.2.2"
+ sources."lazy-cache-1.0.4"
+ sources."lcid-1.0.0"
+ sources."limitation-0.2.0"
+ sources."load-json-file-1.1.0"
+ sources."lodash-3.10.1"
+ sources."lodash._baseclone-4.5.7"
+ sources."lodash.clone-4.3.2"
+ sources."longest-1.0.1"
+ sources."media-typer-0.3.0"
+ sources."mediawiki-title-0.6.5"
+ sources."merge-1.2.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.10"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.20.1"
+ sources."ms-2.0.0"
+ sources."msgpack5-3.6.0"
+ sources."mv-2.1.1"
+ sources."nan-2.8.0"
+ sources."ncp-2.0.0"
+ sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access"
+ sources."normalize-package-data-2.4.0"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-keys-1.0.11"
+ sources."object.assign-4.1.0"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."once-1.4.0"
+ sources."optimist-0.6.1"
+ sources."os-locale-1.4.0"
+ sources."parse-json-2.2.0"
+ sources."parseurl-1.3.2"
+ sources."path-exists-2.1.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."path-type-1.1.0"
+ sources."pegjs-git+https://github.com/tstarling/pegjs.git#fork"
+ sources."performance-now-2.1.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."prfun-2.1.5"
+ sources."process-nextick-args-1.0.7"
+ sources."promise-7.3.1"
+ sources."proxy-addr-2.0.2"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-1.1.14"
+ sources."repeat-string-1.6.1"
+ sources."request-2.83.0"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."right-align-0.1.3"
+ sources."rimraf-2.4.5"
+ sources."safe-buffer-5.1.1"
+ sources."safe-json-stringify-1.0.4"
+ sources."semver-5.5.0"
+ sources."send-0.16.1"
+ sources."serve-favicon-2.4.5"
+ sources."serve-static-1.13.1"
+ (sources."service-runner-2.5.0" // {
dependencies = [
- sources."minimist-0.0.8"
- sources."readable-stream-2.3.3"
- sources."ms-0.7.3"
sources."isarray-1.0.0"
+ sources."minimist-0.0.8"
+ sources."ms-0.7.3"
+ sources."readable-stream-2.3.3"
sources."string_decoder-1.0.3"
];
})
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.0.3"
sources."simplediff-0.1.1"
- sources."uuid-3.1.0"
+ sources."sntp-2.1.0"
+ sources."source-map-0.4.4"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.13.1"
+ sources."statuses-1.4.0"
+ sources."streamsearch-0.1.2"
+ sources."string-width-1.0.2"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-2.0.0"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.15"
+ (sources."uglify-js-2.8.29" // {
+ dependencies = [
+ sources."source-map-0.5.7"
+ ];
+ })
+ sources."uglify-to-browserify-1.0.2"
+ sources."unpipe-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-license-3.0.1"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."which-module-1.0.0"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.3"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."y18n-3.2.1"
(sources."yargs-7.1.0" // {
dependencies = [
sources."camelcase-3.0.0"
sources."cliui-3.2.0"
];
})
- sources."asap-2.0.6"
- sources."is-arguments-1.0.2"
- sources."bytes-3.0.0"
- sources."debug-2.6.9"
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."on-finished-2.3.0"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."type-is-1.6.15"
- sources."ms-2.0.0"
- sources."inherits-2.0.3"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."ee-first-1.1.1"
- sources."unpipe-1.0.0"
- sources."media-typer-0.3.0"
- sources."mime-types-2.1.17"
- sources."mime-db-1.30.0"
- sources."accepts-1.3.4"
- sources."compressible-2.0.12"
- sources."on-headers-1.0.1"
- sources."safe-buffer-5.1.1"
- sources."vary-1.1.2"
- sources."busboy-0.2.14"
- sources."dicer-0.2.5"
- sources."readable-stream-1.1.14"
- sources."streamsearch-0.1.2"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."array-flatten-1.1.1"
- sources."content-disposition-0.5.2"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-2.0.2"
- sources."range-parser-1.2.0"
- sources."send-0.16.1"
- sources."serve-static-1.13.1"
- sources."utils-merge-1.0.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.5.2"
- sources."destroy-1.0.4"
- sources."mime-1.4.1"
- sources."glob-6.0.4"
- sources."graceful-fs-4.1.11"
- sources."handlebars-4.0.11"
- sources."object.assign-4.0.4"
- sources."promise-7.3.1"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."optimist-0.6.1"
- sources."source-map-0.4.4"
- (sources."uglify-js-2.8.29" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- sources."amdefine-1.0.1"
- sources."uglify-to-browserify-1.0.2"
- sources."camelcase-1.2.1"
- sources."cliui-2.1.0"
- sources."decamelize-1.2.0"
- sources."window-size-0.1.0"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.2.2"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."function-bind-1.1.1"
- sources."object-keys-1.0.11"
- sources."define-properties-1.1.2"
- sources."foreach-2.0.5"
- sources."argparse-1.0.9"
- sources."esprima-4.0.0"
- sources."sprintf-js-1.0.3"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."bluebird-3.5.1"
- sources."bunyan-1.8.12"
- sources."bunyan-syslog-udp-0.1.0"
- sources."gelf-stream-1.1.1"
- sources."hot-shots-4.8.0"
- sources."limitation-0.2.0"
- sources."dnscache-1.0.1"
- sources."dtrace-provider-0.8.5"
- sources."mv-2.1.1"
- sources."safe-json-stringify-1.0.4"
- sources."moment-2.20.1"
- sources."nan-2.8.0"
- sources."mkdirp-0.5.1"
- sources."ncp-2.0.0"
- sources."rimraf-2.4.5"
- sources."gelfling-0.3.1"
- sources."kad-git+https://github.com/gwicke/kad.git#master"
- sources."clarinet-0.11.0"
- sources."colors-1.1.2"
- sources."hat-0.0.3"
- sources."kad-fs-0.0.4"
- sources."kad-localstorage-0.0.7"
- sources."kad-memstore-0.0.1"
- sources."lodash-3.10.1"
- sources."merge-1.2.0"
- sources."msgpack5-3.6.0"
- sources."dom-storage-2.0.2"
- sources."bl-1.2.1"
- sources."process-nextick-args-1.0.7"
- sources."util-deprecate-1.0.2"
- sources."lodash.clone-4.3.2"
- sources."lodash._baseclone-4.5.7"
- sources."get-caller-file-1.0.2"
- sources."os-locale-1.4.0"
- sources."read-pkg-up-1.0.1"
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- sources."set-blocking-2.0.0"
- sources."string-width-1.0.2"
- sources."which-module-1.0.0"
- sources."y18n-3.2.1"
sources."yargs-parser-5.0.0"
- sources."strip-ansi-3.0.1"
- sources."wrap-ansi-2.1.0"
- sources."ansi-regex-2.1.1"
- sources."lcid-1.0.0"
- sources."invert-kv-1.0.0"
- sources."find-up-1.1.2"
- sources."read-pkg-1.1.0"
- sources."path-exists-2.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."load-json-file-1.1.0"
- sources."normalize-package-data-2.4.0"
- sources."path-type-1.1.0"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
- sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."is-utf8-0.2.1"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -36108,259 +37460,259 @@ in
sha512 = "0i2j5pgw72bkg5s5crh3p534sz6m6yvbyg174kkgyj1l0sgaqmzj22xmh0dvxqk7r3rp79w2vs27gdqzb8azmlr6ag13m17h20cyhhf";
};
dependencies = [
+ sources."addr-to-ip-port-1.4.2"
+ sources."airplay-protocol-2.0.2"
sources."airplayer-2.0.0"
+ sources."ansi-escapes-1.4.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."appendable-cli-menu-2.0.0"
+ sources."array-find-index-1.0.2"
+ sources."array-flatten-2.1.1"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.8"
+ sources."bencode-1.0.0"
+ sources."big-integer-1.6.26"
+ sources."bitfield-0.1.0"
+ sources."bittorrent-dht-6.4.2"
+ sources."bittorrent-tracker-7.7.0"
+ sources."blob-to-buffer-1.2.6"
+ sources."bn.js-4.11.8"
+ sources."bncode-0.5.3"
+ sources."bonjour-3.5.0"
+ sources."bplist-creator-0.0.6"
+ sources."bplist-parser-0.1.1"
+ sources."brace-expansion-1.1.8"
+ sources."buffer-alloc-unsafe-1.0.0"
+ sources."buffer-equal-0.0.1"
+ sources."buffer-equals-1.0.4"
+ sources."buffer-indexof-1.1.1"
+ sources."builtin-modules-1.1.1"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ sources."chalk-1.1.3"
+ sources."cli-cursor-1.0.2"
+ sources."cli-width-2.2.0"
sources."clivas-0.2.0"
+ sources."code-point-at-1.1.0"
+ sources."compact2string-1.4.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."consume-http-header-1.0.0"
+ sources."consume-until-1.0.0"
+ sources."core-util-is-1.0.2"
+ sources."currently-unhandled-0.4.1"
+ sources."cyclist-0.1.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."decompress-response-3.3.0"
+ sources."deep-equal-1.0.1"
+ sources."deep-extend-0.4.2"
+ sources."dns-equal-1.0.0"
+ sources."dns-packet-1.3.1"
+ sources."dns-txt-2.0.2"
+ sources."end-of-stream-1.4.1"
+ sources."error-ex-1.3.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."exit-hook-1.1.1"
+ sources."extend-3.0.1"
+ sources."external-editor-1.1.1"
+ sources."fifo-0.1.4"
+ sources."figures-1.7.0"
+ sources."find-up-1.1.2"
+ sources."flatten-0.0.1"
+ (sources."fs-chunk-store-1.6.5" // {
+ dependencies = [
+ sources."mkdirp-0.5.1"
+ ];
+ })
+ sources."fs.realpath-1.0.0"
+ sources."get-browser-rtc-1.0.2"
+ sources."get-stdin-4.0.1"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
+ sources."has-ansi-2.0.0"
+ sources."hat-0.0.3"
+ sources."hosted-git-info-2.5.0"
+ sources."http-headers-3.0.2"
+ sources."immediate-chunk-store-1.0.8"
+ sources."indent-string-2.1.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
(sources."inquirer-1.2.3" // {
dependencies = [
sources."lodash-4.17.4"
];
})
+ sources."internal-ip-1.2.0"
+ sources."ip-1.1.5"
+ sources."ip-set-1.0.1"
+ sources."ipaddr.js-1.5.4"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-promise-2.1.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."k-bucket-0.6.0"
+ (sources."k-rpc-3.7.0" // {
+ dependencies = [
+ sources."bencode-1.0.0"
+ sources."k-bucket-2.0.1"
+ ];
+ })
+ sources."k-rpc-socket-1.7.2"
sources."keypress-0.2.1"
+ sources."load-json-file-1.1.0"
+ sources."lodash-3.10.1"
+ sources."loud-rejection-1.6.0"
+ sources."lru-2.0.1"
+ sources."magnet-uri-5.1.7"
+ sources."map-obj-1.0.1"
+ sources."meow-3.7.0"
sources."mime-1.6.0"
+ sources."mimic-response-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.3.5"
+ sources."ms-2.0.0"
+ sources."multicast-dns-6.2.2"
+ sources."multicast-dns-service-types-1.1.0"
+ sources."mute-stream-0.0.6"
sources."network-address-1.1.2"
+ sources."next-line-1.1.0"
+ sources."normalize-package-data-2.4.0"
+ sources."number-is-nan-1.0.1"
sources."numeral-1.5.6"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."onetime-1.1.0"
sources."open-0.0.5"
(sources."optimist-0.6.1" // {
dependencies = [
sources."minimist-0.0.10"
];
})
+ sources."options-0.0.6"
+ sources."os-shim-0.1.3"
+ sources."os-tmpdir-1.0.2"
+ sources."parse-json-2.2.0"
(sources."parse-torrent-5.8.3" // {
dependencies = [
sources."get-stdin-5.0.1"
];
})
- sources."pump-1.0.3"
- sources."range-parser-1.2.0"
- sources."rc-1.2.2"
- (sources."torrent-stream-1.0.3" // {
- dependencies = [
- sources."end-of-stream-0.1.5"
- sources."parse-torrent-4.1.0"
- sources."once-1.3.3"
- sources."thunky-1.0.2"
- sources."minimist-0.0.8"
- sources."magnet-uri-4.2.3"
- sources."parse-torrent-file-2.1.4"
- sources."thirty-two-0.0.2"
- sources."bencode-0.7.0"
- sources."readable-stream-1.1.14"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."safe-buffer-5.0.1"
- sources."ultron-1.0.2"
- ];
- })
- sources."winreg-1.2.3"
- sources."xtend-4.0.1"
- sources."airplay-protocol-2.0.2"
- sources."appendable-cli-menu-2.0.0"
- sources."bonjour-3.5.0"
- sources."internal-ip-1.2.0"
- sources."minimist-1.2.0"
- sources."server-destroy-1.0.1"
- sources."bplist-creator-0.0.6"
- sources."bplist-parser-0.1.1"
- sources."concat-stream-1.6.0"
- sources."plist-1.2.0"
- sources."reverse-http-1.3.0"
- sources."stream-buffers-2.2.0"
- sources."big-integer-1.6.26"
- sources."inherits-2.0.3"
- sources."typedarray-0.0.6"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."base64-js-0.0.8"
- sources."xmlbuilder-4.0.0"
- sources."xmldom-0.1.27"
- sources."lodash-3.10.1"
- sources."consume-http-header-1.0.0"
- sources."once-1.4.0"
- sources."consume-until-1.0.0"
- sources."http-headers-3.0.2"
- sources."buffer-indexof-1.1.1"
- sources."next-line-1.1.0"
- sources."wrappy-1.0.2"
- sources."chalk-1.1.3"
- sources."single-line-log-1.1.2"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."string-width-1.0.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
- sources."array-flatten-2.1.1"
- sources."deep-equal-1.0.1"
- sources."dns-equal-1.0.0"
- sources."dns-txt-2.0.2"
- sources."multicast-dns-6.2.1"
- sources."multicast-dns-service-types-1.1.0"
- sources."dns-packet-1.2.2"
- sources."thunky-0.1.0"
- sources."ip-1.1.5"
- sources."meow-3.7.0"
- sources."camelcase-keys-2.1.0"
- sources."decamelize-1.2.0"
- sources."loud-rejection-1.6.0"
- sources."map-obj-1.0.1"
- sources."normalize-package-data-2.4.0"
- sources."object-assign-4.1.1"
- sources."read-pkg-up-1.0.1"
- sources."redent-1.0.0"
- sources."trim-newlines-1.0.0"
- sources."camelcase-2.1.1"
- sources."currently-unhandled-0.4.1"
- sources."signal-exit-3.0.2"
- sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."semver-5.4.1"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."find-up-1.1.2"
- sources."read-pkg-1.1.0"
- sources."path-exists-2.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."load-json-file-1.1.0"
- sources."path-type-1.1.0"
- sources."graceful-fs-4.1.11"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
- sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."is-utf8-0.2.1"
- sources."indent-string-2.1.0"
- sources."strip-indent-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."get-stdin-4.0.1"
- sources."ansi-escapes-1.4.0"
- sources."cli-cursor-1.0.2"
- sources."cli-width-2.2.0"
- sources."external-editor-1.1.1"
- sources."figures-1.7.0"
- sources."mute-stream-0.0.6"
- sources."run-async-2.3.0"
- sources."rx-4.1.0"
- sources."through-2.3.8"
- sources."restore-cursor-1.0.1"
- sources."exit-hook-1.1.1"
- sources."onetime-1.1.0"
- sources."extend-3.0.1"
- sources."spawn-sync-1.0.15"
- sources."tmp-0.0.29"
- sources."os-shim-0.1.3"
- sources."os-tmpdir-1.0.2"
- sources."is-promise-2.1.0"
- sources."wordwrap-0.0.3"
- sources."blob-to-buffer-1.2.6"
- sources."magnet-uri-5.1.7"
sources."parse-torrent-file-4.0.3"
- sources."simple-get-2.7.0"
- sources."thirty-two-1.0.2"
- sources."uniq-1.0.1"
- sources."bencode-1.0.0"
- sources."simple-sha1-2.1.0"
- sources."rusha-0.8.9"
- sources."decompress-response-3.3.0"
- sources."simple-concat-1.0.0"
- sources."mimic-response-1.0.0"
- sources."end-of-stream-1.4.0"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."strip-json-comments-2.0.1"
- sources."bitfield-0.1.0"
- sources."bncode-0.5.3"
- (sources."fs-chunk-store-1.6.5" // {
- dependencies = [
- sources."mkdirp-0.5.1"
- ];
- })
- sources."hat-0.0.3"
- sources."immediate-chunk-store-1.0.8"
- sources."ip-set-1.0.1"
- sources."mkdirp-0.3.5"
+ sources."path-exists-2.1.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-type-1.1.0"
+ sources."peer-wire-protocol-0.7.0"
(sources."peer-wire-swarm-0.12.1" // {
dependencies = [
sources."bncode-0.2.3"
];
})
- sources."rimraf-2.6.2"
- (sources."torrent-discovery-5.4.0" // {
- dependencies = [
- sources."bencode-0.8.0"
- sources."minimist-1.2.0"
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
- ];
- })
- sources."torrent-piece-1.1.1"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."plist-1.2.0"
+ sources."process-nextick-args-1.0.7"
+ sources."pump-1.0.3"
sources."random-access-file-1.8.1"
- sources."randombytes-2.0.5"
- sources."run-parallel-1.1.6"
- sources."buffer-alloc-unsafe-1.0.0"
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- sources."flatten-0.0.1"
- sources."fifo-0.1.4"
- sources."peer-wire-protocol-0.7.0"
- sources."speedometer-0.1.4"
- sources."utp-0.0.7"
- sources."cyclist-0.1.1"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."bittorrent-dht-6.4.2"
- sources."bittorrent-tracker-7.7.0"
- sources."re-emitter-1.1.3"
- sources."buffer-equals-1.0.4"
- sources."k-bucket-0.6.0"
- (sources."k-rpc-3.7.0" // {
- dependencies = [
- sources."k-bucket-2.0.1"
- sources."bencode-1.0.0"
- ];
- })
- sources."lru-2.0.1"
- sources."buffer-equal-0.0.1"
- sources."k-rpc-socket-1.7.2"
- sources."bn.js-4.11.8"
- sources."compact2string-1.4.0"
sources."random-iterate-1.0.1"
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
+ sources."rc-1.2.4"
+ sources."re-emitter-1.1.3"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.3"
+ sources."redent-1.0.0"
+ sources."repeating-2.0.1"
+ sources."restore-cursor-1.0.1"
+ sources."reverse-http-1.3.0"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."run-parallel-1.1.6"
sources."run-series-1.1.4"
+ sources."rusha-0.8.12"
+ sources."rx-4.1.0"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."server-destroy-1.0.1"
+ sources."signal-exit-3.0.2"
+ sources."simple-concat-1.0.0"
+ sources."simple-get-2.7.0"
sources."simple-peer-6.4.4"
+ sources."simple-sha1-2.1.0"
(sources."simple-websocket-4.3.1" // {
dependencies = [
sources."ws-2.3.1"
];
})
+ sources."single-line-log-1.1.2"
+ sources."spawn-sync-1.0.15"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."speedometer-0.1.4"
+ sources."stream-buffers-2.2.0"
+ sources."string-width-1.0.2"
sources."string2compact-1.2.2"
- sources."ws-1.1.5"
- sources."ipaddr.js-1.5.4"
- sources."get-browser-rtc-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-2.0.0"
+ sources."strip-indent-1.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-2.0.0"
+ sources."thirty-two-1.0.2"
+ sources."through-2.3.8"
+ sources."thunky-0.1.0"
+ sources."tmp-0.0.29"
+ (sources."torrent-discovery-5.4.0" // {
+ dependencies = [
+ sources."bencode-0.8.0"
+ sources."isarray-1.0.0"
+ sources."minimist-1.2.0"
+ sources."readable-stream-2.3.3"
+ sources."string_decoder-1.0.3"
+ ];
+ })
+ sources."torrent-piece-1.1.1"
+ (sources."torrent-stream-1.0.3" // {
+ dependencies = [
+ sources."bencode-0.7.0"
+ sources."end-of-stream-0.1.5"
+ sources."isarray-0.0.1"
+ sources."magnet-uri-4.2.3"
+ sources."minimist-0.0.8"
+ sources."once-1.3.3"
+ sources."parse-torrent-4.1.0"
+ sources."parse-torrent-file-2.1.4"
+ sources."readable-stream-1.1.14"
+ sources."safe-buffer-5.0.1"
+ sources."string_decoder-0.10.31"
+ sources."thirty-two-0.0.2"
+ sources."thunky-1.0.2"
+ sources."ultron-1.0.2"
+ ];
+ })
+ sources."trim-newlines-1.0.0"
+ sources."typedarray-0.0.6"
sources."ultron-1.1.1"
- sources."addr-to-ip-port-1.4.2"
- sources."options-0.0.6"
+ sources."uniq-1.0.1"
+ sources."util-deprecate-1.0.2"
+ sources."utp-0.0.7"
+ sources."validate-npm-package-license-3.0.1"
+ sources."winreg-1.2.3"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ sources."ws-1.1.5"
+ sources."xmlbuilder-4.0.0"
+ sources."xmldom-0.1.27"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -36380,209 +37732,264 @@ in
sha1 = "1848fdc14036f013af7489a39e8a5f0f9da48b87";
};
dependencies = [
- sources."connect-multiparty-2.1.0"
- (sources."express-3.21.2" // {
- dependencies = [
- sources."range-parser-1.0.3"
- sources."multiparty-3.3.2"
- sources."qs-4.0.0"
- sources."accepts-1.3.4"
- sources."negotiator-0.6.1"
- sources."uid-safe-2.0.0"
- sources."ms-2.0.0"
- sources."statuses-1.2.1"
- sources."destroy-1.0.3"
- ];
- })
- sources."lodash-2.4.2"
- sources."mkdirp-0.5.1"
- sources."pump-1.0.3"
- sources."range-parser-1.2.0"
- (sources."read-torrent-1.3.0" // {
- dependencies = [
- sources."mime-1.2.11"
- sources."qs-0.5.6"
- ];
- })
- (sources."socket.io-1.7.4" // {
- dependencies = [
- sources."debug-2.3.3"
- sources."ms-0.7.2"
- sources."accepts-1.3.3"
- sources."cookie-0.3.1"
- sources."negotiator-0.6.1"
- sources."ws-1.1.2"
- sources."component-emitter-1.1.2"
- ];
- })
- (sources."torrent-stream-1.0.3" // {
- dependencies = [
- sources."end-of-stream-0.1.5"
- sources."mkdirp-0.3.5"
- sources."once-1.3.3"
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- sources."bencode-0.8.0"
- sources."minimist-1.2.0"
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
- sources."safe-buffer-5.0.1"
- sources."ultron-1.1.1"
- ];
- })
- sources."fluent-ffmpeg-2.1.2"
- sources."multiparty-4.1.3"
- sources."on-finished-2.3.0"
- sources."qs-6.5.1"
- sources."type-is-1.6.15"
- sources."fd-slicer-1.0.1"
- sources."pend-1.2.0"
- sources."ee-first-1.1.1"
- sources."media-typer-0.3.0"
- sources."mime-types-2.1.17"
- sources."mime-db-1.30.0"
+ sources."accepts-1.2.13"
+ sources."addr-to-ip-port-1.4.2"
+ sources."after-0.8.2"
+ sources."arraybuffer.slice-0.0.6"
+ sources."async-0.2.10"
+ sources."aws-sign-0.2.0"
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."base64-arraybuffer-0.1.5"
+ sources."base64-url-1.2.1"
+ sources."base64id-1.0.0"
sources."basic-auth-1.0.4"
+ sources."basic-auth-connect-1.0.0"
+ sources."batch-0.5.3"
+ sources."bencode-0.7.0"
+ sources."better-assert-1.0.2"
+ sources."bitfield-0.1.0"
+ sources."bittorrent-dht-6.4.2"
+ sources."bittorrent-tracker-7.7.0"
+ sources."blob-0.0.4"
+ sources."bn.js-4.11.8"
+ sources."bncode-0.5.3"
+ sources."body-parser-1.13.3"
+ sources."boom-0.3.8"
+ sources."brace-expansion-1.1.8"
+ sources."buffer-alloc-unsafe-1.0.0"
+ sources."buffer-equal-0.0.1"
+ sources."buffer-equals-1.0.4"
+ sources."bytes-2.1.0"
+ sources."callsite-1.0.0"
+ sources."combined-stream-0.0.7"
+ sources."commander-2.6.0"
+ sources."compact2string-1.4.0"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.2.1"
+ sources."component-inherit-0.0.3"
+ sources."compressible-2.0.12"
+ sources."compression-1.5.2"
+ sources."concat-map-0.0.1"
(sources."connect-2.30.2" // {
dependencies = [
- sources."escape-html-1.0.3"
- sources."vary-1.1.2"
- sources."ms-0.7.2"
sources."accepts-1.2.13"
+ sources."escape-html-1.0.3"
+ sources."ms-0.7.2"
sources."negotiator-0.5.3"
sources."send-0.13.2"
+ sources."vary-1.1.2"
];
})
+ sources."connect-multiparty-2.1.0"
+ sources."connect-timeout-1.6.2"
sources."content-disposition-0.5.0"
sources."content-type-1.0.4"
- sources."commander-2.6.0"
sources."cookie-0.1.3"
+ sources."cookie-jar-0.2.0"
+ sources."cookie-parser-1.3.5"
sources."cookie-signature-1.0.6"
+ sources."core-util-is-1.0.2"
+ sources."crc-3.3.0"
+ sources."cryptiles-0.1.3"
+ sources."csrf-3.0.6"
+ sources."csurf-1.8.3"
+ sources."cyclist-0.1.1"
(sources."debug-2.2.0" // {
dependencies = [
sources."ms-0.7.1"
];
})
+ sources."decompress-response-3.3.0"
+ sources."delayed-stream-0.0.5"
sources."depd-1.0.1"
+ sources."destroy-1.0.4"
+ sources."ee-first-1.1.1"
+ sources."end-of-stream-1.4.1"
+ sources."engine.io-1.8.5"
+ sources."engine.io-client-1.8.5"
+ sources."engine.io-parser-1.3.2"
+ sources."errorhandler-1.4.3"
sources."escape-html-1.0.2"
sources."etag-1.7.0"
- sources."fresh-0.3.0"
- sources."merge-descriptors-1.0.0"
- sources."methods-1.1.2"
- sources."parseurl-1.3.2"
- sources."proxy-addr-1.0.10"
- (sources."send-0.13.0" // {
+ (sources."express-3.21.2" // {
dependencies = [
- sources."ms-0.7.1"
+ sources."accepts-1.3.4"
+ sources."destroy-1.0.3"
+ sources."ms-2.0.0"
+ sources."multiparty-3.3.2"
+ sources."negotiator-0.6.1"
+ sources."qs-4.0.0"
+ sources."range-parser-1.0.3"
+ sources."statuses-1.2.1"
+ sources."uid-safe-2.0.0"
];
})
- sources."utils-merge-1.0.0"
- sources."vary-1.0.1"
- sources."basic-auth-connect-1.0.0"
- sources."body-parser-1.13.3"
- sources."bytes-2.1.0"
- sources."cookie-parser-1.3.5"
- sources."compression-1.5.2"
- sources."connect-timeout-1.6.2"
- sources."csurf-1.8.3"
- sources."errorhandler-1.4.3"
sources."express-session-1.11.3"
+ sources."fd-slicer-1.0.1"
+ sources."fifo-0.1.4"
(sources."finalhandler-0.4.0" // {
dependencies = [
sources."escape-html-1.0.2"
];
})
+ sources."flatten-0.0.1"
+ sources."fluent-ffmpeg-2.1.2"
+ sources."forever-agent-0.2.0"
+ sources."form-data-0.0.10"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.3.0"
+ (sources."fs-chunk-store-1.6.5" // {
+ dependencies = [
+ sources."mkdirp-0.5.1"
+ ];
+ })
+ sources."fs.realpath-1.0.0"
+ sources."get-browser-rtc-1.0.2"
+ sources."glob-7.1.2"
+ sources."has-binary-0.1.7"
+ sources."has-cors-1.1.0"
+ sources."hat-0.0.3"
+ sources."hawk-0.10.2"
+ sources."hoek-0.7.6"
sources."http-errors-1.3.1"
+ sources."iconv-lite-0.4.11"
+ sources."immediate-chunk-store-1.0.8"
+ sources."indexof-0.0.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ip-1.1.5"
+ sources."ip-set-1.0.1"
+ sources."ipaddr.js-1.0.5"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ sources."json-stringify-safe-3.0.0"
+ sources."json3-3.3.2"
+ sources."k-bucket-0.6.0"
+ (sources."k-rpc-3.7.0" // {
+ dependencies = [
+ sources."bencode-1.0.0"
+ sources."k-bucket-2.0.1"
+ ];
+ })
+ sources."k-rpc-socket-1.7.2"
+ sources."lodash-2.4.2"
+ sources."lru-2.0.1"
+ sources."magnet-uri-2.0.1"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.0"
(sources."method-override-2.3.10" // {
dependencies = [
sources."debug-2.6.9"
];
})
+ sources."methods-1.1.2"
+ sources."mime-1.3.4"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimic-response-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
sources."morgan-1.6.1"
+ sources."ms-0.7.1"
+ sources."multiparty-4.1.3"
+ sources."negotiator-0.5.3"
+ sources."node-uuid-1.4.8"
+ sources."oauth-sign-0.2.0"
+ sources."object-assign-4.1.0"
+ sources."object-component-0.0.3"
+ sources."on-finished-2.3.0"
sources."on-headers-1.0.1"
+ sources."once-1.4.0"
+ sources."options-0.0.6"
+ (sources."parse-torrent-4.1.0" // {
+ dependencies = [
+ sources."magnet-uri-4.2.3"
+ ];
+ })
+ sources."parse-torrent-file-2.1.4"
+ sources."parsejson-0.0.3"
+ sources."parseqs-0.0.5"
+ sources."parseuri-0.0.5"
+ sources."parseurl-1.3.2"
+ sources."path-is-absolute-1.0.1"
sources."pause-0.1.0"
- (sources."response-time-2.3.2" // {
+ sources."peer-wire-protocol-0.7.0"
+ (sources."peer-wire-swarm-0.12.1" // {
dependencies = [
- sources."depd-1.1.1"
+ sources."bncode-0.2.3"
];
})
- sources."serve-favicon-2.3.2"
- sources."serve-index-1.7.3"
- (sources."serve-static-1.10.3" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."ms-0.7.1"
- ];
- })
- sources."vhost-3.0.2"
- sources."iconv-lite-0.4.11"
+ sources."pend-1.2.0"
+ sources."process-nextick-args-1.0.7"
+ sources."proxy-addr-1.0.10"
+ sources."pump-1.0.3"
+ sources."qs-6.5.1"
+ sources."random-access-file-1.8.1"
+ sources."random-bytes-1.0.0"
+ sources."random-iterate-1.0.1"
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
(sources."raw-body-2.1.7" // {
dependencies = [
sources."bytes-2.4.0"
sources."iconv-lite-0.4.13"
];
})
- sources."unpipe-1.0.0"
- sources."accepts-1.2.13"
- sources."compressible-2.0.12"
- sources."negotiator-0.5.3"
- sources."ms-0.7.1"
- sources."csrf-3.0.6"
- sources."rndm-1.2.0"
- sources."tsscmp-1.0.5"
- sources."uid-safe-2.1.4"
- sources."random-bytes-1.0.0"
- sources."crc-3.3.0"
- sources."base64-url-1.2.1"
- sources."inherits-2.0.3"
- sources."statuses-1.4.0"
- sources."readable-stream-1.1.14"
- sources."stream-counter-0.2.0"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."batch-0.5.3"
- sources."destroy-1.0.4"
- sources."mime-1.3.4"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.0.5"
- sources."minimist-0.0.8"
- sources."end-of-stream-1.4.0"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."magnet-uri-2.0.1"
- (sources."parse-torrent-4.1.0" // {
+ sources."re-emitter-1.1.3"
+ (sources."read-torrent-1.3.0" // {
dependencies = [
- sources."magnet-uri-4.2.3"
+ sources."mime-1.2.11"
+ sources."qs-0.5.6"
];
})
+ sources."readable-stream-1.1.14"
sources."request-2.16.6"
- sources."xtend-4.0.1"
- sources."thirty-two-0.0.2"
- sources."parse-torrent-file-2.1.4"
- sources."flatten-0.0.1"
- sources."bencode-0.7.0"
+ (sources."response-time-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ ];
+ })
+ sources."rimraf-2.6.2"
+ sources."rndm-1.2.0"
+ sources."run-parallel-1.1.6"
+ sources."run-series-1.1.4"
+ sources."rusha-0.8.12"
+ sources."safe-buffer-5.1.1"
+ (sources."send-0.13.0" // {
+ dependencies = [
+ sources."ms-0.7.1"
+ ];
+ })
+ sources."serve-favicon-2.3.2"
+ sources."serve-index-1.7.3"
+ (sources."serve-static-1.10.3" // {
+ dependencies = [
+ sources."depd-1.1.2"
+ sources."ms-0.7.1"
+ ];
+ })
+ sources."simple-concat-1.0.0"
+ sources."simple-get-2.7.0"
+ sources."simple-peer-6.4.4"
sources."simple-sha1-2.1.0"
- sources."rusha-0.8.9"
- sources."form-data-0.0.10"
- sources."hawk-0.10.2"
- sources."node-uuid-1.4.8"
- sources."cookie-jar-0.2.0"
- sources."aws-sign-0.2.0"
- sources."oauth-sign-0.2.0"
- sources."forever-agent-0.2.0"
- sources."tunnel-agent-0.2.0"
- sources."json-stringify-safe-3.0.0"
- sources."combined-stream-0.0.7"
- sources."async-0.2.10"
- sources."delayed-stream-0.0.5"
- sources."hoek-0.7.6"
- sources."boom-0.3.8"
- sources."cryptiles-0.1.3"
+ (sources."simple-websocket-4.3.1" // {
+ dependencies = [
+ sources."ws-2.3.1"
+ ];
+ })
sources."sntp-0.1.4"
- sources."engine.io-1.8.4"
- sources."has-binary-0.1.7"
- sources."object-assign-4.1.0"
+ (sources."socket.io-1.7.4" // {
+ dependencies = [
+ sources."accepts-1.3.3"
+ sources."component-emitter-1.1.2"
+ sources."cookie-0.3.1"
+ sources."debug-2.3.3"
+ sources."ms-0.7.2"
+ sources."negotiator-0.6.1"
+ ];
+ })
sources."socket.io-adapter-0.5.0"
sources."socket.io-client-1.7.4"
(sources."socket.io-parser-2.3.1" // {
@@ -36591,107 +37998,51 @@ in
sources."ms-0.7.1"
];
})
- sources."base64id-1.0.0"
- sources."engine.io-parser-1.3.2"
- sources."ws-1.1.4"
- sources."after-0.8.2"
- sources."arraybuffer.slice-0.0.6"
- sources."base64-arraybuffer-0.1.5"
- sources."blob-0.0.4"
- sources."wtf-8-1.0.0"
- sources."options-0.0.6"
- sources."ultron-1.0.2"
- sources."backo2-1.0.2"
- sources."component-bind-1.0.0"
- sources."component-emitter-1.2.1"
- sources."engine.io-client-1.8.4"
- sources."indexof-0.0.1"
- sources."object-component-0.0.3"
- sources."parseuri-0.0.5"
+ sources."speedometer-0.1.4"
+ sources."statuses-1.4.0"
+ sources."stream-counter-0.2.0"
+ sources."string2compact-1.2.2"
+ sources."string_decoder-0.10.31"
+ sources."thirty-two-0.0.2"
+ sources."thunky-1.0.2"
sources."to-array-0.1.4"
- sources."component-inherit-0.0.3"
- sources."has-cors-1.1.0"
- sources."parsejson-0.0.3"
- sources."parseqs-0.0.5"
- sources."xmlhttprequest-ssl-1.5.3"
- sources."yeast-0.1.2"
- sources."better-assert-1.0.2"
- sources."callsite-1.0.0"
- sources."json3-3.3.2"
- sources."bitfield-0.1.0"
- sources."bncode-0.5.3"
- (sources."fs-chunk-store-1.6.5" // {
- dependencies = [
- sources."mkdirp-0.5.1"
- ];
- })
- sources."hat-0.0.3"
- sources."immediate-chunk-store-1.0.8"
- sources."ip-set-1.0.1"
- (sources."peer-wire-swarm-0.12.1" // {
- dependencies = [
- sources."bncode-0.2.3"
- ];
- })
- sources."rimraf-2.6.2"
sources."torrent-discovery-5.4.0"
sources."torrent-piece-1.1.1"
- sources."random-access-file-1.8.1"
- sources."randombytes-2.0.5"
- sources."run-parallel-1.1.6"
- sources."thunky-1.0.2"
- sources."buffer-alloc-unsafe-1.0.0"
- sources."safe-buffer-5.1.1"
- sources."ip-1.1.5"
- sources."fifo-0.1.4"
- sources."peer-wire-protocol-0.7.0"
- sources."speedometer-0.1.4"
- sources."utp-0.0.7"
- sources."cyclist-0.1.1"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."bittorrent-dht-6.4.2"
- sources."bittorrent-tracker-7.7.0"
- sources."re-emitter-1.1.3"
- sources."buffer-equals-1.0.4"
- sources."k-bucket-0.6.0"
- (sources."k-rpc-3.7.0" // {
+ (sources."torrent-stream-1.0.3" // {
dependencies = [
- sources."k-bucket-2.0.1"
- sources."bencode-1.0.0"
+ sources."bencode-0.8.0"
+ sources."debug-2.6.9"
+ sources."end-of-stream-0.1.5"
+ sources."isarray-1.0.0"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.3.5"
+ sources."ms-2.0.0"
+ sources."once-1.3.3"
+ sources."readable-stream-2.3.3"
+ sources."safe-buffer-5.0.1"
+ sources."string_decoder-1.0.3"
+ sources."ultron-1.1.1"
];
})
- sources."lru-2.0.1"
- sources."buffer-equal-0.0.1"
- sources."k-rpc-socket-1.7.2"
- sources."bn.js-4.11.8"
- sources."compact2string-1.4.0"
- sources."random-iterate-1.0.1"
- sources."run-series-1.1.4"
- sources."simple-get-2.7.0"
- sources."simple-peer-6.4.4"
- (sources."simple-websocket-4.3.1" // {
- dependencies = [
- sources."ws-2.3.1"
- ];
- })
- sources."string2compact-1.2.2"
+ sources."tsscmp-1.0.5"
+ sources."tunnel-agent-0.2.0"
+ sources."type-is-1.6.15"
+ sources."uid-safe-2.1.4"
+ sources."ultron-1.0.2"
sources."uniq-1.0.1"
- sources."decompress-response-3.3.0"
- sources."simple-concat-1.0.0"
- sources."mimic-response-1.0.0"
- sources."get-browser-rtc-1.0.2"
- sources."process-nextick-args-1.0.7"
+ sources."unpipe-1.0.0"
sources."util-deprecate-1.0.2"
- sources."addr-to-ip-port-1.4.2"
+ sources."utils-merge-1.0.0"
+ sources."utp-0.0.7"
+ sources."vary-1.0.1"
+ sources."vhost-3.0.2"
sources."which-1.3.0"
- sources."isexe-2.0.0"
+ sources."wrappy-1.0.2"
+ sources."ws-1.1.5"
+ sources."wtf-8-1.0.0"
+ sources."xmlhttprequest-ssl-1.5.3"
+ sources."xtend-4.0.1"
+ sources."yeast-0.1.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -36711,111 +38062,111 @@ in
sha1 = "c6910f67935c37285b6114329fc2f27d5f3e3134";
};
dependencies = [
- sources."extract-zip-1.5.0"
- sources."fs-extra-0.26.7"
- sources."hasha-2.2.0"
- sources."kew-0.7.0"
- sources."progress-1.1.8"
- sources."request-2.67.0"
- sources."request-progress-2.0.1"
- sources."which-1.2.14"
- sources."concat-stream-1.5.0"
- sources."debug-0.7.4"
- sources."mkdirp-0.5.0"
- sources."yauzl-2.4.1"
- sources."inherits-2.0.3"
- sources."typedarray-0.0.6"
- sources."readable-stream-2.0.6"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-0.10.31"
- sources."util-deprecate-1.0.2"
- sources."minimist-0.0.8"
- sources."fd-slicer-1.0.1"
- sources."pend-1.2.0"
- sources."graceful-fs-4.1.11"
- sources."jsonfile-2.4.0"
- sources."klaw-1.3.1"
- sources."path-is-absolute-1.0.1"
- sources."rimraf-2.6.2"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."async-2.6.0"
+ sources."aws-sign2-0.6.0"
sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."is-stream-1.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
+ sources."bcrypt-pbkdf-1.0.1"
sources."bl-1.0.3"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.8"
sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.5.0"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."dashdash-1.14.1"
+ sources."debug-0.7.4"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."escape-string-regexp-1.0.5"
sources."extend-3.0.1"
+ sources."extract-zip-1.5.0"
+ sources."extsprintf-1.3.0"
+ sources."fd-slicer-1.0.1"
sources."forever-agent-0.6.1"
sources."form-data-1.0.1"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."node-uuid-1.4.8"
- sources."qs-5.2.1"
- sources."tunnel-agent-0.4.3"
- sources."tough-cookie-2.2.2"
- sources."http-signature-1.1.1"
- sources."oauth-sign-0.8.2"
- sources."hawk-3.1.3"
- sources."aws-sign2-0.6.0"
- sources."stringstream-0.0.5"
- sources."combined-stream-1.0.5"
- sources."isstream-0.1.2"
- sources."is-typedarray-1.0.0"
+ sources."fs-extra-0.26.7"
+ sources."fs.realpath-1.0.0"
+ sources."generate-function-2.0.0"
+ sources."generate-object-property-1.2.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
sources."har-validator-2.0.6"
- sources."async-2.6.0"
- sources."lodash-4.17.4"
- sources."mime-db-1.30.0"
- sources."assert-plus-0.2.0"
+ sources."has-ansi-2.0.0"
+ sources."hasha-2.2.0"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-signature-1.1.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-my-json-valid-2.17.1"
+ sources."is-property-1.0.2"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-2.4.0"
+ sources."jsonpointer-4.0.1"
(sources."jsprim-1.4.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
+ sources."kew-0.7.0"
+ sources."klaw-1.3.1"
+ sources."lodash-4.17.4"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.0"
+ sources."node-uuid-1.4.8"
+ sources."oauth-sign-0.8.2"
+ sources."once-1.4.0"
+ sources."path-is-absolute-1.0.1"
+ sources."pend-1.2.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."process-nextick-args-1.0.7"
+ sources."progress-1.1.8"
+ sources."qs-5.2.1"
+ sources."readable-stream-2.0.6"
+ sources."request-2.67.0"
+ sources."request-progress-2.0.1"
+ sources."rimraf-2.6.2"
+ sources."sntp-1.0.9"
(sources."sshpk-1.13.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."delayed-stream-1.0.0"
- sources."chalk-1.1.3"
- sources."commander-2.12.2"
- sources."is-my-json-valid-2.17.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.5"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
sources."throttleit-1.0.0"
- sources."isexe-2.0.0"
+ sources."tough-cookie-2.2.2"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
+ sources."util-deprecate-1.0.2"
+ sources."verror-1.10.0"
+ sources."which-1.2.14"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yauzl-2.4.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -36829,10 +38180,10 @@ in
prettier = nodeEnv.buildNodePackage {
name = "prettier";
packageName = "prettier";
- version = "1.9.2";
+ version = "1.10.2";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-1.9.2.tgz";
- sha512 = "1pvilmcyqqmcfmdawrcjkg09bylz68l4lkvm7k9g2554f2migg337d51m95rk4p2xylbj84i5a8j2wlc1ynvhdkdxbchkwnvpsg29d6";
+ url = "https://registry.npmjs.org/prettier/-/prettier-1.10.2.tgz";
+ sha512 = "1k0h7nzg4lg3lf86xy0z7adx2z7nhj8r1y7c5s0gwhfb7qn4qp0845w5agq9zy48ll7sldv7ak2haypkm7akspajvdq25hn0ahlvisd";
};
buildInputs = globalBuildInputs;
meta = {
@@ -36852,8 +38203,41 @@ in
sha512 = "3n09lgnyd4p3h3jlhgcvbh6n6m9h89hwvbhli5ic32fkl5y4g7yi61m1vw483479jxkif2zyqs89l6j6hq4iy15jdknx1lcp9qbyvwy";
};
dependencies = [
+ sources."JSONStream-1.3.2"
+ sources."acorn-4.0.13"
+ sources."anymatch-1.3.2"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-filter-0.0.1"
+ sources."array-map-0.0.0"
+ sources."array-reduce-0.0.0"
+ sources."array-unique-0.2.1"
+ sources."asn1.js-4.9.2"
+ sources."assert-1.4.1"
+ sources."astw-2.2.0"
+ sources."async-1.5.2"
+ sources."async-each-1.0.1"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-1.2.1"
+ sources."binary-extensions-1.11.0"
+ sources."bn.js-4.11.8"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."brorand-1.1.0"
+ sources."browser-pack-6.0.3"
+ (sources."browser-resolve-1.11.2" // {
+ dependencies = [
+ sources."resolve-1.1.7"
+ ];
+ })
(sources."browserify-13.3.0" // {
dependencies = [
+ sources."acorn-5.3.0"
+ sources."combine-source-map-0.7.2"
(sources."concat-stream-1.5.2" // {
dependencies = [
sources."readable-stream-2.0.6"
@@ -36861,68 +38245,148 @@ in
})
sources."hash-base-2.0.2"
sources."isarray-0.0.1"
- sources."acorn-5.2.1"
];
})
+ sources."browserify-aes-1.1.1"
+ sources."browserify-cache-api-3.0.1"
+ sources."browserify-cipher-1.0.0"
+ sources."browserify-des-1.0.0"
(sources."browserify-incremental-3.1.1" // {
dependencies = [
sources."JSONStream-0.10.0"
sources."jsonparse-0.0.5"
];
})
- sources."concat-stream-1.6.0"
- sources."glob-7.1.2"
- sources."minimatch-3.0.4"
- (sources."node-static-0.7.10" // {
- dependencies = [
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- ];
- })
- sources."read-1.0.7"
- sources."string-stream-0.0.7"
- sources."temp-0.8.3"
- sources."through-2.3.8"
- sources."tree-kill-1.2.0"
- (sources."watchpack-1.4.0" // {
- dependencies = [
- sources."async-2.6.0"
- ];
- })
- sources."which-1.3.0"
- sources."wordwrap-1.0.0"
- sources."JSONStream-1.3.2"
- sources."assert-1.4.1"
- sources."browser-pack-6.0.2"
- (sources."browser-resolve-1.11.2" // {
- dependencies = [
- sources."resolve-1.1.7"
- ];
- })
+ sources."browserify-rsa-4.0.1"
+ sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.1.4"
sources."buffer-4.9.1"
+ sources."buffer-xor-1.0.3"
+ sources."builtin-status-codes-3.0.0"
sources."cached-path-relative-1.0.1"
+ sources."chokidar-1.7.0"
+ sources."cipher-base-1.0.4"
+ sources."colors-1.1.2"
+ sources."combine-source-map-0.8.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
sources."console-browserify-1.1.0"
sources."constants-browserify-1.0.0"
+ sources."convert-source-map-1.1.3"
+ sources."core-util-is-1.0.2"
+ sources."create-ecdh-4.0.0"
+ sources."create-hash-1.1.3"
+ sources."create-hmac-1.1.6"
sources."crypto-browserify-3.12.0"
+ sources."date-now-0.1.4"
sources."defined-1.0.0"
sources."deps-sort-2.0.0"
+ sources."des.js-1.0.0"
+ sources."detective-4.7.1"
+ sources."diffie-hellman-5.0.2"
sources."domain-browser-1.1.7"
sources."duplexer2-0.1.4"
+ sources."elliptic-6.4.0"
sources."events-1.1.1"
+ sources."evp_bytestokey-1.0.3"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ sources."extglob-0.3.2"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."fs.realpath-1.0.0"
+ sources."fsevents-1.1.3"
+ sources."function-bind-1.1.1"
+ sources."glob-7.1.2"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
sources."has-1.0.1"
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.3"
+ sources."hmac-drbg-1.0.1"
sources."htmlescape-1.1.1"
sources."https-browserify-0.0.1"
+ sources."ieee754-1.1.8"
+ sources."indexof-0.0.1"
+ sources."inflight-1.0.6"
sources."inherits-2.0.3"
+ sources."inline-source-map-0.6.2"
sources."insert-module-globals-7.0.1"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-2.1.0"
+ sources."json-stable-stringify-0.0.1"
+ sources."jsonify-0.0.0"
+ sources."jsonparse-1.3.1"
+ sources."kind-of-3.2.2"
sources."labeled-stream-splicer-2.0.0"
+ sources."lexical-scope-1.2.0"
+ sources."lodash-4.17.4"
+ sources."lodash.memoize-3.0.4"
+ sources."md5.js-1.3.4"
+ sources."micromatch-2.3.11"
+ sources."miller-rabin-4.0.1"
+ sources."mime-1.6.0"
+ sources."minimalistic-assert-1.0.0"
+ sources."minimalistic-crypto-utils-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
sources."module-deps-4.1.1"
+ sources."mute-stream-0.0.7"
+ sources."nan-2.8.0"
+ (sources."node-static-0.7.10" // {
+ dependencies = [
+ sources."minimist-0.0.10"
+ sources."wordwrap-0.0.3"
+ ];
+ })
+ sources."normalize-path-2.1.1"
+ sources."object.omit-2.0.1"
+ sources."once-1.4.0"
+ sources."optimist-0.6.1"
sources."os-browserify-0.1.2"
+ sources."os-tmpdir-1.0.2"
+ sources."pako-0.2.9"
sources."parents-1.0.1"
+ sources."parse-asn1-5.1.0"
+ sources."parse-glob-3.0.4"
sources."path-browserify-0.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-parse-1.0.5"
+ sources."path-platform-0.11.15"
+ sources."pbkdf2-3.0.14"
+ sources."preserve-0.2.0"
sources."process-0.11.10"
+ sources."process-nextick-args-1.0.7"
+ sources."public-encrypt-4.0.0"
sources."punycode-1.4.1"
+ sources."querystring-0.2.0"
sources."querystring-es3-0.2.1"
+ (sources."randomatic-1.1.7" // {
+ dependencies = [
+ (sources."is-number-3.0.0" // {
+ dependencies = [
+ sources."kind-of-3.2.2"
+ ];
+ })
+ ];
+ })
+ sources."randombytes-2.0.6"
+ sources."randomfill-1.0.3"
+ sources."read-1.0.7"
sources."read-only-stream-2.0.0"
(sources."readable-stream-2.3.3" // {
dependencies = [
@@ -36930,11 +38394,25 @@ in
sources."string_decoder-1.0.3"
];
})
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
sources."resolve-1.5.0"
+ sources."rimraf-2.2.8"
+ sources."ripemd160-2.0.1"
+ sources."safe-buffer-5.1.1"
+ sources."set-immediate-shim-1.0.1"
+ sources."sha.js-2.4.10"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
+ sources."source-map-0.5.7"
sources."stream-browserify-2.0.1"
- sources."stream-http-2.7.2"
+ sources."stream-combiner2-1.1.1"
+ sources."stream-http-2.8.0"
+ sources."stream-splicer-2.0.0"
+ sources."string-stream-0.0.7"
sources."string_decoder-0.10.31"
sources."subarg-1.0.0"
(sources."syntax-error-1.3.0" // {
@@ -36942,9 +38420,15 @@ in
sources."acorn-4.0.13"
];
})
+ sources."temp-0.8.3"
+ sources."through-2.3.8"
sources."through2-2.0.3"
sources."timers-browserify-1.4.2"
+ sources."to-arraybuffer-1.0.1"
+ sources."tree-kill-1.2.0"
sources."tty-browserify-0.0.0"
+ sources."typedarray-0.0.6"
+ sources."umd-3.0.1"
(sources."url-0.11.0" // {
dependencies = [
sources."punycode-1.3.2"
@@ -36955,149 +38439,17 @@ in
sources."inherits-2.0.1"
];
})
- sources."vm-browserify-0.0.4"
- sources."xtend-4.0.1"
- sources."jsonparse-1.3.1"
- sources."combine-source-map-0.7.2"
- sources."umd-3.0.1"
- sources."convert-source-map-1.1.3"
- sources."inline-source-map-0.6.2"
- sources."lodash.memoize-3.0.4"
- sources."source-map-0.5.7"
- sources."pako-0.2.9"
- sources."base64-js-1.2.1"
- sources."ieee754-1.1.8"
- sources."isarray-1.0.0"
- sources."typedarray-0.0.6"
- sources."core-util-is-1.0.2"
- sources."process-nextick-args-1.0.7"
sources."util-deprecate-1.0.2"
- sources."date-now-0.1.4"
- sources."browserify-cipher-1.0.0"
- sources."browserify-sign-4.0.4"
- sources."create-ecdh-4.0.0"
- sources."create-hash-1.1.3"
- sources."create-hmac-1.1.6"
- sources."diffie-hellman-5.0.2"
- sources."pbkdf2-3.0.14"
- sources."public-encrypt-4.0.0"
- sources."randombytes-2.0.5"
- sources."randomfill-1.0.3"
- sources."browserify-aes-1.1.1"
- sources."browserify-des-1.0.0"
- sources."evp_bytestokey-1.0.3"
- sources."buffer-xor-1.0.3"
- sources."cipher-base-1.0.4"
- sources."safe-buffer-5.1.1"
- sources."des.js-1.0.0"
- sources."minimalistic-assert-1.0.0"
- sources."md5.js-1.3.4"
- sources."hash-base-3.0.4"
- sources."bn.js-4.11.8"
- sources."browserify-rsa-4.0.1"
- sources."elliptic-6.4.0"
- sources."parse-asn1-5.1.0"
- sources."brorand-1.1.0"
- sources."hash.js-1.1.3"
- sources."hmac-drbg-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
- sources."asn1.js-4.9.2"
- sources."ripemd160-2.0.1"
- sources."sha.js-2.4.9"
- sources."miller-rabin-4.0.1"
- sources."function-bind-1.1.1"
- sources."is-buffer-1.1.6"
- sources."lexical-scope-1.2.0"
- sources."astw-2.2.0"
- sources."acorn-4.0.13"
- sources."stream-splicer-2.0.0"
- sources."detective-4.7.1"
- sources."stream-combiner2-1.1.1"
- sources."path-platform-0.11.15"
- sources."path-parse-1.0.5"
- sources."json-stable-stringify-0.0.1"
- sources."jsonify-0.0.0"
- sources."array-filter-0.0.1"
- sources."array-reduce-0.0.0"
- sources."array-map-0.0.0"
- sources."builtin-status-codes-3.0.0"
- sources."to-arraybuffer-1.0.1"
- sources."minimist-1.2.0"
- sources."querystring-0.2.0"
- sources."indexof-0.0.1"
- sources."browserify-cache-api-3.0.1"
- sources."async-1.5.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
+ sources."vm-browserify-0.0.4"
+ (sources."watchpack-1.4.0" // {
+ dependencies = [
+ sources."async-2.6.0"
+ ];
+ })
+ sources."which-1.3.0"
+ sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."optimist-0.6.1"
- sources."colors-1.1.2"
- sources."mime-1.6.0"
- sources."mute-stream-0.0.7"
- sources."os-tmpdir-1.0.2"
- sources."rimraf-2.2.8"
- sources."chokidar-1.7.0"
- sources."graceful-fs-4.1.11"
- sources."lodash-4.17.4"
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
- sources."micromatch-2.3.11"
- sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
- (sources."randomatic-1.1.7" // {
- dependencies = [
- (sources."is-number-3.0.0" // {
- dependencies = [
- sources."kind-of-3.2.2"
- ];
- })
- ];
- })
- sources."repeat-string-1.6.1"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."binary-extensions-1.11.0"
- sources."set-immediate-shim-1.0.1"
- sources."nan-2.8.0"
- sources."isexe-2.0.0"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -37117,15 +38469,133 @@ in
sha1 = "195a2a5b6dd76e4a244a807002678b037d70eeaa";
};
dependencies = [
+ sources."accepts-1.3.4"
+ sources."acorn-3.3.0"
+ (sources."acorn-globals-3.1.0" // {
+ dependencies = [
+ sources."acorn-4.0.13"
+ ];
+ })
+ sources."ajv-4.11.8"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."array-flatten-1.1.1"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.6.0"
+ sources."basic-auth-2.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bindings-1.2.1"
+ sources."bl-1.2.1"
sources."body-parser-1.18.2"
- sources."commander-2.12.2"
+ sources."boom-2.10.1"
+ sources."bufferutil-2.0.1"
+ sources."bytes-3.0.0"
+ sources."camelcase-1.2.1"
+ sources."caseless-0.12.0"
+ sources."center-align-0.1.3"
+ sources."character-parser-2.2.0"
+ sources."chownr-1.0.1"
+ sources."clean-css-3.4.28"
+ sources."cliui-2.1.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."console-control-strings-1.1.0"
+ sources."constantinople-3.1.0"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
sources."cookie-parser-1.4.3"
+ sources."cookie-signature-1.0.6"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.4.2"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."doctypes-1.1.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."end-of-stream-1.4.1"
+ sources."errno-0.1.6"
+ sources."escape-html-1.0.3"
+ sources."etag-1.8.1"
+ sources."eventemitter2-3.0.2"
+ sources."expand-template-1.1.0"
(sources."express-4.16.2" // {
dependencies = [
sources."setprototypeof-1.1.0"
sources."statuses-1.3.1"
];
})
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."finalhandler-1.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.1.4"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."function-bind-1.1.1"
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."github-from-package-0.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
+ sources."har-schema-1.0.5"
+ sources."har-validator-4.2.1"
+ sources."has-1.0.1"
+ sources."has-unicode-2.0.1"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-signature-1.1.1"
+ sources."httpolyglot-0.1.2"
+ sources."iconv-lite-0.4.19"
+ sources."image-size-0.5.5"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."int64-buffer-0.1.10"
+ sources."ipaddr.js-1.5.2"
+ sources."is-3.2.1"
+ sources."is-buffer-1.1.6"
+ sources."is-expression-2.1.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-promise-2.1.0"
+ sources."is-regex-1.0.4"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."js-stringify-1.0.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-stable-stringify-1.0.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonify-0.0.0"
+ (sources."jsprim-1.4.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."jstransformer-1.0.0"
+ sources."kind-of-3.2.2"
+ sources."lazy-cache-1.0.4"
(sources."less-2.7.3" // {
dependencies = [
sources."qs-6.4.0"
@@ -37133,195 +38603,57 @@ in
})
sources."less-middleware-2.2.1"
sources."libquassel-2.1.9"
+ sources."longest-1.0.1"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
sources."morgan-1.9.0"
+ sources."ms-2.0.0"
+ sources."nan-2.5.1"
+ sources."negotiator-0.6.1"
(sources."net-browserify-alt-1.1.0" // {
dependencies = [
sources."minimist-1.2.0"
- sources."tunnel-agent-0.4.3"
sources."safe-buffer-5.0.1"
+ sources."tunnel-agent-0.4.3"
];
})
- (sources."pug-2.0.0-rc.4" // {
- dependencies = [
- sources."commander-2.8.1"
- sources."source-map-0.4.4"
- sources."is-expression-3.0.0"
- sources."acorn-4.0.13"
- ];
- })
- (sources."serve-favicon-2.3.2" // {
- dependencies = [
- sources."etag-1.7.0"
- sources."fresh-0.3.0"
- sources."ms-0.7.2"
- ];
- })
- sources."httpolyglot-0.1.2"
- sources."bytes-3.0.0"
- sources."content-type-1.0.4"
- sources."debug-2.6.9"
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."on-finished-2.3.0"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."type-is-1.6.15"
- sources."ms-2.0.0"
- sources."inherits-2.0.3"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."ee-first-1.1.1"
- sources."unpipe-1.0.0"
- sources."media-typer-0.3.0"
- sources."mime-types-2.1.17"
- sources."mime-db-1.30.0"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."accepts-1.3.4"
- sources."array-flatten-1.1.1"
- sources."content-disposition-0.5.2"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."finalhandler-1.1.0"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-2.0.2"
- sources."range-parser-1.2.0"
- sources."safe-buffer-5.1.1"
- sources."send-0.16.1"
- sources."serve-static-1.13.1"
- sources."utils-merge-1.0.1"
- sources."vary-1.1.2"
- sources."negotiator-0.6.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.5.2"
- sources."destroy-1.0.4"
- sources."mime-1.4.1"
- sources."errno-0.1.6"
- sources."graceful-fs-4.1.11"
- sources."image-size-0.5.5"
- sources."mkdirp-0.5.1"
- sources."promise-7.3.1"
- sources."source-map-0.5.7"
- sources."request-2.81.0"
- sources."prr-1.0.1"
- sources."minimist-0.0.8"
- sources."asap-2.0.6"
- sources."aws-sign2-0.6.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.1.4"
- sources."har-validator-4.2.1"
- sources."hawk-3.1.3"
- sources."http-signature-1.1.1"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-0.2.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-4.11.8"
- sources."har-schema-1.0.5"
- sources."co-4.6.0"
- sources."json-stable-stringify-1.0.1"
- sources."jsonify-0.0.0"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."assert-plus-0.2.0"
- (sources."jsprim-1.4.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- (sources."sshpk-1.13.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."core-util-is-1.0.2"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."node.extend-2.0.0"
- sources."is-3.2.1"
- sources."eventemitter2-3.0.2"
- sources."qtdatastream-0.7.1"
- sources."int64-buffer-0.1.10"
- sources."basic-auth-2.0.0"
- sources."on-headers-1.0.1"
- sources."bufferutil-2.0.1"
- sources."ws-2.3.1"
- sources."bindings-1.2.1"
- sources."nan-2.5.1"
- sources."prebuild-install-2.1.2"
- sources."expand-template-1.1.0"
- sources."github-from-package-0.0.0"
sources."node-abi-2.1.2"
+ sources."node.extend-2.0.0"
sources."noop-logger-0.1.1"
sources."npmlog-4.1.2"
- sources."os-homedir-1.0.2"
- sources."pump-1.0.3"
- sources."rc-1.2.2"
- sources."simple-get-1.4.3"
- sources."tar-fs-1.16.0"
- sources."xtend-4.0.1"
- sources."semver-5.4.1"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."object-assign-4.1.1"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
sources."number-is-nan-1.0.1"
- sources."ansi-regex-2.1.1"
- sources."end-of-stream-1.4.0"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."strip-json-comments-2.0.1"
- sources."unzip-response-1.0.2"
- sources."chownr-1.0.1"
- sources."tar-stream-1.5.5"
- sources."bl-1.2.1"
- sources."ultron-1.1.1"
+ sources."os-homedir-1.0.2"
+ sources."parseurl-1.3.2"
+ sources."path-parse-1.0.5"
+ sources."path-to-regexp-0.1.7"
+ sources."performance-now-0.2.0"
+ sources."prebuild-install-2.1.2"
+ sources."process-nextick-args-1.0.7"
+ sources."promise-7.3.1"
+ sources."proxy-addr-2.0.2"
+ sources."prr-1.0.1"
+ (sources."pug-2.0.0-rc.4" // {
+ dependencies = [
+ sources."acorn-4.0.13"
+ sources."commander-2.8.1"
+ sources."is-expression-3.0.0"
+ sources."source-map-0.4.4"
+ ];
+ })
+ sources."pug-attrs-2.0.2"
sources."pug-code-gen-2.0.0"
+ sources."pug-error-1.3.2"
(sources."pug-filters-2.1.5" // {
dependencies = [
sources."source-map-0.5.7"
@@ -37333,49 +38665,73 @@ in
sources."pug-parser-4.0.0"
sources."pug-runtime-2.0.3"
sources."pug-strip-comments-1.0.2"
- sources."constantinople-3.1.0"
- sources."doctypes-1.1.0"
- sources."js-stringify-1.0.2"
- sources."pug-attrs-2.0.2"
- sources."pug-error-1.3.2"
- sources."void-elements-2.0.1"
- sources."with-5.1.1"
- sources."acorn-3.3.0"
- sources."is-expression-2.1.0"
- (sources."acorn-globals-3.1.0" // {
+ sources."pug-walk-1.1.5"
+ sources."pump-1.0.3"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."qtdatastream-0.7.1"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."rc-1.2.4"
+ sources."readable-stream-2.3.3"
+ sources."repeat-string-1.6.1"
+ sources."request-2.81.0"
+ sources."resolve-1.5.0"
+ sources."right-align-0.1.3"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."send-0.16.1"
+ (sources."serve-favicon-2.3.2" // {
dependencies = [
- sources."acorn-4.0.13"
+ sources."etag-1.7.0"
+ sources."fresh-0.3.0"
+ sources."ms-0.7.2"
];
})
- sources."clean-css-3.4.28"
- sources."pug-walk-1.1.5"
- sources."jstransformer-1.0.0"
- sources."resolve-1.5.0"
- sources."uglify-js-2.8.29"
- sources."graceful-readlink-1.0.1"
- sources."amdefine-1.0.1"
- sources."is-promise-2.1.0"
- sources."path-parse-1.0.5"
- sources."yargs-3.10.0"
- sources."uglify-to-browserify-1.0.2"
- sources."camelcase-1.2.1"
- sources."cliui-2.1.0"
- sources."decamelize-1.2.0"
- sources."window-size-0.1.0"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."wordwrap-0.0.2"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.2.2"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."character-parser-2.2.0"
- sources."is-regex-1.0.4"
- sources."has-1.0.1"
- sources."function-bind-1.1.1"
+ sources."serve-static-1.13.1"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.0.3"
+ sources."signal-exit-3.0.2"
+ sources."simple-get-1.4.3"
+ sources."sntp-1.0.9"
+ sources."source-map-0.5.7"
+ (sources."sshpk-1.13.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."statuses-1.4.0"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."tar-fs-1.16.0"
+ sources."tar-stream-1.5.5"
sources."token-stream-0.0.1"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.15"
+ sources."uglify-js-2.8.29"
+ sources."uglify-to-browserify-1.0.2"
+ sources."ultron-1.1.1"
+ sources."unpipe-1.0.0"
+ sources."unzip-response-1.0.2"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."void-elements-2.0.1"
+ sources."wide-align-1.1.2"
+ sources."window-size-0.1.0"
+ sources."with-5.1.1"
+ sources."wordwrap-0.0.2"
+ sources."wrappy-1.0.2"
+ sources."ws-2.3.1"
+ sources."xtend-4.0.1"
+ sources."yargs-3.10.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -37395,39 +38751,39 @@ in
sha1 = "da6ac7d4d7777a59a5e951cf46e72fd4b6b40a2c";
};
dependencies = [
+ sources."acorn-5.3.0"
+ sources."amdefine-1.0.1"
+ sources."ast-types-0.9.6"
+ sources."balanced-match-1.0.0"
+ sources."base62-0.1.1"
+ sources."brace-expansion-1.1.8"
+ sources."commander-2.13.0"
sources."commoner-0.10.8"
+ sources."concat-map-0.0.1"
+ sources."defined-1.0.0"
+ sources."detective-4.7.1"
+ sources."esprima-3.1.3"
+ sources."esprima-fb-13001.1001.0-dev-harmony-fb"
+ sources."glob-5.0.15"
+ sources."graceful-fs-4.1.11"
+ sources."iconv-lite-0.4.19"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
(sources."jstransform-10.1.0" // {
dependencies = [
sources."source-map-0.1.31"
];
})
- sources."commander-2.12.2"
- sources."detective-4.7.1"
- sources."glob-5.0.15"
- sources."graceful-fs-4.1.11"
- sources."iconv-lite-0.4.19"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
+ sources."once-1.4.0"
+ sources."path-is-absolute-1.0.1"
sources."private-0.1.8"
sources."q-1.5.1"
sources."recast-0.11.23"
- sources."acorn-5.2.1"
- sources."defined-1.0.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."minimist-0.0.8"
- sources."ast-types-0.9.6"
- sources."esprima-3.1.3"
sources."source-map-0.5.7"
- sources."base62-0.1.1"
- sources."esprima-fb-13001.1001.0-dev-harmony-fb"
- sources."amdefine-1.0.1"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -37438,6 +38794,71 @@ in
production = true;
bypassCache = false;
};
+ react-native-cli = nodeEnv.buildNodePackage {
+ name = "react-native-cli";
+ packageName = "react-native-cli";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/react-native-cli/-/react-native-cli-2.0.1.tgz";
+ sha1 = "f2cd3c7aa1b83828cdfba630e2dfd817df766d54";
+ };
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."async-0.2.10"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."chalk-1.1.3"
+ sources."colors-0.6.2"
+ sources."concat-map-0.0.1"
+ sources."cycle-1.0.3"
+ sources."deep-equal-1.0.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."eyes-0.1.8"
+ sources."fs.realpath-1.0.0"
+ sources."glob-7.1.2"
+ sources."has-ansi-2.0.0"
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."isstream-0.1.2"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.5.1"
+ sources."mute-stream-0.0.7"
+ sources."ncp-0.4.2"
+ sources."once-1.4.0"
+ sources."path-is-absolute-1.0.1"
+ sources."pkginfo-0.4.1"
+ (sources."prompt-0.2.14" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."read-1.0.7"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."semver-5.5.0"
+ sources."stack-trace-0.0.10"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."utile-0.2.1"
+ (sources."winston-0.8.3" // {
+ dependencies = [
+ sources."pkginfo-0.3.1"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "The React Native CLI tools";
+ homepage = "https://github.com/facebook/react-native#readme";
+ license = "BSD-3-Clause";
+ };
+ production = true;
+ bypassCache = false;
+ };
s3http = nodeEnv.buildNodePackage {
name = "s3http";
packageName = "s3http";
@@ -37447,129 +38868,129 @@ in
sha1 = "c8fa1fffb8258ce68adf75df73f90fbb6f23d198";
};
dependencies = [
+ sources."ajv-5.5.2"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
sources."aws-sdk-1.18.0"
- sources."commander-2.0.0"
- sources."http-auth-2.0.7"
- (sources."express-3.4.4" // {
- dependencies = [
- sources."commander-1.3.2"
- ];
- })
- (sources."everyauth-0.4.5" // {
- dependencies = [
- sources."connect-2.3.9"
- sources."debug-0.5.0"
- sources."qs-0.4.2"
- sources."cookie-0.0.4"
- sources."bytes-0.1.0"
- sources."send-0.0.3"
- sources."fresh-0.1.0"
- sources."mime-1.2.6"
- ];
- })
- sources."string-1.6.1"
- sources."util-0.4.9"
- sources."crypto-0.0.3"
- sources."xml2js-0.2.4"
- sources."xmlbuilder-0.4.2"
- sources."sax-1.2.4"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."boom-4.3.1"
+ sources."buffer-crc32-0.2.1"
+ sources."bytes-0.2.1"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
sources."coffee-script-1.6.3"
- sources."node-uuid-1.4.1"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.0.0"
(sources."connect-2.11.0" // {
dependencies = [
sources."methods-0.0.1"
];
})
- sources."range-parser-0.0.4"
- sources."mkdirp-0.3.5"
sources."cookie-0.1.0"
- sources."buffer-crc32-0.2.1"
- sources."fresh-0.2.0"
- sources."methods-0.1.0"
- sources."send-0.1.4"
sources."cookie-signature-1.0.1"
- sources."debug-3.1.0"
- sources."qs-0.6.5"
- sources."bytes-0.2.1"
- sources."pause-0.0.1"
- sources."uid2-0.0.3"
- sources."raw-body-0.0.3"
- sources."negotiator-0.3.0"
- sources."multiparty-2.2.0"
- sources."readable-stream-1.1.14"
- sources."stream-counter-0.2.0"
sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."inherits-2.0.3"
- sources."keypress-0.1.0"
- sources."mime-1.2.11"
- sources."ms-2.0.0"
- sources."oauth-https://github.com/ciaranj/node-oauth/tarball/master"
- sources."request-2.9.203"
- (sources."openid-2.0.6" // {
- dependencies = [
- sources."request-2.83.0"
- sources."qs-6.5.1"
- ];
- })
- sources."node-swt-0.1.1"
- sources."node-wsfederation-0.1.1"
- sources."formidable-1.0.11"
sources."crc-0.2.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."safe-buffer-5.1.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
];
})
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
+ sources."crypto-0.0.3"
sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
sources."events.node-0.4.9"
+ (sources."everyauth-0.4.5" // {
+ dependencies = [
+ sources."bytes-0.1.0"
+ sources."connect-2.3.9"
+ sources."cookie-0.0.4"
+ sources."debug-0.5.0"
+ sources."fresh-0.1.0"
+ sources."mime-1.2.6"
+ sources."qs-0.4.2"
+ sources."send-0.0.3"
+ ];
+ })
+ (sources."express-3.4.4" // {
+ dependencies = [
+ sources."commander-1.3.2"
+ ];
+ })
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."formidable-1.0.11"
+ sources."fresh-0.2.0"
+ sources."getpass-0.1.7"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-auth-2.0.7"
+ sources."http-signature-1.2.0"
+ sources."inherits-2.0.3"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-0.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."keypress-0.1.0"
+ sources."methods-0.1.0"
+ sources."mime-1.2.11"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mkdirp-0.3.5"
+ sources."ms-2.0.0"
+ sources."multiparty-2.2.0"
+ sources."negotiator-0.3.0"
+ sources."node-swt-0.1.1"
+ sources."node-uuid-1.4.1"
+ sources."node-wsfederation-0.1.1"
+ sources."oauth-https://github.com/ciaranj/node-oauth/tarball/master"
+ sources."oauth-sign-0.8.2"
+ (sources."openid-2.0.6" // {
+ dependencies = [
+ sources."qs-6.5.1"
+ sources."request-2.83.0"
+ ];
+ })
+ sources."pause-0.0.1"
+ sources."performance-now-2.1.0"
+ sources."punycode-1.4.1"
+ sources."qs-0.6.5"
+ sources."range-parser-0.0.4"
+ sources."raw-body-0.0.3"
+ sources."readable-stream-1.1.14"
+ sources."request-2.9.203"
+ sources."safe-buffer-5.1.1"
+ sources."sax-1.2.4"
+ sources."send-0.1.4"
+ sources."sntp-2.1.0"
+ sources."sshpk-1.13.1"
+ sources."stream-counter-0.2.0"
+ sources."string-1.6.1"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.5"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."uid2-0.0.3"
+ sources."util-0.4.9"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."xml2js-0.2.4"
+ sources."xmlbuilder-0.4.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -37580,10 +39001,10 @@ in
semver = nodeEnv.buildNodePackage {
name = "semver";
packageName = "semver";
- version = "5.4.1";
+ version = "5.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz";
- sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
+ sha512 = "0h32zh035y8m6dzcqhcymbhwgmc8839fa1hhj0jfh9ivp9kmqfj1sbwnsnkzcn9qm3sqn38sa8ys2g4c638lpnmzjr0a0qndmv7f8p1";
};
buildInputs = globalBuildInputs;
meta = {
@@ -37597,189 +39018,192 @@ in
serve = nodeEnv.buildNodePackage {
name = "serve";
packageName = "serve";
- version = "6.4.3";
+ version = "6.4.9";
src = fetchurl {
- url = "https://registry.npmjs.org/serve/-/serve-6.4.3.tgz";
- sha512 = "037w1bp1q8k6vpswkrpkmcngz1rj1bqq5migw33qxr9x1r7p0r4sfhq1kcs024lwmqf1iynrjavsmr466zh6r37hkilpriasxwsqgd0";
+ url = "https://registry.npmjs.org/serve/-/serve-6.4.9.tgz";
+ sha512 = "2241nrhci4lgj15pxzvspx6m3vjdpcsih532sz1mi17fby8yiadv33d84v05z1465cszh35xhzf7kx3yirwzq5zbi7zvzhw13ddsqy0";
};
dependencies = [
+ sources."@zeit/check-updates-1.0.5"
+ sources."accepts-1.3.4"
+ sources."address-1.0.3"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."ansi-align-2.0.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
+ sources."arch-2.1.0"
(sources."args-3.0.8" // {
dependencies = [
sources."chalk-2.1.0"
];
})
+ sources."async-1.5.2"
sources."basic-auth-2.0.0"
sources."bluebird-3.5.1"
sources."boxen-1.3.0"
+ sources."bytes-3.0.0"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."center-align-0.1.3"
sources."chalk-2.3.0"
+ sources."cli-boxes-1.0.0"
(sources."clipboardy-1.2.2" // {
dependencies = [
sources."execa-0.8.0"
];
})
+ sources."cliui-2.1.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."compressible-2.0.12"
+ sources."compression-1.7.1"
+ sources."configstore-3.1.1"
+ sources."content-type-1.0.4"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."crypto-random-string-1.0.0"
sources."dargs-5.1.0"
- sources."detect-port-1.2.2"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.4.2"
+ sources."depd-1.1.1"
+ sources."destroy-1.0.4"
+ (sources."detect-port-1.2.2" // {
+ dependencies = [
+ sources."ms-2.0.0"
+ ];
+ })
+ sources."dot-prop-4.2.0"
+ sources."duplexer3-0.1.4"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."etag-1.8.1"
+ sources."execa-0.7.0"
sources."filesize-3.5.11"
+ sources."fresh-0.5.2"
sources."fs-extra-5.0.0"
+ sources."get-stream-3.0.0"
+ sources."global-dirs-0.1.1"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
(sources."handlebars-4.0.11" // {
dependencies = [
sources."camelcase-1.2.1"
+ sources."minimist-0.0.10"
sources."wordwrap-0.0.2"
];
})
+ sources."has-flag-2.0.0"
+ sources."http-errors-1.6.2"
+ sources."iconv-lite-0.4.19"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
sources."ip-1.1.5"
- sources."micro-9.0.2"
+ sources."is-buffer-1.1.6"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-wsl-1.1.0"
+ sources."isexe-2.0.0"
+ sources."jsonfile-4.0.0"
+ sources."kind-of-3.2.2"
+ sources."latest-version-3.1.0"
+ sources."lazy-cache-1.0.4"
+ sources."lodash-4.17.4"
+ sources."longest-1.0.1"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."micro-9.1.0"
sources."micro-compress-1.0.0"
+ sources."mime-1.4.1"
+ sources."mime-db-1.32.0"
(sources."mime-types-2.1.17" // {
dependencies = [
sources."mime-db-1.30.0"
];
})
+ sources."minimist-1.2.0"
+ sources."mri-1.1.0"
+ sources."ms-2.1.1"
+ sources."negotiator-0.6.1"
sources."node-version-1.1.0"
+ sources."npm-run-path-2.0.2"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
sources."openssl-self-signed-certificate-1.1.6"
sources."opn-5.1.0"
+ sources."optimist-0.6.1"
+ sources."p-finally-1.0.0"
+ sources."package-json-4.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
sources."path-type-3.0.0"
+ sources."pify-3.0.0"
+ sources."pkginfo-0.4.1"
+ sources."prepend-http-1.0.4"
+ sources."pseudomap-1.0.2"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."rc-1.2.4"
+ sources."registry-auth-token-3.3.1"
+ sources."registry-url-3.1.0"
+ sources."repeat-string-1.6.1"
+ sources."right-align-0.1.3"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."semver-diff-2.1.0"
(sources."send-0.16.1" // {
dependencies = [
+ sources."ms-2.0.0"
sources."statuses-1.3.1"
];
})
- (sources."update-notifier-2.3.0" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."camelcase-4.1.0"
- sources."mri-1.1.0"
- sources."pkginfo-0.4.1"
- sources."string-similarity-1.2.0"
- sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-4.5.0"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."lodash-4.17.4"
- sources."safe-buffer-5.1.1"
- sources."ansi-align-2.0.0"
- sources."cli-boxes-1.0.0"
- sources."string-width-2.1.1"
- sources."term-size-1.2.0"
- sources."widest-line-2.0.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- sources."execa-0.7.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."signal-exit-3.0.2"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
+ sources."setprototypeof-1.0.3"
sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."arch-2.1.0"
- sources."address-1.0.3"
- sources."debug-2.6.9"
- sources."ms-2.0.0"
- sources."graceful-fs-4.1.11"
- sources."jsonfile-4.0.0"
- sources."universalify-0.1.1"
- sources."async-1.5.2"
- sources."optimist-0.6.1"
+ sources."signal-exit-3.0.2"
sources."source-map-0.4.4"
+ sources."statuses-1.4.0"
+ sources."string-similarity-1.2.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-4.5.0"
+ sources."term-size-1.2.0"
+ sources."timed-out-4.0.1"
(sources."uglify-js-2.8.29" // {
dependencies = [
sources."source-map-0.5.7"
];
})
- sources."wordwrap-0.0.3"
- sources."minimist-0.0.10"
- sources."amdefine-1.0.1"
- sources."yargs-3.10.0"
sources."uglify-to-browserify-1.0.2"
- sources."cliui-2.1.0"
- sources."decamelize-1.2.0"
- sources."window-size-0.1.0"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.2.2"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."content-type-1.0.4"
- sources."raw-body-2.3.2"
- sources."bytes-3.0.0"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."unpipe-1.0.0"
- sources."depd-1.1.1"
- sources."inherits-2.0.3"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."compression-1.7.1"
- sources."accepts-1.3.4"
- sources."compressible-2.0.12"
- sources."on-headers-1.0.1"
- sources."vary-1.1.2"
- sources."negotiator-0.6.1"
- sources."mime-db-1.32.0"
- sources."is-wsl-1.1.0"
- sources."pify-3.0.0"
- sources."destroy-1.0.4"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."fresh-0.5.2"
- sources."mime-1.4.1"
- sources."on-finished-2.3.0"
- sources."range-parser-1.2.0"
- sources."ee-first-1.1.1"
- sources."configstore-3.1.1"
- sources."import-lazy-2.1.0"
- sources."is-installed-globally-0.1.0"
- sources."is-npm-1.0.0"
- sources."latest-version-3.1.0"
- sources."semver-diff-2.1.0"
- sources."xdg-basedir-3.0.0"
- sources."dot-prop-4.2.0"
- sources."make-dir-1.1.0"
sources."unique-string-1.0.0"
- sources."write-file-atomic-2.3.0"
- sources."is-obj-1.0.1"
- sources."crypto-random-string-1.0.0"
- sources."imurmurhash-0.1.4"
- sources."global-dirs-0.1.1"
- sources."is-path-inside-1.0.1"
- sources."ini-1.3.5"
- sources."path-is-inside-1.0.2"
- sources."package-json-4.0.1"
- sources."got-6.7.1"
- sources."registry-auth-token-3.3.1"
- sources."registry-url-3.1.0"
- sources."semver-5.4.1"
- sources."create-error-class-3.0.2"
- sources."duplexer3-0.1.4"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."lowercase-keys-1.0.0"
- sources."timed-out-4.0.1"
+ sources."universalify-0.1.1"
+ sources."unpipe-1.0.0"
sources."unzip-response-2.0.1"
+ sources."update-notifier-2.3.0"
sources."url-parse-lax-1.0.0"
- sources."capture-stack-trace-1.0.0"
- sources."prepend-http-1.0.4"
- sources."rc-1.2.2"
- sources."deep-extend-0.4.2"
- sources."strip-json-comments-2.0.1"
+ sources."vary-1.1.2"
+ sources."which-1.3.0"
+ sources."widest-line-2.0.0"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.3"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
+ sources."yallist-2.1.2"
+ sources."yargs-3.10.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -37799,201 +39223,205 @@ in
sha1 = "13ebfcb3b741759d2475db96107776c81d308ae8";
};
dependencies = [
- sources."bcrypt-nodejs-0.0.3"
- (sources."cheerio-0.17.0" // {
- dependencies = [
- sources."domutils-1.5.1"
- sources."domelementtype-1.1.3"
- ];
- })
- sources."commander-2.12.2"
- sources."event-stream-3.3.4"
- sources."express-4.16.2"
- sources."lodash-2.4.2"
- sources."mkdirp-0.5.1"
- sources."moment-2.7.0"
- sources."read-1.0.7"
- sources."request-2.83.0"
- sources."slate-irc-0.7.3"
- (sources."socket.io-1.0.6" // {
- dependencies = [
- sources."debug-0.7.4"
- sources."commander-0.6.1"
- sources."emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz"
- ];
- })
sources."CSSselect-0.4.1"
- sources."entities-1.1.1"
- (sources."htmlparser2-3.7.3" // {
- dependencies = [
- sources."entities-1.0.0"
- ];
- })
- sources."dom-serializer-0.0.1"
sources."CSSwhat-0.4.7"
- sources."domutils-1.4.3"
- sources."domelementtype-1.3.0"
- sources."domhandler-2.2.1"
- sources."readable-stream-1.1.14"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."inherits-2.0.3"
- sources."through-2.3.8"
- sources."duplexer-0.1.1"
- sources."from-0.1.7"
- sources."map-stream-0.1.0"
- sources."pause-stream-0.0.11"
- sources."split-0.3.3"
- sources."stream-combiner-0.0.4"
sources."accepts-1.3.4"
+ sources."after-0.8.1"
+ sources."ajv-5.5.2"
sources."array-flatten-1.1.1"
+ sources."arraybuffer.slice-0.0.6"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."base64-arraybuffer-0.1.2"
+ sources."base64id-0.1.0"
+ sources."bcrypt-nodejs-0.0.3"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."better-assert-1.0.2"
+ sources."blob-0.0.2"
(sources."body-parser-1.18.2" // {
dependencies = [
sources."setprototypeof-1.0.3"
];
})
+ sources."boom-4.3.1"
+ sources."bytes-3.0.0"
+ sources."callsite-1.0.0"
+ sources."caseless-0.12.0"
+ (sources."cheerio-0.17.0" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ sources."domutils-1.5.1"
+ ];
+ })
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.1.2"
+ sources."component-inherit-0.0.3"
sources."content-disposition-0.5.2"
sources."content-type-1.0.4"
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
- sources."debug-2.6.9"
- sources."depd-1.1.1"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."finalhandler-1.1.0"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."on-finished-2.3.0"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-2.0.2"
- sources."qs-6.5.1"
- sources."range-parser-1.2.0"
- sources."safe-buffer-5.1.1"
- sources."send-0.16.1"
- sources."serve-static-1.13.1"
- sources."setprototypeof-1.1.0"
- sources."statuses-1.3.1"
- sources."type-is-1.6.15"
- sources."utils-merge-1.0.1"
- sources."vary-1.1.2"
- sources."mime-types-2.1.17"
- sources."negotiator-0.6.1"
- sources."mime-db-1.30.0"
- sources."bytes-3.0.0"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."raw-body-2.3.2"
- sources."unpipe-1.0.0"
- sources."ms-2.0.0"
- sources."ee-first-1.1.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.5.2"
- sources."destroy-1.0.4"
- sources."mime-1.4.1"
- sources."media-typer-0.3.0"
- sources."minimist-0.0.8"
- sources."mute-stream-0.0.7"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
+ sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
];
})
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
+ sources."debug-2.6.9"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."dom-serializer-0.0.1"
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.2.1"
+ sources."domutils-1.4.3"
+ sources."duplexer-0.1.1"
sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."irc-replies-2.0.1"
- (sources."slate-irc-parser-0.0.2" // {
- dependencies = [
- sources."debug-0.7.4"
- ];
- })
- sources."linewise-0.0.3"
+ sources."ee-first-1.1.1"
+ sources."emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz"
+ sources."encodeurl-1.0.2"
(sources."engine.io-1.3.1" // {
dependencies = [
sources."debug-0.6.0"
];
})
- sources."socket.io-parser-2.2.0"
- sources."socket.io-client-1.0.6"
+ sources."engine.io-client-1.3.1"
+ sources."engine.io-parser-1.0.6"
+ sources."entities-1.1.1"
+ sources."escape-html-1.0.3"
+ sources."etag-1.8.1"
+ sources."event-stream-3.3.4"
+ sources."express-4.16.2"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."finalhandler-1.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."from-0.1.7"
+ sources."getpass-0.1.7"
+ sources."global-https://github.com/component/global/archive/v2.0.1.tar.gz"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-binary-data-0.1.1"
+ sources."has-cors-1.0.3"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ (sources."htmlparser2-3.7.3" // {
+ dependencies = [
+ sources."entities-1.0.0"
+ ];
+ })
+ (sources."http-errors-1.6.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
+ sources."indexof-0.0.1"
+ sources."inherits-2.0.3"
+ sources."ipaddr.js-1.5.2"
+ sources."irc-replies-2.0.1"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-0.0.1"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."json3-3.2.6"
+ sources."jsprim-1.4.1"
+ sources."linewise-0.0.3"
+ sources."lodash-2.4.2"
+ sources."map-stream-0.1.0"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.7.0"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."nan-0.3.2"
+ sources."negotiator-0.6.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-component-0.0.3"
+ sources."on-finished-2.3.0"
+ sources."options-0.0.6"
+ sources."parsejson-0.0.1"
+ sources."parseqs-0.0.2"
+ sources."parseuri-0.0.2"
+ sources."parseurl-1.3.2"
+ sources."path-to-regexp-0.1.7"
+ sources."pause-stream-0.0.11"
+ sources."performance-now-2.1.0"
+ sources."proxy-addr-2.0.2"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.2"
+ sources."read-1.0.7"
+ sources."readable-stream-1.1.14"
+ sources."request-2.83.0"
+ sources."safe-buffer-5.1.1"
+ sources."send-0.16.1"
+ sources."serve-static-1.13.1"
+ sources."setprototypeof-1.1.0"
+ sources."slate-irc-0.7.3"
+ (sources."slate-irc-parser-0.0.2" // {
+ dependencies = [
+ sources."debug-0.7.4"
+ ];
+ })
+ sources."sntp-2.1.0"
+ (sources."socket.io-1.0.6" // {
+ dependencies = [
+ sources."commander-0.6.1"
+ sources."debug-0.7.4"
+ sources."emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz"
+ ];
+ })
(sources."socket.io-adapter-0.2.0" // {
dependencies = [
sources."socket.io-parser-2.1.2"
];
})
- sources."has-binary-data-0.1.1"
- sources."ws-0.4.31"
- sources."engine.io-parser-1.0.6"
- sources."base64id-0.1.0"
- sources."nan-0.3.2"
+ sources."socket.io-client-1.0.6"
+ sources."socket.io-parser-2.2.0"
+ sources."split-0.3.3"
+ sources."sshpk-1.13.1"
+ sources."statuses-1.3.1"
+ sources."stream-combiner-0.0.4"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.5"
+ sources."through-2.3.8"
sources."tinycolor-0.0.1"
- sources."options-0.0.6"
- sources."base64-arraybuffer-0.1.2"
- sources."after-0.8.1"
- sources."arraybuffer.slice-0.0.6"
- sources."blob-0.0.2"
- sources."utf8-2.0.0"
- sources."json3-3.2.6"
- sources."emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz"
- sources."indexof-0.0.1"
- sources."engine.io-client-1.3.1"
- sources."component-bind-1.0.0"
- sources."component-emitter-1.1.2"
- sources."object-component-0.0.3"
- sources."parseuri-0.0.2"
sources."to-array-0.1.3"
- sources."has-cors-1.0.3"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.15"
+ sources."unpipe-1.0.0"
+ sources."utf8-2.0.0"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."ws-0.4.31"
sources."xmlhttprequest-https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz"
- sources."parsejson-0.0.1"
- sources."parseqs-0.0.2"
- sources."component-inherit-0.0.3"
- sources."global-https://github.com/component/global/archive/v2.0.1.tar.gz"
- sources."better-assert-1.0.2"
- sources."callsite-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38013,8 +39441,22 @@ in
sha1 = "36bf5209356facbf6cef18fa32274d116043ed24";
};
dependencies = [
- sources."express-5.0.0-alpha.6"
- sources."express-json5-0.1.0"
+ sources."JSONStream-1.3.2"
+ sources."accepts-1.3.4"
+ sources."ajv-5.5.2"
+ sources."amdefine-1.0.1"
+ sources."ansi-styles-3.2.0"
+ sources."argparse-1.0.9"
+ sources."array-flatten-2.1.1"
+ sources."array-uniq-1.0.3"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-0.9.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
(sources."body-parser-1.18.2" // {
dependencies = [
sources."bytes-3.0.0"
@@ -38023,219 +39465,210 @@ in
sources."raw-body-2.3.2"
];
})
- (sources."compression-1.7.1" // {
- dependencies = [
- sources."bytes-3.0.0"
- ];
- })
- sources."commander-2.12.2"
- sources."js-yaml-3.10.0"
- sources."cookies-0.7.1"
- (sources."request-2.83.0" // {
- dependencies = [
- sources."qs-6.5.1"
- ];
- })
- sources."async-0.9.2"
- sources."es6-shim-0.21.1"
- sources."semver-4.3.6"
- sources."minimatch-1.0.0"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
(sources."bunyan-1.8.12" // {
dependencies = [
sources."minimatch-3.0.4"
];
})
+ sources."bytes-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chalk-2.3.0"
+ sources."co-4.6.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."compressible-2.0.12"
+ (sources."compression-1.7.1" // {
+ dependencies = [
+ sources."bytes-3.0.0"
+ ];
+ })
+ sources."concat-map-0.0.1"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."cookies-0.7.1"
+ sources."core-util-is-1.0.2"
+ sources."crypt3-0.2.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ (sources."dom-serializer-0.1.0" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ ];
+ })
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.4.1"
+ sources."domutils-1.6.2"
+ sources."dtrace-provider-0.8.6"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."entities-1.1.1"
+ sources."es6-shim-0.21.1"
+ sources."escape-html-1.0.3"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.0"
+ sources."etag-1.8.1"
+ sources."express-5.0.0-alpha.6"
+ sources."express-json5-0.1.0"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."finalhandler-1.0.6"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs-ext-0.6.0"
+ sources."getpass-0.1.7"
+ sources."glob-6.0.4"
(sources."handlebars-2.0.0" // {
dependencies = [
sources."async-0.2.10"
];
})
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-flag-2.0.0"
+ sources."hawk-6.0.2"
sources."highlight.js-8.9.1"
- sources."lunr-0.7.2"
- (sources."render-readme-1.3.1" // {
+ sources."hoek-4.2.0"
+ sources."htmlparser2-3.9.2"
+ (sources."http-errors-1.6.2" // {
dependencies = [
- sources."readable-stream-2.3.3"
- sources."source-map-0.6.1"
+ sources."depd-1.1.1"
];
})
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.8"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ipaddr.js-1.4.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
sources."jju-1.3.0"
- sources."JSONStream-1.3.2"
+ sources."js-yaml-3.10.0"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonparse-1.3.1"
+ sources."jsprim-1.4.1"
+ sources."keygrip-1.0.2"
+ sources."linkify-it-1.2.4"
+ sources."lodash.clonedeep-4.5.0"
+ sources."lodash.escaperegexp-4.1.2"
+ sources."lodash.mergewith-4.6.0"
+ sources."lru-cache-2.7.3"
+ sources."lunr-0.7.2"
+ sources."markdown-it-4.4.0"
+ sources."mdurl-1.0.1"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.3.4"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-1.0.0"
+ sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."sinopia-htpasswd-0.4.5"
- sources."http-errors-1.6.2"
+ sources."moment-2.20.1"
+ sources."ms-2.0.0"
+ sources."mv-2.1.1"
+ sources."nan-2.8.0"
+ sources."ncp-2.0.0"
+ sources."negotiator-0.6.1"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."once-1.4.0"
+ sources."optimist-0.3.7"
+ sources."parseurl-1.3.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."performance-now-2.1.0"
+ sources."postcss-6.0.16"
+ sources."process-nextick-args-1.0.7"
+ sources."proxy-addr-1.1.5"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.0"
+ sources."range-parser-1.2.0"
+ sources."raw-body-1.3.4"
(sources."readable-stream-1.1.14" // {
dependencies = [
sources."isarray-0.0.1"
sources."string_decoder-0.10.31"
];
})
- sources."fs-ext-0.6.0"
- sources."crypt3-0.2.0"
- sources."accepts-1.3.4"
- sources."array-flatten-2.1.1"
- sources."content-disposition-0.5.2"
- sources."content-type-1.0.4"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."debug-2.6.9"
- sources."depd-1.1.1"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."finalhandler-1.0.6"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."on-finished-2.3.0"
- sources."parseurl-1.3.2"
- sources."path-is-absolute-1.0.1"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.5"
- sources."qs-6.5.0"
- sources."range-parser-1.2.0"
+ (sources."render-readme-1.3.1" // {
+ dependencies = [
+ sources."readable-stream-2.3.3"
+ sources."source-map-0.6.1"
+ sources."supports-color-5.1.0"
+ ];
+ })
+ (sources."request-2.83.0" // {
+ dependencies = [
+ sources."qs-6.5.1"
+ ];
+ })
+ sources."rimraf-2.4.5"
(sources."router-1.3.2" // {
dependencies = [
sources."setprototypeof-1.1.0"
sources."utils-merge-1.0.1"
];
})
+ sources."safe-buffer-5.1.1"
+ sources."safe-json-stringify-1.0.4"
+ sources."sanitize-html-1.17.0"
+ sources."semver-4.3.6"
sources."send-0.15.6"
sources."serve-static-1.12.6"
sources."setprototypeof-1.0.3"
- sources."statuses-1.3.1"
- sources."type-is-1.6.15"
- sources."utils-merge-1.0.0"
- sources."vary-1.1.2"
- sources."mime-types-2.1.17"
- sources."negotiator-0.6.1"
- sources."mime-db-1.30.0"
- sources."ms-2.0.0"
- sources."unpipe-1.0.0"
- sources."ee-first-1.1.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.4.0"
- sources."destroy-1.0.4"
- sources."mime-1.3.4"
- sources."media-typer-0.3.0"
- sources."raw-body-1.3.4"
- sources."bytes-1.0.0"
- sources."iconv-lite-0.4.8"
- sources."compressible-2.0.12"
- sources."on-headers-1.0.1"
- sources."safe-buffer-5.1.1"
- sources."argparse-1.0.9"
- sources."esprima-4.0.0"
+ sources."sigmund-1.0.1"
+ sources."sinopia-htpasswd-0.4.5"
+ sources."sntp-2.1.0"
+ sources."source-map-0.1.43"
sources."sprintf-js-1.0.3"
- sources."keygrip-1.0.2"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
+ sources."srcset-1.0.0"
+ sources."sshpk-1.13.1"
+ sources."statuses-1.3.1"
+ sources."string_decoder-1.0.3"
sources."stringstream-0.0.5"
+ sources."supports-color-4.5.0"
+ sources."through-2.3.8"
sources."tough-cookie-2.3.3"
sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."core-util-is-1.0.2"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."lru-cache-2.7.3"
- sources."sigmund-1.0.1"
- sources."dtrace-provider-0.8.5"
- sources."mv-2.1.1"
- sources."safe-json-stringify-1.0.4"
- sources."moment-2.20.1"
- sources."nan-2.8.0"
- sources."ncp-2.0.0"
- sources."rimraf-2.4.5"
- sources."glob-6.0.4"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."optimist-0.3.7"
- sources."uglify-js-2.3.6"
- sources."wordwrap-0.0.3"
- sources."source-map-0.1.43"
- sources."amdefine-1.0.1"
- sources."markdown-it-4.4.0"
- sources."sanitize-html-1.16.3"
- sources."entities-1.1.1"
- sources."linkify-it-1.2.4"
- sources."mdurl-1.0.1"
+ sources."type-is-1.6.15"
sources."uc.micro-1.0.3"
- sources."htmlparser2-3.9.2"
- sources."lodash.clonedeep-4.5.0"
- sources."lodash.escaperegexp-4.1.2"
- sources."lodash.mergewith-4.6.0"
- sources."postcss-6.0.14"
- sources."srcset-1.0.0"
- sources."xtend-4.0.1"
- sources."domelementtype-1.3.0"
- sources."domhandler-2.4.1"
- sources."domutils-1.6.2"
- (sources."dom-serializer-0.1.0" // {
- dependencies = [
- sources."domelementtype-1.1.3"
- ];
- })
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
+ sources."uglify-js-2.3.6"
+ sources."unpipe-1.0.0"
sources."util-deprecate-1.0.2"
- sources."chalk-2.3.0"
- sources."supports-color-4.5.0"
- sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."array-uniq-1.0.3"
- sources."number-is-nan-1.0.1"
- sources."jsonparse-1.3.1"
- sources."through-2.3.8"
- sources."minimist-0.0.8"
+ sources."utils-merge-1.0.0"
+ sources."uuid-3.2.1"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."wordwrap-0.0.3"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38259,24 +39692,24 @@ in
};
dependencies = [
sources."async-2.1.5"
- sources."cli-table-0.3.1"
- sources."commander-2.9.0"
- sources."readdirp-2.1.0"
- sources."lodash-4.17.4"
- sources."colors-1.0.3"
- sources."graceful-readlink-1.0.1"
- sources."graceful-fs-4.1.11"
- sources."minimatch-3.0.4"
- sources."readable-stream-2.3.3"
- sources."set-immediate-shim-1.0.1"
- sources."brace-expansion-1.1.8"
sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."cli-table-0.3.1"
+ sources."colors-1.0.3"
+ sources."commander-2.9.0"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
+ sources."lodash-4.17.4"
+ sources."minimatch-3.0.4"
sources."process-nextick-args-1.0.7"
+ sources."readable-stream-2.3.3"
+ sources."readdirp-2.1.0"
sources."safe-buffer-5.1.1"
+ sources."set-immediate-shim-1.0.1"
sources."string_decoder-1.0.3"
sources."util-deprecate-1.0.2"
];
@@ -38298,9 +39731,55 @@ in
sha1 = "c8dba4694307a0070b84a67ced76da6de73f3585";
};
dependencies = [
+ sources."abbrev-1.1.1"
+ sources."asn1-0.1.11"
sources."assert-plus-0.1.5"
+ sources."backoff-2.5.0"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."bunyan-1.5.1"
+ sources."clone-0.1.6"
+ sources."cmdln-3.2.1"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."csv-0.4.6"
+ sources."csv-generate-0.0.6"
+ sources."csv-parse-1.3.3"
+ sources."csv-stringify-0.0.8"
+ sources."ctype-0.5.3"
+ sources."dashdash-1.7.3"
+ sources."dtrace-provider-0.6.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."escape-regexp-component-1.0.2"
+ sources."extsprintf-1.2.0"
+ sources."formidable-1.1.1"
+ sources."glob-6.0.4"
+ sources."http-signature-0.11.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."isarray-1.0.0"
+ sources."jodid25519-1.0.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."jsprim-1.4.1"
+ sources."keep-alive-agent-0.0.1"
sources."lru-cache-2.2.0"
+ sources."mime-1.6.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."mv-2.1.1"
+ sources."nan-2.8.0"
+ sources."ncp-2.0.0"
+ sources."negotiator-0.5.3"
+ sources."node-uuid-1.4.8"
sources."nopt-2.0.0"
+ sources."once-1.4.0"
+ sources."path-is-absolute-1.0.1"
+ sources."precond-0.2.3"
+ sources."process-nextick-args-1.0.7"
+ sources."qs-3.1.0"
+ sources."readable-stream-2.3.3"
(sources."restify-4.0.3" // {
dependencies = [
sources."lru-cache-2.7.3"
@@ -38311,111 +39790,65 @@ in
})
];
})
- sources."bunyan-1.5.1"
- sources."clone-0.1.6"
+ sources."rimraf-2.4.5"
+ sources."safe-buffer-5.1.1"
+ sources."safe-json-stringify-1.0.4"
+ sources."semver-4.3.6"
(sources."smartdc-auth-2.3.1" // {
dependencies = [
+ sources."asn1-0.2.3"
sources."assert-plus-0.1.2"
sources."clone-0.1.5"
sources."dashdash-1.10.1"
+ sources."extsprintf-1.3.0"
(sources."http-signature-1.2.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
+ sources."json-schema-0.2.2"
+ (sources."jsprim-0.3.0" // {
+ dependencies = [
+ sources."verror-1.3.3"
+ ];
+ })
sources."once-1.3.0"
(sources."vasync-1.4.3" // {
dependencies = [
sources."extsprintf-1.0.0"
];
})
- sources."extsprintf-1.3.0"
- sources."asn1-0.2.3"
- (sources."jsprim-0.3.0" // {
- dependencies = [
- sources."verror-1.3.3"
- ];
- })
sources."verror-1.1.0"
- sources."json-schema-0.2.2"
];
})
- sources."cmdln-3.2.1"
- sources."dashdash-1.7.3"
- (sources."vasync-1.6.2" // {
- dependencies = [
- sources."verror-1.1.0"
- sources."extsprintf-1.0.0"
- ];
- })
- sources."abbrev-1.1.1"
- sources."backoff-2.5.0"
- sources."csv-0.4.6"
- sources."escape-regexp-component-1.0.2"
- sources."formidable-1.1.1"
- sources."http-signature-0.11.0"
- sources."keep-alive-agent-0.0.1"
- sources."mime-1.6.0"
- sources."negotiator-0.5.3"
- sources."node-uuid-1.4.8"
- sources."once-1.4.0"
- sources."qs-3.1.0"
- sources."semver-4.3.6"
sources."spdy-1.32.5"
- sources."tunnel-agent-0.4.3"
- (sources."verror-1.10.0" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
- sources."dtrace-provider-0.6.0"
- sources."precond-0.2.3"
- sources."csv-generate-0.0.6"
- sources."csv-parse-1.3.3"
- sources."stream-transform-0.1.2"
- sources."csv-stringify-0.0.8"
- sources."asn1-0.1.11"
- sources."ctype-0.5.3"
- sources."wrappy-1.0.2"
- sources."extsprintf-1.2.0"
- sources."core-util-is-1.0.2"
- sources."nan-2.8.0"
- sources."mv-2.1.1"
- sources."safe-json-stringify-1.0.4"
- sources."mkdirp-0.5.1"
- sources."ncp-2.0.0"
- sources."rimraf-2.4.5"
- sources."minimist-0.0.8"
- sources."glob-6.0.4"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- (sources."sshpk-agent-1.2.1" // {
- dependencies = [
- sources."assert-plus-0.1.5"
- ];
- })
(sources."sshpk-1.7.1" // {
dependencies = [
sources."assert-plus-0.2.0"
];
})
- sources."jsprim-1.4.1"
- sources."json-schema-0.2.3"
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
+ (sources."sshpk-agent-1.2.1" // {
+ dependencies = [
+ sources."assert-plus-0.1.5"
+ ];
+ })
+ sources."stream-transform-0.1.2"
sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."jsbn-0.1.1"
+ sources."tunnel-agent-0.4.3"
sources."tweetnacl-0.14.5"
- sources."jodid25519-1.0.2"
- sources."ecc-jsbn-0.1.1"
+ sources."util-deprecate-1.0.2"
+ (sources."vasync-1.6.2" // {
+ dependencies = [
+ sources."extsprintf-1.0.0"
+ sources."verror-1.1.0"
+ ];
+ })
+ (sources."verror-1.10.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38434,45 +39867,45 @@ in
sha1 = "c1a4590ceff87ecf13c72652f046f716b29e6014";
};
dependencies = [
- sources."debug-2.6.9"
- sources."engine.io-3.1.4"
- sources."socket.io-adapter-1.1.1"
- sources."socket.io-client-2.0.4"
- sources."socket.io-parser-3.1.2"
- sources."ms-2.0.0"
sources."accepts-1.3.3"
- sources."base64id-1.0.0"
- sources."engine.io-parser-2.1.1"
- sources."ws-3.3.3"
- sources."cookie-0.3.1"
- sources."uws-0.14.5"
- sources."mime-types-2.1.17"
- sources."negotiator-0.6.1"
- sources."mime-db-1.30.0"
sources."after-0.8.2"
- sources."arraybuffer.slice-0.0.6"
- sources."base64-arraybuffer-0.1.5"
- sources."blob-0.0.4"
- sources."has-binary2-1.0.2"
- sources."isarray-2.0.1"
+ sources."arraybuffer.slice-0.0.7"
sources."async-limiter-1.0.0"
- sources."safe-buffer-5.1.1"
- sources."ultron-1.1.1"
sources."backo2-1.0.2"
+ sources."base64-arraybuffer-0.1.5"
+ sources."base64id-1.0.0"
+ sources."better-assert-1.0.2"
+ sources."blob-0.0.4"
+ sources."callsite-1.0.0"
sources."component-bind-1.0.0"
sources."component-emitter-1.2.1"
+ sources."component-inherit-0.0.3"
+ sources."cookie-0.3.1"
+ sources."debug-2.6.9"
+ sources."engine.io-3.1.4"
sources."engine.io-client-3.1.4"
+ sources."engine.io-parser-2.1.2"
+ sources."has-binary2-1.0.2"
sources."has-cors-1.1.0"
sources."indexof-0.0.1"
+ sources."isarray-2.0.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."ms-2.0.0"
+ sources."negotiator-0.6.1"
sources."object-component-0.0.3"
sources."parseqs-0.0.5"
sources."parseuri-0.0.5"
+ sources."safe-buffer-5.1.1"
+ sources."socket.io-adapter-1.1.1"
+ sources."socket.io-client-2.0.4"
+ sources."socket.io-parser-3.1.2"
sources."to-array-0.1.4"
- sources."component-inherit-0.0.3"
- sources."xmlhttprequest-ssl-1.5.4"
+ sources."ultron-1.1.1"
+ sources."uws-0.14.5"
+ sources."ws-3.3.3"
+ sources."xmlhttprequest-ssl-1.5.5"
sources."yeast-0.1.2"
- sources."better-assert-1.0.2"
- sources."callsite-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38509,16 +39942,16 @@ in
sha1 = "92041479e174a214df7147f2fab1348af0839052";
};
dependencies = [
- sources."generic-pool-2.2.0"
- sources."modern-syslog-1.1.2"
- sources."hashring-3.2.0"
- sources."winser-0.1.6"
- sources."nan-2.8.0"
- sources."connection-parse-0.0.7"
- sources."simple-lru-cache-0.0.2"
- sources."sequence-2.2.1"
sources."commander-1.3.1"
+ sources."connection-parse-0.0.7"
+ sources."generic-pool-2.2.0"
+ sources."hashring-3.2.0"
sources."keypress-0.1.0"
+ sources."modern-syslog-1.1.2"
+ sources."nan-2.8.0"
+ sources."sequence-2.2.1"
+ sources."simple-lru-cache-0.0.2"
+ sources."winser-0.1.6"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38575,25 +40008,25 @@ in
sha1 = "42b9560931ca7090ce8515a798ba9e6aa3d6dc79";
};
dependencies = [
+ sources."amdefine-1.0.1"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."concat-map-0.0.1"
sources."css-parse-1.7.0"
- sources."mkdirp-0.5.1"
sources."debug-3.1.0"
- sources."sax-0.5.8"
- sources."glob-7.0.6"
- sources."source-map-0.1.43"
- sources."minimist-0.0.8"
- sources."ms-2.0.0"
sources."fs.realpath-1.0.0"
+ sources."glob-7.0.6"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
+ sources."sax-0.5.8"
+ sources."source-map-0.1.43"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."amdefine-1.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38613,50 +40046,54 @@ in
sha512 = "1f9s0zk5rrb842w5gibjarlc9qw8bmjcxnbxc8jjn8is4d6c9l66ajwvifw87yx3pis6dcinyjwvvkxvzpyp326nl72vjv9rw5ndxnp";
};
dependencies = [
- sources."coa-2.0.0"
+ sources."argparse-1.0.9"
+ sources."boolbase-1.0.0"
+ sources."coa-2.0.1"
sources."colors-1.1.2"
- sources."css-url-regex-1.1.0"
- sources."unquote-1.1.1"
- sources."mkdirp-0.5.1"
sources."css-select-1.3.0-rc0"
sources."css-select-base-adapter-0.1.0"
sources."css-tree-1.0.0-alpha25"
- sources."csso-3.4.0"
- sources."js-yaml-3.10.0"
- sources."object.values-1.0.4"
- sources."sax-1.2.4"
- sources."stable-0.1.6"
- sources."util.promisify-1.0.0"
- sources."q-1.5.1"
- sources."minimist-0.0.8"
- sources."boolbase-1.0.0"
+ sources."css-url-regex-1.1.0"
sources."css-what-2.1.0"
- sources."domutils-1.5.1"
- sources."nth-check-1.0.1"
+ (sources."csso-3.5.0" // {
+ dependencies = [
+ sources."css-tree-1.0.0-alpha.27"
+ ];
+ })
+ sources."define-properties-1.1.2"
(sources."dom-serializer-0.1.0" // {
dependencies = [
sources."domelementtype-1.1.3"
];
})
sources."domelementtype-1.3.0"
+ sources."domutils-1.5.1"
sources."entities-1.1.1"
- sources."mdn-data-1.0.0"
- sources."source-map-0.5.7"
- sources."argparse-1.0.9"
- sources."esprima-4.0.0"
- sources."sprintf-js-1.0.3"
- sources."define-properties-1.1.2"
sources."es-abstract-1.10.0"
- sources."has-1.0.1"
- sources."function-bind-1.1.1"
- sources."foreach-2.0.5"
- sources."object-keys-1.0.11"
sources."es-to-primitive-1.1.1"
+ sources."esprima-4.0.0"
+ sources."foreach-2.0.5"
+ sources."function-bind-1.1.1"
+ sources."has-1.0.1"
sources."is-callable-1.1.3"
- sources."is-regex-1.0.4"
sources."is-date-object-1.0.1"
+ sources."is-regex-1.0.4"
sources."is-symbol-1.0.1"
+ sources."js-yaml-3.10.0"
+ sources."mdn-data-1.1.0"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."nth-check-1.0.1"
+ sources."object-keys-1.0.11"
sources."object.getownpropertydescriptors-2.0.3"
+ sources."object.values-1.0.4"
+ 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.6"
+ sources."unquote-1.1.1"
+ sources."util.promisify-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38677,32 +40114,32 @@ in
};
dependencies = [
sources."acorn-4.0.13"
- sources."enhanced-resolve-2.3.0"
- sources."glob-7.1.2"
- sources."minimatch-3.0.4"
- sources."resolve-from-2.0.0"
- sources."tapable-0.2.8"
- sources."memory-fs-0.3.0"
- sources."graceful-fs-4.1.11"
- sources."object-assign-4.1.1"
- sources."errno-0.1.6"
- sources."readable-stream-2.3.3"
- sources."prr-1.0.1"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
+ sources."enhanced-resolve-2.3.0"
+ sources."errno-0.1.6"
+ sources."fs.realpath-1.0.0"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
+ sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
+ sources."memory-fs-0.3.0"
+ sources."minimatch-3.0.4"
+ sources."object-assign-4.1.1"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
+ sources."process-nextick-args-1.0.7"
+ sources."prr-1.0.1"
+ sources."readable-stream-2.3.3"
+ sources."resolve-from-2.0.0"
+ sources."safe-buffer-5.1.1"
+ sources."string_decoder-1.0.3"
+ sources."tapable-0.2.8"
+ sources."util-deprecate-1.0.2"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38713,6 +40150,159 @@ in
production = true;
bypassCache = false;
};
+ titanium = nodeEnv.buildNodePackage {
+ name = "titanium";
+ packageName = "titanium";
+ version = "5.0.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/titanium/-/titanium-5.0.14.tgz";
+ sha1 = "140bd332624acae65113a3ffec10b8cbb940ad0b";
+ };
+ dependencies = [
+ sources."adm-zip-0.4.7"
+ sources."align-text-0.1.4"
+ sources."amdefine-1.0.1"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."async-2.1.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.6.0"
+ sources."aws4-1.6.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."boom-2.10.1"
+ sources."camelcase-1.2.1"
+ sources."caseless-0.11.0"
+ sources."center-align-0.1.3"
+ sources."chalk-1.1.3"
+ sources."cliui-2.1.0"
+ sources."colors-1.1.2"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."decamelize-1.2.0"
+ sources."delayed-stream-1.0.0"
+ sources."diff-3.2.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ (sources."fields-0.1.24" // {
+ dependencies = [
+ sources."colors-0.6.2"
+ ];
+ })
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.1.4"
+ sources."fs-extra-2.1.2"
+ sources."generate-function-2.0.0"
+ sources."generate-object-property-1.2.0"
+ sources."getpass-0.1.7"
+ sources."graceful-fs-4.1.11"
+ sources."har-validator-2.0.6"
+ sources."has-ansi-2.0.0"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-signature-1.1.1"
+ sources."humanize-0.0.9"
+ sources."is-buffer-1.1.6"
+ sources."is-my-json-valid-2.17.1"
+ sources."is-property-1.0.2"
+ sources."is-typedarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-2.4.0"
+ sources."jsonpointer-4.0.1"
+ (sources."jsprim-1.4.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."keypress-0.2.1"
+ sources."kind-of-3.2.2"
+ sources."lazy-cache-1.0.4"
+ sources."lodash-4.17.4"
+ sources."longest-1.0.1"
+ sources."longjohn-0.2.11"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimist-0.0.10"
+ sources."moment-2.16.0"
+ (sources."node-appc-0.2.41" // {
+ dependencies = [
+ sources."async-2.1.4"
+ sources."source-map-0.5.7"
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ sources."node-uuid-1.4.7"
+ sources."oauth-sign-0.8.2"
+ sources."optimist-0.6.1"
+ sources."os-tmpdir-1.0.2"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pkginfo-0.3.1"
+ sources."punycode-1.4.1"
+ sources."qs-6.3.2"
+ sources."repeat-string-1.6.1"
+ sources."request-2.79.0"
+ sources."right-align-0.1.3"
+ sources."rimraf-2.2.8"
+ sources."semver-5.3.0"
+ sources."sntp-1.0.9"
+ sources."source-map-0.1.32"
+ sources."source-map-support-0.3.2"
+ sources."sprintf-0.1.5"
+ (sources."sshpk-1.13.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ sources."stack-trace-0.0.10"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ sources."temp-0.8.3"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ (sources."uglify-js-2.7.5" // {
+ dependencies = [
+ sources."async-0.2.10"
+ ];
+ })
+ sources."uglify-to-browserify-1.0.2"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."window-size-0.1.0"
+ (sources."winston-1.1.2" // {
+ dependencies = [
+ sources."async-1.0.0"
+ sources."colors-1.0.3"
+ ];
+ })
+ sources."wordwrap-0.0.3"
+ sources."wrench-1.5.9"
+ sources."xmldom-0.1.27"
+ sources."xtend-4.0.1"
+ sources."yargs-3.10.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Appcelerator Titanium Command line";
+ homepage = "https://github.com/appcelerator/titanium#readme";
+ license = "Apache-2.0";
+ };
+ production = true;
+ bypassCache = false;
+ };
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
@@ -38739,195 +40329,195 @@ in
sha1 = "bacc69d255970a478e09f76c7f689975d535a78a";
};
dependencies = [
+ sources."abbrev-1.1.1"
+ sources."agent-base-2.1.1"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-1.4.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."any-promise-1.3.0"
sources."archy-1.0.0"
+ sources."array-uniq-1.0.3"
+ sources."asynckit-0.4.0"
+ sources."balanced-match-1.0.0"
sources."bluebird-3.5.1"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.8"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
sources."chalk-1.1.3"
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-1.0.2"
(sources."cli-truncate-1.1.0" // {
dependencies = [
- sources."strip-ansi-4.0.0"
sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
];
})
- sources."columnify-1.5.4"
- sources."elegant-spinner-1.0.1"
- sources."has-unicode-2.0.1"
- sources."listify-1.0.0"
- sources."log-update-1.0.2"
- sources."minimist-1.2.0"
- sources."promise-finally-3.0.0"
- (sources."typings-core-2.3.3" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- (sources."update-notifier-2.3.0" // {
- dependencies = [
- sources."chalk-2.3.0"
- sources."ansi-styles-3.2.0"
- sources."supports-color-4.5.0"
- sources."semver-5.4.1"
- ];
- })
- sources."wordwrap-1.0.0"
- sources."xtend-4.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."slice-ansi-1.0.0"
- sources."string-width-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."wcwidth-1.0.1"
- sources."defaults-1.0.3"
sources."clone-1.0.3"
- sources."ansi-escapes-1.4.0"
- sources."cli-cursor-1.0.2"
- sources."restore-cursor-1.0.1"
- sources."exit-hook-1.1.1"
- sources."onetime-1.1.0"
- sources."array-uniq-1.0.3"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."columnify-1.5.4"
+ sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
sources."configstore-3.1.1"
+ sources."core-util-is-1.0.2"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."crypto-random-string-1.0.0"
sources."debug-2.6.9"
+ sources."deep-extend-0.4.2"
+ sources."defaults-1.0.3"
+ sources."delayed-stream-1.0.0"
sources."detect-indent-5.0.0"
+ sources."dot-prop-4.2.0"
+ sources."duplexer3-0.1.4"
+ sources."elegant-spinner-1.0.1"
+ sources."error-ex-1.3.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-0.7.0"
+ sources."exit-hook-1.1.1"
+ sources."extend-3.0.1"
+ sources."form-data-2.3.1"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."get-stream-3.0.0"
+ sources."glob-7.1.2"
+ sources."global-dirs-0.1.1"
+ sources."got-6.7.1"
sources."graceful-fs-4.1.11"
sources."has-1.0.1"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-2.0.0"
+ sources."has-unicode-2.0.1"
+ sources."http-proxy-agent-1.0.0"
+ sources."https-proxy-agent-1.0.0"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
sources."invariant-2.2.2"
sources."is-absolute-0.2.6"
+ sources."is-arrayish-0.2.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-obj-1.1.0"
+ sources."is-redirect-1.0.0"
+ sources."is-relative-0.2.1"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-unc-path-0.1.2"
+ sources."is-windows-0.2.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-3.0.1"
+ sources."js-tokens-3.0.2"
sources."jspm-config-0.3.4"
+ sources."latest-version-3.1.0"
+ sources."listify-1.0.0"
sources."lockfile-1.0.3"
+ sources."log-update-1.0.2"
+ sources."loose-envify-1.3.1"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."make-error-1.3.2"
sources."make-error-cause-1.2.2"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."nopt-1.0.10"
+ sources."npm-run-path-2.0.2"
sources."object.pick-1.3.0"
+ sources."once-1.4.0"
+ sources."onetime-1.1.0"
+ sources."p-finally-1.0.0"
+ sources."package-json-4.0.1"
sources."parse-json-2.2.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."pify-3.0.0"
sources."popsicle-9.2.0"
sources."popsicle-proxy-agent-3.0.0"
sources."popsicle-retry-3.2.1"
sources."popsicle-rewrite-1.0.0"
sources."popsicle-status-2.0.1"
- (sources."rc-1.2.2" // {
+ sources."prepend-http-1.0.4"
+ sources."process-nextick-args-1.0.7"
+ sources."promise-finally-3.0.0"
+ sources."pseudomap-1.0.2"
+ sources."punycode-1.4.1"
+ (sources."rc-1.2.4" // {
dependencies = [
sources."minimist-1.2.0"
];
})
- sources."rimraf-2.6.2"
- sources."sort-keys-1.1.2"
- sources."string-template-1.0.0"
- sources."strip-bom-3.0.0"
- sources."thenify-3.3.0"
- sources."throat-3.2.0"
- sources."touch-1.0.0"
- sources."typescript-2.6.2"
- sources."zip-object-0.1.0"
- sources."dot-prop-4.2.0"
- sources."make-dir-1.1.0"
- sources."unique-string-1.0.0"
- sources."write-file-atomic-2.3.0"
- sources."xdg-basedir-3.0.0"
- sources."is-obj-1.0.1"
- sources."pify-3.0.0"
- sources."crypto-random-string-1.0.0"
- sources."imurmurhash-0.1.4"
- sources."signal-exit-3.0.2"
- sources."ms-2.0.0"
- sources."function-bind-1.1.1"
- sources."loose-envify-1.3.1"
- sources."js-tokens-3.0.2"
- sources."is-relative-0.2.1"
- sources."is-windows-0.2.0"
- sources."is-unc-path-0.1.2"
- sources."unc-path-regex-0.1.2"
- sources."any-promise-1.3.0"
- sources."make-error-1.3.0"
- sources."isobject-3.0.1"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."concat-stream-1.6.0"
- sources."form-data-2.3.1"
- sources."tough-cookie-2.3.3"
- sources."inherits-2.0.3"
- sources."typedarray-0.0.6"
sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."asynckit-0.4.0"
- sources."combined-stream-1.0.5"
- sources."mime-types-2.1.17"
- sources."delayed-stream-1.0.0"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."http-proxy-agent-1.0.0"
- sources."https-proxy-agent-1.0.0"
- sources."agent-base-2.1.1"
- sources."extend-3.0.1"
- sources."semver-5.0.3"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."strip-json-comments-2.0.1"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."is-plain-obj-1.1.0"
- sources."nopt-1.0.10"
- sources."abbrev-1.1.1"
- sources."boxen-1.3.0"
- sources."import-lazy-2.1.0"
- sources."is-installed-globally-0.1.0"
- sources."is-npm-1.0.0"
- sources."latest-version-3.1.0"
- sources."semver-diff-2.1.0"
- sources."ansi-align-2.0.0"
- sources."camelcase-4.1.0"
- sources."cli-boxes-1.0.0"
- sources."term-size-1.2.0"
- sources."widest-line-2.0.0"
- sources."execa-0.7.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."global-dirs-0.1.1"
- sources."is-path-inside-1.0.1"
- sources."path-is-inside-1.0.2"
- sources."package-json-4.0.1"
- sources."got-6.7.1"
sources."registry-auth-token-3.3.1"
sources."registry-url-3.1.0"
- sources."create-error-class-3.0.2"
- sources."duplexer3-0.1.4"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."lowercase-keys-1.0.0"
+ sources."restore-cursor-1.0.1"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.0.3"
+ sources."semver-diff-2.1.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slice-ansi-1.0.0"
+ sources."sort-keys-1.1.2"
+ sources."string-template-1.0.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-3.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."supports-color-2.0.0"
+ sources."term-size-1.2.0"
+ sources."thenify-3.3.0"
+ sources."throat-3.2.0"
sources."timed-out-4.0.1"
+ sources."touch-1.0.0"
+ sources."tough-cookie-2.3.3"
+ sources."typedarray-0.0.6"
+ sources."typescript-2.6.2"
+ (sources."typings-core-2.3.3" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."unc-path-regex-0.1.2"
+ sources."unique-string-1.0.0"
sources."unzip-response-2.0.1"
+ (sources."update-notifier-2.3.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.0"
+ sources."chalk-2.3.0"
+ sources."semver-5.5.0"
+ sources."supports-color-4.5.0"
+ ];
+ })
sources."url-parse-lax-1.0.0"
- sources."capture-stack-trace-1.0.0"
- sources."prepend-http-1.0.4"
+ sources."util-deprecate-1.0.2"
+ sources."wcwidth-1.0.1"
+ sources."which-1.3.0"
+ sources."widest-line-2.0.0"
+ sources."wordwrap-1.0.0"
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
+ sources."zip-object-0.1.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -38941,13 +40531,13 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.2.2";
+ version = "3.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.2.2.tgz";
- sha512 = "22ibn4zyyrqi1gxr94xs4kaq1y402sxwp68z9w87r4g66wgkashr3fvgrp19w01aidqma2jgmghz5283rkj00x7gxb4f86rzhxlvvgv";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.8.tgz";
+ sha512 = "1vxvyq08n6jidg18kiph7m0bjzr4v1dh188b7zgj60mkv4x1qkqrgc8756drldaj3awmn71mwsxja0zhvdm8nqqw5finrajv8dc0j2z";
};
dependencies = [
- sources."commander-2.12.2"
+ sources."commander-2.13.0"
sources."source-map-0.6.1"
];
buildInputs = globalBuildInputs;
@@ -38962,108 +40552,330 @@ in
ungit = nodeEnv.buildNodePackage {
name = "ungit";
packageName = "ungit";
- version = "1.3.3";
+ version = "1.4.7";
src = fetchurl {
- url = "https://registry.npmjs.org/ungit/-/ungit-1.3.3.tgz";
- sha512 = "2ddzxzxfrgv9ihk65g4jj0qkfnr5g4akc5snb9xrhk5fmlglkas8b5bjbzvr6aazmp1idgmwqdwjsyiwd4v5s1pggkzyd605f4n03dq";
+ url = "https://registry.npmjs.org/ungit/-/ungit-1.4.7.tgz";
+ sha512 = "1fg2pwdf3d1qnlly7y0kpm8ghx56kc35993ww9v4xgpkdn7ga1s53190yjsifi6dj6j3v6602y8dnr5y0jyp4qm6v4rdb385dw5p2xs";
};
dependencies = [
- sources."async-2.5.0"
+ sources."abbrev-1.1.1"
+ sources."accepts-1.3.4"
+ sources."after-0.8.2"
+ sources."ajv-5.5.2"
+ sources."ansi-regex-2.1.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."array-flatten-1.1.1"
+ sources."arraybuffer.slice-0.0.7"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-2.6.0"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."base64-arraybuffer-0.1.5"
+ sources."base64id-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."better-assert-1.0.2"
+ sources."blob-0.0.4"
sources."bluebird-3.5.1"
sources."blueimp-md5-2.10.0"
sources."body-parser-1.18.2"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ sources."builtin-modules-1.1.1"
+ sources."builtins-1.0.3"
+ sources."bytes-3.0.0"
+ sources."callsite-1.0.0"
+ sources."camelcase-4.1.0"
+ sources."caseless-0.12.0"
+ (sources."cliui-4.0.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ ];
+ })
+ sources."clone-2.1.1"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
sources."color-2.0.1"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."color-string-1.5.2"
+ sources."colors-1.0.3"
+ sources."combined-stream-0.0.7"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.1.2"
+ sources."component-inherit-0.0.3"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."console-control-strings-1.1.0"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
sources."cookie-parser-1.4.3"
+ sources."cookie-signature-1.0.6"
+ sources."cookiejar-2.0.1"
+ sources."core-util-is-1.0.2"
+ sources."crc-3.4.4"
+ sources."cross-spawn-5.1.0"
sources."crossroads-0.12.2"
- (sources."diff2html-2.3.2" // {
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."deep-extend-0.4.2"
+ sources."delayed-stream-0.0.5"
+ sources."delegates-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."diff-3.4.0"
+ (sources."diff2html-2.3.3" // {
dependencies = [
sources."mkdirp-0.3.0"
];
})
- (sources."express-4.15.5" // {
+ sources."eachr-3.2.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."editions-1.3.3"
+ sources."ee-first-1.1.1"
+ sources."encodeurl-1.0.2"
+ sources."engine.io-3.1.4"
+ sources."engine.io-client-3.1.4"
+ sources."engine.io-parser-2.1.2"
+ sources."escape-html-1.0.3"
+ sources."etag-1.8.1"
+ sources."eve-0.5.4"
+ sources."execa-0.7.0"
+ (sources."express-4.16.2" // {
dependencies = [
- sources."qs-6.5.0"
+ sources."setprototypeof-1.1.0"
sources."statuses-1.3.1"
];
})
- (sources."express-session-1.15.6" // {
+ sources."express-session-1.15.6"
+ sources."extend-1.2.1"
+ sources."extract-opts-3.3.1"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."finalhandler-1.1.0"
+ sources."find-up-2.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-0.1.3"
+ sources."formidable-1.0.14"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fs.realpath-1.0.0"
+ sources."gauge-2.7.4"
+ sources."get-caller-file-1.0.2"
+ sources."get-stream-3.0.0"
+ sources."getmac-1.2.1"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-binary2-1.0.2"
+ sources."has-cors-1.1.0"
+ sources."has-unicode-2.0.1"
+ sources."hasher-1.2.0"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."hogan.js-3.0.2"
+ sources."hosted-git-info-2.5.0"
+ (sources."http-errors-1.6.2" // {
dependencies = [
- sources."utils-merge-1.0.1"
+ sources."depd-1.1.1"
];
})
- sources."getmac-1.2.1"
- sources."hasher-1.2.0"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
sources."ignore-3.3.7"
+ sources."indexof-0.0.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."invert-kv-1.0.0"
+ sources."ipaddr.js-1.5.2"
+ sources."is-arrayish-0.3.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
sources."just-detect-adblock-1.0.0"
(sources."keen.io-0.1.3" // {
dependencies = [
- sources."superagent-0.21.0"
- sources."qs-1.2.0"
- sources."mime-1.2.11"
- sources."methods-1.0.1"
sources."async-0.9.2"
+ sources."methods-1.0.1"
+ sources."mime-1.2.11"
+ sources."qs-1.2.0"
+ sources."superagent-0.21.0"
];
})
- sources."knockout-3.4.2"
+ sources."knockout-3.5.0-beta"
+ sources."lcid-1.0.0"
+ sources."locate-path-2.0.0"
sources."lodash-4.17.4"
+ sources."lru-cache-4.1.1"
+ sources."lsmod-1.0.0"
+ sources."media-typer-0.3.0"
+ sources."mem-1.1.0"
(sources."memorystore-1.6.0" // {
dependencies = [
sources."debug-3.1.0"
];
})
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."mime-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimic-fn-1.1.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."moment-2.18.1"
+ sources."moment-2.20.1"
+ sources."ms-2.0.0"
+ sources."negotiator-0.6.1"
sources."node-cache-4.1.1"
- sources."npm-5.4.2"
- (sources."npm-registry-client-8.4.0" // {
+ sources."nopt-1.0.10"
+ sources."normalize-package-data-2.4.0"
+ sources."npm-5.6.0"
+ sources."npm-package-arg-5.1.2"
+ (sources."npm-registry-client-8.5.0" // {
dependencies = [
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
sources."combined-stream-1.0.5"
+ sources."delayed-stream-1.0.0"
sources."extend-3.0.1"
sources."form-data-2.3.1"
- sources."delayed-stream-1.0.0"
+ sources."isarray-1.0.0"
+ sources."readable-stream-2.3.3"
+ sources."string_decoder-1.0.3"
];
})
+ sources."npm-run-path-2.0.2"
+ sources."npmlog-4.1.2"
+ sources."nprogress-0.2.0"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."object-component-0.0.3"
sources."octicons-3.5.0"
+ sources."on-finished-2.3.0"
+ sources."on-headers-1.0.1"
+ sources."once-1.4.0"
sources."open-0.0.5"
sources."os-homedir-1.0.2"
+ sources."os-locale-2.1.0"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."parseqs-0.0.5"
+ sources."parseuri-0.0.5"
+ sources."parseurl-1.3.2"
sources."passport-0.4.0"
sources."passport-local-1.0.0"
- (sources."raven-2.1.2" // {
+ sources."passport-strategy-1.0.0"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-2.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."pause-0.0.1"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-1.0.7"
+ sources."proxy-addr-2.0.2"
+ sources."pseudomap-1.0.2"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."random-bytes-1.0.0"
+ sources."range-parser-1.2.0"
+ (sources."raven-2.3.0" // {
dependencies = [
sources."uuid-3.0.0"
];
})
- (sources."rc-1.2.2" // {
+ sources."raw-body-2.3.2"
+ (sources."rc-1.2.4" // {
dependencies = [
sources."minimist-1.2.0"
];
})
+ sources."readable-stream-1.0.27-1"
+ sources."reduce-component-1.0.1"
+ sources."request-2.83.0"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."retry-0.10.1"
sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
sources."semver-5.4.1"
- sources."serve-static-1.12.6"
+ sources."send-0.16.1"
+ sources."serve-static-1.13.1"
+ sources."set-blocking-2.0.0"
+ sources."setprototypeof-1.0.3"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
sources."signals-1.0.0"
+ sources."simple-swizzle-0.2.2"
+ sources."slide-1.1.6"
sources."snapsvg-0.5.1"
+ sources."sntp-2.1.0"
(sources."socket.io-2.0.4" // {
dependencies = [
sources."accepts-1.3.3"
- sources."isarray-2.0.1"
sources."component-emitter-1.2.1"
+ sources."isarray-2.0.1"
];
})
- (sources."superagent-3.5.2" // {
+ sources."socket.io-adapter-1.1.1"
+ sources."socket.io-client-2.0.4"
+ sources."socket.io-parser-3.1.2"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."sshpk-1.13.1"
+ sources."ssri-4.1.6"
+ sources."stack-trace-0.0.9"
+ sources."statuses-1.4.0"
+ sources."string-width-1.0.2"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ (sources."superagent-3.8.2" // {
dependencies = [
+ sources."combined-stream-1.0.5"
sources."component-emitter-1.2.1"
sources."cookiejar-2.1.1"
+ sources."debug-3.1.0"
+ sources."delayed-stream-1.0.0"
sources."extend-3.0.1"
sources."form-data-2.3.1"
sources."formidable-1.1.1"
- sources."readable-stream-2.3.3"
- sources."combined-stream-1.0.5"
- sources."delayed-stream-1.0.0"
sources."isarray-1.0.0"
+ sources."readable-stream-2.3.3"
sources."string_decoder-1.0.3"
];
})
@@ -39072,285 +40884,62 @@ in
sources."rimraf-2.2.8"
];
})
- (sources."winston-2.3.1" // {
+ sources."timed-out-4.0.1"
+ sources."to-array-0.1.4"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.15"
+ sources."typechecker-4.4.1"
+ sources."typedarray-0.0.6"
+ sources."uid-safe-2.1.5"
+ sources."ultron-1.1.1"
+ sources."underscore-1.5.2"
+ sources."unpipe-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."uws-0.14.5"
+ sources."validate-npm-package-license-3.0.1"
+ sources."validate-npm-package-name-3.0.0"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."whatwg-fetch-2.0.3"
+ sources."which-1.3.0"
+ sources."which-module-2.0.0"
+ sources."wide-align-1.1.2"
+ (sources."winston-2.4.0" // {
dependencies = [
sources."async-1.0.0"
];
})
- (sources."yargs-9.0.1" // {
- dependencies = [
- sources."string-width-2.1.1"
- sources."is-arrayish-0.2.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- ];
- })
- sources."bytes-3.0.0"
- sources."content-type-1.0.4"
- sources."debug-2.6.9"
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."on-finished-2.3.0"
- sources."qs-6.5.1"
- sources."raw-body-2.3.2"
- sources."type-is-1.6.15"
- sources."ms-2.0.0"
- sources."inherits-2.0.3"
- sources."setprototypeof-1.0.3"
- sources."statuses-1.4.0"
- sources."ee-first-1.1.1"
- sources."unpipe-1.0.0"
- sources."media-typer-0.3.0"
- sources."mime-types-2.1.17"
- sources."mime-db-1.30.0"
- sources."color-convert-1.9.1"
- sources."color-string-1.5.2"
- sources."color-name-1.1.3"
- sources."simple-swizzle-0.2.2"
- sources."is-arrayish-0.3.1"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."diff-3.4.0"
- sources."hogan.js-3.0.2"
- sources."whatwg-fetch-2.0.3"
- sources."nopt-1.0.10"
- sources."abbrev-1.1.1"
- sources."accepts-1.3.4"
- sources."array-flatten-1.1.1"
- sources."content-disposition-0.5.2"
- sources."encodeurl-1.0.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."finalhandler-1.0.6"
- sources."fresh-0.5.2"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."parseurl-1.3.2"
- sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.5"
- sources."range-parser-1.2.0"
- sources."send-0.15.6"
- sources."utils-merge-1.0.0"
- sources."vary-1.1.2"
- sources."negotiator-0.6.1"
- sources."forwarded-0.1.2"
- sources."ipaddr.js-1.4.0"
- sources."destroy-1.0.4"
- sources."mime-1.3.4"
- sources."crc-3.4.4"
- sources."on-headers-1.0.1"
- sources."uid-safe-2.1.5"
- sources."random-bytes-1.0.0"
- sources."extract-opts-3.3.1"
- sources."eachr-3.2.0"
- sources."editions-1.3.3"
- sources."typechecker-4.4.1"
- sources."underscore-1.5.2"
- sources."formidable-1.0.14"
- sources."component-emitter-1.1.2"
- sources."cookiejar-2.0.1"
- sources."reduce-component-1.0.1"
- sources."extend-1.2.1"
- sources."form-data-0.1.3"
- sources."readable-stream-1.0.27-1"
- sources."combined-stream-0.0.7"
- sources."delayed-stream-0.0.5"
- sources."core-util-is-1.0.2"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
- sources."lru-cache-4.1.1"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."minimist-0.0.8"
- sources."clone-2.1.1"
- sources."concat-stream-1.6.0"
- sources."graceful-fs-4.1.11"
- sources."normalize-package-data-2.4.0"
- sources."npm-package-arg-5.1.2"
- sources."once-1.4.0"
- sources."request-2.83.0"
- sources."retry-0.10.1"
- sources."slide-1.1.6"
- sources."ssri-4.1.6"
- sources."npmlog-4.1.2"
- sources."typedarray-0.0.6"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."util-deprecate-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."osenv-0.1.4"
- sources."validate-npm-package-name-3.0.0"
- sources."os-tmpdir-1.0.2"
- sources."builtins-1.0.3"
- sources."wrappy-1.0.2"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."forever-agent-0.6.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."punycode-1.4.1"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."object-assign-4.1.1"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
- sources."ansi-regex-2.1.1"
- sources."passport-strategy-1.0.0"
- sources."pause-0.0.1"
- sources."lsmod-1.0.0"
- sources."stack-trace-0.0.9"
- sources."timed-out-4.0.1"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."strip-json-comments-2.0.1"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."eve-0.5.4"
- sources."engine.io-3.1.4"
- sources."socket.io-adapter-1.1.1"
- sources."socket.io-client-2.0.4"
- sources."socket.io-parser-3.1.2"
- sources."base64id-1.0.0"
- sources."engine.io-parser-2.1.1"
- sources."ws-3.3.3"
- sources."uws-0.14.5"
- sources."after-0.8.2"
- sources."arraybuffer.slice-0.0.6"
- sources."base64-arraybuffer-0.1.5"
- sources."blob-0.0.4"
- sources."has-binary2-1.0.2"
- sources."async-limiter-1.0.0"
- sources."ultron-1.1.1"
- sources."backo2-1.0.2"
- sources."component-bind-1.0.0"
- sources."engine.io-client-3.1.4"
- sources."has-cors-1.1.0"
- sources."indexof-0.0.1"
- sources."object-component-0.0.3"
- sources."parseqs-0.0.5"
- sources."parseuri-0.0.5"
- sources."to-array-0.1.4"
- sources."component-inherit-0.0.3"
- sources."xmlhttprequest-ssl-1.5.4"
- sources."yeast-0.1.2"
- sources."better-assert-1.0.2"
- sources."callsite-1.0.0"
- sources."colors-1.0.3"
- sources."cycle-1.0.3"
- sources."eyes-0.1.8"
- sources."camelcase-4.1.0"
- (sources."cliui-3.2.0" // {
+ (sources."wrap-ansi-2.1.0" // {
dependencies = [
sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
];
})
- sources."decamelize-1.2.0"
- sources."get-caller-file-1.0.2"
- sources."os-locale-2.1.0"
- sources."read-pkg-up-2.0.0"
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- sources."which-module-2.0.0"
+ sources."wrappy-1.0.2"
+ sources."ws-3.3.3"
+ sources."xmlhttprequest-ssl-1.5.5"
sources."y18n-3.2.1"
- sources."yargs-parser-7.0.0"
- sources."wrap-ansi-2.1.0"
- sources."execa-0.7.0"
- sources."lcid-1.0.0"
- sources."mem-1.1.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."strip-eof-1.0.0"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."invert-kv-1.0.0"
- sources."mimic-fn-1.1.0"
- sources."find-up-2.1.0"
- sources."read-pkg-2.0.0"
- sources."locate-path-2.0.0"
- sources."p-locate-2.0.0"
- sources."path-exists-3.0.0"
- sources."p-limit-1.1.0"
- sources."load-json-file-2.0.0"
- sources."path-type-2.0.0"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
- sources."strip-bom-3.0.0"
- sources."error-ex-1.3.1"
+ sources."yallist-2.1.2"
+ (sources."yargs-10.1.2" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."yargs-parser-8.1.0"
+ sources."yeast-0.1.2"
];
buildInputs = globalBuildInputs;
meta = {
description = "Git made easy";
homepage = "https://github.com/FredrikNoren/ungit#readme";
- license = "SEE LICENSE IN LICENSE.md";
+ license = "MIT";
};
production = true;
bypassCache = false;
@@ -39364,134 +40953,134 @@ in
sha1 = "17c442b94c0a6a3a68293d6ea4deb408f8cb9225";
};
dependencies = [
+ sources."abbrev-1.1.1"
sources."adm-zip-0.4.7"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."async-2.6.0"
+ sources."aws-sign2-0.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bl-1.0.3"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.8"
+ sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.5.0"
+ (sources."config-chain-1.1.11" // {
+ dependencies = [
+ sources."ini-1.3.5"
+ ];
+ })
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."dashdash-1.14.1"
+ sources."debug-0.7.4"
+ sources."delayed-stream-1.0.0"
+ sources."ecc-jsbn-0.1.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."extend-3.0.1"
+ sources."extract-zip-1.5.0"
+ sources."extsprintf-1.3.0"
+ sources."fd-slicer-1.0.1"
+ sources."follow-redirects-0.0.3"
+ sources."forever-agent-0.6.1"
+ sources."form-data-1.0.1"
+ sources."fs-extra-0.26.7"
+ sources."fs.realpath-1.0.0"
+ sources."generate-function-2.0.0"
+ sources."generate-object-property-1.2.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
+ sources."har-validator-2.0.6"
+ sources."has-ansi-2.0.0"
+ sources."hasha-2.2.0"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-signature-1.1.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.1.0"
+ sources."is-my-json-valid-2.17.1"
+ sources."is-property-1.0.2"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsonfile-2.4.0"
+ sources."jsonpointer-4.0.1"
+ (sources."jsprim-1.4.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
sources."kew-0.1.7"
+ sources."klaw-1.3.1"
+ sources."lodash-4.17.4"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
sources."mkdirp-0.3.5"
+ sources."node-uuid-1.4.8"
+ sources."nopt-2.2.1"
sources."npmconf-0.1.16"
+ sources."oauth-sign-0.8.2"
+ sources."once-1.3.3"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.0.3"
+ sources."path-is-absolute-1.0.1"
+ sources."pend-1.2.0"
(sources."phantomjs-1.9.20" // {
dependencies = [
sources."kew-0.7.0"
sources."mkdirp-0.5.0"
];
})
- sources."tmp-0.0.33"
- sources."follow-redirects-0.0.3"
- (sources."config-chain-1.1.11" // {
- dependencies = [
- sources."ini-1.3.5"
- ];
- })
- sources."inherits-2.0.3"
- sources."once-1.3.3"
- sources."osenv-0.0.3"
- sources."nopt-2.2.1"
- sources."semver-2.3.2"
- sources."ini-1.1.0"
- sources."proto-list-1.2.4"
- sources."wrappy-1.0.2"
- sources."abbrev-1.1.1"
- sources."extract-zip-1.5.0"
- sources."fs-extra-0.26.7"
- sources."hasha-2.2.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."process-nextick-args-1.0.7"
sources."progress-1.1.8"
+ sources."proto-list-1.2.4"
+ sources."qs-5.2.1"
+ sources."readable-stream-2.0.6"
sources."request-2.67.0"
sources."request-progress-2.0.1"
- sources."which-1.2.14"
- sources."concat-stream-1.5.0"
- sources."debug-0.7.4"
- sources."yauzl-2.4.1"
- sources."typedarray-0.0.6"
- sources."readable-stream-2.0.6"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-0.10.31"
- sources."util-deprecate-1.0.2"
- sources."minimist-0.0.8"
- sources."fd-slicer-1.0.1"
- sources."pend-1.2.0"
- sources."graceful-fs-4.1.11"
- sources."jsonfile-2.4.0"
- sources."klaw-1.3.1"
- sources."path-is-absolute-1.0.1"
sources."rimraf-2.6.2"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."is-stream-1.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."bl-1.0.3"
- sources."caseless-0.11.0"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-1.0.1"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."node-uuid-1.4.8"
- sources."qs-5.2.1"
- sources."tunnel-agent-0.4.3"
- sources."tough-cookie-2.2.2"
- sources."http-signature-1.1.1"
- sources."oauth-sign-0.8.2"
- sources."hawk-3.1.3"
- sources."aws-sign2-0.6.0"
- sources."stringstream-0.0.5"
- sources."combined-stream-1.0.5"
- sources."isstream-0.1.2"
- sources."is-typedarray-1.0.0"
- sources."har-validator-2.0.6"
- sources."async-2.6.0"
- sources."lodash-4.17.4"
- sources."mime-db-1.30.0"
- sources."assert-plus-0.2.0"
- (sources."jsprim-1.4.1" // {
- dependencies = [
- sources."assert-plus-1.0.0"
- ];
- })
+ sources."semver-2.3.2"
+ sources."sntp-1.0.9"
(sources."sshpk-1.13.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."delayed-stream-1.0.0"
- sources."chalk-1.1.3"
- sources."commander-2.12.2"
- sources."is-my-json-valid-2.17.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.5"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
sources."throttleit-1.0.0"
- sources."isexe-2.0.0"
- sources."os-tmpdir-1.0.2"
+ sources."tmp-0.0.33"
+ sources."tough-cookie-2.2.2"
+ sources."tunnel-agent-0.4.3"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
sources."underscore-1.8.3"
+ sources."util-deprecate-1.0.2"
+ sources."verror-1.10.0"
+ sources."which-1.2.14"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ sources."yauzl-2.4.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -39511,7 +41100,7 @@ in
sha512 = "0n3rl5qq259csi0x5qh12wzyaypfds5wy0zrzky19wqsa0mjibrn19fdfgbabply2l576vlj8j69nzkb23jqfy6a36xb3cwi1g4l73z";
};
dependencies = [
- sources."acorn-5.2.1"
+ sources."acorn-5.3.0"
(sources."acorn-dynamic-import-2.0.2" // {
dependencies = [
sources."acorn-4.0.13"
@@ -39519,193 +41108,185 @@ in
})
sources."ajv-5.5.2"
sources."ajv-keywords-2.1.1"
+ sources."align-text-0.1.4"
+ sources."ansi-regex-2.1.1"
+ sources."anymatch-1.3.2"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-unique-0.2.1"
+ sources."asn1.js-4.9.2"
+ sources."assert-1.4.1"
sources."async-2.6.0"
+ sources."async-each-1.0.1"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-1.2.1"
+ sources."big.js-3.2.0"
+ sources."binary-extensions-1.11.0"
+ sources."bn.js-4.11.8"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."brorand-1.1.0"
+ sources."browserify-aes-1.1.1"
+ sources."browserify-cipher-1.0.0"
+ sources."browserify-des-1.0.0"
+ sources."browserify-rsa-4.0.1"
+ sources."browserify-sign-4.0.4"
+ sources."browserify-zlib-0.2.0"
+ sources."buffer-4.9.1"
+ sources."buffer-xor-1.0.3"
+ sources."builtin-modules-1.1.1"
+ sources."builtin-status-codes-3.0.0"
+ sources."camelcase-1.2.1"
+ sources."center-align-0.1.3"
+ sources."chokidar-1.7.0"
+ sources."cipher-base-1.0.4"
+ sources."cliui-2.1.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."concat-map-0.0.1"
+ sources."console-browserify-1.1.0"
+ sources."constants-browserify-1.0.0"
+ sources."core-util-is-1.0.2"
+ sources."create-ecdh-4.0.0"
+ sources."create-hash-1.1.3"
+ sources."create-hmac-1.1.6"
+ sources."cross-spawn-5.1.0"
+ sources."crypto-browserify-3.12.0"
+ sources."d-1.0.0"
+ sources."date-now-0.1.4"
+ sources."decamelize-1.2.0"
+ sources."des.js-1.0.0"
+ sources."diffie-hellman-5.0.2"
+ sources."domain-browser-1.2.0"
+ sources."elliptic-6.4.0"
+ sources."emojis-list-2.1.0"
sources."enhanced-resolve-3.4.1"
+ sources."errno-0.1.6"
+ sources."error-ex-1.3.1"
+ sources."es5-ext-0.10.38"
+ sources."es6-iterator-2.0.3"
+ sources."es6-map-0.1.5"
+ sources."es6-set-0.1.5"
+ sources."es6-symbol-3.1.1"
+ sources."es6-weak-map-2.0.2"
sources."escope-3.6.0"
+ sources."esrecurse-4.2.0"
+ sources."estraverse-4.2.0"
+ sources."event-emitter-0.3.5"
+ sources."events-1.1.1"
+ sources."evp_bytestokey-1.0.3"
+ sources."execa-0.7.0"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ sources."extglob-0.3.2"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
+ sources."find-up-2.1.0"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."fsevents-1.1.3"
+ sources."get-caller-file-1.0.2"
+ sources."get-stream-3.0.0"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-flag-2.0.0"
+ sources."hash-base-3.0.4"
+ sources."hash.js-1.1.3"
+ sources."hmac-drbg-1.0.1"
+ sources."hosted-git-info-2.5.0"
+ sources."https-browserify-1.0.0"
+ sources."ieee754-1.1.8"
+ sources."indexof-0.0.1"
+ sources."inherits-2.0.3"
sources."interpret-1.1.0"
+ sources."invert-kv-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-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-stream-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isobject-2.1.0"
sources."json-loader-0.5.7"
+ sources."json-schema-traverse-0.3.1"
sources."json5-0.5.1"
+ sources."kind-of-3.2.2"
+ sources."lazy-cache-1.0.4"
+ sources."lcid-1.0.0"
+ sources."load-json-file-2.0.0"
sources."loader-runner-2.3.0"
sources."loader-utils-1.1.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.4"
+ sources."longest-1.0.1"
+ sources."lru-cache-4.1.1"
+ sources."md5.js-1.3.4"
+ sources."mem-1.1.0"
sources."memory-fs-0.4.1"
+ sources."micromatch-2.3.11"
+ sources."miller-rabin-4.0.1"
+ sources."mimic-fn-1.1.0"
+ sources."minimalistic-assert-1.0.0"
+ sources."minimalistic-crypto-utils-1.0.1"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
+ sources."nan-2.8.0"
(sources."node-libs-browser-2.1.0" // {
dependencies = [
sources."hash-base-2.0.2"
sources."inherits-2.0.1"
];
})
- sources."source-map-0.5.7"
- sources."supports-color-4.5.0"
- sources."tapable-0.2.8"
- (sources."uglifyjs-webpack-plugin-0.4.6" // {
- dependencies = [
- sources."yargs-3.10.0"
- ];
- })
- sources."watchpack-1.4.0"
- (sources."webpack-sources-1.1.0" // {
- dependencies = [
- sources."source-map-0.6.1"
- ];
- })
- (sources."yargs-8.0.2" // {
- dependencies = [
- sources."camelcase-4.1.0"
- (sources."cliui-3.2.0" // {
- dependencies = [
- sources."string-width-1.0.2"
- ];
- })
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- ];
- })
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."lodash-4.17.4"
- sources."graceful-fs-4.1.11"
- sources."object-assign-4.1.1"
- sources."es6-map-0.1.5"
- sources."es6-weak-map-2.0.2"
- sources."esrecurse-4.2.0"
- sources."estraverse-4.2.0"
- sources."d-1.0.0"
- sources."es5-ext-0.10.37"
- sources."es6-iterator-2.0.3"
- sources."es6-set-0.1.5"
- sources."es6-symbol-3.1.1"
- sources."event-emitter-0.3.5"
- sources."big.js-3.2.0"
- sources."emojis-list-2.1.0"
- sources."errno-0.1.6"
- sources."readable-stream-2.3.3"
- sources."prr-1.0.1"
- sources."core-util-is-1.0.2"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."minimist-0.0.8"
- sources."assert-1.4.1"
- sources."browserify-zlib-0.2.0"
- sources."buffer-4.9.1"
- sources."console-browserify-1.1.0"
- sources."constants-browserify-1.0.0"
- sources."crypto-browserify-3.12.0"
- sources."domain-browser-1.1.7"
- sources."events-1.1.1"
- sources."https-browserify-1.0.0"
- sources."os-browserify-0.3.0"
- sources."path-browserify-0.0.0"
- sources."process-0.11.10"
- sources."punycode-1.4.1"
- sources."querystring-es3-0.2.1"
- sources."stream-browserify-2.0.1"
- sources."stream-http-2.7.2"
- sources."timers-browserify-2.0.4"
- sources."tty-browserify-0.0.0"
- (sources."url-0.11.0" // {
- dependencies = [
- sources."punycode-1.3.2"
- ];
- })
- sources."util-0.10.3"
- sources."vm-browserify-0.0.4"
- sources."pako-1.0.6"
- sources."base64-js-1.2.1"
- sources."ieee754-1.1.8"
- sources."date-now-0.1.4"
- sources."browserify-cipher-1.0.0"
- sources."browserify-sign-4.0.4"
- sources."create-ecdh-4.0.0"
- sources."create-hash-1.1.3"
- sources."create-hmac-1.1.6"
- sources."diffie-hellman-5.0.2"
- sources."pbkdf2-3.0.14"
- sources."public-encrypt-4.0.0"
- sources."randombytes-2.0.5"
- sources."randomfill-1.0.3"
- sources."browserify-aes-1.1.1"
- sources."browserify-des-1.0.0"
- sources."evp_bytestokey-1.0.3"
- sources."buffer-xor-1.0.3"
- sources."cipher-base-1.0.4"
- sources."des.js-1.0.0"
- sources."minimalistic-assert-1.0.0"
- sources."md5.js-1.3.4"
- sources."hash-base-3.0.4"
- sources."bn.js-4.11.8"
- sources."browserify-rsa-4.0.1"
- sources."elliptic-6.4.0"
- sources."parse-asn1-5.1.0"
- sources."brorand-1.1.0"
- sources."hash.js-1.1.3"
- sources."hmac-drbg-1.0.1"
- sources."minimalistic-crypto-utils-1.0.1"
- sources."asn1.js-4.9.2"
- sources."ripemd160-2.0.1"
- sources."sha.js-2.4.9"
- sources."miller-rabin-4.0.1"
- sources."builtin-status-codes-3.0.0"
- sources."to-arraybuffer-1.0.1"
- sources."xtend-4.0.1"
- sources."setimmediate-1.0.5"
- sources."querystring-0.2.0"
- sources."indexof-0.0.1"
- sources."has-flag-2.0.0"
- sources."uglify-js-2.8.29"
- sources."uglify-to-browserify-1.0.2"
- sources."camelcase-1.2.1"
- sources."cliui-2.1.0"
- sources."decamelize-1.2.0"
- sources."window-size-0.1.0"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."wordwrap-0.0.2"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.2.2"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."chokidar-1.7.0"
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."path-is-absolute-1.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
- sources."micromatch-2.3.11"
+ sources."normalize-package-data-2.4.0"
sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
+ sources."npm-run-path-2.0.2"
+ sources."number-is-nan-1.0.1"
+ sources."object-assign-4.1.1"
sources."object.omit-2.0.1"
+ sources."os-browserify-0.3.0"
+ sources."os-locale-2.1.0"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."pako-1.0.6"
+ sources."parse-asn1-5.1.0"
sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
+ sources."parse-json-2.2.0"
+ sources."path-browserify-0.0.0"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-2.0.1"
+ sources."path-type-2.0.0"
+ sources."pbkdf2-3.0.14"
+ sources."pify-2.3.0"
sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
+ sources."process-0.11.10"
+ sources."process-nextick-args-1.0.7"
+ sources."prr-1.0.1"
+ sources."pseudomap-1.0.2"
+ sources."public-encrypt-4.0.0"
+ sources."punycode-1.4.1"
+ sources."querystring-0.2.0"
+ sources."querystring-es3-0.2.1"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -39715,81 +41296,90 @@ in
})
];
})
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."remove-trailing-separator-1.1.0"
- sources."binary-extensions-1.11.0"
- sources."minimatch-3.0.4"
- sources."set-immediate-shim-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."nan-2.8.0"
- sources."source-list-map-2.0.0"
- sources."get-caller-file-1.0.2"
- sources."os-locale-2.1.0"
+ sources."randombytes-2.0.6"
+ sources."randomfill-1.0.3"
+ sources."read-pkg-2.0.0"
sources."read-pkg-up-2.0.0"
+ sources."readable-stream-2.3.3"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
sources."require-directory-2.1.1"
sources."require-main-filename-1.0.1"
+ sources."right-align-0.1.3"
+ sources."ripemd160-2.0.1"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
sources."set-blocking-2.0.0"
- sources."string-width-2.1.1"
- sources."which-module-2.0.0"
- sources."y18n-3.2.1"
- sources."yargs-parser-7.0.0"
- sources."strip-ansi-3.0.1"
- sources."wrap-ansi-2.1.0"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
- sources."ansi-regex-2.1.1"
- sources."execa-0.7.0"
- sources."lcid-1.0.0"
- sources."mem-1.1.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."signal-exit-3.0.2"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
+ sources."set-immediate-shim-1.0.1"
+ sources."setimmediate-1.0.5"
+ sources."sha.js-2.4.10"
sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."invert-kv-1.0.0"
- sources."mimic-fn-1.1.0"
- sources."find-up-2.1.0"
- sources."read-pkg-2.0.0"
- sources."locate-path-2.0.0"
- sources."p-locate-2.0.0"
- sources."path-exists-3.0.0"
- sources."p-limit-1.1.0"
- sources."load-json-file-2.0.0"
- sources."normalize-package-data-2.4.0"
- sources."path-type-2.0.0"
- sources."parse-json-2.2.0"
- sources."pify-2.3.0"
- sources."strip-bom-3.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."semver-5.4.1"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
+ sources."signal-exit-3.0.2"
+ sources."source-list-map-2.0.0"
+ sources."source-map-0.5.7"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
+ sources."stream-browserify-2.0.1"
+ sources."stream-http-2.8.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-3.0.0"
+ sources."strip-eof-1.0.0"
+ sources."supports-color-4.5.0"
+ sources."tapable-0.2.8"
+ sources."timers-browserify-2.0.6"
+ sources."to-arraybuffer-1.0.1"
+ sources."tty-browserify-0.0.0"
+ sources."uglify-js-2.8.29"
+ sources."uglify-to-browserify-1.0.2"
+ (sources."uglifyjs-webpack-plugin-0.4.6" // {
+ dependencies = [
+ sources."yargs-3.10.0"
+ ];
+ })
+ (sources."url-0.11.0" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
+ sources."util-0.10.3"
+ sources."util-deprecate-1.0.2"
+ sources."validate-npm-package-license-3.0.1"
+ sources."vm-browserify-0.0.4"
+ sources."watchpack-1.4.0"
+ (sources."webpack-sources-1.1.0" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."which-1.3.0"
+ sources."which-module-2.0.0"
+ sources."window-size-0.1.0"
+ sources."wordwrap-0.0.2"
+ sources."wrap-ansi-2.1.0"
+ sources."xtend-4.0.1"
+ sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ (sources."yargs-8.0.2" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."camelcase-4.1.0"
+ (sources."cliui-3.2.0" // {
+ dependencies = [
+ sources."string-width-1.0.2"
+ ];
+ })
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."yargs-parser-7.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -39803,671 +41393,553 @@ in
web-ext = nodeEnv.buildNodePackage {
name = "web-ext";
packageName = "web-ext";
- version = "2.2.2";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/web-ext/-/web-ext-2.2.2.tgz";
- sha1 = "5c54be1d5b2e9da3092f5f03ef55d6db372c37e1";
+ url = "https://registry.npmjs.org/web-ext/-/web-ext-2.3.2.tgz";
+ sha1 = "45c7cb50cbea90d6127a3c4bb128802a67f67c93";
};
dependencies = [
- (sources."addons-linter-0.27.0" // {
+ sources."@types/node-9.3.0"
+ sources."JSONSelect-0.2.1"
+ sources."acorn-5.3.0"
+ (sources."acorn-jsx-3.0.1" // {
dependencies = [
- (sources."yargs-8.0.2" // {
- dependencies = [
- sources."string-width-2.1.1"
- ];
- })
- sources."babel-runtime-6.26.0"
- sources."regenerator-runtime-0.11.1"
- sources."ansi-styles-3.2.0"
- sources."supports-color-4.5.0"
- sources."domelementtype-1.1.3"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
+ sources."acorn-3.3.0"
+ ];
+ })
+ sources."adbkit-2.11.0"
+ sources."adbkit-logcat-1.1.0"
+ sources."adbkit-monkey-1.0.1"
+ (sources."addons-linter-0.33.0" // {
+ dependencies = [
+ sources."ajv-keywords-1.5.1"
+ sources."ansi-escapes-1.4.0"
sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
+ sources."async-2.6.0"
+ sources."cli-cursor-1.0.2"
sources."debug-3.1.0"
- sources."tmp-0.0.33"
+ sources."decamelize-1.2.0"
+ sources."domelementtype-1.1.3"
+ sources."figures-1.7.0"
+ sources."globals-11.2.0"
sources."inquirer-0.12.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."mute-stream-0.0.5"
+ sources."onetime-1.1.0"
sources."pluralize-1.2.1"
sources."progress-1.1.8"
- sources."table-3.8.3"
- sources."ansi-escapes-1.4.0"
- sources."cli-cursor-1.0.2"
- sources."figures-1.7.0"
+ sources."punycode-2.1.0"
+ sources."restore-cursor-1.0.1"
sources."run-async-0.1.0"
sources."rx-lite-3.1.2"
- sources."string-width-1.0.2"
- sources."restore-cursor-1.0.1"
- sources."onetime-1.1.0"
- sources."mute-stream-0.0.5"
- sources."ajv-keywords-1.5.1"
sources."slice-ansi-0.0.4"
- sources."punycode-2.1.0"
- ];
- })
- sources."babel-polyfill-6.20.0"
- sources."babel-runtime-6.25.0"
- (sources."bunyan-1.8.10" // {
- dependencies = [
- sources."rimraf-2.4.5"
- sources."glob-6.0.4"
- ];
- })
- sources."camelcase-4.1.0"
- sources."debounce-1.0.2"
- sources."decamelize-1.2.0"
- sources."es6-error-4.0.2"
- sources."es6-promisify-5.0.0"
- sources."event-to-promise-0.8.0"
- (sources."firefox-profile-0.5.0" // {
- dependencies = [
- sources."async-2.1.5"
- ];
- })
- (sources."fx-runner-1.0.8" // {
- dependencies = [
- sources."commander-2.9.0"
- sources."lodash-3.10.1"
- sources."which-1.2.4"
- sources."isexe-1.1.2"
- ];
- })
- (sources."git-rev-sync-1.9.1" // {
- dependencies = [
- sources."shelljs-0.7.7"
- ];
- })
- sources."minimatch-3.0.4"
- (sources."mkdirp-0.5.1" // {
- dependencies = [
- sources."minimist-0.0.8"
- ];
- })
- sources."mz-2.6.0"
- (sources."node-firefox-connect-1.2.0" // {
- dependencies = [
- sources."es6-promise-2.3.0"
- sources."traverse-0.4.6"
- ];
- })
- sources."open-0.0.5"
- sources."node-notifier-5.1.2"
- sources."parse-json-2.2.0"
- sources."regenerator-runtime-0.10.5"
- sources."require-uncached-1.0.3"
- (sources."sign-addon-0.2.1" // {
- dependencies = [
- sources."babel-polyfill-6.16.0"
- sources."es6-error-4.0.0"
- sources."mz-2.5.0"
- sources."request-2.79.0"
- sources."source-map-support-0.4.6"
- sources."regenerator-runtime-0.9.6"
- sources."ms-0.7.3"
- sources."hoek-2.16.3"
- sources."aws-sign2-0.6.0"
- sources."caseless-0.11.0"
- sources."form-data-2.1.4"
- sources."har-validator-2.0.6"
- sources."hawk-3.1.3"
- sources."http-signature-1.1.1"
- sources."qs-6.3.2"
- sources."tunnel-agent-0.4.3"
- sources."chalk-1.1.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."assert-plus-0.2.0"
- ];
- })
- (sources."source-map-support-0.5.0" // {
- dependencies = [
sources."source-map-0.6.1"
- ];
- })
- (sources."stream-to-promise-2.2.0" // {
- dependencies = [
- sources."end-of-stream-1.1.0"
- sources."once-1.3.3"
- ];
- })
- sources."tmp-0.0.30"
- sources."watchpack-1.3.0"
- (sources."update-notifier-2.2.0" // {
- dependencies = [
- (sources."chalk-1.1.3" // {
+ sources."source-map-support-0.5.1"
+ sources."string-width-1.0.2"
+ sources."strip-ansi-4.0.0"
+ sources."supports-color-4.5.0"
+ sources."table-3.8.3"
+ sources."underscore-1.6.0"
+ (sources."yargs-10.0.3" // {
dependencies = [
- sources."ansi-styles-2.2.1"
- sources."supports-color-2.0.0"
+ sources."ansi-regex-2.1.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ (sources."string-width-2.1.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."strip-ansi-3.0.1"
];
})
- sources."ansi-styles-3.2.0"
- sources."supports-color-4.5.0"
- sources."pify-3.0.0"
];
})
- (sources."yargs-6.6.0" // {
+ sources."adm-zip-0.4.7"
+ sources."ajv-5.5.2"
+ sources."ajv-keywords-2.1.1"
+ sources."anchor-markdown-header-0.5.7"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-3.0.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."any-promise-1.3.0"
+ sources."anymatch-1.3.2"
+ sources."archiver-2.1.1"
+ sources."archiver-utils-1.3.0"
+ sources."argparse-1.0.9"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-filter-0.0.1"
+ sources."array-from-2.1.1"
+ sources."array-map-0.0.0"
+ sources."array-reduce-0.0.0"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."array-unique-0.2.1"
+ sources."arrify-1.0.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-0.2.10"
+ sources."async-each-1.0.1"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."babel-code-frame-6.26.0"
+ sources."babel-core-6.26.0"
+ sources."babel-generator-6.26.0"
+ sources."babel-helpers-6.24.1"
+ sources."babel-messages-6.23.0"
+ (sources."babel-polyfill-6.26.0" // {
dependencies = [
- sources."camelcase-3.0.0"
- sources."os-locale-1.4.0"
- sources."read-pkg-up-1.0.1"
- sources."string-width-1.0.2"
- sources."which-module-1.0.0"
- sources."yargs-parser-4.2.1"
- sources."find-up-1.1.2"
- sources."read-pkg-1.1.0"
- sources."path-exists-2.1.0"
- sources."load-json-file-1.1.0"
- sources."path-type-1.1.0"
- sources."strip-bom-2.0.0"
+ sources."regenerator-runtime-0.10.5"
];
})
- (sources."zip-dir-1.0.2" // {
- dependencies = [
- sources."async-1.5.2"
- ];
- })
- sources."ajv-5.2.3"
(sources."babel-register-6.26.0" // {
dependencies = [
- sources."source-map-support-0.4.18"
sources."chalk-1.1.3"
+ sources."source-map-support-0.4.18"
];
})
- sources."chalk-2.1.0"
+ sources."babel-runtime-6.26.0"
+ sources."babel-template-6.26.0"
+ sources."babel-traverse-6.26.0"
+ sources."babel-types-6.26.0"
+ sources."babylon-6.18.0"
+ sources."bail-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."base64url-2.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."binary-extensions-1.11.0"
+ sources."bl-1.2.1"
+ sources."bluebird-2.9.34"
+ sources."boolbase-1.0.0"
+ sources."boom-4.3.1"
+ sources."boundary-1.0.1"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."buffer-crc32-0.2.13"
+ sources."buffer-equal-constant-time-1.0.1"
+ sources."builtin-modules-1.1.1"
+ (sources."bunyan-1.8.12" // {
+ dependencies = [
+ sources."glob-6.0.4"
+ sources."rimraf-2.4.5"
+ ];
+ })
+ sources."caller-path-0.1.0"
+ sources."callsites-0.2.0"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ sources."ccount-1.0.2"
+ sources."chalk-2.3.0"
+ sources."character-entities-1.2.1"
+ sources."character-entities-html4-1.1.1"
+ sources."character-entities-legacy-1.1.1"
+ sources."character-reference-invalid-1.1.1"
+ sources."chardet-0.4.2"
(sources."cheerio-1.0.0-rc.2" // {
dependencies = [
sources."domelementtype-1.3.0"
];
})
- sources."columnify-1.5.4"
- sources."common-tags-1.4.0"
- sources."crx-parser-0.1.2"
- sources."doctoc-1.3.0"
- (sources."dispensary-0.10.19" // {
+ sources."chokidar-1.7.0"
+ sources."circular-json-0.3.3"
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-width-2.2.0"
+ (sources."cliui-3.2.0" // {
dependencies = [
- sources."yargs-9.0.1"
+ sources."string-width-1.0.2"
];
})
- (sources."eslint-4.8.0" // {
+ sources."clone-1.0.3"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."collapse-white-space-1.0.3"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."colors-0.5.1"
+ sources."columnify-1.5.4"
+ sources."combined-stream-1.0.5"
+ sources."commander-2.13.0"
+ sources."common-tags-1.7.2"
+ sources."compress-commons-1.2.2"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."configstore-3.1.1"
+ sources."convert-source-map-1.5.1"
+ sources."core-js-2.5.3"
+ sources."core-util-is-1.0.2"
+ sources."crc-3.5.0"
+ sources."crc32-stream-2.0.0"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."crx-parser-0.1.2"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."crypto-random-string-1.0.0"
+ sources."css-select-1.2.0"
+ sources."css-what-2.1.0"
+ sources."d-1.0.0"
+ sources."dashdash-1.14.1"
+ sources."debounce-1.1.0"
+ sources."debug-2.6.9"
+ sources."decamelize-2.0.0"
+ sources."deep-extend-0.4.2"
+ sources."deep-is-0.1.3"
+ sources."deepcopy-0.6.3"
+ sources."deepmerge-1.5.2"
+ sources."defaults-1.0.3"
+ sources."del-2.2.2"
+ sources."delayed-stream-1.0.0"
+ sources."detect-indent-4.0.0"
+ (sources."dispensary-0.12.0" // {
+ dependencies = [
+ sources."source-map-support-0.5.0"
+ ];
+ })
+ sources."doctoc-1.3.0"
+ sources."doctrine-2.1.0"
+ sources."dom-serializer-0.1.0"
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.4.1"
+ sources."domutils-1.5.1"
+ sources."dot-prop-4.2.0"
+ sources."dtrace-provider-0.8.6"
+ sources."duplexer3-0.1.4"
+ sources."ecc-jsbn-0.1.1"
+ sources."ecdsa-sig-formatter-1.0.9"
+ sources."emoji-regex-6.1.3"
+ sources."encoding-0.1.12"
+ sources."end-of-stream-1.4.1"
+ sources."entities-1.1.1"
+ sources."error-ex-1.3.1"
+ sources."es5-ext-0.10.38"
+ sources."es6-error-4.1.1"
+ sources."es6-iterator-2.0.3"
+ sources."es6-map-0.1.5"
+ sources."es6-promise-4.2.4"
+ sources."es6-promisify-5.0.0"
+ sources."es6-set-0.1.5"
+ sources."es6-symbol-3.1.1"
+ sources."es6-weak-map-2.0.2"
+ sources."escape-string-regexp-1.0.5"
+ sources."escope-3.6.0"
+ (sources."eslint-4.15.0" // {
dependencies = [
sources."esprima-4.0.0"
];
})
(sources."eslint-plugin-no-unsafe-innerhtml-1.0.16" // {
dependencies = [
- (sources."eslint-3.19.0" // {
- dependencies = [
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
- ];
- })
+ sources."ajv-4.11.8"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
sources."chalk-1.1.3"
sources."debug-2.6.9"
- sources."ansi-styles-2.2.1"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."is-fullwidth-code-point-1.0.0"
- sources."ajv-4.11.8"
+ (sources."eslint-3.19.0" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."globals-9.18.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."shelljs-0.7.8"
sources."string-width-2.1.1"
- ];
- })
- sources."esprima-3.1.3"
- sources."first-chunk-stream-2.0.0"
- sources."jed-1.1.1"
- (sources."pino-4.10.2" // {
- dependencies = [
- sources."chalk-2.3.0"
- ];
- })
- sources."postcss-6.0.11"
- (sources."relaxed-json-1.0.1" // {
- dependencies = [
- sources."chalk-1.1.3"
- sources."ansi-styles-2.2.1"
sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
];
})
- sources."semver-5.4.1"
- sources."strip-bom-stream-3.0.0"
- sources."whatwg-url-6.3.0"
- sources."xmldom-0.1.27"
- sources."yauzl-2.8.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."json-stable-stringify-1.0.1"
- sources."jsonify-0.0.0"
- sources."babel-core-6.26.0"
- sources."core-js-2.5.3"
- sources."home-or-tmp-2.0.0"
- sources."lodash-4.17.4"
- sources."babel-code-frame-6.26.0"
- sources."babel-generator-6.26.0"
- sources."babel-helpers-6.24.1"
- sources."babel-messages-6.23.0"
- sources."babel-template-6.26.0"
- sources."babel-traverse-6.26.0"
- sources."babel-types-6.26.0"
- sources."babylon-6.18.0"
- sources."convert-source-map-1.5.1"
- sources."debug-2.6.9"
- sources."json5-0.5.1"
- sources."path-is-absolute-1.0.1"
- sources."private-0.1.8"
- sources."slash-1.0.0"
- sources."source-map-0.5.7"
+ sources."eslint-scope-3.7.1"
+ sources."eslint-visitor-keys-1.0.0"
+ sources."espree-3.5.2"
+ sources."esprima-3.1.3"
+ sources."esquery-1.0.0"
+ sources."esrecurse-4.2.0"
+ sources."estraverse-4.2.0"
sources."esutils-2.0.2"
- sources."js-tokens-3.0.2"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."detect-indent-4.0.0"
- sources."jsesc-1.3.0"
- sources."trim-right-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."number-is-nan-1.0.1"
- sources."globals-9.18.0"
- sources."invariant-2.2.2"
- sources."loose-envify-1.3.1"
- sources."to-fast-properties-1.0.3"
- sources."ms-2.0.0"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."css-select-1.2.0"
- sources."dom-serializer-0.1.0"
- sources."entities-1.1.1"
- sources."htmlparser2-3.9.2"
- sources."parse5-3.0.3"
- sources."css-what-2.1.0"
- sources."domutils-1.5.1"
- sources."boolbase-1.0.0"
- sources."nth-check-1.0.1"
- sources."domelementtype-1.3.0"
- sources."domhandler-2.4.1"
- sources."inherits-2.0.3"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."@types/node-8.5.2"
- sources."wcwidth-1.0.1"
- sources."defaults-1.0.3"
- sources."clone-1.0.3"
- sources."anchor-markdown-header-0.5.7"
- sources."markdown-to-ast-3.4.0"
- sources."minimist-1.2.0"
- sources."underscore-1.8.3"
- sources."update-section-0.3.3"
- sources."emoji-regex-6.1.3"
- sources."remark-5.1.0"
- sources."structured-source-3.0.2"
- sources."traverse-0.6.6"
- sources."remark-parse-1.1.0"
- sources."remark-stringify-1.1.0"
- sources."unified-4.2.1"
- sources."collapse-white-space-1.0.3"
+ sources."event-emitter-0.3.5"
+ sources."event-to-promise-0.8.0"
+ sources."execa-0.7.0"
+ sources."exit-hook-1.1.1"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
sources."extend-3.0.1"
- sources."parse-entities-1.1.1"
- sources."repeat-string-1.6.1"
- sources."trim-0.0.1"
- sources."trim-trailing-lines-1.1.0"
- sources."unherit-1.1.0"
- sources."unist-util-remove-position-1.1.1"
- sources."vfile-location-2.0.2"
- sources."character-entities-1.2.1"
- sources."character-entities-legacy-1.1.1"
- sources."character-reference-invalid-1.1.1"
- sources."is-alphanumerical-1.0.1"
- sources."is-decimal-1.0.1"
- sources."is-hexadecimal-1.0.1"
- sources."is-alphabetical-1.0.1"
- sources."xtend-4.0.1"
- sources."unist-util-visit-1.3.0"
- sources."unist-util-is-2.1.1"
- sources."ccount-1.0.2"
- sources."longest-streak-1.0.0"
- sources."markdown-table-0.4.0"
- sources."stringify-entities-1.3.1"
- sources."character-entities-html4-1.1.1"
- sources."bail-1.0.2"
- sources."has-1.0.1"
- sources."once-1.4.0"
- sources."trough-1.0.1"
- sources."vfile-1.4.0"
- sources."function-bind-1.1.1"
- sources."wrappy-1.0.2"
- sources."boundary-1.0.1"
- sources."array-from-2.1.1"
- sources."async-2.6.0"
- sources."natural-compare-lite-1.4.0"
- sources."request-2.83.0"
- sources."sha.js-2.4.9"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
+ sources."external-editor-2.1.0"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-parse-1.0.3"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."fast-safe-stringify-1.2.3"
+ sources."fd-slicer-1.0.1"
+ sources."figures-2.0.0"
+ sources."file-entry-cache-2.0.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
+ sources."find-up-2.1.0"
+ sources."firefox-client-0.3.0"
+ (sources."firefox-profile-1.1.0" // {
+ dependencies = [
+ sources."async-2.5.0"
+ ];
+ })
+ sources."first-chunk-stream-2.0.0"
+ sources."flat-cache-1.3.0"
+ sources."flatstr-1.0.5"
+ sources."fluent-0.4.1"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
sources."forever-agent-0.6.1"
sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."har-schema-2.0.0"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- (sources."cliui-3.2.0" // {
- dependencies = [
- sources."string-width-1.0.2"
- ];
- })
- sources."get-caller-file-1.0.2"
- sources."os-locale-2.1.0"
- sources."read-pkg-up-2.0.0"
- sources."require-directory-2.1.1"
- sources."require-main-filename-1.0.1"
- sources."set-blocking-2.0.0"
- sources."string-width-2.1.1"
- sources."which-module-2.0.0"
- sources."y18n-3.2.1"
- sources."yargs-parser-7.0.0"
- sources."wrap-ansi-2.1.0"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."execa-0.7.0"
- sources."lcid-1.0.0"
- sources."mem-1.1.0"
- sources."cross-spawn-5.1.0"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."signal-exit-3.0.2"
- sources."strip-eof-1.0.0"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."path-key-2.0.1"
- sources."invert-kv-1.0.0"
- sources."mimic-fn-1.1.0"
- sources."find-up-2.1.0"
- sources."read-pkg-2.0.0"
- sources."locate-path-2.0.0"
- sources."p-locate-2.0.0"
- sources."path-exists-3.0.0"
- sources."p-limit-1.1.0"
- sources."load-json-file-2.0.0"
- sources."normalize-package-data-2.4.0"
- sources."path-type-2.0.0"
- sources."graceful-fs-4.1.11"
- sources."pify-2.3.0"
- sources."strip-bom-3.0.0"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."concat-stream-1.6.0"
- sources."doctrine-2.0.2"
- sources."eslint-scope-3.7.1"
- sources."espree-3.5.2"
- sources."esquery-1.0.0"
- sources."estraverse-4.2.0"
- sources."file-entry-cache-2.0.0"
- sources."functional-red-black-tree-1.0.1"
- sources."glob-7.1.2"
- sources."ignore-3.3.7"
- sources."imurmurhash-0.1.4"
- sources."inquirer-3.3.0"
- sources."is-resolvable-1.0.1"
- sources."js-yaml-3.10.0"
- sources."levn-0.3.0"
- sources."natural-compare-1.4.0"
- sources."optionator-0.8.2"
- sources."path-is-inside-1.0.2"
- sources."pluralize-7.0.0"
- sources."progress-2.0.0"
- sources."strip-json-comments-2.0.1"
- sources."table-4.0.2"
- sources."text-table-0.2.0"
- sources."typedarray-0.0.6"
- sources."esrecurse-4.2.0"
- sources."object-assign-4.1.1"
- sources."acorn-5.2.1"
- (sources."acorn-jsx-3.0.1" // {
- dependencies = [
- sources."acorn-3.3.0"
- ];
- })
- sources."flat-cache-1.3.0"
- sources."circular-json-0.3.3"
- sources."del-2.2.2"
- sources."write-0.2.1"
- sources."globby-5.0.0"
- sources."is-path-cwd-1.0.0"
- sources."is-path-in-cwd-1.0.0"
- sources."pinkie-promise-2.0.1"
- sources."rimraf-2.6.2"
- sources."array-union-1.0.2"
- sources."arrify-1.0.1"
- sources."array-uniq-1.0.3"
- sources."is-path-inside-1.0.1"
- sources."pinkie-2.0.4"
+ sources."fs-extra-4.0.3"
sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."ansi-escapes-3.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."external-editor-2.1.0"
- sources."figures-2.0.0"
- sources."mute-stream-0.0.7"
- sources."run-async-2.3.0"
- sources."rx-lite-4.0.8"
- sources."rx-lite-aggregates-4.0.8"
- sources."through-2.3.8"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."chardet-0.4.2"
- sources."iconv-lite-0.4.19"
- sources."is-promise-2.1.0"
- sources."argparse-1.0.9"
- sources."sprintf-js-1.0.3"
- sources."prelude-ls-1.1.2"
- sources."type-check-0.3.2"
- sources."deep-is-0.1.3"
- sources."wordwrap-1.0.0"
- sources."fast-levenshtein-2.0.6"
- sources."ajv-keywords-2.1.1"
- sources."slice-ansi-1.0.0"
- sources."escope-3.6.0"
- sources."is-my-json-valid-2.17.1"
- sources."shelljs-0.7.8"
- sources."user-home-2.0.0"
- sources."es6-map-0.1.5"
- sources."es6-weak-map-2.0.2"
- sources."d-1.0.0"
- sources."es5-ext-0.10.37"
- sources."es6-iterator-2.0.3"
- sources."es6-set-0.1.5"
- sources."es6-symbol-3.1.1"
- sources."event-emitter-0.3.5"
- sources."readline2-1.0.1"
- sources."exit-hook-1.1.1"
+ sources."fsevents-1.1.3"
+ sources."function-bind-1.1.1"
+ sources."functional-red-black-tree-1.0.1"
+ (sources."fx-runner-1.0.8" // {
+ dependencies = [
+ sources."commander-2.9.0"
+ sources."isexe-1.1.2"
+ sources."lodash-3.10.1"
+ sources."which-1.2.4"
+ ];
+ })
sources."generate-function-2.0.0"
sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."is-property-1.0.2"
- sources."interpret-1.1.0"
- sources."rechoir-0.6.2"
- sources."resolve-1.5.0"
- sources."path-parse-1.0.5"
- sources."fast-json-parse-1.0.3"
- sources."fast-safe-stringify-1.2.1"
- sources."flatstr-1.0.5"
- sources."pump-1.0.3"
- sources."quick-format-unescaped-1.1.1"
- sources."split2-2.2.0"
- sources."end-of-stream-1.4.0"
- sources."through2-2.0.3"
- sources."commander-2.12.2"
- sources."strip-bom-buf-1.0.0"
- sources."is-utf8-0.2.1"
- sources."lodash.sortby-4.7.0"
- sources."tr46-1.0.1"
- sources."webidl-conversions-4.0.2"
- sources."fd-slicer-1.0.1"
- sources."buffer-crc32-0.2.13"
- sources."pend-1.2.0"
- sources."dtrace-provider-0.8.5"
- sources."mv-2.1.1"
- sources."safe-json-stringify-1.0.4"
- sources."moment-2.20.1"
- sources."nan-2.8.0"
- sources."ncp-2.0.0"
- sources."es6-promise-4.1.1"
- sources."adm-zip-0.4.7"
- sources."archiver-1.3.0"
- sources."fs-extra-2.1.2"
- sources."ini-1.3.5"
- sources."jetpack-id-1.0.0"
- sources."lazystream-1.0.0"
- sources."xml2js-0.4.19"
- sources."archiver-utils-1.3.0"
- sources."tar-stream-1.5.5"
- sources."zip-stream-1.2.0"
- sources."walkdir-0.0.11"
- sources."normalize-path-2.1.1"
- sources."remove-trailing-separator-1.1.0"
- sources."bl-1.2.1"
- sources."compress-commons-1.2.2"
- sources."crc32-stream-2.0.0"
- sources."crc-3.5.0"
- sources."jsonfile-2.4.0"
- sources."sax-1.2.4"
- sources."xmlbuilder-9.0.4"
- sources."shell-quote-1.6.1"
- sources."spawn-sync-1.0.15"
- sources."when-3.7.7"
- sources."winreg-0.0.12"
- sources."graceful-readlink-1.0.1"
- sources."array-filter-0.0.1"
- sources."array-reduce-0.0.0"
- sources."array-map-0.0.0"
- sources."os-shim-0.1.3"
- sources."is-absolute-0.1.7"
- sources."is-relative-0.1.3"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."any-promise-1.3.0"
- sources."thenify-all-1.6.0"
- sources."thenify-3.3.0"
- sources."firefox-client-0.3.0"
- sources."colors-0.5.1"
- sources."js-select-0.6.0"
- sources."JSONSelect-0.2.1"
- sources."growly-1.3.0"
- sources."shellwords-0.1.1"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."caller-path-0.1.0"
- sources."resolve-from-1.0.1"
- sources."callsites-0.2.0"
- sources."deepcopy-0.6.3"
- sources."jsonwebtoken-7.1.9"
- sources."joi-6.10.1"
- sources."jws-3.1.4"
- sources."lodash.once-4.1.1"
- sources."topo-1.1.0"
- sources."isemail-1.2.0"
- sources."base64url-2.0.0"
- sources."jwa-1.1.5"
- sources."buffer-equal-constant-time-1.0.1"
- sources."ecdsa-sig-formatter-1.0.9"
- sources."stream-to-array-2.3.0"
- sources."chokidar-1.7.0"
- sources."anymatch-1.3.2"
- sources."async-each-1.0.1"
- sources."glob-parent-2.0.0"
- sources."is-binary-path-1.0.1"
- sources."is-glob-2.0.1"
- sources."readdirp-2.1.0"
- sources."fsevents-1.1.3"
- sources."micromatch-2.3.11"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
+ sources."get-caller-file-1.0.2"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."gettext-parser-1.1.0"
+ (sources."git-rev-sync-1.9.1" // {
dependencies = [
- sources."kind-of-4.0.0"
+ sources."shelljs-0.7.7"
];
})
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
+ sources."glob-7.1.2"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."global-dirs-0.1.1"
+ sources."globals-9.18.0"
+ sources."globby-5.0.0"
+ sources."got-6.7.1"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
+ sources."growly-1.3.0"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-1.0.1"
+ sources."has-ansi-2.0.0"
+ sources."has-color-0.1.7"
+ sources."has-flag-2.0.0"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."home-or-tmp-2.0.0"
+ sources."hosted-git-info-2.5.0"
+ sources."htmlparser2-3.9.2"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.19"
+ sources."ignore-3.3.7"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."inquirer-3.3.0"
+ sources."interpret-1.1.0"
+ sources."invariant-2.2.2"
+ sources."invert-kv-1.0.0"
+ sources."is-absolute-0.1.7"
+ sources."is-alphabetical-1.0.1"
+ sources."is-alphanumerical-1.0.1"
+ 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-decimal-1.0.1"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
sources."is-extglob-1.0.0"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-hexadecimal-1.0.1"
+ sources."is-installed-globally-0.1.0"
+ sources."is-my-json-valid-2.17.1"
+ sources."is-npm-1.0.0"
sources."is-number-2.1.0"
+ sources."is-obj-1.0.1"
+ sources."is-path-cwd-1.0.0"
+ sources."is-path-in-cwd-1.0.0"
+ sources."is-path-inside-1.0.1"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-promise-2.1.0"
+ sources."is-property-1.0.2"
+ sources."is-redirect-1.0.0"
+ sources."is-relative-0.1.3"
+ sources."is-resolvable-1.1.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."isemail-1.2.0"
+ sources."isexe-2.0.0"
sources."isobject-2.1.0"
+ sources."isstream-0.1.2"
+ sources."jed-1.1.1"
+ sources."jetpack-id-1.0.0"
+ sources."joi-6.10.1"
+ sources."js-select-0.6.0"
+ sources."js-tokens-3.0.2"
+ sources."js-yaml-3.10.0"
+ sources."jsbn-0.1.1"
+ sources."jsesc-1.3.0"
+ sources."json-parse-better-errors-1.0.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.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."json5-0.5.1"
+ sources."jsonfile-4.0.0"
+ sources."jsonify-0.0.0"
+ sources."jsonpointer-4.0.1"
+ sources."jsonwebtoken-7.1.9"
+ sources."jsprim-1.4.1"
+ sources."jszip-2.6.1"
+ sources."jwa-1.1.5"
+ sources."jws-3.1.4"
+ sources."kind-of-3.2.2"
+ sources."latest-version-3.1.0"
+ sources."lazystream-1.0.0"
+ sources."lcid-1.0.0"
+ sources."levn-0.3.0"
+ sources."load-json-file-1.1.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.4"
+ sources."lodash.endswith-4.2.1"
+ sources."lodash.isfunction-3.0.8"
+ sources."lodash.isstring-4.0.1"
+ sources."lodash.once-4.1.1"
+ sources."lodash.sortby-4.7.0"
+ sources."lodash.startswith-4.2.1"
+ sources."longest-streak-1.0.0"
+ sources."loose-envify-1.3.1"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."markdown-table-0.4.0"
+ sources."markdown-to-ast-3.4.0"
+ sources."mem-1.1.0"
+ sources."micromatch-2.3.11"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimic-fn-1.1.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ (sources."mkdirp-0.5.1" // {
+ dependencies = [
+ sources."minimist-0.0.8"
+ ];
+ })
+ sources."moment-2.20.1"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."mv-2.1.1"
+ sources."mz-2.7.0"
+ sources."nan-2.8.0"
+ sources."natural-compare-1.4.0"
+ sources."natural-compare-lite-1.4.0"
+ sources."ncp-2.0.0"
+ sources."next-tick-1.0.0"
+ (sources."node-firefox-connect-1.2.0" // {
+ dependencies = [
+ sources."es6-promise-2.3.0"
+ sources."traverse-0.4.6"
+ ];
+ })
+ sources."node-forge-0.7.1"
+ sources."node-notifier-5.2.1"
+ sources."nomnom-1.8.1"
+ sources."normalize-package-data-2.4.0"
+ sources."normalize-path-2.1.1"
+ sources."npm-run-path-2.0.2"
+ sources."nth-check-1.0.1"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."object.omit-2.0.1"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."open-0.0.5"
+ sources."optionator-0.8.2"
+ sources."os-homedir-1.0.2"
+ sources."os-locale-2.1.0"
+ sources."os-shim-0.1.3"
+ sources."os-tmpdir-1.0.2"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."package-json-4.0.1"
+ sources."pako-1.0.6"
+ sources."parse-entities-1.1.1"
+ sources."parse-glob-3.0.4"
+ sources."parse-json-4.0.0"
+ sources."parse5-3.0.3"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."path-parse-1.0.5"
+ sources."path-type-1.1.0"
+ sources."pend-1.2.0"
+ sources."performance-now-2.1.0"
+ sources."pify-2.3.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."pino-4.10.3"
+ sources."pluralize-7.0.0"
+ (sources."po2json-0.4.5" // {
+ dependencies = [
+ sources."ansi-styles-1.0.0"
+ sources."chalk-0.4.0"
+ sources."strip-ansi-0.1.1"
+ ];
+ })
+ sources."postcss-6.0.14"
+ sources."prelude-ls-1.1.2"
+ sources."prepend-http-1.0.4"
+ sources."preserve-0.2.0"
+ sources."private-0.1.8"
+ (sources."probe-image-size-3.2.0" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
+ sources."process-nextick-args-1.0.7"
+ sources."progress-2.0.0"
+ sources."pseudomap-1.0.2"
+ sources."pump-2.0.1"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."quick-format-unescaped-1.1.2"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -40477,56 +41949,217 @@ in
})
];
})
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
- sources."binary-extensions-1.11.0"
- sources."set-immediate-shim-1.0.1"
- (sources."boxen-1.3.0" // {
- dependencies = [
- sources."chalk-2.3.0"
- ];
- })
- sources."configstore-3.1.1"
- sources."import-lazy-2.1.0"
- sources."is-npm-1.0.0"
- sources."latest-version-3.1.0"
- sources."semver-diff-2.1.0"
- sources."xdg-basedir-3.0.0"
- sources."ansi-align-2.0.0"
- sources."cli-boxes-1.0.0"
- sources."term-size-1.2.0"
- sources."widest-line-2.0.0"
- sources."dot-prop-4.2.0"
- sources."make-dir-1.1.0"
- sources."unique-string-1.0.0"
- sources."write-file-atomic-2.3.0"
- sources."is-obj-1.0.1"
- sources."crypto-random-string-1.0.0"
- sources."package-json-4.0.1"
- sources."got-6.7.1"
+ sources."rc-1.2.4"
+ sources."read-pkg-1.1.0"
+ sources."read-pkg-up-1.0.1"
+ sources."readable-stream-2.3.3"
+ sources."readdirp-2.1.0"
+ sources."readline2-1.0.1"
+ sources."rechoir-0.6.2"
+ sources."regenerator-runtime-0.11.1"
+ sources."regex-cache-0.4.4"
sources."registry-auth-token-3.3.1"
sources."registry-url-3.1.0"
- sources."create-error-class-3.0.2"
- sources."duplexer3-0.1.4"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."lowercase-keys-1.0.0"
+ (sources."relaxed-json-1.0.1" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."strip-ansi-3.0.1"
+ sources."supports-color-2.0.0"
+ ];
+ })
+ sources."remark-5.1.0"
+ sources."remark-parse-1.1.0"
+ sources."remark-stringify-1.1.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."repeating-2.0.1"
+ sources."request-2.83.0"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."require-uncached-1.0.3"
+ sources."resolve-1.5.0"
+ sources."resolve-from-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."rimraf-2.6.2"
+ sources."run-async-2.3.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."safe-buffer-5.1.1"
+ sources."safe-json-stringify-1.0.4"
+ sources."sax-1.2.4"
+ sources."semver-5.4.1"
+ sources."semver-diff-2.1.0"
+ sources."set-blocking-2.0.0"
+ sources."set-immediate-shim-1.0.1"
+ sources."sha.js-2.4.10"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."shell-quote-1.6.1"
+ sources."shelljs-0.8.0"
+ sources."shellwords-0.1.1"
+ (sources."sign-addon-0.2.2" // {
+ dependencies = [
+ sources."assert-plus-0.2.0"
+ sources."aws-sign2-0.6.0"
+ sources."babel-polyfill-6.16.0"
+ sources."boom-2.10.1"
+ sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
+ sources."cryptiles-2.0.5"
+ sources."es6-error-4.0.0"
+ sources."form-data-2.1.4"
+ sources."har-validator-2.0.6"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-signature-1.1.1"
+ sources."ms-0.7.3"
+ sources."mz-2.5.0"
+ sources."qs-6.3.2"
+ sources."regenerator-runtime-0.9.6"
+ sources."request-2.79.0"
+ sources."sntp-1.0.9"
+ sources."source-map-support-0.4.6"
+ sources."tunnel-agent-0.4.3"
+ ];
+ })
+ sources."signal-exit-3.0.2"
+ sources."slash-1.0.0"
+ sources."slice-ansi-1.0.0"
+ sources."sntp-2.1.0"
+ sources."source-map-0.5.7"
+ (sources."source-map-support-0.5.2" // {
+ dependencies = [
+ sources."source-map-0.6.1"
+ ];
+ })
+ sources."spawn-sync-1.0.15"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."split-0.3.3"
+ sources."split2-2.2.0"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.13.1"
+ sources."stream-parser-0.3.1"
+ sources."stream-to-array-2.3.0"
+ (sources."stream-to-promise-2.2.0" // {
+ dependencies = [
+ sources."end-of-stream-1.1.0"
+ sources."once-1.3.3"
+ ];
+ })
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."stringify-entities-1.3.1"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-3.0.0"
+ sources."strip-bom-buf-1.0.0"
+ sources."strip-bom-stream-3.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ sources."structured-source-3.0.2"
+ sources."supports-color-2.0.0"
+ sources."table-4.0.2"
+ sources."tar-stream-1.5.5"
+ sources."term-size-1.2.0"
+ sources."text-table-0.2.0"
+ sources."thenify-3.3.0"
+ sources."thenify-all-1.6.0"
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
sources."timed-out-4.0.1"
+ sources."tmp-0.0.33"
+ sources."to-fast-properties-1.0.3"
+ sources."topo-1.1.0"
+ sources."tosource-1.0.0"
+ sources."tough-cookie-2.3.3"
+ sources."tr46-1.0.1"
+ sources."traverse-0.6.6"
+ sources."trim-0.0.1"
+ sources."trim-right-1.0.1"
+ sources."trim-trailing-lines-1.1.0"
+ sources."trough-1.0.1"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-check-0.3.2"
+ sources."typedarray-0.0.6"
+ sources."underscore-1.8.3"
+ sources."unherit-1.1.0"
+ sources."unified-4.2.1"
+ sources."unique-string-1.0.0"
+ sources."unist-util-is-2.1.1"
+ sources."unist-util-remove-position-1.1.1"
+ sources."unist-util-visit-1.3.0"
+ sources."universalify-0.1.1"
sources."unzip-response-2.0.1"
+ sources."upath-1.0.2"
+ (sources."update-notifier-2.3.0" // {
+ dependencies = [
+ sources."pify-3.0.0"
+ ];
+ })
+ sources."update-section-0.3.3"
sources."url-parse-lax-1.0.0"
- sources."capture-stack-trace-1.0.0"
- sources."prepend-http-1.0.4"
- sources."rc-1.2.2"
- sources."deep-extend-0.4.2"
- sources."jszip-2.6.1"
- sources."pako-1.0.6"
+ sources."user-home-2.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-license-3.0.1"
+ sources."verror-1.10.0"
+ sources."vfile-1.4.0"
+ sources."vfile-location-2.0.2"
+ (sources."watchpack-1.4.0" // {
+ dependencies = [
+ sources."async-2.6.0"
+ ];
+ })
+ sources."wcwidth-1.0.1"
+ sources."webidl-conversions-4.0.2"
+ sources."whatwg-url-6.3.0"
+ sources."when-3.7.7"
+ sources."which-1.3.0"
+ sources."which-module-2.0.0"
+ sources."widest-line-2.0.0"
+ sources."winreg-0.0.12"
+ sources."wordwrap-1.0.0"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."write-0.2.1"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
+ sources."xml2js-0.4.19"
+ sources."xmlbuilder-9.0.4"
+ sources."xmldom-0.1.27"
+ sources."xregexp-4.0.0"
+ sources."xtend-4.0.1"
+ sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ (sources."yargs-6.6.0" // {
+ dependencies = [
+ sources."camelcase-3.0.0"
+ sources."decamelize-1.2.0"
+ sources."find-up-1.1.2"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."os-locale-1.4.0"
+ sources."parse-json-2.2.0"
+ sources."path-exists-2.1.0"
+ sources."string-width-1.0.2"
+ sources."strip-bom-2.0.0"
+ sources."which-module-1.0.0"
+ sources."yargs-parser-4.2.1"
+ ];
+ })
+ sources."yargs-parser-8.1.0"
+ sources."yauzl-2.9.1"
+ (sources."zip-dir-1.0.2" // {
+ dependencies = [
+ sources."async-1.5.2"
+ ];
+ })
+ sources."zip-stream-1.2.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -40574,130 +42207,450 @@ in
yo = nodeEnv.buildNodePackage {
name = "yo";
packageName = "yo";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/yo/-/yo-2.0.0.tgz";
- sha512 = "3maxk0a2p7xyz9bkfyx3jd0inm9y7a3wc8b7rqx8p5fsmx8qkqnbvhxwn4210l689vd5p3xphn147dyclqsqmmgp7cqyswyyfsmm1lr";
+ url = "https://registry.npmjs.org/yo/-/yo-2.0.1.tgz";
+ sha512 = "390n0gdbxr25mr804mrwfqw6r6srk4q9spnsnnlfvlsfvr6dwd93nrgh0l2sr76a9jdw2jiycwc0241h6zch6hi0jlhg3w8hk6i4hyy";
};
dependencies = [
+ sources."@sindresorhus/is-0.7.0"
+ sources."aggregate-error-1.0.0"
+ sources."ajv-5.5.2"
+ sources."ansi-0.3.1"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-3.0.0"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-2.2.1"
+ sources."are-we-there-yet-1.1.4"
+ sources."array-find-index-1.0.2"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."arrify-1.0.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
sources."async-2.6.0"
- sources."chalk-1.1.3"
- sources."cli-list-0.2.0"
- sources."configstore-3.1.1"
- sources."cross-spawn-5.1.0"
- sources."figures-2.0.0"
- (sources."fullname-3.3.0" // {
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bin-version-1.0.4"
+ (sources."bin-version-check-2.1.0" // {
dependencies = [
- sources."pify-2.3.0"
- sources."npm-run-path-1.0.0"
- sources."path-key-1.0.0"
+ sources."semver-4.3.6"
];
})
- sources."got-6.7.1"
+ sources."boom-4.3.1"
+ sources."boxen-1.3.0"
+ sources."brace-expansion-1.1.8"
+ sources."builtin-modules-1.1.1"
+ sources."cacheable-request-2.1.4"
+ sources."camelcase-2.1.1"
+ sources."camelcase-keys-2.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chalk-1.1.3"
+ sources."chardet-0.4.2"
+ sources."clean-stack-1.3.0"
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ sources."cli-list-0.2.0"
+ sources."cli-width-2.2.0"
+ sources."clone-1.0.3"
+ sources."clone-regexp-1.0.0"
+ sources."clone-response-1.0.2"
+ sources."clone-stats-0.0.1"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."configstore-3.1.1"
+ sources."core-util-is-1.0.2"
+ sources."create-error-class-3.0.2"
+ sources."cross-spawn-5.1.0"
+ sources."cross-spawn-async-2.2.5"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."crypto-random-string-1.0.0"
+ sources."currently-unhandled-0.4.1"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."decamelize-1.2.0"
+ sources."decode-uri-component-0.2.0"
+ sources."decompress-response-3.3.0"
+ sources."deep-extend-0.4.2"
+ sources."default-uid-1.0.0"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."diff-3.4.0"
+ sources."dot-prop-4.2.0"
+ sources."downgrade-root-1.2.2"
+ sources."duplexer3-0.1.4"
+ sources."each-async-1.1.1"
+ sources."ecc-jsbn-0.1.1"
+ sources."error-ex-1.3.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."execa-0.6.3"
+ sources."execall-1.0.0"
+ sources."exit-hook-1.1.1"
+ sources."extend-3.0.1"
+ sources."external-editor-2.1.0"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."figures-2.0.0"
+ sources."filter-obj-1.1.0"
+ sources."find-up-1.1.2"
+ sources."find-versions-1.2.1"
+ sources."first-chunk-stream-2.0.0"
+ sources."foreachasync-3.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."from2-2.3.0"
+ sources."fs.realpath-1.0.0"
+ (sources."fullname-3.3.0" // {
+ dependencies = [
+ sources."npm-run-path-1.0.0"
+ sources."path-key-1.0.0"
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."gauge-1.2.7"
+ sources."get-stdin-4.0.1"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."global-dirs-0.1.1"
+ sources."globby-6.1.0"
+ sources."got-8.0.3"
+ sources."graceful-fs-4.1.11"
+ sources."grouped-queue-0.3.3"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-2.0.0"
+ sources."has-symbol-support-x-1.4.1"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."has-unicode-2.0.1"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."hosted-git-info-2.5.0"
+ sources."http-cache-semantics-3.8.1"
+ sources."http-signature-1.2.0"
sources."humanize-string-1.0.1"
+ sources."iconv-lite-0.4.19"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."indent-string-3.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
(sources."inquirer-3.3.0" // {
dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
sources."chalk-2.3.0"
sources."strip-ansi-4.0.0"
- sources."ansi-styles-3.2.0"
sources."supports-color-4.5.0"
- sources."ansi-regex-3.0.0"
];
})
(sources."insight-0.8.4" // {
dependencies = [
+ sources."ansi-escapes-1.4.0"
sources."async-1.5.2"
+ sources."cli-cursor-1.0.2"
+ sources."cli-width-1.1.1"
(sources."configstore-1.4.0" // {
dependencies = [
sources."uuid-2.0.3"
];
})
- sources."inquirer-0.10.1"
- sources."write-file-atomic-1.3.4"
- sources."xdg-basedir-2.0.0"
- sources."minimist-0.0.8"
- sources."ansi-escapes-1.4.0"
- sources."cli-cursor-1.0.2"
- sources."cli-width-1.1.1"
sources."figures-1.7.0"
+ sources."inquirer-0.10.1"
+ sources."is-fullwidth-code-point-1.0.0"
sources."lodash-3.10.1"
+ sources."minimist-0.0.8"
+ sources."mute-stream-0.0.5"
+ sources."onetime-1.1.0"
+ sources."restore-cursor-1.0.1"
sources."run-async-0.1.0"
sources."rx-lite-3.1.2"
- sources."restore-cursor-1.0.1"
- sources."onetime-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."mute-stream-0.0.5"
+ sources."write-file-atomic-1.3.4"
+ sources."xdg-basedir-2.0.0"
];
})
+ sources."into-stream-3.1.0"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-docker-1.1.0"
+ sources."is-finite-1.0.2"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-object-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-obj-1.1.0"
+ sources."is-promise-2.1.0"
+ sources."is-redirect-1.0.0"
+ sources."is-regexp-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-root-1.0.0"
+ sources."is-scoped-1.0.0"
+ sources."is-stream-1.1.0"
+ sources."is-supported-regexp-flag-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."isurl-1.0.0"
+ sources."jsbn-0.1.1"
+ sources."json-buffer-3.0.0"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."keyv-3.0.0"
+ sources."latest-version-3.1.0"
+ sources."load-json-file-1.1.0"
+ sources."locate-path-2.0.0"
sources."lodash-4.17.4"
+ sources."lodash._getnative-3.9.1"
+ sources."lodash.debounce-3.1.1"
+ sources."lodash.pad-4.5.1"
+ sources."lodash.padend-4.6.1"
+ sources."lodash.padstart-4.6.1"
+ sources."log-symbols-1.0.2"
+ sources."loud-rejection-1.6.0"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."map-obj-1.0.1"
+ sources."mem-1.1.0"
+ sources."mem-fs-1.1.3"
(sources."meow-3.7.0" // {
dependencies = [
- sources."read-pkg-up-1.0.1"
- sources."pify-2.3.0"
sources."indent-string-2.1.0"
+ sources."pify-2.3.0"
+ sources."read-pkg-up-1.0.1"
];
})
- (sources."npm-keyword-4.2.0" // {
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimic-fn-1.1.0"
+ sources."mimic-response-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."mute-stream-0.0.7"
+ sources."normalize-package-data-2.4.0"
+ sources."normalize-url-2.0.1"
+ (sources."npm-keyword-5.0.0" // {
dependencies = [
- sources."got-5.7.1"
- sources."timed-out-3.1.3"
- sources."unzip-response-1.0.2"
+ sources."got-7.1.0"
+ sources."p-timeout-1.2.1"
+ sources."prepend-http-1.0.4"
+ sources."url-parse-lax-1.0.0"
];
})
+ sources."npm-run-path-2.0.2"
+ sources."npmlog-2.0.4"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."object-values-1.0.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
sources."opn-4.0.2"
- (sources."package-json-2.4.0" // {
+ sources."os-homedir-1.0.2"
+ (sources."os-name-1.0.3" // {
dependencies = [
- sources."got-5.7.1"
- sources."timed-out-3.1.3"
- sources."unzip-response-1.0.2"
+ sources."minimist-1.2.0"
];
})
+ sources."os-shim-0.1.3"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."osx-release-1.1.0"
+ sources."p-any-1.1.0"
+ sources."p-cancelable-0.3.0"
+ sources."p-finally-1.0.0"
+ sources."p-is-promise-1.1.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-some-2.0.1"
+ sources."p-timeout-2.0.1"
+ sources."p-try-1.0.0"
+ (sources."package-json-4.0.1" // {
+ dependencies = [
+ sources."got-6.7.1"
+ sources."prepend-http-1.0.4"
+ sources."url-parse-lax-1.0.0"
+ ];
+ })
+ sources."pad-component-0.0.1"
sources."parse-help-0.1.1"
+ sources."parse-json-2.2.0"
+ (sources."passwd-user-2.1.0" // {
+ dependencies = [
+ sources."execa-0.4.0"
+ ];
+ })
+ sources."path-exists-2.1.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."path-type-1.1.0"
+ sources."performance-now-2.1.0"
+ sources."pify-3.0.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ sources."prepend-http-2.0.0"
+ sources."process-nextick-args-1.0.7"
+ sources."pseudomap-1.0.2"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."query-string-5.0.1"
+ sources."rc-1.2.4"
+ sources."read-pkg-1.1.0"
(sources."read-pkg-up-2.0.0" // {
dependencies = [
sources."find-up-2.1.0"
- sources."read-pkg-2.0.0"
- sources."path-exists-3.0.0"
sources."load-json-file-2.0.0"
+ sources."path-exists-3.0.0"
sources."path-type-2.0.0"
sources."pify-2.3.0"
+ sources."read-pkg-2.0.0"
sources."strip-bom-3.0.0"
];
})
+ sources."readable-stream-2.3.3"
+ sources."readline2-1.0.1"
+ sources."redent-1.0.0"
+ sources."registry-auth-token-3.3.1"
+ sources."registry-url-3.1.0"
+ sources."repeating-2.0.1"
+ sources."replace-ext-0.0.1"
+ sources."request-2.83.0"
+ sources."responselike-1.0.2"
+ sources."restore-cursor-2.0.0"
sources."root-check-1.0.0"
+ sources."run-async-2.3.0"
+ sources."rx-4.1.0"
+ sources."rx-lite-4.0.8"
+ sources."rx-lite-aggregates-4.0.8"
+ sources."safe-buffer-5.1.1"
+ sources."scoped-regex-1.0.0"
+ sources."semver-5.5.0"
+ sources."semver-diff-2.1.0"
+ sources."semver-regex-1.0.0"
+ (sources."semver-truncate-1.1.2" // {
+ dependencies = [
+ sources."semver-5.5.0"
+ ];
+ })
+ sources."set-immediate-shim-1.0.1"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."slide-1.1.6"
+ sources."sntp-2.1.0"
+ sources."sort-keys-2.0.0"
sources."sort-on-2.0.0"
+ sources."spawn-sync-1.0.15"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."sshpk-1.13.1"
+ sources."strict-uri-encode-1.1.0"
sources."string-length-1.0.1"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-2.0.0"
+ sources."strip-bom-stream-2.0.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-indent-1.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."sudo-block-1.2.0"
+ sources."supports-color-2.0.0"
(sources."tabtab-1.3.2" // {
dependencies = [
- sources."inquirer-1.2.3"
sources."ansi-escapes-1.4.0"
sources."cli-cursor-1.0.2"
sources."external-editor-1.1.1"
sources."figures-1.7.0"
- sources."mute-stream-0.0.6"
- sources."string-width-1.0.2"
- sources."restore-cursor-1.0.1"
- sources."onetime-1.1.0"
- sources."tmp-0.0.29"
+ sources."inquirer-1.2.3"
sources."is-fullwidth-code-point-1.0.0"
+ sources."mute-stream-0.0.6"
+ sources."onetime-1.1.0"
+ sources."restore-cursor-1.0.1"
+ sources."string-width-1.0.2"
+ sources."tmp-0.0.29"
];
})
+ sources."taketalk-1.0.0"
+ sources."term-size-1.2.0"
+ sources."text-table-0.2.0"
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
+ sources."timed-out-4.0.1"
sources."titleize-1.0.0"
+ sources."tmp-0.0.33"
+ sources."tough-cookie-2.3.3"
+ sources."trim-newlines-1.0.0"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."twig-0.8.9"
+ sources."typedarray-0.0.6"
+ sources."unique-string-1.0.0"
+ sources."untildify-3.0.2"
+ sources."unzip-response-2.0.1"
(sources."update-notifier-2.3.0" // {
dependencies = [
- sources."chalk-2.3.0"
- sources."camelcase-4.1.0"
- sources."execa-0.7.0"
sources."ansi-styles-3.2.0"
+ sources."camelcase-4.1.0"
+ sources."chalk-2.3.0"
+ sources."execa-0.7.0"
sources."supports-color-4.5.0"
- sources."package-json-4.0.1"
];
})
+ sources."url-parse-lax-3.0.0"
+ sources."url-to-options-1.0.1"
sources."user-home-2.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-license-3.0.1"
+ sources."verror-1.10.0"
+ sources."vinyl-1.2.0"
+ sources."vinyl-file-2.0.0"
+ sources."walk-2.3.9"
+ sources."which-1.3.0"
+ sources."widest-line-2.0.0"
+ sources."win-release-1.1.1"
+ (sources."wrap-ansi-2.1.0" // {
+ dependencies = [
+ sources."string-width-1.0.2"
+ ];
+ })
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ sources."xdg-basedir-3.0.0"
+ sources."xtend-4.0.1"
+ sources."yallist-2.1.2"
(sources."yeoman-character-1.1.0" // {
dependencies = [
- sources."supports-color-3.2.3"
sources."has-flag-1.0.0"
+ sources."supports-color-3.2.3"
];
})
(sources."yeoman-doctor-2.1.0" // {
@@ -40707,12 +42660,12 @@ in
})
(sources."yeoman-environment-2.0.5" // {
dependencies = [
+ sources."ansi-styles-3.2.0"
sources."chalk-2.3.0"
sources."debug-3.1.0"
- sources."log-symbols-2.1.0"
- sources."ansi-styles-3.2.0"
- sources."supports-color-4.5.0"
+ sources."log-symbols-2.2.0"
sources."pify-2.3.0"
+ sources."supports-color-4.5.0"
];
})
(sources."yosay-2.0.1" // {
@@ -40721,304 +42674,6 @@ in
sources."is-fullwidth-code-point-1.0.0"
];
})
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."dot-prop-4.2.0"
- sources."graceful-fs-4.1.11"
- sources."make-dir-1.1.0"
- sources."unique-string-1.0.0"
- sources."write-file-atomic-2.3.0"
- sources."xdg-basedir-3.0.0"
- sources."is-obj-1.0.1"
- sources."pify-3.0.0"
- sources."crypto-random-string-1.0.0"
- sources."imurmurhash-0.1.4"
- sources."signal-exit-3.0.2"
- sources."lru-cache-4.1.1"
- sources."shebang-command-1.2.0"
- sources."which-1.3.0"
- sources."pseudomap-1.0.2"
- sources."yallist-2.1.2"
- sources."shebang-regex-1.0.0"
- sources."isexe-2.0.0"
- sources."execa-0.6.3"
- sources."filter-obj-1.1.0"
- sources."mem-1.1.0"
- sources."p-any-1.1.0"
- sources."p-try-1.0.0"
- (sources."passwd-user-2.1.0" // {
- dependencies = [
- sources."execa-0.4.0"
- ];
- })
- sources."rc-1.2.2"
- sources."get-stream-3.0.0"
- sources."is-stream-1.1.0"
- sources."npm-run-path-2.0.2"
- sources."p-finally-1.0.0"
- sources."strip-eof-1.0.0"
- sources."path-key-2.0.1"
- sources."mimic-fn-1.1.0"
- sources."p-some-2.0.0"
- sources."aggregate-error-1.0.0"
- sources."clean-stack-1.3.0"
- sources."indent-string-3.2.0"
- sources."cross-spawn-async-2.2.5"
- sources."object-assign-4.1.1"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."minimist-1.2.0"
- sources."strip-json-comments-2.0.1"
- sources."create-error-class-3.0.2"
- sources."duplexer3-0.1.4"
- sources."is-redirect-1.0.0"
- sources."is-retry-allowed-1.1.0"
- sources."lowercase-keys-1.0.0"
- sources."safe-buffer-5.1.1"
- sources."timed-out-4.0.1"
- sources."unzip-response-2.0.1"
- sources."url-parse-lax-1.0.0"
- sources."capture-stack-trace-1.0.0"
- sources."prepend-http-1.0.4"
- sources."decamelize-1.2.0"
- sources."ansi-escapes-3.0.0"
- sources."cli-cursor-2.1.0"
- sources."cli-width-2.2.0"
- sources."external-editor-2.1.0"
- sources."mute-stream-0.0.7"
- sources."run-async-2.3.0"
- sources."rx-lite-4.0.8"
- sources."rx-lite-aggregates-4.0.8"
- sources."string-width-2.1.1"
- sources."through-2.3.8"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."restore-cursor-2.0.0"
- sources."onetime-2.0.1"
- sources."chardet-0.4.2"
- sources."iconv-lite-0.4.19"
- sources."tmp-0.0.33"
- sources."os-tmpdir-1.0.2"
- sources."is-promise-2.1.0"
- sources."is-fullwidth-code-point-2.0.0"
- sources."lodash.debounce-3.1.1"
- (sources."os-name-1.0.3" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."request-2.83.0"
- sources."tough-cookie-2.3.3"
- sources."uuid-3.1.0"
- sources."mkdirp-0.5.1"
- sources."osenv-0.1.4"
- sources."os-homedir-1.0.2"
- sources."slide-1.1.6"
- sources."readline2-1.0.1"
- sources."exit-hook-1.1.1"
- sources."code-point-at-1.1.0"
- sources."number-is-nan-1.0.1"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."lodash._getnative-3.9.1"
- sources."osx-release-1.1.0"
- sources."win-release-1.1.1"
- sources."semver-5.4.1"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."stringstream-0.0.5"
- sources."tunnel-agent-0.6.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."core-util-is-1.0.2"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."camelcase-keys-2.1.0"
- sources."loud-rejection-1.6.0"
- sources."map-obj-1.0.1"
- sources."normalize-package-data-2.4.0"
- sources."redent-1.0.0"
- sources."trim-newlines-1.0.0"
- sources."camelcase-2.1.1"
- sources."currently-unhandled-0.4.1"
- sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.5.0"
- sources."is-builtin-module-1.0.0"
- sources."validate-npm-package-license-3.0.1"
- sources."builtin-modules-1.1.1"
- sources."spdx-correct-1.0.2"
- sources."spdx-expression-parse-1.0.4"
- sources."spdx-license-ids-1.2.2"
- sources."find-up-1.1.2"
- sources."read-pkg-1.1.0"
- sources."path-exists-2.1.0"
- sources."pinkie-promise-2.0.1"
- sources."pinkie-2.0.4"
- sources."load-json-file-1.1.0"
- sources."path-type-1.1.0"
- sources."parse-json-2.2.0"
- sources."strip-bom-2.0.0"
- sources."error-ex-1.3.1"
- sources."is-arrayish-0.2.1"
- sources."is-utf8-0.2.1"
- sources."strip-indent-1.0.1"
- sources."repeating-2.0.1"
- sources."is-finite-1.0.2"
- sources."get-stdin-4.0.1"
- sources."registry-url-3.1.0"
- sources."duplexer2-0.1.4"
- sources."node-status-codes-1.0.0"
- sources."read-all-stream-3.1.0"
- sources."readable-stream-2.3.3"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."registry-auth-token-3.3.1"
- sources."execall-1.0.0"
- sources."clone-regexp-1.0.0"
- sources."is-regexp-1.0.0"
- sources."is-supported-regexp-flag-1.0.0"
- sources."locate-path-2.0.0"
- sources."p-locate-2.0.0"
- sources."p-limit-1.1.0"
- sources."downgrade-root-1.2.2"
- sources."sudo-block-1.2.0"
- sources."default-uid-1.0.0"
- sources."is-root-1.0.0"
- sources."is-docker-1.1.0"
- sources."arrify-1.0.1"
- sources."debug-2.6.9"
- sources."npmlog-2.0.4"
- sources."ms-2.0.0"
- sources."rx-4.1.0"
- sources."spawn-sync-1.0.15"
- sources."concat-stream-1.6.0"
- sources."os-shim-0.1.3"
- sources."typedarray-0.0.6"
- sources."ansi-0.3.1"
- sources."are-we-there-yet-1.1.4"
- sources."gauge-1.2.7"
- sources."delegates-1.0.0"
- sources."has-unicode-2.0.1"
- sources."lodash.pad-4.5.1"
- sources."lodash.padend-4.6.1"
- sources."lodash.padstart-4.6.1"
- sources."boxen-1.3.0"
- sources."import-lazy-2.1.0"
- sources."is-installed-globally-0.1.0"
- sources."is-npm-1.0.0"
- sources."latest-version-3.1.0"
- sources."semver-diff-2.1.0"
- sources."ansi-align-2.0.0"
- sources."cli-boxes-1.0.0"
- sources."term-size-1.2.0"
- sources."widest-line-2.0.0"
- sources."global-dirs-0.1.1"
- sources."is-path-inside-1.0.1"
- sources."path-is-inside-1.0.2"
- (sources."bin-version-check-2.1.0" // {
- dependencies = [
- sources."semver-4.3.6"
- ];
- })
- sources."each-async-1.1.1"
- sources."log-symbols-1.0.2"
- sources."object-values-1.0.0"
- sources."twig-0.8.9"
- sources."bin-version-1.0.4"
- (sources."semver-truncate-1.1.2" // {
- dependencies = [
- sources."semver-5.4.1"
- ];
- })
- sources."find-versions-1.2.1"
- sources."array-uniq-1.0.3"
- sources."semver-regex-1.0.0"
- sources."set-immediate-shim-1.0.1"
- sources."walk-2.3.9"
- sources."minimatch-3.0.4"
- sources."foreachasync-3.0.0"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."diff-3.4.0"
- sources."globby-6.1.0"
- sources."grouped-queue-0.3.3"
- sources."is-scoped-1.0.0"
- sources."mem-fs-1.1.3"
- sources."text-table-0.2.0"
- sources."untildify-3.0.2"
- sources."array-union-1.0.2"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."path-is-absolute-1.0.1"
- sources."scoped-regex-1.0.0"
- sources."through2-2.0.3"
- sources."vinyl-1.2.0"
- sources."vinyl-file-2.0.0"
- sources."xtend-4.0.1"
- sources."clone-1.0.3"
- sources."clone-stats-0.0.1"
- sources."replace-ext-0.0.1"
- sources."strip-bom-stream-2.0.0"
- sources."first-chunk-stream-2.0.0"
- sources."pad-component-0.0.1"
- sources."taketalk-1.0.0"
- (sources."wrap-ansi-2.1.0" // {
- dependencies = [
- sources."string-width-1.0.2"
- ];
- })
];
buildInputs = globalBuildInputs;
meta = {
diff --git a/pkgs/development/node-packages/node-packages-v8.json b/pkgs/development/node-packages/node-packages-v8.json
index d7f05456989..744894de4ff 100644
--- a/pkgs/development/node-packages/node-packages-v8.json
+++ b/pkgs/development/node-packages/node-packages-v8.json
@@ -8,6 +8,7 @@
, "node-gyp"
, "node-gyp-build"
, "node-pre-gyp"
+, "pnpm"
, "semver"
, "sloc"
]
diff --git a/pkgs/development/node-packages/node-packages-v8.nix b/pkgs/development/node-packages/node-packages-v8.nix
index 8c7ab1d7a2e..7397866ccea 100644
--- a/pkgs/development/node-packages/node-packages-v8.nix
+++ b/pkgs/development/node-packages/node-packages-v8.nix
@@ -1,9 +1,1188 @@
-# This file has been generated by node2nix 1.5.0. Do not edit!
+# This file has been generated by node2nix 1.5.1. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
let
sources = {
+ "@most/multicast-1.3.0" = {
+ name = "_at_most_slash_multicast";
+ packageName = "@most/multicast";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@most/multicast/-/multicast-1.3.0.tgz";
+ sha512 = "2zs8n5gpgl9frbw960m4q63svcgvqkbb9iay3klw3qcj4c0hwbw6llbkj9h4v13s1fh5gc4k6zg2cxpz4vipbp6kzbrd9v0500zqq8d";
+ };
+ };
+ "@most/prelude-1.7.0" = {
+ name = "_at_most_slash_prelude";
+ packageName = "@most/prelude";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@most/prelude/-/prelude-1.7.0.tgz";
+ sha512 = "0cdx6nag042jl38sm34c4cpc70wya0xns7f5j9i3hs8kwca8lkgbss9db6jkgd090hpvxq2qh5fzxnfnw705ph1zklgmnxf9wgw4l1s";
+ };
+ };
+ "@pnpm/check-package-1.0.0" = {
+ name = "_at_pnpm_slash_check-package";
+ packageName = "@pnpm/check-package";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/check-package/-/check-package-1.0.0.tgz";
+ sha512 = "1hg0g5snqp1lkmnmis335fpvg7xz93snvlbzqmyxxmyl0ab2d4wdlar6rwl7gr59113cpsyn2k3sawh656zrp6fp8q1rdy6x24a3pxc";
+ };
+ };
+ "@pnpm/default-fetcher-0.3.2" = {
+ name = "_at_pnpm_slash_default-fetcher";
+ packageName = "@pnpm/default-fetcher";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/default-fetcher/-/default-fetcher-0.3.2.tgz";
+ sha512 = "25lb4pf7sqsw31h5rdaqii969bl19ypip4l3x19i28p3c2174zi1hk152y3r6z36rfp66sfwq0p6f6gvnx10lf46vigw02ppv7szk49";
+ };
+ };
+ "@pnpm/default-resolver-0.1.2" = {
+ name = "_at_pnpm_slash_default-resolver";
+ packageName = "@pnpm/default-resolver";
+ version = "0.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/default-resolver/-/default-resolver-0.1.2.tgz";
+ sha512 = "3smnd8xcmslnba22i9p10f7a724whjm2wvjz3l9fvw23fw8d5nwn78xdkgrvpraqb7xw75xwq8cxj3nvmvib1iqpmp3pcx7j4px5fhx";
+ };
+ };
+ "@pnpm/fs-locker-1.0.1" = {
+ name = "_at_pnpm_slash_fs-locker";
+ packageName = "@pnpm/fs-locker";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/fs-locker/-/fs-locker-1.0.1.tgz";
+ sha512 = "3nadpl6sinl2h484m7nnn1vsry8pp0kfxgw8apbnyhajqsq00chx3f2v93hl26xnxri2wlhz0s2pc15617xb0xlpln9n1lzrr43fqw2";
+ };
+ };
+ "@pnpm/git-fetcher-0.2.0" = {
+ name = "_at_pnpm_slash_git-fetcher";
+ packageName = "@pnpm/git-fetcher";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/git-fetcher/-/git-fetcher-0.2.0.tgz";
+ sha512 = "2ax9drzzzrc2c7risivkxbv76nxdxafhfckl5g481b3k92gc8r8hl4j6kwrq8vl62sav010ssd7giadxs0b0h0nxqgwppsf0v942492";
+ };
+ };
+ "@pnpm/git-resolver-0.3.0" = {
+ name = "_at_pnpm_slash_git-resolver";
+ packageName = "@pnpm/git-resolver";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/git-resolver/-/git-resolver-0.3.0.tgz";
+ sha512 = "3xh8kq7pykgpp39g7pjd7x9f834q2dj3jxw3fcrikim1vpn0xiim3g17mz9s87ci0cxrgxcrn2sd4qcap99z9jg5s577af64z4pj6qw";
+ };
+ };
+ "@pnpm/local-resolver-0.1.1" = {
+ name = "_at_pnpm_slash_local-resolver";
+ packageName = "@pnpm/local-resolver";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/local-resolver/-/local-resolver-0.1.1.tgz";
+ sha512 = "3i66qx6iw71i07pg21k5j044r807ysq2ijy8q4a92jdg2a17w55ah2j59rs2mxsljl9kkxvp06852q8x00j2g8bbw2v5iivl5191h7y";
+ };
+ };
+ "@pnpm/logger-1.0.0" = {
+ name = "_at_pnpm_slash_logger";
+ packageName = "@pnpm/logger";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/logger/-/logger-1.0.0.tgz";
+ sha512 = "2yi5y7s91gz8dhv7gjqar4mp7j6mr2m05irm9l85v2xlzsaqx7mcjw0gap3xmpfmbi1di5rb1g57l7k3zh4nrh0mzcixfd2ykkq86jm";
+ };
+ };
+ "@pnpm/npm-resolver-0.3.11" = {
+ name = "_at_pnpm_slash_npm-resolver";
+ packageName = "@pnpm/npm-resolver";
+ version = "0.3.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/npm-resolver/-/npm-resolver-0.3.11.tgz";
+ sha512 = "1mjzlk9hv180r3igrcg3kmgvkp5wkv2ipsr4aqmcjzky8sgz152g22292ps6sndcggri71a8ivjzi61f36bxcz60vz55zvmi6mnawdz";
+ };
+ };
+ "@pnpm/outdated-0.2.5" = {
+ name = "_at_pnpm_slash_outdated";
+ packageName = "@pnpm/outdated";
+ version = "0.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/outdated/-/outdated-0.2.5.tgz";
+ sha512 = "08y7lv6gzw8yyzj24djya1pzh8r41rciz102lhb3nq279dyg5sgzr18z6fqlff8krdw160a8adx5s4csmlmfah2akawpczz9h8zy609";
+ };
+ };
+ "@pnpm/package-requester-0.7.1" = {
+ name = "_at_pnpm_slash_package-requester";
+ packageName = "@pnpm/package-requester";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/package-requester/-/package-requester-0.7.1.tgz";
+ sha512 = "09azfnn5831bniyy2va2bjwaxx2pvgbxwqzd82f4p4y4610b26ii3mpyhpd5l19via1il1ylxc73na8ih2ihgv8xi9x9jd4dv6lfnfz";
+ };
+ };
+ "@pnpm/pkgid-to-filename-1.0.0" = {
+ name = "_at_pnpm_slash_pkgid-to-filename";
+ packageName = "@pnpm/pkgid-to-filename";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/pkgid-to-filename/-/pkgid-to-filename-1.0.0.tgz";
+ sha512 = "17f44ay160i8pd1sl26v7ph8vdbx6bhydp0jhdc6mslhlyp4bwd1i9220hjvpiyiqkx4hwb4pa5b6hqzq3nyz8ldmna084wfz5q6x8y";
+ };
+ };
+ "@pnpm/server-0.7.1" = {
+ name = "_at_pnpm_slash_server";
+ packageName = "@pnpm/server";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/server/-/server-0.7.1.tgz";
+ sha512 = "0y2h510ps6kg1ssdwfpi0wrb4ps7jr28qrng2hfwh01r969f2j1nskajzvn6wa68hnfjq2ysajl66nwccrqydsj24w6dn2kl1jbl0b6";
+ };
+ };
+ "@pnpm/tarball-fetcher-0.3.4" = {
+ name = "_at_pnpm_slash_tarball-fetcher";
+ packageName = "@pnpm/tarball-fetcher";
+ version = "0.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/tarball-fetcher/-/tarball-fetcher-0.3.4.tgz";
+ sha512 = "1mpgr0ywrzkxq013ci9rjc9w9jdmr4lp5x121wwnnlybnzsxb98vzkh9mhmlrm77i98sb2drv880d82wgkdxkzx2d445pcmcsmf4z0w";
+ };
+ };
+ "@pnpm/tarball-resolver-0.1.0" = {
+ name = "_at_pnpm_slash_tarball-resolver";
+ packageName = "@pnpm/tarball-resolver";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/tarball-resolver/-/tarball-resolver-0.1.0.tgz";
+ sha512 = "3rdjpckjhhcamkin62ycyqqssvjxd1kx7k927z8m7ing9sqgsf2ascpg2wpp2kh1shbgl5kkldgbalnqm41xv09fqa9ka9rd3saxrr1";
+ };
+ };
+ "@pnpm/types-1.7.0" = {
+ name = "_at_pnpm_slash_types";
+ packageName = "@pnpm/types";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@pnpm/types/-/types-1.7.0.tgz";
+ sha512 = "2bww115m0q5d4m69xvm0kn8xmidncrp3xc8rn2sj03xpkhnd78mcn3m0ib13sq0mlhl4fgq3abvdhlhmxicdp3g6j9zb8awxkif0zm6";
+ };
+ };
+ "@sindresorhus/is-0.7.0" = {
+ name = "_at_sindresorhus_slash_is";
+ packageName = "@sindresorhus/is";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz";
+ sha512 = "2ilygr40l2yqbk6lix4xnnnqsq6fxa6sysdxg49bg1ax5gzhwy3bcjbdlk7lndgh9055slpx6fybs3p8mhvbsnnjkmkqzrfy8l5mn1q";
+ };
+ };
+ "@types/archy-0.0.31" = {
+ name = "_at_types_slash_archy";
+ packageName = "@types/archy";
+ version = "0.0.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/archy/-/archy-0.0.31.tgz";
+ sha512 = "08lzn97gp9rbcmfs592xib111b3fn7nlvmnkn3vpxm2ins5as3p3s3447d5y22lgx6zr6696q9dv27mjgm1cabi1zh2amq57f5p3rxz";
+ };
+ };
+ "@types/byline-4.2.31" = {
+ name = "_at_types_slash_byline";
+ packageName = "@types/byline";
+ version = "4.2.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/byline/-/byline-4.2.31.tgz";
+ sha1 = "0e61fcb9c03e047d21c4496554c7116297ab60cd";
+ };
+ };
+ "@types/chalk-0.4.31" = {
+ name = "_at_types_slash_chalk";
+ packageName = "@types/chalk";
+ version = "0.4.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/chalk/-/chalk-0.4.31.tgz";
+ sha1 = "a31d74241a6b1edbb973cf36d97a2896834a51f9";
+ };
+ };
+ "@types/common-tags-1.4.0" = {
+ name = "_at_types_slash_common-tags";
+ packageName = "@types/common-tags";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/common-tags/-/common-tags-1.4.0.tgz";
+ sha512 = "1s47pidf7gs7k79gxz1yy0rwhamf147h9ylvg9b6wfc8p3ixpzsq2xlj2w99mq9pi2j1g2flia2z21babjhrdzln1snggivxx46v38w";
+ };
+ };
+ "@types/get-port-3.2.0" = {
+ name = "_at_types_slash_get-port";
+ packageName = "@types/get-port";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz";
+ sha512 = "3axab8z99gfcfzqvrqs2dq6qa24abjxblh17grpqxxgcz0wyg5xrabj5ss8zzcn7ybpgx2n2gy401hbdxgz96zvwig3g3343pqn08sf";
+ };
+ };
+ "@types/got-7.1.6" = {
+ name = "_at_types_slash_got";
+ packageName = "@types/got";
+ version = "7.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/got/-/got-7.1.6.tgz";
+ sha512 = "0l95rpnrhc6n7khfjm4cl59206f387xap0j2qrk1j6z5gginkxfnkps2l0jw4jq842ii0hzdcakgxnllc2zxmdzsdg2z1wkm28jqf1i";
+ };
+ };
+ "@types/load-json-file-2.0.7" = {
+ name = "_at_types_slash_load-json-file";
+ packageName = "@types/load-json-file";
+ version = "2.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/load-json-file/-/load-json-file-2.0.7.tgz";
+ sha512 = "1gwn4lafk2nq3nrxl8vjbndpb1ky25hkj4h7hjxh8kyxzlqmhk8258ah4a5g4fdv5yap970nkpsn8vsss3iwh7qah1b9vsmz66gmc9n";
+ };
+ };
+ "@types/mem-1.1.2" = {
+ name = "_at_types_slash_mem";
+ packageName = "@types/mem";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/mem/-/mem-1.1.2.tgz";
+ sha1 = "e3c8b095f2f2563b518f0aad59df9fe6a8b82065";
+ };
+ };
+ "@types/mz-0.0.32" = {
+ name = "_at_types_slash_mz";
+ packageName = "@types/mz";
+ version = "0.0.32";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/mz/-/mz-0.0.32.tgz";
+ sha512 = "3i9s14bzsibxc5700404s654iygj7j301kvrkmyf1wy5ncglr1m9rcgysfy5zhmsjpp96g009fm66hy1py92imjfa77pb51n9wz4bbk";
+ };
+ };
+ "@types/node-7.0.52" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "7.0.52";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-7.0.52.tgz";
+ sha512 = "3jzvdqsd0pgl0ax2vbn9h8iawx4m6pjf21wb8lqz34glnacjz5l4qv2b3h53j2dbs497g6aqdvkxfahrwvkc9a1q5zy3c46q9174flf";
+ };
+ };
+ "@types/node-8.5.9" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "8.5.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-8.5.9.tgz";
+ sha512 = "2j38fqqziiv6m51w16lz6lgivrkycvn4nwch7sdpg32hbl5kv5m2ngg4y4jrf0v1s7iryi5gyh9729b8l1p48cf9hf0gj567h13grxk";
+ };
+ };
+ "@types/node-9.3.0" = {
+ name = "_at_types_slash_node";
+ packageName = "@types/node";
+ version = "9.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/node/-/node-9.3.0.tgz";
+ sha512 = "0mhmzddyv8rhkha7ibpbsa5dfygzaa90438aqzpg9w7d31n093a7spx2zg4zfki4qrab71xrfb381hmqajn826cnrw9kc7kv2y5zl60";
+ };
+ };
+ "@types/nopt-3.0.29" = {
+ name = "_at_types_slash_nopt";
+ packageName = "@types/nopt";
+ version = "3.0.29";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/nopt/-/nopt-3.0.29.tgz";
+ sha1 = "f19df3db4c97ee1459a2740028320a71d70964ce";
+ };
+ };
+ "@types/npm-2.0.29" = {
+ name = "_at_types_slash_npm";
+ packageName = "@types/npm";
+ version = "2.0.29";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/npm/-/npm-2.0.29.tgz";
+ sha512 = "1ccspslp1mil7f8w4dj3khyxxv5fpakkky4s4bnvvsd2b1hgvwahpv8bk83rr9aq2as2q6hi3143g3b6aynh3ybpf6d9mlksw6qdjii";
+ };
+ };
+ "@types/p-limit-1.1.2" = {
+ name = "_at_types_slash_p-limit";
+ packageName = "@types/p-limit";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/p-limit/-/p-limit-1.1.2.tgz";
+ sha512 = "21nzl33ss5mcflc6p0b0wgfhijb97nf1zr3s52ffvq8xy1l0svqwy3alqpj8g1ycsjisblh4xrcigrn2bzak702z4jnpxpbss02jx96";
+ };
+ };
+ "@types/p-queue-1.1.0" = {
+ name = "_at_types_slash_p-queue";
+ packageName = "@types/p-queue";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/p-queue/-/p-queue-1.1.0.tgz";
+ sha512 = "1881hys9v61yxxzjmwckxgf0z5i562ix7xb6ibzfb6qmf40hl1ah8l2dlbqiq3vsglmy56vbjcndsx7skjnzrcapamdnhwapfcazdwl";
+ };
+ };
+ "@types/p-series-1.0.1" = {
+ name = "_at_types_slash_p-series";
+ packageName = "@types/p-series";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/p-series/-/p-series-1.0.1.tgz";
+ sha512 = "0vpq52z9kblmkbqdp6icimy1qiyklhjarryn4n4svpa96srz4q7k98496rf3dcgy1wpn79jfvg4ddibvw88x7rbbb2jkrhz9gmzs2vp";
+ };
+ };
+ "@types/ramda-0.25.16" = {
+ name = "_at_types_slash_ramda";
+ packageName = "@types/ramda";
+ version = "0.25.16";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/ramda/-/ramda-0.25.16.tgz";
+ sha512 = "1an84z8hbgidxn2dbkg8ln94z7si3a6a4cchv3ax86ci9bryiqm6q576m1chfbfag5zjm2pxk2h7s16n0b6qgd3i5y9wj541w95mp4c";
+ };
+ };
+ "@types/rc-0.0.1" = {
+ name = "_at_types_slash_rc";
+ packageName = "@types/rc";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/rc/-/rc-0.0.1.tgz";
+ sha1 = "1f5b8a1b3b1ac6d1fee137c53fac5fa0f28ae0d7";
+ };
+ };
+ "@types/retry-0.10.2" = {
+ name = "_at_types_slash_retry";
+ packageName = "@types/retry";
+ version = "0.10.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/retry/-/retry-0.10.2.tgz";
+ sha512 = "18ksn4fqz03wac8179aagjcfibm1k6lrzlpy8nzig47jn083sr64bsw1mdzbdwfxypi8flimg2l1g9prq6r0fqjbqyjvvahhmin98if";
+ };
+ };
+ "@types/semver-5.4.0" = {
+ name = "_at_types_slash_semver";
+ packageName = "@types/semver";
+ version = "5.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/semver/-/semver-5.4.0.tgz";
+ sha512 = "256379swd2mh4gi5vxsgk9pf7387g32xkw1vsj1jhs7q4njds107nmkkxpaddjv5w5cqwbiwl64sil7bgqdcg8fyjfdg13wxyyc449w";
+ };
+ };
+ "@types/update-notifier-1.0.3" = {
+ name = "_at_types_slash_update-notifier";
+ packageName = "@types/update-notifier";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/update-notifier/-/update-notifier-1.0.3.tgz";
+ sha512 = "0fivfj3sqfmhj3z8sp11iqc0hgzyyn50pximpbx56jk7rkvvw40pl0qzdlzcf97vm5c6yvdsixasgm0vh24gh79grxm237n2cvavd04";
+ };
+ };
+ "@types/uuid-3.4.3" = {
+ name = "_at_types_slash_uuid";
+ packageName = "@types/uuid";
+ version = "3.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/uuid/-/uuid-3.4.3.tgz";
+ sha512 = "1psrs8sjpmhz8sz2zjkkd7743vzdi7q7vcj8p219q1pkfawr619rl1m5pczp69hbm1769kn8zwlbayjylhl7an5hkvkdd2bi04lpx75";
+ };
+ };
+ "@types/write-json-file-2.2.1" = {
+ name = "_at_types_slash_write-json-file";
+ packageName = "@types/write-json-file";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@types/write-json-file/-/write-json-file-2.2.1.tgz";
+ sha512 = "2sasn3m49kqb3y62b2k4avvmb5536z98sq6rkmq7wb441pxaxvqj1ajfxn08jxgg7d4bznfc7gf7knwdnbp2m8k83nimxg6jd9bzlr5";
+ };
+ };
+ "@zkochan/cmd-shim-2.2.4" = {
+ name = "_at_zkochan_slash_cmd-shim";
+ packageName = "@zkochan/cmd-shim";
+ version = "2.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-2.2.4.tgz";
+ sha512 = "0s6wbip576kwjkjcvgf3l6fszrbp1n7ijpjhwjy02hvdfb0hj9ynfi92ninp5blfd1mdhfp361cb76c2y4z1dbyxyc8q5cs7sivag04";
+ };
+ };
+ "@zkochan/libnpx-9.6.1" = {
+ name = "_at_zkochan_slash_libnpx";
+ packageName = "@zkochan/libnpx";
+ version = "9.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@zkochan/libnpx/-/libnpx-9.6.1.tgz";
+ sha512 = "3lwjqxnqxn1jq5fnsdh31mvy9q4y5i000qd7xmra7wlmalxag1py7903f36s1l8bxfxh8j409vpnrz8pkhnc5vwipdn91kdzl8qvxj7";
+ };
+ };
+ "@zkochan/npm-package-arg-1.0.0" = {
+ name = "_at_zkochan_slash_npm-package-arg";
+ packageName = "@zkochan/npm-package-arg";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@zkochan/npm-package-arg/-/npm-package-arg-1.0.0.tgz";
+ sha512 = "2v87vqr2pjg6phz5h8mngbymf3b4fmqawisjfng2c424qib6bwldhfvkwqxqfla4s2bzry1qb5dm89if3lddvi3dbp2xqvy9k1h3wxr";
+ };
+ };
+ "JSONStream-1.3.2" = {
+ name = "JSONStream";
+ packageName = "JSONStream";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz";
+ sha1 = "c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea";
+ };
+ };
+ "abbrev-1.1.1" = {
+ name = "abbrev";
+ packageName = "abbrev";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
+ sha512 = "38s4f3id97wsb0rg9nm9zvxyq0nvwrmrpa5dzvrkp36mf5ibs98b4z6lvsbrwzzs0sbcank6c7gpp06vcwp9acfhp41rzlhi3ybsxwy";
+ };
+ };
+ "abstract-random-access-1.1.2" = {
+ name = "abstract-random-access";
+ packageName = "abstract-random-access";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/abstract-random-access/-/abstract-random-access-1.1.2.tgz";
+ sha1 = "9a8eac8ff79866f3f9b4bb1443ca778f1598aeda";
+ };
+ };
+ "add-subtract-date-1.0.13" = {
+ name = "add-subtract-date";
+ packageName = "add-subtract-date";
+ version = "1.0.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/add-subtract-date/-/add-subtract-date-1.0.13.tgz";
+ sha512 = "1jpp2jqxqm1ljj8a6xs15yl579jc48fdx4kflfd0faa78gy91gda0svy4jdv5dqqj1c5ccssq24kyz1ck5c3g4qykia2x32qmc2rc5x";
+ };
+ };
+ "agent-base-4.2.0" = {
+ name = "agent-base";
+ packageName = "agent-base";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/agent-base/-/agent-base-4.2.0.tgz";
+ sha512 = "0i6q0c347f7z5c56gi1cggjiwvdhl3p9zfsysq66gqggk3prlqildnpva900rz8f8gfc8rav8jk7m51z9dhias0z7v3rnzyjm9pzr3k";
+ };
+ };
+ "agentkeepalive-3.3.0" = {
+ name = "agentkeepalive";
+ packageName = "agentkeepalive";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.3.0.tgz";
+ sha512 = "0svpj8gbh57a1l3zcds9kd8dkh4r2fyacpkrxvffbpj5pgvbf26h93q31niqbqsciswdxlx0fhikljqwg40lvmwxl299nb2gfjmqa7p";
+ };
+ };
+ "ajv-4.11.8" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "4.11.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
+ sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
+ };
+ };
+ "ajv-5.5.2" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "5.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
+ sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
+ };
+ };
+ "ansi-align-2.0.0" = {
+ name = "ansi-align";
+ packageName = "ansi-align";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz";
+ sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f";
+ };
+ };
+ "ansi-diff-stream-1.2.0" = {
+ name = "ansi-diff-stream";
+ packageName = "ansi-diff-stream";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-diff-stream/-/ansi-diff-stream-1.2.0.tgz";
+ sha1 = "eb325c20ac3623ecd592011a9295d76d97de460e";
+ };
+ };
+ "ansi-escapes-1.4.0" = {
+ name = "ansi-escapes";
+ packageName = "ansi-escapes";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz";
+ sha1 = "d3a8a83b319aa67793662b13e761c7911422306e";
+ };
+ };
+ "ansi-escapes-3.0.0" = {
+ name = "ansi-escapes";
+ packageName = "ansi-escapes";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz";
+ sha512 = "06szfav8g7xywvqsis16nnkjqs2snhv37r4m53l1ax8k2sahvqv9id2klam32jajqd08ylw8g9wbcjr971igx6vh8idan76drrjby9v";
+ };
+ };
+ "ansi-parser-2.0.0" = {
+ name = "ansi-parser";
+ packageName = "ansi-parser";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-parser/-/ansi-parser-2.0.0.tgz";
+ sha1 = "433498af32fee8c2a1df2c4e47941bc029bcf407";
+ };
+ };
+ "ansi-parser-3.0.0" = {
+ name = "ansi-parser";
+ packageName = "ansi-parser";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-parser/-/ansi-parser-3.0.0.tgz";
+ sha1 = "945c0e7232caf5675217375b3eb8892008c14629";
+ };
+ };
+ "ansi-parser-3.2.8" = {
+ name = "ansi-parser";
+ packageName = "ansi-parser";
+ version = "3.2.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-parser/-/ansi-parser-3.2.8.tgz";
+ sha1 = "ad80a6351ac5e58cc7e8a761abc037b5505041d0";
+ };
+ };
+ "ansi-regex-2.1.1" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
+ sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
+ };
+ };
+ "ansi-regex-3.0.0" = {
+ name = "ansi-regex";
+ packageName = "ansi-regex";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
+ sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
+ };
+ };
+ "ansi-styles-2.2.1" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
+ sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
+ };
+ };
+ "ansi-styles-3.2.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
+ sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n";
+ };
+ };
+ "ansicolors-0.3.2" = {
+ name = "ansicolors";
+ packageName = "ansicolors";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz";
+ sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979";
+ };
+ };
+ "ansistyles-0.1.3" = {
+ name = "ansistyles";
+ packageName = "ansistyles";
+ version = "0.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz";
+ sha1 = "5de60415bda071bb37127854c864f41b23254539";
+ };
+ };
+ "ansy-1.0.13" = {
+ name = "ansy";
+ packageName = "ansy";
+ version = "1.0.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansy/-/ansy-1.0.13.tgz";
+ sha512 = "1a13d7ws8k5vnckqfbrlmmmdxxmj0fjlsgs4h1g8ymmm6fz019gykr01kr479dsqzikgcbmz56jnfj1jjknllij7b840w7mzhvpxvyc";
+ };
+ };
+ "any-promise-1.3.0" = {
+ name = "any-promise";
+ packageName = "any-promise";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz";
+ sha1 = "abc6afeedcea52e809cdc0376aed3ce39635d17f";
+ };
+ };
+ "anymatch-1.3.2" = {
+ name = "anymatch";
+ packageName = "anymatch";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz";
+ sha512 = "269dbx666z4ws49vag1dma5kdpjlx83s74c1jlngrn2672rhvbc47i5ay5h40spmrzgvbvcm33i4yrp88rrc6lg70v78k155z45lwyi";
+ };
+ };
+ "ap-0.1.0" = {
+ name = "ap";
+ packageName = "ap";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ap/-/ap-0.1.0.tgz";
+ sha1 = "d8a3f26615379398a1b53ca6cc1a666a0fbfe150";
+ };
+ };
+ "append-tree-2.4.1" = {
+ name = "append-tree";
+ packageName = "append-tree";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.1.tgz";
+ sha512 = "2zb14nlfxs726ng8jhfpf6n9b9kw32smg2krcl0vj90dfrkcc20fm36j2zgdd49b2ln1z4jz2wvvy4qgss14zzfr3rps719h6vlyjg7";
+ };
+ };
+ "aproba-1.2.0" = {
+ name = "aproba";
+ packageName = "aproba";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
+ sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3";
+ };
+ };
+ "archy-1.0.0" = {
+ name = "archy";
+ packageName = "archy";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz";
+ sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
+ };
+ };
+ "are-we-there-yet-1.1.4" = {
+ name = "are-we-there-yet";
+ packageName = "are-we-there-yet";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz";
+ sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d";
+ };
+ };
+ "argparse-1.0.9" = {
+ name = "argparse";
+ packageName = "argparse";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz";
+ sha1 = "73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86";
+ };
+ };
+ "arr-diff-2.0.0" = {
+ name = "arr-diff";
+ packageName = "arr-diff";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz";
+ sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
+ };
+ };
+ "arr-flatten-1.1.0" = {
+ name = "arr-flatten";
+ packageName = "arr-flatten";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
+ sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g";
+ };
+ };
+ "array-find-index-1.0.2" = {
+ name = "array-find-index";
+ packageName = "array-find-index";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz";
+ sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
+ };
+ };
+ "array-flatten-2.1.1" = {
+ name = "array-flatten";
+ packageName = "array-flatten";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.1.tgz";
+ sha1 = "426bb9da84090c1838d812c8150af20a8331e296";
+ };
+ };
+ "array-includes-3.0.3" = {
+ name = "array-includes";
+ packageName = "array-includes";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz";
+ sha1 = "184b48f62d92d7452bb31b323165c7f8bd02266d";
+ };
+ };
+ "array-lru-1.1.1" = {
+ name = "array-lru";
+ packageName = "array-lru";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-lru/-/array-lru-1.1.1.tgz";
+ sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337";
+ };
+ };
+ "array-union-1.0.2" = {
+ name = "array-union";
+ packageName = "array-union";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz";
+ sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39";
+ };
+ };
+ "array-uniq-1.0.3" = {
+ name = "array-uniq";
+ packageName = "array-uniq";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz";
+ sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6";
+ };
+ };
+ "array-unique-0.2.1" = {
+ name = "array-unique";
+ packageName = "array-unique";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz";
+ sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53";
+ };
+ };
+ "arrify-1.0.1" = {
+ name = "arrify";
+ packageName = "arrify";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz";
+ sha1 = "898508da2226f380df904728456849c1501a4b0d";
+ };
+ };
+ "as-table-1.0.31" = {
+ name = "as-table";
+ packageName = "as-table";
+ version = "1.0.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/as-table/-/as-table-1.0.31.tgz";
+ sha1 = "d00180024ecbb6d1a747150df751d3716aea8166";
+ };
+ };
+ "asap-2.0.6" = {
+ name = "asap";
+ packageName = "asap";
+ version = "2.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz";
+ sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46";
+ };
+ };
+ "asn1-0.2.3" = {
+ name = "asn1";
+ packageName = "asn1";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz";
+ sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
+ };
+ };
+ "assert-plus-0.2.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
+ sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
+ };
+ };
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
+ };
+ };
+ "async-0.9.2" = {
+ name = "async";
+ packageName = "async";
+ version = "0.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz";
+ sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
+ };
+ };
+ "async-1.0.0" = {
+ name = "async";
+ packageName = "async";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
+ sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
+ };
+ };
+ "async-2.1.5" = {
+ name = "async";
+ packageName = "async";
+ version = "2.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz";
+ sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
+ };
+ };
+ "asynckit-0.4.0" = {
+ name = "asynckit";
+ packageName = "asynckit";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
+ sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
+ };
+ };
+ "atomic-batcher-1.0.2" = {
+ name = "atomic-batcher";
+ packageName = "atomic-batcher";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/atomic-batcher/-/atomic-batcher-1.0.2.tgz";
+ sha1 = "d16901d10ccec59516c197b9ccd8930689b813b4";
+ };
+ };
+ "aws-sign2-0.6.0" = {
+ name = "aws-sign2";
+ packageName = "aws-sign2";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
+ sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
+ };
+ };
+ "aws-sign2-0.7.0" = {
+ name = "aws-sign2";
+ packageName = "aws-sign2";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz";
+ sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
+ };
+ };
+ "aws4-1.6.0" = {
+ name = "aws4";
+ packageName = "aws4";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz";
+ sha1 = "83ef5ca860b2b32e4a0deedee8c771b9db57471e";
+ };
+ };
+ "babel-runtime-6.26.0" = {
+ name = "babel-runtime";
+ packageName = "babel-runtime";
+ version = "6.26.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz";
+ sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe";
+ };
+ };
+ "balanced-match-1.0.0" = {
+ name = "balanced-match";
+ packageName = "balanced-match";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
+ sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
+ };
+ };
+ "base64-js-0.0.8" = {
+ name = "base64-js";
+ packageName = "base64-js";
+ version = "0.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz";
+ sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978";
+ };
+ };
+ "bcrypt-pbkdf-1.0.1" = {
+ name = "bcrypt-pbkdf";
+ packageName = "bcrypt-pbkdf";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz";
+ sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d";
+ };
+ };
+ "bencode-1.0.0" = {
+ name = "bencode";
+ packageName = "bencode";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bencode/-/bencode-1.0.0.tgz";
+ sha512 = "1kvjv5hs1c53b5g2vghpnncn4zj397sa0vpbx1pzpn8ngq52s3xq9923gnl2kzkh1mhyrl277jrh87a766yks89qvz8b4jczr44xr9p";
+ };
+ };
+ "bindings-1.3.0" = {
+ name = "bindings";
+ packageName = "bindings";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz";
+ sha512 = "15lvjac4av3h7xmks8jgd56vryz5xb27r8xcpfwhfyr9dv305lms5llc1x6nx6nfvha873d4vg04nfi89aj4jkxplrnjiyc9kjf34hf";
+ };
+ };
+ "bitfield-rle-2.1.0" = {
+ name = "bitfield-rle";
+ packageName = "bitfield-rle";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bitfield-rle/-/bitfield-rle-2.1.0.tgz";
+ sha1 = "ae29e9382a7ba4898de9f48bb23fd338c4fbdcf8";
+ };
+ };
+ "bittorrent-dht-7.10.0" = {
+ name = "bittorrent-dht";
+ packageName = "bittorrent-dht";
+ version = "7.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-7.10.0.tgz";
+ sha512 = "10md5792s6q3xwdrmwh1a8ax9w128g607b5qsbxzw8x0gl9184g754hprchl6mq8lmf4f8qylk2h8vavsnbn9yy9gzjnyh2kwrzmxky";
+ };
+ };
+ "bl-1.2.1" = {
+ name = "bl";
+ packageName = "bl";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bl/-/bl-1.2.1.tgz";
+ sha1 = "cac328f7bee45730d404b692203fcb590e172d5e";
+ };
+ };
+ "blake2b-2.1.2" = {
+ name = "blake2b";
+ packageName = "blake2b";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/blake2b/-/blake2b-2.1.2.tgz";
+ sha1 = "6880eddca35cfede92c4fb2724221334f989145a";
+ };
+ };
+ "blake2b-wasm-1.1.7" = {
+ name = "blake2b-wasm";
+ packageName = "blake2b-wasm";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.7.tgz";
+ sha512 = "1q4aaql83818qzgh01c6x9jvcchmd6bq7r0kfs3f364vhwxnp7qc25y3h2ij5751mi1zhh96874ib0afn8an92xh3ag1kv5g2yhflm0";
+ };
+ };
+ "block-stream-0.0.9" = {
+ name = "block-stream";
+ packageName = "block-stream";
+ version = "0.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
+ sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
+ };
+ };
+ "bluebird-3.5.1" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "3.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz";
+ sha512 = "2631bhp784qng0ifbypsmvijn6kjfvkhq2335kdz8ix5qi3wb3lbpg94xjn1av2s6i95ygr5a4y9j1721dw6zdbywwh1m48by4qpa1h";
+ };
+ };
+ "body-0.1.0" = {
+ name = "body";
+ packageName = "body";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/body/-/body-0.1.0.tgz";
+ sha1 = "e714fe28cd8848aa34cdf2c9f242bbe2e15d1cd8";
+ };
+ };
+ "bole-3.0.2" = {
+ name = "bole";
+ packageName = "bole";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bole/-/bole-3.0.2.tgz";
+ sha1 = "bc8a483ca94049da9b837c1ad11cdfebee6e0514";
+ };
+ };
+ "boom-2.10.1" = {
+ name = "boom";
+ packageName = "boom";
+ version = "2.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
+ sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
+ };
+ };
+ "boom-4.3.1" = {
+ name = "boom";
+ packageName = "boom";
+ version = "4.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz";
+ sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31";
+ };
+ };
+ "boom-5.2.0" = {
+ name = "boom";
+ packageName = "boom";
+ version = "5.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz";
+ sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437";
+ };
+ };
+ "boxen-1.3.0" = {
+ name = "boxen";
+ packageName = "boxen";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz";
+ sha512 = "0pmn5jcnph7yfgfhlncg1lys066cq44kavj4d9qhmyy9705w61pabpwlma09xg4xplzbxh78d3m4xwvjwk478r3xyqnmpzq79yy7lsc";
+ };
+ };
+ "brace-expansion-1.1.8" = {
+ name = "brace-expansion";
+ packageName = "brace-expansion";
+ version = "1.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz";
+ sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292";
+ };
+ };
+ "braces-1.8.5" = {
+ name = "braces";
+ packageName = "braces";
+ version = "1.8.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz";
+ sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7";
+ };
+ };
+ "browser-stdout-1.3.0" = {
+ name = "browser-stdout";
+ packageName = "browser-stdout";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz";
+ sha1 = "f351d32969d32fa5d7a5567154263d928ae3bd1f";
+ };
+ };
+ "browserify-zlib-0.1.4" = {
+ name = "browserify-zlib";
+ packageName = "browserify-zlib";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz";
+ sha1 = "bb35f8a519f600e0fa6b8485241c979d0141fb2d";
+ };
+ };
+ "buffer-3.6.0" = {
+ name = "buffer";
+ packageName = "buffer";
+ version = "3.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz";
+ sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb";
+ };
+ };
+ "buffer-alloc-unsafe-1.0.0" = {
+ name = "buffer-alloc-unsafe";
+ packageName = "buffer-alloc-unsafe";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.0.0.tgz";
+ sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe";
+ };
+ };
+ "buffer-equals-1.0.4" = {
+ name = "buffer-equals";
+ packageName = "buffer-equals";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz";
+ sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
+ };
+ };
+ "buffer-indexof-1.1.1" = {
+ name = "buffer-indexof";
+ packageName = "buffer-indexof";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz";
+ sha512 = "3bgz1zhq9ng3gypq825f00p9qi9y6z7wvkkf28nhjlyifnb3lk1dkmbya84k0ja79zv8kmmhvalwcnnz92533ip7pnjp3is1w9cxyp3";
+ };
+ };
+ "bug-killer-4.4.4" = {
+ name = "bug-killer";
+ packageName = "bug-killer";
+ version = "4.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bug-killer/-/bug-killer-4.4.4.tgz";
+ sha1 = "96e0322b9437a2b0672d78aacd1ed2bef11f945a";
+ };
+ };
+ "builtin-modules-1.1.1" = {
+ name = "builtin-modules";
+ packageName = "builtin-modules";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz";
+ sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f";
+ };
+ };
+ "builtins-1.0.3" = {
+ name = "builtins";
+ packageName = "builtins";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz";
+ sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
+ };
+ };
+ "bulk-write-stream-1.1.3" = {
+ name = "bulk-write-stream";
+ packageName = "bulk-write-stream";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.3.tgz";
+ sha1 = "d29ca385fbd53f357aee5bd3d3028732b62ae275";
+ };
+ };
+ "byline-5.0.0" = {
+ name = "byline";
+ packageName = "byline";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz";
+ sha1 = "741c5216468eadc457b03410118ad77de8c1ddb1";
+ };
+ };
"bytes-3.0.0" = {
name = "bytes";
packageName = "bytes";
@@ -13,6 +1192,96 @@ let
sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048";
};
};
+ "bzip2-maybe-1.0.0" = {
+ name = "bzip2-maybe";
+ packageName = "bzip2-maybe";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bzip2-maybe/-/bzip2-maybe-1.0.0.tgz";
+ sha1 = "c9aef7008a6b943cbe99cc617125eb4bd478296b";
+ };
+ };
+ "cacache-10.0.2" = {
+ name = "cacache";
+ packageName = "cacache";
+ version = "10.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cacache/-/cacache-10.0.2.tgz";
+ sha512 = "1nn7is7pd6vgcf96b9hym6ia3a0adgw2r4a4ckbb9ykm6risqsnw16kgqfrwvi37mpkzizricfnkns7d0d7agh1laws73imv7nxnn3n";
+ };
+ };
+ "cacache-9.2.9" = {
+ name = "cacache";
+ packageName = "cacache";
+ version = "9.2.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cacache/-/cacache-9.2.9.tgz";
+ sha512 = "11qjza6qy62lkvynngcvx7nf2vhxvvp4g0l07a8zw5pzqc5iy0zznxzgs0dw1bb2i10dr2v7i624x6v9pkzp55snam9wk5jjf7ka642";
+ };
+ };
+ "cacheable-request-2.1.4" = {
+ name = "cacheable-request";
+ packageName = "cacheable-request";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz";
+ sha1 = "0d808801b6342ad33c91df9d0b44dc09b91e5c3d";
+ };
+ };
+ "call-limit-1.1.0" = {
+ name = "call-limit";
+ packageName = "call-limit";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/call-limit/-/call-limit-1.1.0.tgz";
+ sha1 = "6fd61b03f3da42a2cd0ec2b60f02bd0e71991fea";
+ };
+ };
+ "call-me-maybe-1.0.1" = {
+ name = "call-me-maybe";
+ packageName = "call-me-maybe";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz";
+ sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b";
+ };
+ };
+ "camelcase-4.1.0" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz";
+ sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
+ };
+ };
+ "capture-stack-trace-1.0.0" = {
+ name = "capture-stack-trace";
+ packageName = "capture-stack-trace";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.0.tgz";
+ sha1 = "4a6fa07399c26bba47f0b2496b4d0fb408c5550d";
+ };
+ };
+ "caseless-0.12.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
+ sha1 = "1b681c21ff84033c826543090689420d187151dc";
+ };
+ };
+ "chalk-1.1.3" = {
+ name = "chalk";
+ packageName = "chalk";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
+ sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
+ };
+ };
"chalk-2.3.0" = {
name = "chalk";
packageName = "chalk";
@@ -22,6 +1291,87 @@ let
sha512 = "3fj8njcdcvyplivm2fj19lqw8qv7gb8v7gd6a223pmn8f3di4zwkhyb09vzlmw3pnk4ib88kp4cg8r9i5k5rskalzdfh1l23ljp6gh3";
};
};
+ "chownr-1.0.1" = {
+ name = "chownr";
+ packageName = "chownr";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz";
+ sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181";
+ };
+ };
+ "ci-info-1.1.2" = {
+ name = "ci-info";
+ packageName = "ci-info";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ci-info/-/ci-info-1.1.2.tgz";
+ sha512 = "1jbmihk48iby72h0b6k4rvhrnaydml49qyjcb83ix310ivjzd4zmdk3yxx1ssn6ryjblm7xzaswnwj53rxwcyn1fr0jm7bzvhy8hcdr";
+ };
+ };
+ "cidr-regex-1.0.6" = {
+ name = "cidr-regex";
+ packageName = "cidr-regex";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cidr-regex/-/cidr-regex-1.0.6.tgz";
+ sha1 = "74abfd619df370b9d54ab14475568e97dd64c0c1";
+ };
+ };
+ "class-methods-1.0.10" = {
+ name = "class-methods";
+ packageName = "class-methods";
+ version = "1.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/class-methods/-/class-methods-1.0.10.tgz";
+ sha512 = "2j59qyqmhdcldp2k34mrcfx2rqblcv1c2902zzin1fzqamys2jxs32q341k4faclld17w96w7x3hnv2vjinn0jq0b6a7ld1icaay2wv";
+ };
+ };
+ "cli-box-5.0.0" = {
+ name = "cli-box";
+ packageName = "cli-box";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-box/-/cli-box-5.0.0.tgz";
+ sha1 = "870ea8aa77e7c25179416ceccfe5ed0690804602";
+ };
+ };
+ "cli-boxes-1.0.0" = {
+ name = "cli-boxes";
+ packageName = "cli-boxes";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz";
+ sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143";
+ };
+ };
+ "cli-cursor-2.1.0" = {
+ name = "cli-cursor";
+ packageName = "cli-cursor";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz";
+ sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5";
+ };
+ };
+ "cli-table-0.3.1" = {
+ name = "cli-table";
+ packageName = "cli-table";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz";
+ sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23";
+ };
+ };
+ "cli-table2-0.2.0" = {
+ name = "cli-table2";
+ packageName = "cli-table2";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-table2/-/cli-table2-0.2.0.tgz";
+ sha1 = "2d1ef7f218a0e786e214540562d4bd177fe32d97";
+ };
+ };
"cli-truncate-1.1.0" = {
name = "cli-truncate";
packageName = "cli-truncate";
@@ -31,6 +1381,402 @@ let
sha512 = "1h48346i2bsfvj3h0qfxmyh1770cxb3d9ibk75yjag1xgzk021yqbmkiv30k5c0qgyb0sxkvjc3sckmakf4i7q1d2gh1nmw9fimj2vc";
};
};
+ "cliclopts-1.1.1" = {
+ name = "cliclopts";
+ packageName = "cliclopts";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cliclopts/-/cliclopts-1.1.1.tgz";
+ sha1 = "69431c7cb5af723774b0d3911b4c37512431910f";
+ };
+ };
+ "cliui-3.2.0" = {
+ name = "cliui";
+ packageName = "cliui";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz";
+ sha1 = "120601537a916d29940f934da3b48d585a39213d";
+ };
+ };
+ "clone-1.0.3" = {
+ name = "clone";
+ packageName = "clone";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone/-/clone-1.0.3.tgz";
+ sha1 = "298d7e2231660f40c003c2ed3140decf3f53085f";
+ };
+ };
+ "clone-response-1.0.2" = {
+ name = "clone-response";
+ packageName = "clone-response";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz";
+ sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b";
+ };
+ };
+ "clp-3.2.1" = {
+ name = "clp";
+ packageName = "clp";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clp/-/clp-3.2.1.tgz";
+ sha1 = "af1ed66db895a5c9ce9b6d32e9c33dee02b3edf2";
+ };
+ };
+ "cmd-shim-2.0.2" = {
+ name = "cmd-shim";
+ packageName = "cmd-shim";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-2.0.2.tgz";
+ sha1 = "6fcbda99483a8fd15d7d30a196ca69d688a2efdb";
+ };
+ };
+ "co-4.6.0" = {
+ name = "co";
+ packageName = "co";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
+ sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
+ };
+ };
+ "code-point-at-1.1.0" = {
+ name = "code-point-at";
+ packageName = "code-point-at";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
+ sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
+ };
+ };
+ "codecs-1.2.0" = {
+ name = "codecs";
+ packageName = "codecs";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/codecs/-/codecs-1.2.0.tgz";
+ sha1 = "5148549e3d156c5fa053d7cbb419715a0cf43d16";
+ };
+ };
+ "color-convert-1.9.1" = {
+ name = "color-convert";
+ packageName = "color-convert";
+ version = "1.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz";
+ sha512 = "32rj1090g95xcvm0d2ya6jbqdhiy9w2wv3picdy33fzrm455v0gi7g4n8lw0n31g37wwbdnz7lxjsisgbsaqz1d10j9nh5hi2f9lccs";
+ };
+ };
+ "color-name-1.1.3" = {
+ name = "color-name";
+ packageName = "color-name";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
+ sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
+ };
+ };
+ "colors-1.0.3" = {
+ name = "colors";
+ packageName = "colors";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
+ sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
+ };
+ };
+ "colors-1.1.2" = {
+ name = "colors";
+ packageName = "colors";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
+ sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
+ };
+ };
+ "columnify-1.5.4" = {
+ name = "columnify";
+ packageName = "columnify";
+ version = "1.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz";
+ sha1 = "4737ddf1c7b69a8a7c340570782e947eec8e78bb";
+ };
+ };
+ "combined-stream-1.0.5" = {
+ name = "combined-stream";
+ packageName = "combined-stream";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz";
+ sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009";
+ };
+ };
+ "commander-2.11.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz";
+ sha512 = "2yi2hwf0bghfnv1fdgd4wvh7s0acjrgqbgww97ncm6i6s6ffs1zahnj48f6gqpqj6fsf0jigvnr0civ25k2160c38281r80wvg7jkkg";
+ };
+ };
+ "commander-2.9.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz";
+ sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
+ };
+ };
+ "common-tags-1.7.2" = {
+ name = "common-tags";
+ packageName = "common-tags";
+ version = "1.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/common-tags/-/common-tags-1.7.2.tgz";
+ sha512 = "0jx2cncv7x5ms1gg2vks5bhxi9c5jbwymfk42dzmp9vrxrmhrl9vaw4wsh4lvf65shxmq1v8f8s0i3rkyk2x8mrfpq2m30famkgv24f";
+ };
+ };
+ "concat-map-0.0.1" = {
+ name = "concat-map";
+ packageName = "concat-map";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
+ sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
+ };
+ };
+ "concat-stream-1.6.0" = {
+ name = "concat-stream";
+ packageName = "concat-stream";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz";
+ sha1 = "0aac662fd52be78964d5532f694784e70110acf7";
+ };
+ };
+ "config-chain-1.1.11" = {
+ name = "config-chain";
+ packageName = "config-chain";
+ version = "1.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.11.tgz";
+ sha1 = "aba09747dfbe4c3e70e766a6e41586e1859fc6f2";
+ };
+ };
+ "configstore-3.1.1" = {
+ name = "configstore";
+ packageName = "configstore";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/configstore/-/configstore-3.1.1.tgz";
+ sha512 = "2zmidvkp20q25yv6a5d7k1daawdg0w6ppgayxzpwfhyvmgwybkkv7ni0j4b2j9c8wjn8z33zf5d4bjr8jywb5qixc75vypyy87n90z6";
+ };
+ };
+ "connections-1.4.2" = {
+ name = "connections";
+ packageName = "connections";
+ version = "1.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/connections/-/connections-1.4.2.tgz";
+ sha1 = "7890482bf5c71af6c5ca192be3136aed74428aad";
+ };
+ };
+ "console-control-strings-1.1.0" = {
+ name = "console-control-strings";
+ packageName = "console-control-strings";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
+ sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
+ };
+ };
+ "content-types-0.1.0" = {
+ name = "content-types";
+ packageName = "content-types";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/content-types/-/content-types-0.1.0.tgz";
+ sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
+ };
+ };
+ "copy-concurrently-1.0.5" = {
+ name = "copy-concurrently";
+ packageName = "copy-concurrently";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz";
+ sha512 = "3c1ggiqqnjgqlwdnimx94gm176c8rjsrih5qw2lbm642l8x7grx07v065k4j89c1p0adkm7v6sz11drb6j6sp51np2m1cazvycnhrvz";
+ };
+ };
+ "core-js-2.5.3" = {
+ name = "core-js";
+ packageName = "core-js";
+ version = "2.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-js/-/core-js-2.5.3.tgz";
+ sha1 = "8acc38345824f16d8365b7c9b4259168e8ed603e";
+ };
+ };
+ "core-util-is-1.0.2" = {
+ name = "core-util-is";
+ packageName = "core-util-is";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
+ sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
+ };
+ };
+ "corsify-2.1.0" = {
+ name = "corsify";
+ packageName = "corsify";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/corsify/-/corsify-2.1.0.tgz";
+ sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0";
+ };
+ };
+ "couleurs-5.0.0" = {
+ name = "couleurs";
+ packageName = "couleurs";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/couleurs/-/couleurs-5.0.0.tgz";
+ sha1 = "1cd3ace5cca1bec0041578b27464b2676387f6db";
+ };
+ };
+ "couleurs-6.0.9" = {
+ name = "couleurs";
+ packageName = "couleurs";
+ version = "6.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/couleurs/-/couleurs-6.0.9.tgz";
+ sha1 = "b2b2a3ee37dae51875c9efd243ec7e7894afbc9e";
+ };
+ };
+ "create-error-class-3.0.2" = {
+ name = "create-error-class";
+ packageName = "create-error-class";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz";
+ sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
+ };
+ };
+ "credentials-by-uri-1.0.0" = {
+ name = "credentials-by-uri";
+ packageName = "credentials-by-uri";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/credentials-by-uri/-/credentials-by-uri-1.0.0.tgz";
+ sha512 = "3c5r91jgf91szpxfh7rh0c5wi3xzck43b8kzgmxi3ppw29hj9v9is6a3jh5divbgg7dr5diw6zysri7mpvji5jagh2ain0mcj81knjs";
+ };
+ };
+ "cross-spawn-5.1.0" = {
+ name = "cross-spawn";
+ packageName = "cross-spawn";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz";
+ sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449";
+ };
+ };
+ "cryptiles-2.0.5" = {
+ name = "cryptiles";
+ packageName = "cryptiles";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
+ sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
+ };
+ };
+ "cryptiles-3.1.2" = {
+ name = "cryptiles";
+ packageName = "cryptiles";
+ version = "3.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz";
+ sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe";
+ };
+ };
+ "crypto-random-string-1.0.0" = {
+ name = "crypto-random-string";
+ packageName = "crypto-random-string";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz";
+ sha1 = "a230f64f568310e1498009940790ec99545bca7e";
+ };
+ };
+ "csv-parser-1.12.0" = {
+ name = "csv-parser";
+ packageName = "csv-parser";
+ version = "1.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/csv-parser/-/csv-parser-1.12.0.tgz";
+ sha512 = "3amd2y4wd86nqpmj4ngich00g73ldp4di353338vjdsgch52zgc7fl6mgh1yfm9n46nlifh7p0c6y8i8p5al90crkbfnsxw561m9lli";
+ };
+ };
+ "currently-unhandled-0.4.1" = {
+ name = "currently-unhandled";
+ packageName = "currently-unhandled";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz";
+ sha1 = "988df33feab191ef799a61369dd76c17adf957ea";
+ };
+ };
+ "custom-return-1.0.10" = {
+ name = "custom-return";
+ packageName = "custom-return";
+ version = "1.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/custom-return/-/custom-return-1.0.10.tgz";
+ sha512 = "3pk09pi85idb0ycy2hmh3k2cbphacc3hr7rdv157gb93vvk9hfgjnc9dv0k1qvb11h46zpya9njb07f9whrmn31zbx8cf1hchmknpaq";
+ };
+ };
+ "cycle-1.0.3" = {
+ name = "cycle";
+ packageName = "cycle";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz";
+ sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
+ };
+ };
+ "cyclist-0.2.2" = {
+ name = "cyclist";
+ packageName = "cyclist";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz";
+ sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640";
+ };
+ };
+ "dashdash-1.14.1" = {
+ name = "dashdash";
+ packageName = "dashdash";
+ version = "1.14.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
+ sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
+ };
+ };
+ "dat-dns-1.3.2" = {
+ name = "dat-dns";
+ packageName = "dat-dns";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-dns/-/dat-dns-1.3.2.tgz";
+ sha512 = "0yyadc98mdpvqdszc1v26zcgd6zqxink2wrhxw9ax60wk0sxqw6mm3m2jbqvibj54p1gjsmgsf1yhv20xsm77kkb7qwj79jlx8kvfad";
+ };
+ };
"dat-doctor-1.3.1" = {
name = "dat-doctor";
packageName = "dat-doctor";
@@ -49,6 +1795,24 @@ let
sha1 = "b01068fe0d080f3d3e4985a0c4ad21b7c14675f6";
};
};
+ "dat-encoding-5.0.1" = {
+ name = "dat-encoding";
+ packageName = "dat-encoding";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-encoding/-/dat-encoding-5.0.1.tgz";
+ sha512 = "2lc9p062gaa2xrf07z14xqgid3rw5fg05ak3s13g3mrr5hf8zxmdvp3lq4wggj7k5pc2c43r3d4yyy7rfrqafsdm7hfisdda4zgsi1w";
+ };
+ };
+ "dat-ignore-2.0.0" = {
+ name = "dat-ignore";
+ packageName = "dat-ignore";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.0.0.tgz";
+ sha512 = "1s78mv3ngs1v1cgpcp97y1xmns97m2r6gjkkrksl63j5d870vpsmmrhsfm1vw4q0dz4c1yfnfcpijlgbqai9c5d2zj1lz56rih0kxk8";
+ };
+ };
"dat-json-1.0.1" = {
name = "dat-json";
packageName = "dat-json";
@@ -58,13 +1822,13 @@ let
sha512 = "13nn20vg6jx1h8ypazv9zn236hvv29wwq52mdbbfl77zrg8d7syni933v2mm3y1jsk25c7dc2gs1876fz0yblniryncnbjxrf0aq0nq";
};
};
- "dat-link-resolve-1.1.1" = {
+ "dat-link-resolve-2.1.0" = {
name = "dat-link-resolve";
packageName = "dat-link-resolve";
- version = "1.1.1";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-1.1.1.tgz";
- sha512 = "3a3rmwv687r07qnzdp4k15ng7xbbgibssjiqjvhhhrxq5mc22m34g7hi1h15rqjs3zzlajn291j3xv9af22j3fynpygky13zzvxj367";
+ url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.1.0.tgz";
+ sha512 = "0dzpf71lpzr1z3g6m3v29xvcs9r12sgjpzzmg2viy3azkgpscl7p2v8im2ibsa22q64abifkibb4nc3nshs19wvai67m3gdqx15qzvn";
};
};
"dat-log-1.1.1" = {
@@ -94,1219 +1858,13 @@ let
sha512 = "0h84fdzm556p412p1xr0nl6ldf5xjd0qnd37im41bq78zm7lg4j4klcahg9pix1f0qdyd6gqz2a2j67z6vpb776v1bd0n1hr67pp988";
};
};
- "debug-3.1.0" = {
- name = "debug";
- packageName = "debug";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz";
- sha512 = "3g1hqsahr1ks2kpvdxrwzr57fj90nnr0hvwwrw8yyyzcv3i11sym8zwibxx67bl1mln0acddrzpkkdjjxnc6n2cm9fazmgzzsl1fzrr";
- };
- };
- "neat-log-1.1.2" = {
- name = "neat-log";
- packageName = "neat-log";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/neat-log/-/neat-log-1.1.2.tgz";
- sha512 = "15fbq2bchsjk85zklc34xl74skmdxbipsf0zjf1k6jfq1fr31h5bn7c6438ff55i9yzrhf11k85ahvahyb73khfjl4sj59zjrqksj9d";
- };
- };
- "prettier-bytes-1.0.4" = {
- name = "prettier-bytes";
- packageName = "prettier-bytes";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/prettier-bytes/-/prettier-bytes-1.0.4.tgz";
- sha1 = "994b02aa46f699c50b6257b5faaa7fe2557e62d6";
- };
- };
- "progress-string-1.2.2" = {
- name = "progress-string";
- packageName = "progress-string";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/progress-string/-/progress-string-1.2.2.tgz";
- sha512 = "07n7s98b5fqdx9jspg14zkw0dndfdpbrd12f5nj5c7m6aifvl4nn27qdbrgy6gzb837cs86cakldqh5kwbi7fv6ra9ll9q83qhsya97";
- };
- };
- "prompt-1.0.0" = {
- name = "prompt";
- packageName = "prompt";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/prompt/-/prompt-1.0.0.tgz";
- sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe";
- };
- };
- "pump-1.0.3" = {
- name = "pump";
- packageName = "pump";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz";
- sha512 = "2mj8bx34brvh97wd2xcn5phgyd2wh3l1ma2xfd0m53yf68w1izp46pmz0s9az5f36mhlvl0mvfd6hp5abhi75fhyrz9wyx6jnx0jkgj";
- };
- };
- "rimraf-2.6.2" = {
- name = "rimraf";
- packageName = "rimraf";
- version = "2.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
- sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn";
- };
- };
- "speedometer-1.0.0" = {
- name = "speedometer";
- packageName = "speedometer";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz";
- sha1 = "cd671cb06752c22bca3370e2f334440be4fc62e2";
- };
- };
- "subcommand-2.1.0" = {
- name = "subcommand";
- packageName = "subcommand";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/subcommand/-/subcommand-2.1.0.tgz";
- sha1 = "5e4ceca5a3779e3365b1511e05f866877302f760";
- };
- };
- "throttle-1.0.3" = {
- name = "throttle";
- packageName = "throttle";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/throttle/-/throttle-1.0.3.tgz";
- sha1 = "8a32e4a15f1763d997948317c5ebe3ad8a41e4b7";
- };
- };
- "xtend-4.0.1" = {
- name = "xtend";
- packageName = "xtend";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
- sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
- };
- };
- "ansi-styles-3.2.0" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
- sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n";
- };
- };
- "escape-string-regexp-1.0.5" = {
- name = "escape-string-regexp";
- packageName = "escape-string-regexp";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
- };
- };
- "supports-color-4.5.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "4.5.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz";
- sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b";
- };
- };
- "color-convert-1.9.1" = {
- name = "color-convert";
- packageName = "color-convert";
- version = "1.9.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz";
- sha512 = "32rj1090g95xcvm0d2ya6jbqdhiy9w2wv3picdy33fzrm455v0gi7g4n8lw0n31g37wwbdnz7lxjsisgbsaqz1d10j9nh5hi2f9lccs";
- };
- };
- "color-name-1.1.3" = {
- name = "color-name";
- packageName = "color-name";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz";
- sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25";
- };
- };
- "has-flag-2.0.0" = {
- name = "has-flag";
- packageName = "has-flag";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz";
- sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51";
- };
- };
- "slice-ansi-1.0.0" = {
- name = "slice-ansi";
- packageName = "slice-ansi";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz";
- sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw";
- };
- };
- "string-width-2.1.1" = {
- name = "string-width";
- packageName = "string-width";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
- sha512 = "29s1fqgr4mnhfxwczgdghfmmc1f792m9hysvcjxw2h5lfj8ndf2b6gm02m96qk5m75g4aisijvng4pk618anwbr8i9ay2jyszkqgslw";
- };
- };
- "is-fullwidth-code-point-2.0.0" = {
- name = "is-fullwidth-code-point";
- packageName = "is-fullwidth-code-point";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
- sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
- };
- };
- "strip-ansi-4.0.0" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
+ "dat-secret-storage-4.0.0" = {
+ name = "dat-secret-storage";
+ packageName = "dat-secret-storage";
version = "4.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
- sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
- };
- };
- "ansi-regex-3.0.0" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz";
- sha1 = "ed0317c322064f79466c02966bddb605ab37d998";
- };
- };
- "datland-swarm-defaults-1.0.2" = {
- name = "datland-swarm-defaults";
- packageName = "datland-swarm-defaults";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/datland-swarm-defaults/-/datland-swarm-defaults-1.0.2.tgz";
- sha1 = "277b895a39f1aa7f96a495a02fb3662a5ed9f2e0";
- };
- };
- "debug-2.6.9" = {
- name = "debug";
- packageName = "debug";
- version = "2.6.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
- sha512 = "0q0fsr8bk1m83z0am0h2xn09vyfcf18adscxms8hclznwks1aihsisd96h8npx0idq5wwnypnqrkyk25m5d9zh3dk7rjs29nybc8bkc";
- };
- };
- "discovery-swarm-4.4.2" = {
- name = "discovery-swarm";
- packageName = "discovery-swarm";
- version = "4.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-4.4.2.tgz";
- sha1 = "5d3160a46019e50e874195765df7d601ee55a813";
- };
- };
- "dns-discovery-5.6.1" = {
- name = "dns-discovery";
- packageName = "dns-discovery";
- version = "5.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-discovery/-/dns-discovery-5.6.1.tgz";
- sha512 = "2hda8mbvxc2r10g5p9dsrjk3qdrp7gpk66ps0dikwzcdgn9bvsf8ih9k19kxw7wr299cm7hav2q6rjp5m76zyb6mb19bfa3g6zxyvmg";
- };
- };
- "minimist-1.2.0" = {
- name = "minimist";
- packageName = "minimist";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
- sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
- };
- };
- "thunky-1.0.2" = {
- name = "thunky";
- packageName = "thunky";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/thunky/-/thunky-1.0.2.tgz";
- sha1 = "a862e018e3fb1ea2ec3fce5d55605cf57f247371";
- };
- };
- "ms-2.0.0" = {
- name = "ms";
- packageName = "ms";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
- sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
- };
- };
- "buffer-equals-1.0.4" = {
- name = "buffer-equals";
- packageName = "buffer-equals";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.4.tgz";
- sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
- };
- };
- "connections-1.4.2" = {
- name = "connections";
- packageName = "connections";
- version = "1.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/connections/-/connections-1.4.2.tgz";
- sha1 = "7890482bf5c71af6c5ca192be3136aed74428aad";
- };
- };
- "discovery-channel-5.4.6" = {
- name = "discovery-channel";
- packageName = "discovery-channel";
- version = "5.4.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.4.6.tgz";
- sha1 = "1b0f25e58124507e861b6dc3ecb744366bb53cad";
- };
- };
- "length-prefixed-message-3.0.3" = {
- name = "length-prefixed-message";
- packageName = "length-prefixed-message";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/length-prefixed-message/-/length-prefixed-message-3.0.3.tgz";
- sha1 = "245474d69abc0614dca368dc35aa8074982a23ac";
- };
- };
- "to-buffer-1.1.0" = {
- name = "to-buffer";
- packageName = "to-buffer";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.0.tgz";
- sha1 = "375bc03edae5c35a8fa0b3fe95a1f3985db1dcfa";
- };
- };
- "utp-native-1.6.2" = {
- name = "utp-native";
- packageName = "utp-native";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/utp-native/-/utp-native-1.6.2.tgz";
- sha512 = "2mcnn6w5as2dvz6rj4fb33174z3a1rl9bm2cfazrr4084gq7aal0bkmkwr1cjpkvy1zgni3zdk0570fx7cmnd0k0hg18wfb2hvbigfg";
- };
- };
- "bittorrent-dht-7.8.2" = {
- name = "bittorrent-dht";
- packageName = "bittorrent-dht";
- version = "7.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-7.8.2.tgz";
- sha512 = "33jcwf8rh9r7m810lw75s1ij9k0bv1kjmnc24488i6nd1ri9a1p2gmci5z1xdfriyb8j7x8h1ch3aj5a1chdglwn6pbsll7cx4j6wd4";
- };
- };
- "pretty-hash-1.0.1" = {
- name = "pretty-hash";
- packageName = "pretty-hash";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pretty-hash/-/pretty-hash-1.0.1.tgz";
- sha1 = "16e0579188def56bdb565892bcd05a5d65324807";
- };
- };
- "thunky-0.1.0" = {
- name = "thunky";
- packageName = "thunky";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz";
- sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e";
- };
- };
- "bencode-1.0.0" = {
- name = "bencode";
- packageName = "bencode";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/bencode/-/bencode-1.0.0.tgz";
- sha512 = "1kvjv5hs1c53b5g2vghpnncn4zj397sa0vpbx1pzpn8ngq52s3xq9923gnl2kzkh1mhyrl277jrh87a766yks89qvz8b4jczr44xr9p";
- };
- };
- "inherits-2.0.3" = {
- name = "inherits";
- packageName = "inherits";
- version = "2.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
- sha1 = "633c2c83e3da42a502f52466022480f4208261de";
- };
- };
- "k-bucket-3.3.1" = {
- name = "k-bucket";
- packageName = "k-bucket";
- version = "3.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-bucket/-/k-bucket-3.3.1.tgz";
- sha512 = "2dkl580azs1f5pj72mpygwdcc2mh4p355sxi84ki1w9c6k226nmjfglq5b7zgk5gmpfjammx5xliirzaf2nh9kyhqdb1xpvhjlic34j";
- };
- };
- "k-rpc-4.2.1" = {
- name = "k-rpc";
- packageName = "k-rpc";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc/-/k-rpc-4.2.1.tgz";
- sha512 = "2nbjxg0x7jsa14zhvx68w1vri68hsxzbxz7b7ap76fdp0jkrgna2rq636yxnax04f3f8i2ambj2fpan6qli6vixmfryz78vrapdip8n";
- };
- };
- "lru-3.1.0" = {
- name = "lru";
- packageName = "lru";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru/-/lru-3.1.0.tgz";
- sha1 = "ea7fb8546d83733396a13091d76cfeb4c06837d5";
- };
- };
- "randombytes-2.0.5" = {
- name = "randombytes";
- packageName = "randombytes";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.5.tgz";
- sha512 = "293m4ffiafbjg0b99a2k78wiffmlwc2v7cigrn5l3n7555x7qxyr34sp0s4p713vwlaf0ny5n57iysgkz08slld3hzw8ci1a2gxjgpi";
- };
- };
- "safe-buffer-5.1.1" = {
- name = "safe-buffer";
- packageName = "safe-buffer";
- version = "5.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz";
- sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh";
- };
- };
- "simple-sha1-2.1.0" = {
- name = "simple-sha1";
- packageName = "simple-sha1";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-2.1.0.tgz";
- sha1 = "9427bb96ff1263cc10a8414cedd51a18b919e8b3";
- };
- };
- "k-rpc-socket-1.7.2" = {
- name = "k-rpc-socket";
- packageName = "k-rpc-socket";
- version = "1.7.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.7.2.tgz";
- sha512 = "02w1ih1lh86i5ap7c3dy2ml7g5a11r0w300iyxdf6v02qr0j1x3vf78hx5q9dgg3drifab018mgm851m457zzzi05i2z2r1s3zlflc3";
- };
- };
- "rusha-0.8.9" = {
- name = "rusha";
- packageName = "rusha";
- version = "0.8.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/rusha/-/rusha-0.8.9.tgz";
- sha1 = "77bd0951608bf81cedb948cec9c44d8ce5662219";
- };
- };
- "varint-3.0.1" = {
- name = "varint";
- packageName = "varint";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-3.0.1.tgz";
- sha1 = "9d3f53e036c0ab12000a74bc2d24cbf093a581d9";
- };
- };
- "nan-2.8.0" = {
- name = "nan";
- packageName = "nan";
- version = "2.8.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz";
- sha1 = "ed715f3fe9de02b57a5e6252d90a96675e1f085a";
- };
- };
- "node-gyp-build-3.2.2" = {
- name = "node-gyp-build";
- packageName = "node-gyp-build";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.2.2.tgz";
- sha512 = "34hwi28wvvh5nn8bv71n0fb83xjyk84jsn8j9zgkaqnfigpv2hk6fs9jaffsn7qi3yi4n7iwd9yjyagd1rh74ckzdf5s6l59b8vzidp";
- };
- };
- "readable-stream-2.3.3" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz";
- sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv";
- };
- };
- "core-util-is-1.0.2" = {
- name = "core-util-is";
- packageName = "core-util-is";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
- sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
- };
- };
- "isarray-1.0.0" = {
- name = "isarray";
- packageName = "isarray";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- };
- "process-nextick-args-1.0.7" = {
- name = "process-nextick-args";
- packageName = "process-nextick-args";
- version = "1.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
- sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
- };
- };
- "string_decoder-1.0.3" = {
- name = "string_decoder";
- packageName = "string_decoder";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz";
- sha512 = "22vw5mmwlyblqc2zyqwl39wyhyahhpiyknim8iz5fk6xi002x777gkswiq8fh297djs5ii4pgrys57wq33hr5zf3xfd0d7kjxkzl0g0";
- };
- };
- "util-deprecate-1.0.2" = {
- name = "util-deprecate";
- packageName = "util-deprecate";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
- sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
- };
- };
- "dns-socket-1.6.2" = {
- name = "dns-socket";
- packageName = "dns-socket";
- version = "1.6.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-socket/-/dns-socket-1.6.2.tgz";
- sha512 = "0ibd2ndmlqbk96vdcimsl4w1njplh9gplvqa5f7653km79f9kqpd6d7f0f3lq1sz548lqcbjfcgcr7fc9159b4gzzk1g86kjxzxmmk6";
- };
- };
- "dns-txt-2.0.2" = {
- name = "dns-txt";
- packageName = "dns-txt";
- version = "2.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz";
- sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6";
- };
- };
- "lru-2.0.1" = {
- name = "lru";
- packageName = "lru";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru/-/lru-2.0.1.tgz";
- sha1 = "f979871e162e3f5ca254be46844c53d4c5364544";
- };
- };
- "multicast-dns-6.2.1" = {
- name = "multicast-dns";
- packageName = "multicast-dns";
- version = "6.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.1.tgz";
- sha512 = "3gm760icxiv0bkil78dgsjkss4vwg3ya76jl3v8a5fa86wdv0ksvi1n7lnzisk4x4sa8chxnfxasyfpgay45ilaykqz2zbc8xrgypdr";
- };
- };
- "network-address-1.1.2" = {
- name = "network-address";
- packageName = "network-address";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/network-address/-/network-address-1.1.2.tgz";
- sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e";
- };
- };
- "unordered-set-1.1.0" = {
- name = "unordered-set";
- packageName = "unordered-set";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unordered-set/-/unordered-set-1.1.0.tgz";
- sha1 = "2ba7ef316edd0b9590cc547c74f76a2f164fecca";
- };
- };
- "dns-packet-1.2.2" = {
- name = "dns-packet";
- packageName = "dns-packet";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.2.2.tgz";
- sha512 = "0770ymyc0rv6a11mj3990d0z1jl1b2qxp4bapqa819y269sszfd96wn2y7pb6aw8bdgsn3bvpr7bmig5lcmkrxya13d5vc5y66q7pwh";
- };
- };
- "ip-1.1.5" = {
- name = "ip";
- packageName = "ip";
- version = "1.1.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz";
- sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
- };
- };
- "buffer-indexof-1.1.1" = {
- name = "buffer-indexof";
- packageName = "buffer-indexof";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz";
- sha512 = "3bgz1zhq9ng3gypq825f00p9qi9y6z7wvkkf28nhjlyifnb3lk1dkmbya84k0ja79zv8kmmhvalwcnnz92533ip7pnjp3is1w9cxyp3";
- };
- };
- "toiletdb-1.4.0" = {
- name = "toiletdb";
- packageName = "toiletdb";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.0.tgz";
- sha1 = "6c6f871834b22178c5490f9f832b58c3c7cba852";
- };
- };
- "last-one-wins-1.0.4" = {
- name = "last-one-wins";
- packageName = "last-one-wins";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/last-one-wins/-/last-one-wins-1.0.4.tgz";
- sha1 = "c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a";
- };
- };
- "dat-dns-1.3.2" = {
- name = "dat-dns";
- packageName = "dat-dns";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-dns/-/dat-dns-1.3.2.tgz";
- sha512 = "0yyadc98mdpvqdszc1v26zcgd6zqxink2wrhxw9ax60wk0sxqw6mm3m2jbqvibj54p1gjsmgsf1yhv20xsm77kkb7qwj79jlx8kvfad";
- };
- };
- "nets-3.2.0" = {
- name = "nets";
- packageName = "nets";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nets/-/nets-3.2.0.tgz";
- sha1 = "d511fbab7af11da013f21b97ee91747d33852d38";
- };
- };
- "call-me-maybe-1.0.1" = {
- name = "call-me-maybe";
- packageName = "call-me-maybe";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz";
- sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b";
- };
- };
- "concat-stream-1.6.0" = {
- name = "concat-stream";
- packageName = "concat-stream";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz";
- sha1 = "0aac662fd52be78964d5532f694784e70110acf7";
- };
- };
- "typedarray-0.0.6" = {
- name = "typedarray";
- packageName = "typedarray";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
- sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
- };
- };
- "request-2.83.0" = {
- name = "request";
- packageName = "request";
- version = "2.83.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz";
- sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm";
- };
- };
- "xhr-2.4.1" = {
- name = "xhr";
- packageName = "xhr";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz";
- sha512 = "38f6fgl0n5syagym161b29l5vhyan3azv5zs3vmyd4s80svy9xl7ppczk3rdawjn70s1ws5qvbh5zf1wyrj2ifawnr7ix3by3k180m4";
- };
- };
- "aws-sign2-0.7.0" = {
- name = "aws-sign2";
- packageName = "aws-sign2";
- version = "0.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz";
- sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8";
- };
- };
- "aws4-1.6.0" = {
- name = "aws4";
- packageName = "aws4";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz";
- sha1 = "83ef5ca860b2b32e4a0deedee8c771b9db57471e";
- };
- };
- "caseless-0.12.0" = {
- name = "caseless";
- packageName = "caseless";
- version = "0.12.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
- sha1 = "1b681c21ff84033c826543090689420d187151dc";
- };
- };
- "combined-stream-1.0.5" = {
- name = "combined-stream";
- packageName = "combined-stream";
- version = "1.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz";
- sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009";
- };
- };
- "extend-3.0.1" = {
- name = "extend";
- packageName = "extend";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz";
- sha1 = "a755ea7bc1adfcc5a31ce7e762dbaadc5e636444";
- };
- };
- "forever-agent-0.6.1" = {
- name = "forever-agent";
- packageName = "forever-agent";
- version = "0.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
- sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
- };
- };
- "form-data-2.3.1" = {
- name = "form-data";
- packageName = "form-data";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz";
- sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf";
- };
- };
- "har-validator-5.0.3" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "5.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz";
- sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd";
- };
- };
- "hawk-6.0.2" = {
- name = "hawk";
- packageName = "hawk";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz";
- sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als";
- };
- };
- "http-signature-1.2.0" = {
- name = "http-signature";
- packageName = "http-signature";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
- sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
- };
- };
- "is-typedarray-1.0.0" = {
- name = "is-typedarray";
- packageName = "is-typedarray";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
- sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
- };
- };
- "isstream-0.1.2" = {
- name = "isstream";
- packageName = "isstream";
- version = "0.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
- sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
- };
- };
- "json-stringify-safe-5.0.1" = {
- name = "json-stringify-safe";
- packageName = "json-stringify-safe";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
- sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
- };
- };
- "mime-types-2.1.17" = {
- name = "mime-types";
- packageName = "mime-types";
- version = "2.1.17";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz";
- sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a";
- };
- };
- "oauth-sign-0.8.2" = {
- name = "oauth-sign";
- packageName = "oauth-sign";
- version = "0.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
- sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
- };
- };
- "performance-now-2.1.0" = {
- name = "performance-now";
- packageName = "performance-now";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
- sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
- };
- };
- "qs-6.5.1" = {
- name = "qs";
- packageName = "qs";
- version = "6.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz";
- sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r";
- };
- };
- "stringstream-0.0.5" = {
- name = "stringstream";
- packageName = "stringstream";
- version = "0.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz";
- sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878";
- };
- };
- "tough-cookie-2.3.3" = {
- name = "tough-cookie";
- packageName = "tough-cookie";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz";
- sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561";
- };
- };
- "tunnel-agent-0.6.0" = {
- name = "tunnel-agent";
- packageName = "tunnel-agent";
- version = "0.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
- sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
- };
- };
- "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 = "3x5mi85l1559nkb35pfksjjgiyfyqrcvmcf0nly1xjl1kb0d37jnxd6sk0b8d331waadnqbf60nfssb563x9pvnjcw87lrh976sv18c";
- };
- };
- "delayed-stream-1.0.0" = {
- name = "delayed-stream";
- packageName = "delayed-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
- sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
- };
- };
- "asynckit-0.4.0" = {
- name = "asynckit";
- packageName = "asynckit";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz";
- sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
- };
- };
- "ajv-5.5.2" = {
- name = "ajv";
- packageName = "ajv";
- version = "5.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz";
- sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
- };
- };
- "har-schema-2.0.0" = {
- name = "har-schema";
- packageName = "har-schema";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
- sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
- };
- };
- "co-4.6.0" = {
- name = "co";
- packageName = "co";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
- sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
- };
- };
- "fast-deep-equal-1.0.0" = {
- name = "fast-deep-equal";
- packageName = "fast-deep-equal";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz";
- sha1 = "96256a3bc975595eb36d82e9929d060d893439ff";
- };
- };
- "fast-json-stable-stringify-2.0.0" = {
- name = "fast-json-stable-stringify";
- packageName = "fast-json-stable-stringify";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
- sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
- };
- };
- "json-schema-traverse-0.3.1" = {
- name = "json-schema-traverse";
- packageName = "json-schema-traverse";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz";
- sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340";
- };
- };
- "hoek-4.2.0" = {
- name = "hoek";
- packageName = "hoek";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz";
- sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz";
- };
- };
- "boom-4.3.1" = {
- name = "boom";
- packageName = "boom";
- version = "4.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz";
- sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31";
- };
- };
- "cryptiles-3.1.2" = {
- name = "cryptiles";
- packageName = "cryptiles";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz";
- sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe";
- };
- };
- "sntp-2.1.0" = {
- name = "sntp";
- packageName = "sntp";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz";
- sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
- };
- };
- "boom-5.2.0" = {
- name = "boom";
- packageName = "boom";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz";
- sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437";
- };
- };
- "assert-plus-1.0.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- };
- "jsprim-1.4.1" = {
- name = "jsprim";
- packageName = "jsprim";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
- sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
- };
- };
- "sshpk-1.13.1" = {
- name = "sshpk";
- packageName = "sshpk";
- version = "1.13.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz";
- sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3";
- };
- };
- "extsprintf-1.3.0" = {
- name = "extsprintf";
- packageName = "extsprintf";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
- sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
- };
- };
- "json-schema-0.2.3" = {
- name = "json-schema";
- packageName = "json-schema";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
- sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
- };
- };
- "verror-1.10.0" = {
- name = "verror";
- packageName = "verror";
- version = "1.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
- sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
- };
- };
- "asn1-0.2.3" = {
- name = "asn1";
- packageName = "asn1";
- version = "0.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz";
- sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
- };
- };
- "dashdash-1.14.1" = {
- name = "dashdash";
- packageName = "dashdash";
- version = "1.14.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz";
- sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0";
- };
- };
- "getpass-0.1.7" = {
- name = "getpass";
- packageName = "getpass";
- version = "0.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
- sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
- };
- };
- "jsbn-0.1.1" = {
- name = "jsbn";
- packageName = "jsbn";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
- sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
- };
- };
- "tweetnacl-0.14.5" = {
- name = "tweetnacl";
- packageName = "tweetnacl";
- version = "0.14.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
- sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
- };
- };
- "ecc-jsbn-0.1.1" = {
- name = "ecc-jsbn";
- packageName = "ecc-jsbn";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz";
- sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505";
- };
- };
- "bcrypt-pbkdf-1.0.1" = {
- name = "bcrypt-pbkdf";
- packageName = "bcrypt-pbkdf";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz";
- sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d";
- };
- };
- "mime-db-1.30.0" = {
- name = "mime-db";
- packageName = "mime-db";
- version = "1.30.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz";
- sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01";
- };
- };
- "punycode-1.4.1" = {
- name = "punycode";
- packageName = "punycode";
- version = "1.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
- sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
- };
- };
- "global-4.3.2" = {
- name = "global";
- packageName = "global";
- version = "4.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/global/-/global-4.3.2.tgz";
- sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f";
- };
- };
- "is-function-1.0.1" = {
- name = "is-function";
- packageName = "is-function";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz";
- sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5";
- };
- };
- "parse-headers-2.0.1" = {
- name = "parse-headers";
- packageName = "parse-headers";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.1.tgz";
- sha1 = "6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536";
- };
- };
- "min-document-2.19.0" = {
- name = "min-document";
- packageName = "min-document";
- version = "2.19.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz";
- sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685";
- };
- };
- "process-0.5.2" = {
- name = "process";
- packageName = "process";
- version = "0.5.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz";
- sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf";
- };
- };
- "dom-walk-0.1.1" = {
- name = "dom-walk";
- packageName = "dom-walk";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz";
- sha1 = "672226dc74c8f799ad35307df936aba11acd6018";
- };
- };
- "for-each-0.3.2" = {
- name = "for-each";
- packageName = "for-each";
- version = "0.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz";
- sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4";
- };
- };
- "trim-0.0.1" = {
- name = "trim";
- packageName = "trim";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz";
- sha1 = "5858547f6b290757ee95cccc666fb50084c460dd";
- };
- };
- "random-access-memory-2.4.0" = {
- name = "random-access-memory";
- packageName = "random-access-memory";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-2.4.0.tgz";
- sha1 = "72f3d865b4b55a259879473e2fb2de3569c69ee2";
- };
- };
- "dat-ignore-2.0.0" = {
- name = "dat-ignore";
- packageName = "dat-ignore";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-ignore/-/dat-ignore-2.0.0.tgz";
- sha512 = "1s78mv3ngs1v1cgpcp97y1xmns97m2r6gjkkrksl63j5d870vpsmmrhsfm1vw4q0dz4c1yfnfcpijlgbqai9c5d2zj1lz56rih0kxk8";
- };
- };
- "dat-link-resolve-2.1.0" = {
- name = "dat-link-resolve";
- packageName = "dat-link-resolve";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-link-resolve/-/dat-link-resolve-2.1.0.tgz";
- sha512 = "0dzpf71lpzr1z3g6m3v29xvcs9r12sgjpzzmg2viy3azkgpscl7p2v8im2ibsa22q64abifkibb4nc3nshs19wvai67m3gdqx15qzvn";
+ url = "https://registry.npmjs.org/dat-secret-storage/-/dat-secret-storage-4.0.0.tgz";
+ sha1 = "01b219a5bc1619efc0f58122a3c6cebb1eb8b40a";
};
};
"dat-storage-1.0.3" = {
@@ -1327,13 +1885,1408 @@ let
sha1 = "ba7d58c309cf60c3924afad869b75192b61fe354";
};
};
- "hyperdrive-9.12.0" = {
+ "data-uri-to-buffer-2.0.0" = {
+ name = "data-uri-to-buffer";
+ packageName = "data-uri-to-buffer";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-2.0.0.tgz";
+ sha512 = "1pvmcndfngvwy1z5x3vhy8jvrcpaahgc8jhq7cpnjcb2zfacai445afjpykxyzy8s6css19p1rl3ab91vz22fa1ffkqhgygncs85ck1";
+ };
+ };
+ "date-unit-ms-1.1.12" = {
+ name = "date-unit-ms";
+ packageName = "date-unit-ms";
+ version = "1.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/date-unit-ms/-/date-unit-ms-1.1.12.tgz";
+ sha512 = "39jwcz9i3f80f9sqx06abcpk9zs9dw90gyy2pb603h1h5q0ph2qpx005wzmmn0phfg83d4nx2d14p3lgfn1ywa6yfcc71rnnbw3l3f3";
+ };
+ };
+ "datland-swarm-defaults-1.0.2" = {
+ name = "datland-swarm-defaults";
+ packageName = "datland-swarm-defaults";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/datland-swarm-defaults/-/datland-swarm-defaults-1.0.2.tgz";
+ sha1 = "277b895a39f1aa7f96a495a02fb3662a5ed9f2e0";
+ };
+ };
+ "daty-1.1.4" = {
+ name = "daty";
+ packageName = "daty";
+ version = "1.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/daty/-/daty-1.1.4.tgz";
+ sha512 = "0a8n1f6rfaa6k4r76b2rqgvfp9qvw5xj7w0lzjfv1g4fxcjllk519vj3jfrx540jiv2mbpky6jv17d3zhwc0jg0a9rbnc0k1m4m5dgs";
+ };
+ };
+ "days-1.1.1" = {
+ name = "days";
+ packageName = "days";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/days/-/days-1.1.1.tgz";
+ sha512 = "13wlz4m9gk0wf2w3x44y2gph1mmqmj8z1mfkhxpxhjk3rs7h28gj6lc8x0b6i966w00dvrws86da672vmizmy31whvj08q4bg0qhdxz";
+ };
+ };
+ "debug-2.6.9" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz";
+ sha512 = "0q0fsr8bk1m83z0am0h2xn09vyfcf18adscxms8hclznwks1aihsisd96h8npx0idq5wwnypnqrkyk25m5d9zh3dk7rjs29nybc8bkc";
+ };
+ };
+ "debug-3.1.0" = {
+ name = "debug";
+ packageName = "debug";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz";
+ sha512 = "3g1hqsahr1ks2kpvdxrwzr57fj90nnr0hvwwrw8yyyzcv3i11sym8zwibxx67bl1mln0acddrzpkkdjjxnc6n2cm9fazmgzzsl1fzrr";
+ };
+ };
+ "debuglog-1.0.1" = {
+ name = "debuglog";
+ packageName = "debuglog";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz";
+ sha1 = "aa24ffb9ac3df9a2351837cfb2d279360cd78492";
+ };
+ };
+ "decamelize-1.2.0" = {
+ name = "decamelize";
+ packageName = "decamelize";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz";
+ sha1 = "f6534d15148269b20352e7bee26f501f9a191290";
+ };
+ };
+ "decode-uri-component-0.2.0" = {
+ name = "decode-uri-component";
+ packageName = "decode-uri-component";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz";
+ sha1 = "eb3913333458775cb84cd1a1fae062106bb87545";
+ };
+ };
+ "decompress-maybe-1.0.0" = {
+ name = "decompress-maybe";
+ packageName = "decompress-maybe";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-maybe/-/decompress-maybe-1.0.0.tgz";
+ sha1 = "adfe78c66cc069e64e824bd1405b85e75e6d1cbb";
+ };
+ };
+ "decompress-response-3.3.0" = {
+ name = "decompress-response";
+ packageName = "decompress-response";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz";
+ sha1 = "80a4dd323748384bfa248083622aedec982adff3";
+ };
+ };
+ "deep-equal-0.2.2" = {
+ name = "deep-equal";
+ packageName = "deep-equal";
+ version = "0.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.2.2.tgz";
+ sha1 = "84b745896f34c684e98f2ce0e42abaf43bba017d";
+ };
+ };
+ "deep-extend-0.4.2" = {
+ name = "deep-extend";
+ packageName = "deep-extend";
+ version = "0.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz";
+ sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f";
+ };
+ };
+ "defaults-1.0.3" = {
+ name = "defaults";
+ packageName = "defaults";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz";
+ sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d";
+ };
+ };
+ "deffy-2.0.0" = {
+ name = "deffy";
+ packageName = "deffy";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deffy/-/deffy-2.0.0.tgz";
+ sha1 = "f82e08eea518c4a0a30b1f03ec504d248af28932";
+ };
+ };
+ "deffy-2.2.2" = {
+ name = "deffy";
+ packageName = "deffy";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/deffy/-/deffy-2.2.2.tgz";
+ sha1 = "088f40913cb47078653fa6f697c206e03471d523";
+ };
+ };
+ "define-properties-1.1.2" = {
+ name = "define-properties";
+ packageName = "define-properties";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.2.tgz";
+ sha1 = "83a73f2fea569898fb737193c8f873caf6d45c94";
+ };
+ };
+ "delay-2.0.0" = {
+ name = "delay";
+ packageName = "delay";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delay/-/delay-2.0.0.tgz";
+ sha1 = "9112eadc03e4ec7e00297337896f273bbd91fae5";
+ };
+ };
+ "delayed-stream-1.0.0" = {
+ name = "delayed-stream";
+ packageName = "delayed-stream";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz";
+ sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
+ };
+ };
+ "delegates-1.0.0" = {
+ name = "delegates";
+ packageName = "delegates";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
+ sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
+ };
+ };
+ "dependencies-hierarchy-2.0.1" = {
+ name = "dependencies-hierarchy";
+ packageName = "dependencies-hierarchy";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dependencies-hierarchy/-/dependencies-hierarchy-2.0.1.tgz";
+ sha512 = "1sfyf5x0ffhb2yh04wcwd0szfknjfrf21ibabzk780m31ww4fnzm01ddr9h3j1wfn4ib15pjvg24kylhs2l9g5fg9gnkirpa7zphyxz";
+ };
+ };
+ "dependency-path-1.2.0" = {
+ name = "dependency-path";
+ packageName = "dependency-path";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dependency-path/-/dependency-path-1.2.0.tgz";
+ sha512 = "3fx4g67dcmnhggas6gyk3qd0376f5ff9imzi9n3npqjdbnxqd0niagdl591n64mlk8l8rrnkp39fj7cgbd05az9k5b2ir5pr73lf9aq";
+ };
+ };
+ "detect-indent-5.0.0" = {
+ name = "detect-indent";
+ packageName = "detect-indent";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz";
+ sha1 = "3871cc0a6a002e8c3e5b3cf7f336264675f06b9d";
+ };
+ };
+ "detect-libc-1.0.3" = {
+ name = "detect-libc";
+ packageName = "detect-libc";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz";
+ sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
+ };
+ };
+ "dezalgo-1.0.3" = {
+ name = "dezalgo";
+ packageName = "dezalgo";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz";
+ sha1 = "7f742de066fc748bc8db820569dddce49bf0d456";
+ };
+ };
+ "diable-4.0.1" = {
+ name = "diable";
+ packageName = "diable";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diable/-/diable-4.0.1.tgz";
+ sha512 = "3xs7mj78f1pz54n7lgqczhksnznrsj1bz0733lnrsarqshqci89980q25yms1iva430jfxsjd9kgk4f1f30y3xpyi8krd0vkb57xkl6";
+ };
+ };
+ "diff-3.3.1" = {
+ name = "diff";
+ packageName = "diff";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-3.3.1.tgz";
+ sha512 = "31pj7v5gg5igmvwzk6zxw1wbvwjg6m9sfl0h3bs1x4q6idcw98vr8z8wcqk2603q0blpqkmkxp659kjj91wksr03yr8xlh16djcg8rh";
+ };
+ };
+ "diff-dates-1.0.11" = {
+ name = "diff-dates";
+ packageName = "diff-dates";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff-dates/-/diff-dates-1.0.11.tgz";
+ sha512 = "3n24i042lak0xiwsf39kqkmgfjpk3yy7b7s5j4yli6a41h438lh8khdn0zg71jz30vmz0iil8bpjbm0amy24mmbyf4vz5jwp7z312fj";
+ };
+ };
+ "dint-2.0.2" = {
+ name = "dint";
+ packageName = "dint";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dint/-/dint-2.0.2.tgz";
+ sha512 = "1kj5zqj3mz3jr7624dszj4qnypqa6z1ll8ysn56mibmchrdfb6x82ncfr8jl1h2igla24kp7kbivpmzzjp1zbb29s2gwj9y0zzrmf9v";
+ };
+ };
+ "dir-glob-2.0.0" = {
+ name = "dir-glob";
+ packageName = "dir-glob";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz";
+ sha512 = "1m705yfirf97v4w87gfvylhhq9jlwjsgfp5x0p0cp33mc180ldmvgbs06zmr7by48d7r01n3awx4xz3m3vzba99gqww1wgka2na5fnz";
+ };
+ };
+ "directory-index-html-2.1.0" = {
+ name = "directory-index-html";
+ packageName = "directory-index-html";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/directory-index-html/-/directory-index-html-2.1.0.tgz";
+ sha1 = "4d5afc5187edba67ec6ab0e55f6422a0e2cb7338";
+ };
+ };
+ "discovery-channel-5.4.7" = {
+ name = "discovery-channel";
+ packageName = "discovery-channel";
+ version = "5.4.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/discovery-channel/-/discovery-channel-5.4.7.tgz";
+ sha512 = "3c8npbdr7r6725kkj76h5zy72l3gd8ndb3dy4dwbapxapfzccl9f6iy0zdy3wxywcfb6cc64w4mf089v00rcr1aqcjdlvn483pnzs78";
+ };
+ };
+ "discovery-swarm-4.4.2" = {
+ name = "discovery-swarm";
+ packageName = "discovery-swarm";
+ version = "4.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-4.4.2.tgz";
+ sha1 = "5d3160a46019e50e874195765df7d601ee55a813";
+ };
+ };
+ "dns-discovery-5.6.1" = {
+ name = "dns-discovery";
+ packageName = "dns-discovery";
+ version = "5.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-discovery/-/dns-discovery-5.6.1.tgz";
+ sha512 = "2hda8mbvxc2r10g5p9dsrjk3qdrp7gpk66ps0dikwzcdgn9bvsf8ih9k19kxw7wr299cm7hav2q6rjp5m76zyb6mb19bfa3g6zxyvmg";
+ };
+ };
+ "dns-packet-1.3.1" = {
+ name = "dns-packet";
+ packageName = "dns-packet";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz";
+ sha512 = "19g682cvkba33mwrism28hibd2nv9xd16k5bj807jx3ih1cc7ff9dn8chmfjnqgglzl6lq3m3jarxng9vbarccgchd0aq118d15yk6i";
+ };
+ };
+ "dns-socket-1.6.3" = {
+ name = "dns-socket";
+ packageName = "dns-socket";
+ version = "1.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-socket/-/dns-socket-1.6.3.tgz";
+ sha512 = "2g9g9jqx44qpiawlxfn1g647dqwwz2djjpy350c83d1z79d5wa21cknh1jz4wrwsjkvgn14vhmjjxqxf5n8fqq6fjyzw85aa7fk4rgy";
+ };
+ };
+ "dns-txt-2.0.2" = {
+ name = "dns-txt";
+ packageName = "dns-txt";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz";
+ sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6";
+ };
+ };
+ "dom-walk-0.1.1" = {
+ name = "dom-walk";
+ packageName = "dom-walk";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz";
+ sha1 = "672226dc74c8f799ad35307df936aba11acd6018";
+ };
+ };
+ "dot-prop-4.2.0" = {
+ name = "dot-prop";
+ packageName = "dot-prop";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.0.tgz";
+ sha512 = "2wyv9brsq3dzp724y1q5z5j5ja83y834hgc193lnarfdycwz1ii3xg02qxx3dg05x3skwjm1di5s5a8hqi8l5v1afx2bia436pifhxm";
+ };
+ };
+ "dotenv-4.0.0" = {
+ name = "dotenv";
+ packageName = "dotenv";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dotenv/-/dotenv-4.0.0.tgz";
+ sha1 = "864ef1379aced55ce6f95debecdce179f7a0cd1d";
+ };
+ };
+ "drive-by-path-1.0.0" = {
+ name = "drive-by-path";
+ packageName = "drive-by-path";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/drive-by-path/-/drive-by-path-1.0.0.tgz";
+ sha512 = "2qa8hminmq4ccas79iblr6bhpi5db7pr4wprwabf3b26mzky20grbamh8w91x0305gr9ab0hg314dqbhk7fjqylrzc5f8aq21mkl9hm";
+ };
+ };
+ "drivelist-5.2.12" = {
+ name = "drivelist";
+ packageName = "drivelist";
+ version = "5.2.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/drivelist/-/drivelist-5.2.12.tgz";
+ sha512 = "16zzhdm5j9sxfgcgh547v4s5y3han38a5iwj8ap8glp5ql6vbrl01jj6dsjpiqlbjf56pxla8shnz64yjngvnq0zcdkabns4cr1i0lp";
+ };
+ };
+ "duplexer3-0.1.4" = {
+ name = "duplexer3";
+ packageName = "duplexer3";
+ version = "0.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz";
+ sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2";
+ };
+ };
+ "duplexify-3.5.3" = {
+ name = "duplexify";
+ packageName = "duplexify";
+ version = "3.5.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/duplexify/-/duplexify-3.5.3.tgz";
+ sha512 = "0c611ik2kv5wiqwfi5zjyx70dnw117lbr0wwqxqxc0hldnnfigiqyh5xr7x6267vs63jgvqkzvvwb3b1g37zkk3nx5dh5z8xbs07hl3";
+ };
+ };
+ "ecc-jsbn-0.1.1" = {
+ name = "ecc-jsbn";
+ packageName = "ecc-jsbn";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz";
+ sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505";
+ };
+ };
+ "editor-1.0.0" = {
+ name = "editor";
+ packageName = "editor";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/editor/-/editor-1.0.0.tgz";
+ sha1 = "60c7f87bd62bcc6a894fa8ccd6afb7823a24f742";
+ };
+ };
+ "encode-registry-1.1.0" = {
+ name = "encode-registry";
+ packageName = "encode-registry";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/encode-registry/-/encode-registry-1.1.0.tgz";
+ sha512 = "0s849n20b958rnb9r35b9i0l6zvpk0vx49c6xap06fy5iq1zz0ls0wqc1bdskw1v39z5xz4a8sfaigsw0rjfckic6xlxmw4ybvn9vf1";
+ };
+ };
+ "encoding-0.1.12" = {
+ name = "encoding";
+ packageName = "encoding";
+ version = "0.1.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz";
+ sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb";
+ };
+ };
+ "end-of-stream-1.4.1" = {
+ name = "end-of-stream";
+ packageName = "end-of-stream";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz";
+ sha512 = "3cjrpi6n5i6gf8jaiwg31y2xkgx59szhhcj9myqwmdw16s9r6yvwznxd2lhqf96mpm6knyb3w2bcnksg5nzkrq6iada0k6nvdj2pjfl";
+ };
+ };
+ "err-code-1.1.2" = {
+ name = "err-code";
+ packageName = "err-code";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/err-code/-/err-code-1.1.2.tgz";
+ sha1 = "06e0116d3028f6aef4806849eb0ea6a748ae6960";
+ };
+ };
+ "errno-0.1.6" = {
+ name = "errno";
+ packageName = "errno";
+ version = "0.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/errno/-/errno-0.1.6.tgz";
+ sha512 = "0vny3xisd56kx193rhv6vpccjxlajjn9ss5wk96l1ya8zbpkwbjrrgrm9wpfm3xc8apx8z9xb0kjkw0y5qnc6gy1hf2qsas79093hr2";
+ };
+ };
+ "error-ex-1.3.1" = {
+ name = "error-ex";
+ packageName = "error-ex";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz";
+ sha1 = "f855a86ce61adc4e8621c3cda21e7a7612c3a8dc";
+ };
+ };
+ "es-abstract-1.10.0" = {
+ name = "es-abstract";
+ packageName = "es-abstract";
+ version = "1.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.10.0.tgz";
+ sha512 = "04nd5ylkfffc08vn5kjhz0saqh44nj19f5j3ahrrhf3zvc9da5rf6snnh63xv4gfhacjbax1jajzgqv4zpm77v806jf883a2w77zs7y";
+ };
+ };
+ "es-to-primitive-1.1.1" = {
+ name = "es-to-primitive";
+ packageName = "es-to-primitive";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz";
+ sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d";
+ };
+ };
+ "es6-promise-4.2.4" = {
+ name = "es6-promise";
+ packageName = "es6-promise";
+ version = "4.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.4.tgz";
+ sha512 = "10hlgvxhshjxlbwvm1gnf1b01sv1fmh191a97l0h5gmcs9am1b6x937wnhkvvj5fkin10qscii8pcwnp9rlnpkgnrhfdyk0a9jlvmzw";
+ };
+ };
+ "es6-promisify-5.0.0" = {
+ name = "es6-promisify";
+ packageName = "es6-promisify";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz";
+ sha1 = "5109d62f3e56ea967c4b63505aef08291c8a5203";
+ };
+ };
+ "escape-string-regexp-1.0.5" = {
+ name = "escape-string-regexp";
+ packageName = "escape-string-regexp";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
+ sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
+ };
+ };
+ "esprima-4.0.0" = {
+ name = "esprima";
+ packageName = "esprima";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz";
+ sha512 = "27mkhd94y9vrr8pb97br0ym5h85rawwb0biswgwdfp31x0387y12k9p9598bi4fc83fif6crfzqiqmmjs4x7gcb22ml3z1fldqm7yx1";
+ };
+ };
+ "exclude-arr-1.0.9" = {
+ name = "exclude-arr";
+ packageName = "exclude-arr";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/exclude-arr/-/exclude-arr-1.0.9.tgz";
+ sha512 = "1j9b7mbjp9g840wwzgq7jmqx66qv2xwxl3z3330891qd1a4yrm1x3jsig1g0adx6q1lj9d9f6dsb0snm564f4ff8lxhiag0k645vap7";
+ };
+ };
+ "execa-0.7.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz";
+ sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777";
+ };
+ };
+ "execa-0.8.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.8.0.tgz";
+ sha1 = "d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da";
+ };
+ };
+ "execa-0.9.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.9.0.tgz";
+ sha512 = "2c2sw5624513vxbr2q2ay9x3qc80zfnwyr60n8cw35m1ji76yxhxv4nrk47iqd2wj1rv5l07klmncr2lfdzhfa0cn3si1pq4l30rd85";
+ };
+ };
+ "expand-brackets-0.1.5" = {
+ name = "expand-brackets";
+ packageName = "expand-brackets";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz";
+ sha1 = "df07284e342a807cd733ac5af72411e581d1177b";
+ };
+ };
+ "expand-range-1.8.2" = {
+ name = "expand-range";
+ packageName = "expand-range";
+ version = "1.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz";
+ sha1 = "a299effd335fe2721ebae8e257ec79644fc85337";
+ };
+ };
+ "expand-template-1.1.0" = {
+ name = "expand-template";
+ packageName = "expand-template";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/expand-template/-/expand-template-1.1.0.tgz";
+ sha512 = "34i2f4clwy5bpzgl137zwplybp5hn6ncxq0p794cx9m0crhgk31nfy0s8wp1v6hvw90h20c268r040g892dixy6zqq1xlm3ra8g0j4j";
+ };
+ };
+ "extend-3.0.1" = {
+ name = "extend";
+ packageName = "extend";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extend/-/extend-3.0.1.tgz";
+ sha1 = "a755ea7bc1adfcc5a31ce7e762dbaadc5e636444";
+ };
+ };
+ "extglob-0.3.2" = {
+ name = "extglob";
+ packageName = "extglob";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz";
+ sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1";
+ };
+ };
+ "extsprintf-1.3.0" = {
+ name = "extsprintf";
+ packageName = "extsprintf";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz";
+ sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05";
+ };
+ };
+ "eyes-0.1.8" = {
+ name = "eyes";
+ packageName = "eyes";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz";
+ sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0";
+ };
+ };
+ "fast-deep-equal-1.0.0" = {
+ name = "fast-deep-equal";
+ packageName = "fast-deep-equal";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz";
+ sha1 = "96256a3bc975595eb36d82e9929d060d893439ff";
+ };
+ };
+ "fast-json-stable-stringify-2.0.0" = {
+ name = "fast-json-stable-stringify";
+ packageName = "fast-json-stable-stringify";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz";
+ sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2";
+ };
+ };
+ "fast-safe-stringify-1.1.13" = {
+ name = "fast-safe-stringify";
+ packageName = "fast-safe-stringify";
+ version = "1.1.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-1.1.13.tgz";
+ sha1 = "a01e9cd9c9e491715c98a75a42d5f0bbd107ff76";
+ };
+ };
+ "fd-read-stream-1.1.0" = {
+ name = "fd-read-stream";
+ packageName = "fd-read-stream";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fd-read-stream/-/fd-read-stream-1.1.0.tgz";
+ sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1";
+ };
+ };
+ "fetch-from-npm-registry-0.1.0" = {
+ name = "fetch-from-npm-registry";
+ packageName = "fetch-from-npm-registry";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fetch-from-npm-registry/-/fetch-from-npm-registry-0.1.0.tgz";
+ sha512 = "1264ixqa9c8kzm56hlq6y91d7rhzfkvbjy0asvj4xkdspwb5sy363n9g9frai3w415j9xyqfw8k73rcpw295gmhp790rnl5p1w0m88g";
+ };
+ };
+ "filename-regex-2.0.1" = {
+ name = "filename-regex";
+ packageName = "filename-regex";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz";
+ sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26";
+ };
+ };
+ "fill-range-2.2.3" = {
+ name = "fill-range";
+ packageName = "fill-range";
+ version = "2.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz";
+ sha1 = "50b77dfd7e469bc7492470963699fe7a8485a723";
+ };
+ };
+ "fillo-1.0.11" = {
+ name = "fillo";
+ packageName = "fillo";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fillo/-/fillo-1.0.11.tgz";
+ sha512 = "36l602p8x6jkfpk75skz4dwjlpy9bna1zqpx7jgfjlalqbwa7b67wb8rv23cd6m5saklalf77irgvly60b5ziy611a4477idbrrr1fx";
+ };
+ };
+ "find-packages-2.1.2" = {
+ name = "find-packages";
+ packageName = "find-packages";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-packages/-/find-packages-2.1.2.tgz";
+ sha512 = "18j6pnfzxysg3ylhx9npp90infzxgczn174pd3mvy8mw13cshll2rzf6i9b27qfyzgq4chk7wbwy8wr1flmzlpll5g22c0ryp6dq2rh";
+ };
+ };
+ "find-up-2.1.0" = {
+ name = "find-up";
+ packageName = "find-up";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz";
+ sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7";
+ };
+ };
+ "findup-sync-0.3.0" = {
+ name = "findup-sync";
+ packageName = "findup-sync";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz";
+ sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16";
+ };
+ };
+ "flat-colors-3.0.0" = {
+ name = "flat-colors";
+ packageName = "flat-colors";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flat-colors/-/flat-colors-3.0.0.tgz";
+ sha1 = "253ab1a23989c321f13b0acd4bf73fff4072ecb7";
+ };
+ };
+ "flat-tree-1.6.0" = {
+ name = "flat-tree";
+ packageName = "flat-tree";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flat-tree/-/flat-tree-1.6.0.tgz";
+ sha1 = "fca30cddb9006fb656eb5ebc79aeb274e7fde9ed";
+ };
+ };
+ "flush-write-stream-1.0.2" = {
+ name = "flush-write-stream";
+ packageName = "flush-write-stream";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.0.2.tgz";
+ sha1 = "c81b90d8746766f1a609a46809946c45dd8ae417";
+ };
+ };
+ "for-each-0.3.2" = {
+ name = "for-each";
+ packageName = "for-each";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz";
+ sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4";
+ };
+ };
+ "for-in-1.0.2" = {
+ name = "for-in";
+ packageName = "for-in";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
+ sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
+ };
+ };
+ "for-own-0.1.5" = {
+ name = "for-own";
+ packageName = "for-own";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz";
+ sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce";
+ };
+ };
+ "foreach-2.0.5" = {
+ name = "foreach";
+ packageName = "foreach";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz";
+ sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99";
+ };
+ };
+ "forever-agent-0.6.1" = {
+ name = "forever-agent";
+ packageName = "forever-agent";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz";
+ sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91";
+ };
+ };
+ "form-data-2.1.4" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
+ sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
+ };
+ };
+ "form-data-2.3.1" = {
+ name = "form-data";
+ packageName = "form-data";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/form-data/-/form-data-2.3.1.tgz";
+ sha1 = "6fb94fbd71885306d73d15cc497fe4cc4ecd44bf";
+ };
+ };
+ "formatoid-1.2.2" = {
+ name = "formatoid";
+ packageName = "formatoid";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/formatoid/-/formatoid-1.2.2.tgz";
+ sha512 = "3z818q9sgzw7jky4kc4gfmx15k3hhh7lj1dy17j30vcyzmx1p14k38d0a8nvl23f2sfm4bszam36wzz8niwkznr4m992wz009ipr6yy";
+ };
+ };
+ "from2-1.3.0" = {
+ name = "from2";
+ packageName = "from2";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/from2/-/from2-1.3.0.tgz";
+ sha1 = "88413baaa5f9a597cfde9221d86986cd3c061dfd";
+ };
+ };
+ "from2-2.3.0" = {
+ name = "from2";
+ packageName = "from2";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
+ sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
+ };
+ };
+ "fs-vacuum-1.2.10" = {
+ name = "fs-vacuum";
+ packageName = "fs-vacuum";
+ version = "1.2.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-vacuum/-/fs-vacuum-1.2.10.tgz";
+ sha1 = "b7629bec07a4031a2548fdf99f5ecf1cc8b31e36";
+ };
+ };
+ "fs-write-stream-atomic-1.0.10" = {
+ name = "fs-write-stream-atomic";
+ packageName = "fs-write-stream-atomic";
+ version = "1.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
+ sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
+ };
+ };
+ "fs.realpath-1.0.0" = {
+ name = "fs.realpath";
+ packageName = "fs.realpath";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
+ sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
+ };
+ };
+ "fstream-1.0.11" = {
+ name = "fstream";
+ packageName = "fstream";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
+ sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
+ };
+ };
+ "fstream-ignore-1.0.5" = {
+ name = "fstream-ignore";
+ packageName = "fstream-ignore";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz";
+ sha1 = "9c31dae34767018fe1d249b24dada67d092da105";
+ };
+ };
+ "function-bind-1.1.1" = {
+ name = "function-bind";
+ packageName = "function-bind";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz";
+ sha512 = "38chm1mh077ksx6hy2sssfz4q29hf0ncb9k6ila7si54zqcpl5fxd1rh6wi82blqp7jcspf4aynr7jqhbsg2yc9y42xpqqp6c1jz2n8";
+ };
+ };
+ "function.name-1.0.10" = {
+ name = "function.name";
+ packageName = "function.name";
+ version = "1.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/function.name/-/function.name-1.0.10.tgz";
+ sha512 = "02zis7zxfkwajdf08z58mr0z2axddibclbk8xd849mkz7pq3y29s781fjycqigp3fdnwmy2mlvcnsg4z5hrfm44sr7gw30wx2p41x10";
+ };
+ };
+ "gauge-2.7.4" = {
+ name = "gauge";
+ packageName = "gauge";
+ version = "2.7.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
+ sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
+ };
+ };
+ "generate-function-1.1.0" = {
+ name = "generate-function";
+ packageName = "generate-function";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/generate-function/-/generate-function-1.1.0.tgz";
+ sha1 = "54c21b080192b16d9877779c5bb81666e772365f";
+ };
+ };
+ "generate-object-property-1.2.0" = {
+ name = "generate-object-property";
+ packageName = "generate-object-property";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz";
+ sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0";
+ };
+ };
+ "genfun-4.0.1" = {
+ name = "genfun";
+ packageName = "genfun";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/genfun/-/genfun-4.0.1.tgz";
+ sha1 = "ed10041f2e4a7f1b0a38466d17a5c3e27df1dfc1";
+ };
+ };
+ "get-caller-file-1.0.2" = {
+ name = "get-caller-file";
+ packageName = "get-caller-file";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz";
+ sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5";
+ };
+ };
+ "get-npm-tarball-url-2.0.1" = {
+ name = "get-npm-tarball-url";
+ packageName = "get-npm-tarball-url";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.0.1.tgz";
+ sha512 = "051jj5v45fys9v10fpvga4wby8aq0wjydhfgynfip8bgyl7db3zkjzssqn4rv264br9b04mdc25hr9479zgqyffzdq7xxcjdi2dbsiw";
+ };
+ };
+ "get-port-3.2.0" = {
+ name = "get-port";
+ packageName = "get-port";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz";
+ sha1 = "dd7ce7de187c06c8bf353796ac71e099f0980ebc";
+ };
+ };
+ "get-source-1.0.24" = {
+ name = "get-source";
+ packageName = "get-source";
+ version = "1.0.24";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-source/-/get-source-1.0.24.tgz";
+ sha1 = "898dcc7b5592adba02e8bb82b8d2cda60cdae5c5";
+ };
+ };
+ "get-stream-2.3.1" = {
+ name = "get-stream";
+ packageName = "get-stream";
+ version = "2.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz";
+ sha1 = "5f38f93f346009666ee0150a054167f91bdd95de";
+ };
+ };
+ "get-stream-3.0.0" = {
+ name = "get-stream";
+ packageName = "get-stream";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz";
+ sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14";
+ };
+ };
+ "getpass-0.1.7" = {
+ name = "getpass";
+ packageName = "getpass";
+ version = "0.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz";
+ sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa";
+ };
+ };
+ "github-from-package-0.0.0" = {
+ name = "github-from-package";
+ packageName = "github-from-package";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz";
+ sha1 = "97fb5d96bfde8973313f20e8288ef9a167fa64ce";
+ };
+ };
+ "glob-5.0.15" = {
+ name = "glob";
+ packageName = "glob";
+ version = "5.0.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz";
+ sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1";
+ };
+ };
+ "glob-7.1.2" = {
+ name = "glob";
+ packageName = "glob";
+ version = "7.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
+ sha512 = "08vjxzixc9dwc1hn5pd60yyij98krk2pr758aiga97r02ncvaqx1hidi95wk470k1v84gg4alls9bm52m77174z128bgf13b61x951h";
+ };
+ };
+ "glob-base-0.3.0" = {
+ name = "glob-base";
+ packageName = "glob-base";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz";
+ sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4";
+ };
+ };
+ "glob-parent-2.0.0" = {
+ name = "glob-parent";
+ packageName = "glob-parent";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz";
+ sha1 = "81383d72db054fcccf5336daa902f182f6edbb28";
+ };
+ };
+ "global-4.3.2" = {
+ name = "global";
+ packageName = "global";
+ version = "4.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global/-/global-4.3.2.tgz";
+ sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f";
+ };
+ };
+ "global-dirs-0.1.1" = {
+ name = "global-dirs";
+ packageName = "global-dirs";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz";
+ sha1 = "b319c0dd4607f353f3be9cca4c72fc148c49f445";
+ };
+ };
+ "globby-7.1.1" = {
+ name = "globby";
+ packageName = "globby";
+ version = "7.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz";
+ sha1 = "fb2ccff9401f8600945dfada97440cca972b8680";
+ };
+ };
+ "got-6.7.1" = {
+ name = "got";
+ packageName = "got";
+ version = "6.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz";
+ sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0";
+ };
+ };
+ "got-8.0.3" = {
+ name = "got";
+ packageName = "got";
+ version = "8.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/got/-/got-8.0.3.tgz";
+ sha512 = "2bglci1j77rvr4z2klmnr6d2qfqk0f60nm1myj9m0g2rzh7pd68hzki9nm8f5dpaxqr98ncjbd4rfzw75j35nvsfcyb2i1l9jjailak";
+ };
+ };
+ "graceful-fs-4.1.11" = {
+ name = "graceful-fs";
+ packageName = "graceful-fs";
+ version = "4.1.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
+ sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
+ };
+ };
+ "graceful-git-1.0.1" = {
+ name = "graceful-git";
+ packageName = "graceful-git";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-git/-/graceful-git-1.0.1.tgz";
+ sha512 = "31ajgk1zmq4zym3ckmr9n1x6n7sidg8naa3n8d2v6p8vr67g4gl7xxij5la1dxp6c9475pbrzq5vab7psp2dbjxvwdrzrlb8xwq83xp";
+ };
+ };
+ "graceful-readlink-1.0.1" = {
+ name = "graceful-readlink";
+ packageName = "graceful-readlink";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
+ sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
+ };
+ };
+ "graph-sequencer-2.0.0" = {
+ name = "graph-sequencer";
+ packageName = "graph-sequencer";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graph-sequencer/-/graph-sequencer-2.0.0.tgz";
+ sha1 = "bfb809b8af584f6f5287cdce507a30d4aea6ee70";
+ };
+ };
+ "growl-1.10.3" = {
+ name = "growl";
+ packageName = "growl";
+ version = "1.10.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz";
+ sha512 = "3aibvz85l13j140w4jjdk8939q6r7dnf8ay2licxgkaaldk7wbm093c1p5g7k5cg80rl0xslmczyraawfgdr82hhxn7rfsm1rn6rac4";
+ };
+ };
+ "grunt-known-options-1.1.0" = {
+ name = "grunt-known-options";
+ packageName = "grunt-known-options";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz";
+ sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149";
+ };
+ };
+ "gunzip-maybe-1.4.1" = {
+ name = "gunzip-maybe";
+ packageName = "gunzip-maybe";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.1.tgz";
+ sha512 = "3d6jyhcq21cxy2n6mnalnxcdxl9i00n8qka7awrqamggss8yllz57msx7c480knv037snkzkymq6npl36wlpl71h54x511dlchavnxa";
+ };
+ };
+ "har-schema-1.0.5" = {
+ name = "har-schema";
+ packageName = "har-schema";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
+ sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
+ };
+ };
+ "har-schema-2.0.0" = {
+ name = "har-schema";
+ packageName = "har-schema";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz";
+ sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92";
+ };
+ };
+ "har-validator-4.2.1" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
+ sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
+ };
+ };
+ "har-validator-5.0.3" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "5.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-5.0.3.tgz";
+ sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd";
+ };
+ };
+ "has-1.0.1" = {
+ name = "has";
+ packageName = "has";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz";
+ sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28";
+ };
+ };
+ "has-ansi-2.0.0" = {
+ name = "has-ansi";
+ packageName = "has-ansi";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
+ sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
+ };
+ };
+ "has-flag-1.0.0" = {
+ name = "has-flag";
+ packageName = "has-flag";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz";
+ sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa";
+ };
+ };
+ "has-flag-2.0.0" = {
+ name = "has-flag";
+ packageName = "has-flag";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz";
+ sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51";
+ };
+ };
+ "has-symbol-support-x-1.4.1" = {
+ name = "has-symbol-support-x";
+ packageName = "has-symbol-support-x";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.1.tgz";
+ sha512 = "0qgqbqmrlx51w4ixcln9ljr5hs2jj8fvryq7i8cg9a739p7y2c5z8wpplp9jhnfn4a3xn6li2b2npmhfm2x80khm9di3vllyyv9wii6";
+ };
+ };
+ "has-to-string-tag-x-1.4.1" = {
+ name = "has-to-string-tag-x";
+ packageName = "has-to-string-tag-x";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz";
+ sha512 = "0bqvhd628h3lrsydbp1xllh7jp23c58j7d4z0x0v9ddffindkk1zfrqmzm28z47ipjp0zxlmzvmlzk98zf9mzjsc47bmp1ydizcmmmx";
+ };
+ };
+ "has-unicode-2.0.1" = {
+ name = "has-unicode";
+ packageName = "has-unicode";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
+ sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
+ };
+ };
+ "hawk-3.1.3" = {
+ name = "hawk";
+ packageName = "hawk";
+ version = "3.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
+ sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
+ };
+ };
+ "hawk-6.0.2" = {
+ name = "hawk";
+ packageName = "hawk";
+ version = "6.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz";
+ sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als";
+ };
+ };
+ "he-1.1.1" = {
+ name = "he";
+ packageName = "he";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/he/-/he-1.1.1.tgz";
+ sha1 = "93410fd21b009735151f8868c2f271f3427e23fd";
+ };
+ };
+ "hoek-2.16.3" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "2.16.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
+ sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
+ };
+ };
+ "hoek-4.2.0" = {
+ name = "hoek";
+ packageName = "hoek";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hoek/-/hoek-4.2.0.tgz";
+ sha512 = "2cz0q3nnv67drgaw2rm7q57r9rgdax1qa0n4z46is7db1w8vwmh574xcr0d73xl5lg80vb85xg2gdhxzh9gbllagp7xk2q228pw4idz";
+ };
+ };
+ "hosted-git-info-2.5.0" = {
+ name = "hosted-git-info";
+ packageName = "hosted-git-info";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz";
+ sha512 = "355g980qsk8k9hkv60z58llbvpscjl5yqkh4wx719s8jcq2swzn4ynzinj8azmvdgs10r22wb297rmixh9vvsml55sbysdf2i8ipn54";
+ };
+ };
+ "http-cache-semantics-3.8.1" = {
+ name = "http-cache-semantics";
+ packageName = "http-cache-semantics";
+ version = "3.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz";
+ sha512 = "3gsj16kpvygynld5ajbvg8ii3n3bka4waamdzx30wwhz72mdr6wvffm20rfnxwzid9fq49d5g333yjq5dz1qqbnk9bwcmrj9f5bda75";
+ };
+ };
+ "http-methods-0.1.0" = {
+ name = "http-methods";
+ packageName = "http-methods";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-methods/-/http-methods-0.1.0.tgz";
+ sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430";
+ };
+ };
+ "http-proxy-agent-2.0.0" = {
+ name = "http-proxy-agent";
+ packageName = "http-proxy-agent";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-2.0.0.tgz";
+ sha1 = "46482a2f0523a4d6082551709f469cb3e4a85ff4";
+ };
+ };
+ "http-signature-1.1.1" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
+ sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
+ };
+ };
+ "http-signature-1.2.0" = {
+ name = "http-signature";
+ packageName = "http-signature";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz";
+ sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
+ };
+ };
+ "https-proxy-agent-2.1.1" = {
+ name = "https-proxy-agent";
+ packageName = "https-proxy-agent";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.1.1.tgz";
+ sha512 = "0rxbj60hs8fhs3i02lgb6ypcf9m9v8ybd4lfvfvpy0f1iyy54f1686lmv0rvkyxxihwvs4yizjgv8r8jksh385c4c9yjm3z8i0svbic";
+ };
+ };
+ "humanize-ms-1.2.1" = {
+ name = "humanize-ms";
+ packageName = "humanize-ms";
+ version = "1.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz";
+ sha1 = "c46e3159a293f6b896da29316d8b6fe8bb79bbed";
+ };
+ };
+ "hypercore-6.12.0" = {
+ name = "hypercore";
+ packageName = "hypercore";
+ version = "6.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hypercore/-/hypercore-6.12.0.tgz";
+ sha512 = "00xsmbx8jcjzsibwwgknlpjvndb7zv6jdxik5skqnbizbdssvcwa2r5a7gd1cf7mpr2827067sxqqca9fmmknjnin2vvm16yb1pn5g8";
+ };
+ };
+ "hypercore-protocol-6.5.2" = {
+ name = "hypercore-protocol";
+ packageName = "hypercore-protocol";
+ version = "6.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.5.2.tgz";
+ sha512 = "03l77nma8ga06ywa469jzqgc13hjk9bg3w2cv95g3fwnqy2fvz8qpczcih65jscvk0ira5kpm3sk2vqh2whzzvnm19jlqrzi78v80n3";
+ };
+ };
+ "hyperdrive-9.12.2" = {
name = "hyperdrive";
packageName = "hyperdrive";
- version = "9.12.0";
+ version = "9.12.2";
src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.0.tgz";
- sha512 = "285nxd3xfdr51r8av9d7dal8hqa3lfrac1m46gn9b73ljwivlhhsxpbrqyhdf80v7bnmw8vpy61x77gm8cfmwv5z8pffmmnla2p8l5y";
+ url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.2.tgz";
+ sha512 = "133iwkp8w88awfxffdjjfxl2wsrj99cdw1p2rvbv65q7mgficva14skid7vsd55r750lrvg0wbmlz0h4m44w6ypd7cvpb4hjvb2f815";
};
};
"hyperdrive-http-4.2.2" = {
@@ -1354,292 +3307,166 @@ let
sha1 = "40daf82e31b9d753f2ae6dfaf0818661ed24fe15";
};
};
- "mirror-folder-2.1.1" = {
- name = "mirror-folder";
- packageName = "mirror-folder";
- version = "2.1.1";
+ "i-0.3.6" = {
+ name = "i";
+ packageName = "i";
+ version = "0.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-2.1.1.tgz";
- sha1 = "1ad3b777b39e403cc27bf52086c23e41ef4c9604";
+ url = "https://registry.npmjs.org/i/-/i-0.3.6.tgz";
+ sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d";
};
};
- "multicb-1.2.2" = {
- name = "multicb";
- packageName = "multicb";
- version = "1.2.2";
+ "iconv-lite-0.4.19" = {
+ name = "iconv-lite";
+ packageName = "iconv-lite";
+ version = "0.4.19";
src = fetchurl {
- url = "https://registry.npmjs.org/multicb/-/multicb-1.2.2.tgz";
- sha512 = "2liv9lhcxrlp21524jzp1hxzbd07xmb7qlzma5qfn98bgn63ga0i5jalrhlz6qc08fd4jxh3hj2mi9wm14s95lip5x236052rv3i4rx";
+ url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz";
+ sha512 = "0jj1pdq3j9ak8cixn2kjp7ip8hf3xgnb85j4jr32yf9rry620v9072c0kk577mllfk1zl9wzs5ypwzbp7vbhf7j31d5rrqgwb0nldm1";
};
};
- "random-access-file-1.8.1" = {
- name = "random-access-file";
- packageName = "random-access-file";
- version = "1.8.1";
+ "ieee754-1.1.8" = {
+ name = "ieee754";
+ packageName = "ieee754";
+ version = "1.1.8";
src = fetchurl {
- url = "https://registry.npmjs.org/random-access-file/-/random-access-file-1.8.1.tgz";
- sha512 = "3pvi9knrjp8krj1hsg8i2qmv5097fid3qnyz4wh2dvpr37x2ga6qqk7afh5f1i5sb9dsw169bara13knccdmjwnivb62xgywz868j7r";
+ url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz";
+ sha1 = "be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4";
};
};
- "sparse-bitfield-3.0.3" = {
- name = "sparse-bitfield";
- packageName = "sparse-bitfield";
- version = "3.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz";
- sha1 = "ff4ae6e68656056ba4b3e792ab3334d38273ca11";
- };
- };
- "stream-each-1.2.2" = {
- name = "stream-each";
- packageName = "stream-each";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz";
- sha512 = "2h4ymczmf5aqldga4sj8acqlzc3almazi2vwiv7kx63k28sz1wwkqgzzv1hn47jf49k1x94w25fmmi001h5mj3n6g9in1s6b1n5vkcr";
- };
- };
- "untildify-3.0.2" = {
- name = "untildify";
- packageName = "untildify";
- version = "3.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/untildify/-/untildify-3.0.2.tgz";
- sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1";
- };
- };
- "anymatch-1.3.2" = {
- name = "anymatch";
- packageName = "anymatch";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz";
- sha512 = "269dbx666z4ws49vag1dma5kdpjlx83s74c1jlngrn2672rhvbc47i5ay5h40spmrzgvbvcm33i4yrp88rrc6lg70v78k155z45lwyi";
- };
- };
- "micromatch-2.3.11" = {
- name = "micromatch";
- packageName = "micromatch";
- version = "2.3.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz";
- sha1 = "86677c97d1720b363431d04d0d15293bd38c1565";
- };
- };
- "normalize-path-2.1.1" = {
- name = "normalize-path";
- packageName = "normalize-path";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
- sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
- };
- };
- "arr-diff-2.0.0" = {
- name = "arr-diff";
- packageName = "arr-diff";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz";
- sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf";
- };
- };
- "array-unique-0.2.1" = {
- name = "array-unique";
- packageName = "array-unique";
- version = "0.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz";
- sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53";
- };
- };
- "braces-1.8.5" = {
- name = "braces";
- packageName = "braces";
- version = "1.8.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz";
- sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7";
- };
- };
- "expand-brackets-0.1.5" = {
- name = "expand-brackets";
- packageName = "expand-brackets";
+ "iferr-0.1.5" = {
+ name = "iferr";
+ packageName = "iferr";
version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz";
- sha1 = "df07284e342a807cd733ac5af72411e581d1177b";
+ url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz";
+ sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501";
};
};
- "extglob-0.3.2" = {
- name = "extglob";
- packageName = "extglob";
- version = "0.3.2";
+ "ignore-3.3.7" = {
+ name = "ignore";
+ packageName = "ignore";
+ version = "3.3.7";
src = fetchurl {
- url = "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz";
- sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1";
+ url = "https://registry.npmjs.org/ignore/-/ignore-3.3.7.tgz";
+ sha512 = "0f6xhxww989yic6hwdm8mbylcyakfkrrn22a39wdcc9k842xxyyhzfxkmi79s9gjk3rp3h07n265lf4n51z8yafpdm78d617dxbfqb0";
};
};
- "filename-regex-2.0.1" = {
- name = "filename-regex";
- packageName = "filename-regex";
- version = "2.0.1";
+ "ignore-walk-3.0.1" = {
+ name = "ignore-walk";
+ packageName = "ignore-walk";
+ version = "3.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz";
- sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26";
+ url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz";
+ sha512 = "2ajgs5klg786rkdxs37mbxn0p8ah2ai0nj0bjv5vbrfir4y0pvrhxxadv46s8g1hqkq5p3fjssys3n6qvz60p4jzjsgfq683lrnad8d";
};
};
- "is-extglob-1.0.0" = {
- name = "is-extglob";
- packageName = "is-extglob";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz";
- sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0";
- };
- };
- "is-glob-2.0.1" = {
- name = "is-glob";
- packageName = "is-glob";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz";
- sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863";
- };
- };
- "kind-of-3.2.2" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "3.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
- sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
- };
- };
- "object.omit-2.0.1" = {
- name = "object.omit";
- packageName = "object.omit";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz";
- sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa";
- };
- };
- "parse-glob-3.0.4" = {
- name = "parse-glob";
- packageName = "parse-glob";
- version = "3.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz";
- sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c";
- };
- };
- "regex-cache-0.4.4" = {
- name = "regex-cache";
- packageName = "regex-cache";
- version = "0.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz";
- sha512 = "1crfmf19zkv0imnbbkj7bwrcyin3zxa88cs86b6apkxj8qrsmkxnydhsy2ia75q4ld10rhi2s2c36h7g77a997mh9c2z453s311jllx";
- };
- };
- "arr-flatten-1.1.0" = {
- name = "arr-flatten";
- packageName = "arr-flatten";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz";
- sha512 = "2vdly17xk5kw7bfzajrjdnw4ml3wrfblx8064n0i4fxlchcscx2mvnwkq2bnnqvbqvdy4vs9ad462lz0rid7khysly9m9vzjiblly1g";
- };
- };
- "expand-range-1.8.2" = {
- name = "expand-range";
- packageName = "expand-range";
- version = "1.8.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz";
- sha1 = "a299effd335fe2721ebae8e257ec79644fc85337";
- };
- };
- "preserve-0.2.0" = {
- name = "preserve";
- packageName = "preserve";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz";
- sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b";
- };
- };
- "repeat-element-1.1.2" = {
- name = "repeat-element";
- packageName = "repeat-element";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz";
- sha1 = "ef089a178d1483baae4d93eb98b4f9e4e11d990a";
- };
- };
- "fill-range-2.2.3" = {
- name = "fill-range";
- packageName = "fill-range";
- version = "2.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz";
- sha1 = "50b77dfd7e469bc7492470963699fe7a8485a723";
- };
- };
- "is-number-2.1.0" = {
- name = "is-number";
- packageName = "is-number";
+ "import-lazy-2.1.0" = {
+ name = "import-lazy";
+ packageName = "import-lazy";
version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz";
- sha1 = "01fcbbb393463a548f2f466cce16dece49db908f";
+ url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz";
+ sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43";
};
};
- "isobject-2.1.0" = {
- name = "isobject";
- packageName = "isobject";
- version = "2.1.0";
+ "imurmurhash-0.1.4" = {
+ name = "imurmurhash";
+ packageName = "imurmurhash";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
- sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
+ url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz";
+ sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
};
};
- "randomatic-1.1.7" = {
- name = "randomatic";
- packageName = "randomatic";
- version = "1.1.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz";
- sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg";
- };
- };
- "repeat-string-1.6.1" = {
- name = "repeat-string";
- packageName = "repeat-string";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
- sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
- };
- };
- "is-number-3.0.0" = {
- name = "is-number";
- packageName = "is-number";
+ "individual-3.0.0" = {
+ name = "individual";
+ packageName = "individual";
version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
- sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
+ url = "https://registry.npmjs.org/individual/-/individual-3.0.0.tgz";
+ sha1 = "e7ca4f85f8957b018734f285750dc22ec2f9862d";
};
};
- "kind-of-4.0.0" = {
- name = "kind-of";
- packageName = "kind-of";
- version = "4.0.0";
+ "inflight-1.0.6" = {
+ name = "inflight";
+ packageName = "inflight";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
- sha1 = "20813df3d712928b207378691a45066fae72dd57";
+ url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
+ sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
+ };
+ };
+ "inherits-2.0.3" = {
+ name = "inherits";
+ packageName = "inherits";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz";
+ sha1 = "633c2c83e3da42a502f52466022480f4208261de";
+ };
+ };
+ "ini-1.3.5" = {
+ name = "ini";
+ packageName = "ini";
+ version = "1.3.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
+ sha512 = "1rjbvf1rg5ywhnba08sgagn2qf23lab330qrqmh7d891zap3xpxcyfyj1cblpf0f0rypglcfacybzyrpd4996aa1mbc820awa33k5j5";
+ };
+ };
+ "init-package-json-1.10.1" = {
+ name = "init-package-json";
+ packageName = "init-package-json";
+ version = "1.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.10.1.tgz";
+ sha1 = "cd873a167796befb99612b28762a0b6393fd8f6a";
+ };
+ };
+ "into-stream-2.0.1" = {
+ name = "into-stream";
+ packageName = "into-stream";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/into-stream/-/into-stream-2.0.1.tgz";
+ sha1 = "db9b003694453eae091d8a5c84cc11507b781d31";
+ };
+ };
+ "into-stream-3.1.0" = {
+ name = "into-stream";
+ packageName = "into-stream";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz";
+ sha1 = "96fb0a936c12babd6ff1752a17d05616abd094c6";
+ };
+ };
+ "invert-kv-1.0.0" = {
+ name = "invert-kv";
+ packageName = "invert-kv";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz";
+ sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6";
+ };
+ };
+ "ip-1.1.5" = {
+ name = "ip";
+ packageName = "ip";
+ version = "1.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz";
+ sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
+ };
+ };
+ "is-arrayish-0.2.1" = {
+ name = "is-arrayish";
+ packageName = "is-arrayish";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz";
+ sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
};
};
"is-buffer-1.1.6" = {
@@ -1651,49 +3478,67 @@ let
sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm";
};
};
- "is-posix-bracket-0.1.1" = {
- name = "is-posix-bracket";
- packageName = "is-posix-bracket";
- version = "0.1.1";
+ "is-builtin-module-1.0.0" = {
+ name = "is-builtin-module";
+ packageName = "is-builtin-module";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz";
- sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
+ url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz";
+ sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe";
};
};
- "for-own-0.1.5" = {
- name = "for-own";
- packageName = "for-own";
- version = "0.1.5";
+ "is-bzip2-1.0.0" = {
+ name = "is-bzip2";
+ packageName = "is-bzip2";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz";
- sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce";
+ url = "https://registry.npmjs.org/is-bzip2/-/is-bzip2-1.0.0.tgz";
+ sha1 = "5ee58eaa5a2e9c80e21407bedf23ae5ac091b3fc";
};
};
- "is-extendable-0.1.1" = {
- name = "is-extendable";
- packageName = "is-extendable";
- version = "0.1.1";
+ "is-callable-1.1.3" = {
+ name = "is-callable";
+ packageName = "is-callable";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
- sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
+ url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz";
+ sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2";
};
};
- "for-in-1.0.2" = {
- name = "for-in";
- packageName = "for-in";
- version = "1.0.2";
+ "is-ci-1.1.0" = {
+ name = "is-ci";
+ packageName = "is-ci";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
- sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
+ url = "https://registry.npmjs.org/is-ci/-/is-ci-1.1.0.tgz";
+ sha512 = "0m66alrh568wj40xwshf8q99gsjfk1jr0czp4jc2sm519wfzzzprkl5zjvw2r5h49p72d50ywj9qg67dnyazq0ijy4flgny2b1ygd3k";
};
};
- "glob-base-0.3.0" = {
- name = "glob-base";
- packageName = "glob-base";
- version = "0.3.0";
+ "is-cidr-1.0.0" = {
+ name = "is-cidr";
+ packageName = "is-cidr";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz";
- sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4";
+ url = "https://registry.npmjs.org/is-cidr/-/is-cidr-1.0.0.tgz";
+ sha1 = "fb5aacf659255310359da32cae03e40c6a1c2afc";
+ };
+ };
+ "is-date-object-1.0.1" = {
+ name = "is-date-object";
+ packageName = "is-date-object";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz";
+ sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16";
+ };
+ };
+ "is-deflate-1.0.0" = {
+ name = "is-deflate";
+ packageName = "is-deflate";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz";
+ sha1 = "c862901c3c161fb09dac7cdc7e784f80e98f2f14";
};
};
"is-dotfile-1.0.3" = {
@@ -1705,15 +3550,6 @@ let
sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1";
};
};
- "glob-parent-2.0.0" = {
- name = "glob-parent";
- packageName = "glob-parent";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz";
- sha1 = "81383d72db054fcccf5336daa902f182f6edbb28";
- };
- };
"is-equal-shallow-0.1.3" = {
name = "is-equal-shallow";
packageName = "is-equal-shallow";
@@ -1723,6 +3559,159 @@ let
sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534";
};
};
+ "is-extendable-0.1.1" = {
+ name = "is-extendable";
+ packageName = "is-extendable";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz";
+ sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
+ };
+ };
+ "is-extglob-1.0.0" = {
+ name = "is-extglob";
+ packageName = "is-extglob";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz";
+ sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0";
+ };
+ };
+ "is-fullwidth-code-point-1.0.0" = {
+ name = "is-fullwidth-code-point";
+ packageName = "is-fullwidth-code-point";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
+ sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
+ };
+ };
+ "is-fullwidth-code-point-2.0.0" = {
+ name = "is-fullwidth-code-point";
+ packageName = "is-fullwidth-code-point";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz";
+ sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f";
+ };
+ };
+ "is-function-1.0.1" = {
+ name = "is-function";
+ packageName = "is-function";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-function/-/is-function-1.0.1.tgz";
+ sha1 = "12cfb98b65b57dd3d193a3121f5f6e2f437602b5";
+ };
+ };
+ "is-glob-2.0.1" = {
+ name = "is-glob";
+ packageName = "is-glob";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz";
+ sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863";
+ };
+ };
+ "is-gzip-1.0.0" = {
+ name = "is-gzip";
+ packageName = "is-gzip";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz";
+ sha1 = "6ca8b07b99c77998025900e555ced8ed80879a83";
+ };
+ };
+ "is-inner-link-2.0.2" = {
+ name = "is-inner-link";
+ packageName = "is-inner-link";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-inner-link/-/is-inner-link-2.0.2.tgz";
+ sha512 = "2xbj75av7s092kdl27ic28ckwnfnxvl4wr3x879djhamp0waw1js8c0zrakfnbjbsp5vh087brimykngrg319zfzhgwjvni994m2bv1";
+ };
+ };
+ "is-installed-globally-0.1.0" = {
+ name = "is-installed-globally";
+ packageName = "is-installed-globally";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz";
+ sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80";
+ };
+ };
+ "is-npm-1.0.0" = {
+ name = "is-npm";
+ packageName = "is-npm";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz";
+ sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4";
+ };
+ };
+ "is-number-2.1.0" = {
+ name = "is-number";
+ packageName = "is-number";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz";
+ sha1 = "01fcbbb393463a548f2f466cce16dece49db908f";
+ };
+ };
+ "is-number-3.0.0" = {
+ name = "is-number";
+ packageName = "is-number";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz";
+ sha1 = "24fd6201a4782cf50561c810276afc7d12d71195";
+ };
+ };
+ "is-obj-1.0.1" = {
+ name = "is-obj";
+ packageName = "is-obj";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz";
+ sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f";
+ };
+ };
+ "is-object-1.0.1" = {
+ name = "is-object";
+ packageName = "is-object";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz";
+ sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470";
+ };
+ };
+ "is-path-inside-1.0.1" = {
+ name = "is-path-inside";
+ packageName = "is-path-inside";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz";
+ sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036";
+ };
+ };
+ "is-plain-obj-1.1.0" = {
+ name = "is-plain-obj";
+ packageName = "is-plain-obj";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz";
+ sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e";
+ };
+ };
+ "is-posix-bracket-0.1.1" = {
+ name = "is-posix-bracket";
+ packageName = "is-posix-bracket";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz";
+ sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
+ };
+ };
"is-primitive-2.0.0" = {
name = "is-primitive";
packageName = "is-primitive";
@@ -1732,265 +3721,103 @@ let
sha1 = "207bab91638499c07b2adf240a41a87210034575";
};
};
- "remove-trailing-separator-1.1.0" = {
- name = "remove-trailing-separator";
- packageName = "remove-trailing-separator";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
- sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
- };
- };
- "dat-encoding-5.0.1" = {
- name = "dat-encoding";
- packageName = "dat-encoding";
- version = "5.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-encoding/-/dat-encoding-5.0.1.tgz";
- sha512 = "2lc9p062gaa2xrf07z14xqgid3rw5fg05ak3s13g3mrr5hf8zxmdvp3lq4wggj7k5pc2c43r3d4yyy7rfrqafsdm7hfisdda4zgsi1w";
- };
- };
- "append-tree-2.4.0" = {
- name = "append-tree";
- packageName = "append-tree";
- version = "2.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.0.tgz";
- sha512 = "1ym9wsmz3fjv0wf675xclbnjp825cyvxp3a9x8af96yms45dbk8c79jrx5vgdii1zimcnr2pg305g9sw79k5yqah9267k71lsz5vv35";
- };
- };
- "dat-secret-storage-4.0.0" = {
- name = "dat-secret-storage";
- packageName = "dat-secret-storage";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/dat-secret-storage/-/dat-secret-storage-4.0.0.tgz";
- sha1 = "01b219a5bc1619efc0f58122a3c6cebb1eb8b40a";
- };
- };
- "multi-random-access-2.1.1" = {
- name = "multi-random-access";
- packageName = "multi-random-access";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/multi-random-access/-/multi-random-access-2.1.1.tgz";
- sha1 = "6462f1b204109ccc644601650110a828443d66e2";
- };
- };
- "array-lru-1.1.1" = {
- name = "array-lru";
- packageName = "array-lru";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-lru/-/array-lru-1.1.1.tgz";
- sha1 = "0c7e1b4e022ae166ff1e8448c595f3181fcd3337";
- };
- };
- "brfs-1.4.3" = {
- name = "brfs";
- packageName = "brfs";
- version = "1.4.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/brfs/-/brfs-1.4.3.tgz";
- sha1 = "db675d6f5e923e6df087fca5859c9090aaed3216";
- };
- };
- "codecs-1.2.0" = {
- name = "codecs";
- packageName = "codecs";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/codecs/-/codecs-1.2.0.tgz";
- sha1 = "5148549e3d156c5fa053d7cbb419715a0cf43d16";
- };
- };
- "from2-2.3.0" = {
- name = "from2";
- packageName = "from2";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
- sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
- };
- };
- "mutexify-1.2.0" = {
- name = "mutexify";
- packageName = "mutexify";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mutexify/-/mutexify-1.2.0.tgz";
- sha512 = "2hha5ly9j3v9pqpfvkbq8spn9sz7qz5bv8p303zmdisskhcn6i7ia5dviv8xhs3xlwi9562i4r4rm6mkk5gg0abm34zm1dkvp2z76m2";
- };
- };
- "protocol-buffers-3.2.1" = {
- name = "protocol-buffers";
- packageName = "protocol-buffers";
- version = "3.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/protocol-buffers/-/protocol-buffers-3.2.1.tgz";
- sha1 = "37258e17e24a082f06ebb17731e92851d1c76889";
- };
- };
- "varint-5.0.0" = {
- name = "varint";
- packageName = "varint";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz";
- sha1 = "d826b89f7490732fabc0c0ed693ed475dcb29ebf";
- };
- };
- "quote-stream-1.0.2" = {
- name = "quote-stream";
- packageName = "quote-stream";
+ "is-property-1.0.2" = {
+ name = "is-property";
+ packageName = "is-property";
version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/quote-stream/-/quote-stream-1.0.2.tgz";
- sha1 = "84963f8c9c26b942e153feeb53aae74652b7e0b2";
+ url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz";
+ sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
};
};
- "resolve-1.5.0" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.5.0";
+ "is-redirect-1.0.0" = {
+ name = "is-redirect";
+ packageName = "is-redirect";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz";
- sha512 = "25scf9zkhf5yc9x3d7mfq2im5vyxmq3ih939na6jzblal7mgfcijmadl2maz501mkccykj714gvdhhmlzi86hbk7k03r9ipnwd142l6";
+ url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz";
+ sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24";
};
};
- "static-module-1.5.0" = {
- name = "static-module";
- packageName = "static-module";
- version = "1.5.0";
+ "is-regex-1.0.4" = {
+ name = "is-regex";
+ packageName = "is-regex";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/static-module/-/static-module-1.5.0.tgz";
- sha1 = "27da9883c41a8cd09236f842f0c1ebc6edf63d86";
+ url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz";
+ sha1 = "5517489b547091b0930e095654ced25ee97e9491";
};
};
- "through2-2.0.3" = {
- name = "through2";
- packageName = "through2";
- version = "2.0.3";
+ "is-retry-allowed-1.1.0" = {
+ name = "is-retry-allowed";
+ packageName = "is-retry-allowed";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz";
- sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
+ url = "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz";
+ sha1 = "11a060568b67339444033d0125a61a20d564fb34";
};
};
- "buffer-equal-0.0.1" = {
- name = "buffer-equal";
- packageName = "buffer-equal";
- version = "0.0.1";
+ "is-ssh-1.3.0" = {
+ name = "is-ssh";
+ packageName = "is-ssh";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz";
- sha1 = "91bc74b11ea405bc916bc6aa908faafa5b4aac4b";
+ url = "https://registry.npmjs.org/is-ssh/-/is-ssh-1.3.0.tgz";
+ sha1 = "ebea1169a2614da392a63740366c3ce049d8dff6";
};
};
- "path-parse-1.0.5" = {
- name = "path-parse";
- packageName = "path-parse";
- version = "1.0.5";
+ "is-stream-1.1.0" = {
+ name = "is-stream";
+ packageName = "is-stream";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz";
- sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1";
+ url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz";
+ sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
};
};
- "duplexer2-0.0.2" = {
- name = "duplexer2";
- packageName = "duplexer2";
- version = "0.0.2";
+ "is-string-1.0.4" = {
+ name = "is-string";
+ packageName = "is-string";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz";
- sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db";
+ url = "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz";
+ sha1 = "cc3a9b69857d621e963725a24caeec873b826e64";
};
};
- "escodegen-1.3.3" = {
- name = "escodegen";
- packageName = "escodegen";
- version = "1.3.3";
+ "is-subdir-1.0.2" = {
+ name = "is-subdir";
+ packageName = "is-subdir";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/escodegen/-/escodegen-1.3.3.tgz";
- sha1 = "f024016f5a88e046fd12005055e939802e6c5f23";
+ url = "https://registry.npmjs.org/is-subdir/-/is-subdir-1.0.2.tgz";
+ sha512 = "2czdnl66p1ls8xjwh0vx5ydk118b9m1zhnc4khf16v7bh9n8nwjhafr4aigvd6kj2igl0ylbzznc181pf0ppxm4bgiv9kwyvlryyzfq";
};
};
- "falafel-2.1.0" = {
- name = "falafel";
- packageName = "falafel";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/falafel/-/falafel-2.1.0.tgz";
- sha1 = "96bb17761daba94f46d001738b3cedf3a67fe06c";
- };
- };
- "has-1.0.1" = {
- name = "has";
- packageName = "has";
+ "is-symbol-1.0.1" = {
+ name = "is-symbol";
+ packageName = "is-symbol";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz";
- sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28";
+ url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz";
+ sha1 = "3cc59f00025194b6ab2e38dbae6689256b660572";
};
};
- "object-inspect-0.4.0" = {
- name = "object-inspect";
- packageName = "object-inspect";
- version = "0.4.0";
+ "is-typedarray-1.0.0" = {
+ name = "is-typedarray";
+ packageName = "is-typedarray";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/object-inspect/-/object-inspect-0.4.0.tgz";
- sha1 = "f5157c116c1455b243b06ee97703392c5ad89fec";
+ url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz";
+ sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a";
};
};
- "quote-stream-0.0.0" = {
- name = "quote-stream";
- packageName = "quote-stream";
- version = "0.0.0";
+ "is-windows-1.0.1" = {
+ name = "is-windows";
+ packageName = "is-windows";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/quote-stream/-/quote-stream-0.0.0.tgz";
- sha1 = "cde29e94c409b16e19dc7098b89b6658f9721d3b";
- };
- };
- "readable-stream-1.0.34" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.0.34";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz";
- sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c";
- };
- };
- "shallow-copy-0.0.1" = {
- name = "shallow-copy";
- packageName = "shallow-copy";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz";
- sha1 = "415f42702d73d810330292cc5ee86eae1a11a170";
- };
- };
- "static-eval-0.2.4" = {
- name = "static-eval";
- packageName = "static-eval";
- version = "0.2.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/static-eval/-/static-eval-0.2.4.tgz";
- sha1 = "b7d34d838937b969f9641ca07d48f8ede263ea7b";
- };
- };
- "through2-0.4.2" = {
- name = "through2";
- packageName = "through2";
- version = "0.4.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/through2/-/through2-0.4.2.tgz";
- sha1 = "dbf5866031151ec8352bb6c4db64a2292a840b9b";
- };
- };
- "readable-stream-1.1.14" = {
- name = "readable-stream";
- packageName = "readable-stream";
- version = "1.1.14";
- src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
- sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
+ url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.1.tgz";
+ sha1 = "310db70f742d259a16a369202b51af84233310d9";
};
};
"isarray-0.0.1" = {
@@ -2002,355 +3829,535 @@ let
sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf";
};
};
- "string_decoder-0.10.31" = {
- name = "string_decoder";
- packageName = "string_decoder";
- version = "0.10.31";
- src = fetchurl {
- url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
- sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
- };
- };
- "esutils-1.0.0" = {
- name = "esutils";
- packageName = "esutils";
+ "isarray-1.0.0" = {
+ name = "isarray";
+ packageName = "isarray";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz";
- sha1 = "8151d358e20c8acc7fb745e7472c0025fe496570";
+ url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
+ sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
};
};
- "estraverse-1.5.1" = {
- name = "estraverse";
- packageName = "estraverse";
- version = "1.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz";
- sha1 = "867a3e8e58a9f84618afb6c2ddbcd916b7cbaf71";
- };
- };
- "esprima-1.1.1" = {
- name = "esprima";
- packageName = "esprima";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-1.1.1.tgz";
- sha1 = "5b6f1547f4d102e670e140c509be6771d6aeb549";
- };
- };
- "source-map-0.1.43" = {
- name = "source-map";
- packageName = "source-map";
- version = "0.1.43";
- src = fetchurl {
- url = "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz";
- sha1 = "c24bc146ca517c1471f5dacbe2571b2b7f9e3346";
- };
- };
- "amdefine-1.0.1" = {
- name = "amdefine";
- packageName = "amdefine";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz";
- sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5";
- };
- };
- "acorn-5.2.1" = {
- name = "acorn";
- packageName = "acorn";
- version = "5.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-5.2.1.tgz";
- sha512 = "3ryzhy30vzfnn2a0crafh3qsrx145ali8i88q1bc0lzl1dz0ycmjmmwh2yn9xfjs3vmjxl7nphpwcs4imgz3da5jb8fvjqbrvnjwvcc";
- };
- };
- "foreach-2.0.5" = {
- name = "foreach";
- packageName = "foreach";
- version = "2.0.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz";
- sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99";
- };
- };
- "object-keys-1.0.11" = {
- name = "object-keys";
- packageName = "object-keys";
- version = "1.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz";
- sha1 = "c54601778ad560f1142ce0e01bcca8b56d13426d";
- };
- };
- "function-bind-1.1.1" = {
- name = "function-bind";
- packageName = "function-bind";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz";
- sha512 = "38chm1mh077ksx6hy2sssfz4q29hf0ncb9k6ila7si54zqcpl5fxd1rh6wi82blqp7jcspf4aynr7jqhbsg2yc9y42xpqqp6c1jz2n8";
- };
- };
- "minimist-0.0.8" = {
- name = "minimist";
- packageName = "minimist";
- version = "0.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
- sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
- };
- };
- "escodegen-0.0.28" = {
- name = "escodegen";
- packageName = "escodegen";
- version = "0.0.28";
- src = fetchurl {
- url = "https://registry.npmjs.org/escodegen/-/escodegen-0.0.28.tgz";
- sha1 = "0e4ff1715f328775d6cab51ac44a406cd7abffd3";
- };
- };
- "esprima-1.0.4" = {
- name = "esprima";
- packageName = "esprima";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz";
- sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad";
- };
- };
- "estraverse-1.3.2" = {
- name = "estraverse";
- packageName = "estraverse";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/estraverse/-/estraverse-1.3.2.tgz";
- sha1 = "37c2b893ef13d723f276d878d60d8535152a6c42";
- };
- };
- "xtend-2.1.2" = {
- name = "xtend";
- packageName = "xtend";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz";
- sha1 = "6efecc2a4dad8e6962c4901b337ce7ba87b5d28b";
- };
- };
- "object-keys-0.4.0" = {
- name = "object-keys";
- packageName = "object-keys";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz";
- sha1 = "28a6aae7428dd2c3a92f3d95f21335dd204e0336";
- };
- };
- "generate-function-2.0.0" = {
- name = "generate-function";
- packageName = "generate-function";
+ "isexe-2.0.0" = {
+ name = "isexe";
+ packageName = "isexe";
version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz";
- sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74";
+ url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
+ sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
};
};
- "generate-object-property-1.2.0" = {
- name = "generate-object-property";
- packageName = "generate-object-property";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz";
- sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0";
- };
- };
- "protocol-buffers-schema-3.3.2" = {
- name = "protocol-buffers-schema";
- packageName = "protocol-buffers-schema";
- version = "3.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.3.2.tgz";
- sha512 = "3rvq2xsb9y9vfy8vgf6ja08362bjcg132kxcwcfdik1j6j17dvlk535agpwiqzj47g1d7shcwq5h6zk5jy1ny25n4z6bzh1rfkv5mjx";
- };
- };
- "signed-varint-2.0.1" = {
- name = "signed-varint";
- packageName = "signed-varint";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/signed-varint/-/signed-varint-2.0.1.tgz";
- sha1 = "50a9989da7c98c2c61dad119bc97470ef8528129";
- };
- };
- "is-property-1.0.2" = {
- name = "is-property";
- packageName = "is-property";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz";
- sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
- };
- };
- "os-homedir-1.0.2" = {
- name = "os-homedir";
- packageName = "os-homedir";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
- sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
- };
- };
- "abstract-random-access-1.1.2" = {
- name = "abstract-random-access";
- packageName = "abstract-random-access";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/abstract-random-access/-/abstract-random-access-1.1.2.tgz";
- sha1 = "9a8eac8ff79866f3f9b4bb1443ca778f1598aeda";
- };
- };
- "sorted-array-functions-1.0.0" = {
- name = "sorted-array-functions";
- packageName = "sorted-array-functions";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.0.0.tgz";
- sha1 = "c0b554d9e709affcbe56d34c1b2514197fd38279";
- };
- };
- "duplexify-3.5.1" = {
- name = "duplexify";
- packageName = "duplexify";
- version = "3.5.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/duplexify/-/duplexify-3.5.1.tgz";
- sha512 = "0cyjpkdqc1lkh2fh7z9p2i6va4fvwazvpn4153ndpb2ng8w0q9x9kb0hk07yy0baj50s1kl58m7f7zmx8fqdfcp2vsl0m7hfk22i64g";
- };
- };
- "hypercore-6.11.0" = {
- name = "hypercore";
- packageName = "hypercore";
- version = "6.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-6.11.0.tgz";
- sha512 = "0q0972kpj73qndhwb3msk3xkfpx1zldfw1ld815kncb0lbr7mdhawjz701y230zji0lamnznrv61cmcnx2zlqjhvcyrf9fyyr93r6ds";
- };
- };
- "sodium-universal-2.0.0" = {
- name = "sodium-universal";
- packageName = "sodium-universal";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sodium-universal/-/sodium-universal-2.0.0.tgz";
- sha512 = "2rd6r7v2i3z76rzvllqx9ywk5f64q23944njcf14vv7x3l0illqn41bgdiifik4kswgys99mxsrqinq8akf3n7b15r9871km74mbivj";
- };
- };
- "stream-collector-1.0.1" = {
- name = "stream-collector";
- packageName = "stream-collector";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-collector/-/stream-collector-1.0.1.tgz";
- sha1 = "4d4e55f171356121b2c5f6559f944705ab28db15";
- };
- };
- "uint64be-2.0.1" = {
- name = "uint64be";
- packageName = "uint64be";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.1.tgz";
- sha1 = "a310d94e4e5e0b02a95d678e33323f802bdc8428";
- };
- };
- "unixify-1.0.0" = {
- name = "unixify";
- packageName = "unixify";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz";
- sha1 = "3a641c8c2ffbce4da683a5c70f03a462940c2090";
- };
- };
- "end-of-stream-1.4.0" = {
- name = "end-of-stream";
- packageName = "end-of-stream";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz";
- sha1 = "7a90d833efda6cfa6eac0f4949dbb0fad3a63206";
- };
- };
- "stream-shift-1.0.0" = {
- name = "stream-shift";
- packageName = "stream-shift";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz";
- sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
- };
- };
- "once-1.4.0" = {
- name = "once";
- packageName = "once";
- version = "1.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
- sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
- };
- };
- "wrappy-1.0.2" = {
- name = "wrappy";
- packageName = "wrappy";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
- sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
- };
- };
- "atomic-batcher-1.0.2" = {
- name = "atomic-batcher";
- packageName = "atomic-batcher";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/atomic-batcher/-/atomic-batcher-1.0.2.tgz";
- sha1 = "d16901d10ccec59516c197b9ccd8930689b813b4";
- };
- };
- "bitfield-rle-2.1.0" = {
- name = "bitfield-rle";
- packageName = "bitfield-rle";
+ "isobject-2.1.0" = {
+ name = "isobject";
+ packageName = "isobject";
version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bitfield-rle/-/bitfield-rle-2.1.0.tgz";
- sha1 = "ae29e9382a7ba4898de9f48bb23fd338c4fbdcf8";
+ url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz";
+ sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89";
};
};
- "bulk-write-stream-1.1.3" = {
- name = "bulk-write-stream";
- packageName = "bulk-write-stream";
- version = "1.1.3";
+ "isstream-0.1.2" = {
+ name = "isstream";
+ packageName = "isstream";
+ version = "0.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/bulk-write-stream/-/bulk-write-stream-1.1.3.tgz";
- sha1 = "d29ca385fbd53f357aee5bd3d3028732b62ae275";
+ url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz";
+ sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a";
};
};
- "flat-tree-1.6.0" = {
- name = "flat-tree";
- packageName = "flat-tree";
+ "isurl-1.0.0" = {
+ name = "isurl";
+ packageName = "isurl";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz";
+ sha512 = "3vs53bpdrwiwwcql2xs20jmd8qha27k4iypdhr0b3isgdaj18vz80nhxwvvqxk6y3x5vj3slchxl0r91gjhz487xmkkp52gridg5zyl";
+ };
+ };
+ "iterate-object-1.3.2" = {
+ name = "iterate-object";
+ packageName = "iterate-object";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iterate-object/-/iterate-object-1.3.2.tgz";
+ sha1 = "24ec15affa5d0039e8839695a21c2cae1f45b66b";
+ };
+ };
+ "iterators-0.1.0" = {
+ name = "iterators";
+ packageName = "iterators";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/iterators/-/iterators-0.1.0.tgz";
+ sha1 = "d03f666ca4e6130138565997cacea54164203156";
+ };
+ };
+ "js-yaml-3.10.0" = {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "3.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz";
+ sha512 = "0h26sq1bwxc45bm0hvlcadrbk4bizzaw729wvw690ya7mpys45bqfzdqwhjkdrnq0i44dzxckykz4bix22jfdyfg1asybg3yzczjsrv";
+ };
+ };
+ "jsbn-0.1.1" = {
+ name = "jsbn";
+ packageName = "jsbn";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
+ sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
+ };
+ };
+ "json-buffer-3.0.0" = {
+ name = "json-buffer";
+ packageName = "json-buffer";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz";
+ sha1 = "5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898";
+ };
+ };
+ "json-parse-better-errors-1.0.1" = {
+ name = "json-parse-better-errors";
+ packageName = "json-parse-better-errors";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz";
+ sha512 = "05ndp7b03ikx2vqivfxlm6c73yagjyrdp22ay8z592pqxldbsm7hjzpa3asal2vys99lvirqar3ly3sb1ibhhngls4sqc4nwp2jj967";
+ };
+ };
+ "json-schema-0.2.3" = {
+ name = "json-schema";
+ packageName = "json-schema";
+ version = "0.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz";
+ sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13";
+ };
+ };
+ "json-schema-traverse-0.3.1" = {
+ name = "json-schema-traverse";
+ packageName = "json-schema-traverse";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz";
+ sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340";
+ };
+ };
+ "json-stable-stringify-1.0.1" = {
+ name = "json-stable-stringify";
+ packageName = "json-stable-stringify";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
+ sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
+ };
+ };
+ "json-stringify-safe-5.0.1" = {
+ name = "json-stringify-safe";
+ packageName = "json-stringify-safe";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz";
+ sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
+ };
+ };
+ "json2yaml-1.1.0" = {
+ name = "json2yaml";
+ packageName = "json2yaml";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json2yaml/-/json2yaml-1.1.0.tgz";
+ sha1 = "5414d907f9816586b80c513ec2e3aeb2ab819a6c";
+ };
+ };
+ "jsonify-0.0.0" = {
+ name = "jsonify";
+ packageName = "jsonify";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
+ sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
+ };
+ };
+ "jsonparse-1.3.1" = {
+ name = "jsonparse";
+ packageName = "jsonparse";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz";
+ sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280";
+ };
+ };
+ "jsprim-1.4.1" = {
+ name = "jsprim";
+ packageName = "jsprim";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz";
+ sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2";
+ };
+ };
+ "k-bucket-3.3.1" = {
+ name = "k-bucket";
+ packageName = "k-bucket";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-bucket/-/k-bucket-3.3.1.tgz";
+ sha512 = "2dkl580azs1f5pj72mpygwdcc2mh4p355sxi84ki1w9c6k226nmjfglq5b7zgk5gmpfjammx5xliirzaf2nh9kyhqdb1xpvhjlic34j";
+ };
+ };
+ "k-rpc-4.2.1" = {
+ name = "k-rpc";
+ packageName = "k-rpc";
+ version = "4.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-rpc/-/k-rpc-4.2.1.tgz";
+ sha512 = "2nbjxg0x7jsa14zhvx68w1vri68hsxzbxz7b7ap76fdp0jkrgna2rq636yxnax04f3f8i2ambj2fpan6qli6vixmfryz78vrapdip8n";
+ };
+ };
+ "k-rpc-socket-1.7.2" = {
+ name = "k-rpc-socket";
+ packageName = "k-rpc-socket";
+ version = "1.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.7.2.tgz";
+ sha512 = "02w1ih1lh86i5ap7c3dy2ml7g5a11r0w300iyxdf6v02qr0j1x3vf78hx5q9dgg3drifab018mgm851m457zzzi05i2z2r1s3zlflc3";
+ };
+ };
+ "keyv-3.0.0" = {
+ name = "keyv";
+ packageName = "keyv";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz";
+ sha512 = "32ga97c763vprf4sjbb2f7gbngfppq9n1hy4cpq2h4yb1msrhh2zjimxib7p09mzgynm6askbigxlsqsm11p644avp4sf5nmng8f2vs";
+ };
+ };
+ "kind-of-3.2.2" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz";
+ sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64";
+ };
+ };
+ "kind-of-4.0.0" = {
+ name = "kind-of";
+ packageName = "kind-of";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz";
+ sha1 = "20813df3d712928b207378691a45066fae72dd57";
+ };
+ };
+ "last-one-wins-1.0.4" = {
+ name = "last-one-wins";
+ packageName = "last-one-wins";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/last-one-wins/-/last-one-wins-1.0.4.tgz";
+ sha1 = "c1bfd0cbcb46790ec9156b8d1aee8fcb86cda22a";
+ };
+ };
+ "latest-version-3.1.0" = {
+ name = "latest-version";
+ packageName = "latest-version";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz";
+ sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15";
+ };
+ };
+ "lazy-property-1.0.0" = {
+ name = "lazy-property";
+ packageName = "lazy-property";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazy-property/-/lazy-property-1.0.0.tgz";
+ sha1 = "84ddc4b370679ba8bd4cdcfa4c06b43d57111147";
+ };
+ };
+ "lcid-1.0.0" = {
+ name = "lcid";
+ packageName = "lcid";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz";
+ sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835";
+ };
+ };
+ "le-table-4.0.0" = {
+ name = "le-table";
+ packageName = "le-table";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/le-table/-/le-table-4.0.0.tgz";
+ sha1 = "3bfeb72d24cbfc37752f01539f9006d711d9be93";
+ };
+ };
+ "length-prefixed-message-3.0.3" = {
+ name = "length-prefixed-message";
+ packageName = "length-prefixed-message";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/length-prefixed-message/-/length-prefixed-message-3.0.3.tgz";
+ sha1 = "245474d69abc0614dca368dc35aa8074982a23ac";
+ };
+ };
+ "libnpx-9.6.0" = {
+ name = "libnpx";
+ packageName = "libnpx";
+ version = "9.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/libnpx/-/libnpx-9.6.0.tgz";
+ sha512 = "28v6bsd92dcqj92yr2bk9r29ajwbqx46fd46mriva2934nr7s6hhkxy6f7xbf4nd7p93fxsbpzfx0ghq0y788x1zj8gnh1iswgd89sz";
+ };
+ };
+ "load-json-file-2.0.0" = {
+ name = "load-json-file";
+ packageName = "load-json-file";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz";
+ sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8";
+ };
+ };
+ "load-json-file-4.0.0" = {
+ name = "load-json-file";
+ packageName = "load-json-file";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz";
+ sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b";
+ };
+ };
+ "load-yaml-file-0.1.0" = {
+ name = "load-yaml-file";
+ packageName = "load-yaml-file";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/load-yaml-file/-/load-yaml-file-0.1.0.tgz";
+ sha1 = "f680066e691b3eeb45017672e4a3956af5b83b89";
+ };
+ };
+ "locate-path-2.0.0" = {
+ name = "locate-path";
+ packageName = "locate-path";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz";
+ sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e";
+ };
+ };
+ "lockfile-1.0.3" = {
+ name = "lockfile";
+ packageName = "lockfile";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lockfile/-/lockfile-1.0.3.tgz";
+ sha1 = "2638fc39a0331e9cac1a04b71799931c9c50df79";
+ };
+ };
+ "lodash-3.10.1" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "3.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz";
+ sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6";
+ };
+ };
+ "lodash-4.17.4" = {
+ name = "lodash";
+ packageName = "lodash";
+ version = "4.17.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz";
+ sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae";
+ };
+ };
+ "lodash._baseuniq-4.6.0" = {
+ name = "lodash._baseuniq";
+ packageName = "lodash._baseuniq";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.6.0.tgz";
+ sha1 = "0ebb44e456814af7905c6212fa2c9b2d51b841e8";
+ };
+ };
+ "lodash._createset-4.0.3" = {
+ name = "lodash._createset";
+ packageName = "lodash._createset";
+ version = "4.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.3.tgz";
+ sha1 = "0f4659fbb09d75194fa9e2b88a6644d363c9fe26";
+ };
+ };
+ "lodash._root-3.0.1" = {
+ name = "lodash._root";
+ packageName = "lodash._root";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz";
+ sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692";
+ };
+ };
+ "lodash.clonedeep-4.5.0" = {
+ name = "lodash.clonedeep";
+ packageName = "lodash.clonedeep";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz";
+ sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef";
+ };
+ };
+ "lodash.flattendeep-4.4.0" = {
+ name = "lodash.flattendeep";
+ packageName = "lodash.flattendeep";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz";
+ sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2";
+ };
+ };
+ "lodash.throttle-4.1.1" = {
+ name = "lodash.throttle";
+ packageName = "lodash.throttle";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz";
+ sha1 = "c23e91b710242ac70c37f1e1cda9274cc39bf2f4";
+ };
+ };
+ "lodash.union-4.6.0" = {
+ name = "lodash.union";
+ packageName = "lodash.union";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz";
+ sha1 = "48bb5088409f16f1821666641c44dd1aaae3cd88";
+ };
+ };
+ "lodash.uniq-4.5.0" = {
+ name = "lodash.uniq";
+ packageName = "lodash.uniq";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz";
+ sha1 = "d0225373aeb652adc1bc82e4945339a842754773";
+ };
+ };
+ "lodash.without-4.4.0" = {
+ name = "lodash.without";
+ packageName = "lodash.without";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.without/-/lodash.without-4.4.0.tgz";
+ sha1 = "3cd4574a00b67bae373a94b748772640507b7aac";
+ };
+ };
+ "log-update-2.3.0" = {
+ name = "log-update";
+ packageName = "log-update";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz";
+ sha1 = "88328fd7d1ce7938b29283746f0b1bc126b24708";
+ };
+ };
+ "loud-rejection-1.6.0" = {
+ name = "loud-rejection";
+ packageName = "loud-rejection";
version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/flat-tree/-/flat-tree-1.6.0.tgz";
- sha1 = "fca30cddb9006fb656eb5ebc79aeb274e7fde9ed";
+ url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz";
+ sha1 = "5b46f80147edee578870f086d04821cf998e551f";
};
};
- "hypercore-protocol-6.4.2" = {
- name = "hypercore-protocol";
- packageName = "hypercore-protocol";
- version = "6.4.2";
+ "lowercase-keys-1.0.0" = {
+ name = "lowercase-keys";
+ packageName = "lowercase-keys";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.4.2.tgz";
- sha512 = "07lwyavmways0q0ljrvpgvdii96f96a692m4x8dwmdwlfgh604gjz47vs95zk2ryfs9qm5j9msvy955bgyqns2az3ypysi76k51n7y7";
+ url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz";
+ sha1 = "4e3366b39e7f5457e35f1324bdf6f88d0bfc7306";
+ };
+ };
+ "lru-2.0.1" = {
+ name = "lru";
+ packageName = "lru";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru/-/lru-2.0.1.tgz";
+ sha1 = "f979871e162e3f5ca254be46844c53d4c5364544";
+ };
+ };
+ "lru-3.1.0" = {
+ name = "lru";
+ packageName = "lru";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru/-/lru-3.1.0.tgz";
+ sha1 = "ea7fb8546d83733396a13091d76cfeb4c06837d5";
+ };
+ };
+ "lru-cache-4.1.1" = {
+ name = "lru-cache";
+ packageName = "lru-cache";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.1.tgz";
+ sha512 = "1xz91sizgyzh8plz5jx1labzpygapm6xy3qpxriaj00yvnhy4lnmhqcb20qln4lh80c5g3yzp4j5i6g63njq1r5sl9c0zlkh9xjk2xb";
+ };
+ };
+ "make-dir-1.1.0" = {
+ name = "make-dir";
+ packageName = "make-dir";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-dir/-/make-dir-1.1.0.tgz";
+ sha512 = "1q7686aqgkxk9l6nqhzbil3599f9pxiz364kdbfy7pdr9sny7zylpm6yf4rwz4i0aa11lmf35mh8jmj7g7vxm37pvqvl9qbij5jxyfh";
+ };
+ };
+ "make-fetch-happen-2.6.0" = {
+ name = "make-fetch-happen";
+ packageName = "make-fetch-happen";
+ version = "2.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-2.6.0.tgz";
+ sha512 = "1kmyri7r2lpf3fjzwbbdramk86mhplv53x5pl535frn1vryq9xl7hmzkb3awxw6c31n19w0i20mv0h3zj8mmcw5yjkiysrlsaab8nhl";
+ };
+ };
+ "meant-1.0.1" = {
+ name = "meant";
+ packageName = "meant";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/meant/-/meant-1.0.1.tgz";
+ sha512 = "2b6yi25bkxg4hd38w2cpfjy0xyka4iqiyzhsnkklx3nxwbgnzr4hfl07xxpflccjvnb03zvnssw0y9fspxdk2fmq3abd4fab0n1baai";
+ };
+ };
+ "mem-1.1.0" = {
+ name = "mem";
+ packageName = "mem";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz";
+ sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76";
+ };
+ };
+ "mem-3.0.0" = {
+ name = "mem";
+ packageName = "mem";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mem/-/mem-3.0.0.tgz";
+ sha1 = "84e58ad4dfbdf5d105b26b6548a398b2b3aa8a21";
};
};
"memory-pager-1.1.0" = {
@@ -2371,130 +4378,13 @@ let
sha1 = "f8a064760d37e7978ad5f9f6d3c119a494f57081";
};
};
- "unordered-array-remove-1.0.2" = {
- name = "unordered-array-remove";
- packageName = "unordered-array-remove";
- version = "1.0.2";
+ "micromatch-2.3.11" = {
+ name = "micromatch";
+ packageName = "micromatch";
+ version = "2.3.11";
src = fetchurl {
- url = "https://registry.npmjs.org/unordered-array-remove/-/unordered-array-remove-1.0.2.tgz";
- sha1 = "c546e8f88e317a0cf2644c97ecb57dba66d250ef";
- };
- };
- "unordered-set-2.0.0" = {
- name = "unordered-set";
- packageName = "unordered-set";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/unordered-set/-/unordered-set-2.0.0.tgz";
- sha1 = "985a27e975baa20b8263aea7a791e9300941a9ec";
- };
- };
- "varint-4.0.1" = {
- name = "varint";
- packageName = "varint";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/varint/-/varint-4.0.1.tgz";
- sha1 = "490829b942d248463b2b35097995c3bf737198e9";
- };
- };
- "sorted-indexof-1.0.0" = {
- name = "sorted-indexof";
- packageName = "sorted-indexof";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sorted-indexof/-/sorted-indexof-1.0.0.tgz";
- sha1 = "17c742ff7cf187e2f59a15df9b81f17a62ce0899";
- };
- };
- "sodium-javascript-0.5.4" = {
- name = "sodium-javascript";
- packageName = "sodium-javascript";
- version = "0.5.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.4.tgz";
- sha512 = "1dqdzm0qjk1rwq62b010b649wdpvlzdxpmwc972p0dcwsc86wqfcm8lbdcxlrwypkn2jq5df1xpbxhxfphnpr993ac543p9s212si30";
- };
- };
- "sodium-native-2.1.2" = {
- name = "sodium-native";
- packageName = "sodium-native";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.1.2.tgz";
- sha512 = "3rkm9fyndric0yxx4qsrxmj1wbz7q4ixm6735jlsvkyi8gvibszsc017660p4gdypcikwbzfyvcxl1bpjwnbcd60gbri5xnxqd1m0yl";
- };
- };
- "blake2b-2.1.2" = {
- name = "blake2b";
- packageName = "blake2b";
- version = "2.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/blake2b/-/blake2b-2.1.2.tgz";
- sha1 = "6880eddca35cfede92c4fb2724221334f989145a";
- };
- };
- "nanoassert-1.1.0" = {
- name = "nanoassert";
- packageName = "nanoassert";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz";
- sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d";
- };
- };
- "siphash24-1.1.0" = {
- name = "siphash24";
- packageName = "siphash24";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.0.tgz";
- sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w";
- };
- };
- "xsalsa20-1.0.2" = {
- name = "xsalsa20";
- packageName = "xsalsa20";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/xsalsa20/-/xsalsa20-1.0.2.tgz";
- sha512 = "35rg34yxk4ag0qclk7bqxirgr3dgypcvkisqqj2g3y0ma16pkfy81iv79pcwff5p4spygwjh2m9v37llq7367fypqrx89s9kscwal43";
- };
- };
- "blake2b-wasm-1.1.4" = {
- name = "blake2b-wasm";
- packageName = "blake2b-wasm";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/blake2b-wasm/-/blake2b-wasm-1.1.4.tgz";
- sha512 = "3hgcz1c3h2hxgavmlf5r4dwk0wy2sg9y4lfs5ifj4spdlwyy3ki9i1i4hjaw0029c896d6yw424mw2j1nf4qyibkz2lbh1ws6z6rdlg";
- };
- };
- "base64-to-uint8array-1.0.0" = {
- name = "base64-to-uint8array";
- packageName = "base64-to-uint8array";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-to-uint8array/-/base64-to-uint8array-1.0.0.tgz";
- sha512 = "01a4ip2ivflpjsx4flnww5fqvdcsy2sqnjgp2cii6b2gnkkccr02vbf2y8r2wlcab4pb8x47qb3jpahca61v584bmz9xcwyqx0xdf3n";
- };
- };
- "corsify-2.1.0" = {
- name = "corsify";
- packageName = "corsify";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/corsify/-/corsify-2.1.0.tgz";
- sha1 = "11a45bc47ab30c54d00bb869ea1802fbcd9a09d0";
- };
- };
- "directory-index-html-2.1.0" = {
- name = "directory-index-html";
- packageName = "directory-index-html";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/directory-index-html/-/directory-index-html-2.1.0.tgz";
- sha1 = "4d5afc5187edba67ec6ab0e55f6422a0e2cb7338";
+ url = "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz";
+ sha1 = "86677c97d1720b363431d04d0d15293bd38c1565";
};
};
"mime-1.6.0" = {
@@ -2506,373 +4396,49 @@ let
sha512 = "1x901mk5cdib4xp27v4ivwwr7mhy64r4rk953bzivi5p9lf2bhw88ra2rhkd254xkdx2d3q30zkq239vc4yx4pfsj4hpys8rbr6fif7";
};
};
- "range-parser-1.2.0" = {
- name = "range-parser";
- packageName = "range-parser";
- version = "1.2.0";
+ "mime-db-1.30.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.30.0";
src = fetchurl {
- url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz";
- sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e";
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.30.0.tgz";
+ sha1 = "74c643da2dd9d6a45399963465b26d5ca7d71f01";
};
};
- "http-methods-0.1.0" = {
- name = "http-methods";
- packageName = "http-methods";
- version = "0.1.0";
+ "mime-types-2.1.17" = {
+ name = "mime-types";
+ packageName = "mime-types";
+ version = "2.1.17";
src = fetchurl {
- url = "https://registry.npmjs.org/http-methods/-/http-methods-0.1.0.tgz";
- sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430";
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.17.tgz";
+ sha1 = "09d7a393f03e995a79f8af857b70a9e0ab16557a";
};
};
- "content-types-0.1.0" = {
- name = "content-types";
- packageName = "content-types";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/content-types/-/content-types-0.1.0.tgz";
- sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578";
- };
- };
- "body-0.1.0" = {
- name = "body";
- packageName = "body";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/body/-/body-0.1.0.tgz";
- sha1 = "e714fe28cd8848aa34cdf2c9f242bbe2e15d1cd8";
- };
- };
- "iterators-0.1.0" = {
- name = "iterators";
- packageName = "iterators";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/iterators/-/iterators-0.1.0.tgz";
- sha1 = "d03f666ca4e6130138565997cacea54164203156";
- };
- };
- "ap-0.1.0" = {
- name = "ap";
- packageName = "ap";
- version = "0.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ap/-/ap-0.1.0.tgz";
- sha1 = "d8a3f26615379398a1b53ca6cc1a666a0fbfe150";
- };
- };
- "fd-read-stream-1.1.0" = {
- name = "fd-read-stream";
- packageName = "fd-read-stream";
+ "mimic-fn-1.1.0" = {
+ name = "mimic-fn";
+ packageName = "mimic-fn";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fd-read-stream/-/fd-read-stream-1.1.0.tgz";
- sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1";
+ url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.1.0.tgz";
+ sha1 = "e667783d92e89dbd342818b5230b9d62a672ad18";
};
};
- "recursive-watch-1.1.2" = {
- name = "recursive-watch";
- packageName = "recursive-watch";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.2.tgz";
- sha1 = "912e2d62a83c8b388d288c4343495f247bc43f8e";
- };
- };
- "ttl-1.3.1" = {
- name = "ttl";
- packageName = "ttl";
- version = "1.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ttl/-/ttl-1.3.1.tgz";
- sha512 = "36d1ph5z6c3p2qqyjq8ckksxs7m0anipm6lzf51dgv59iymac2zwaxj6fablw7zabpjxav32qk8z12fdfx6cdpp97b0van043vb5cgr";
- };
- };
- "buffer-alloc-unsafe-1.0.0" = {
- name = "buffer-alloc-unsafe";
- packageName = "buffer-alloc-unsafe";
+ "mimic-response-1.0.0" = {
+ name = "mimic-response";
+ packageName = "mimic-response";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.0.0.tgz";
- sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe";
+ url = "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.0.tgz";
+ sha1 = "df3d3652a73fded6b9b0b24146e6fd052353458e";
};
};
- "mkdirp-0.5.1" = {
- name = "mkdirp";
- packageName = "mkdirp";
- version = "0.5.1";
+ "min-document-2.19.0" = {
+ name = "min-document";
+ packageName = "min-document";
+ version = "2.19.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
- sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
- };
- };
- "township-client-1.3.2" = {
- name = "township-client";
- packageName = "township-client";
- version = "1.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/township-client/-/township-client-1.3.2.tgz";
- sha512 = "3da1j7ba37apy5kqlv436dz265b8ni63ca069gy4wrj9krq236j7sp0r259ia6jk1a8d7qqg37kkk8kwmnaqwcy90wnwnjxxp8bnf78";
- };
- };
- "is-string-1.0.4" = {
- name = "is-string";
- packageName = "is-string";
- version = "1.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-string/-/is-string-1.0.4.tgz";
- sha1 = "cc3a9b69857d621e963725a24caeec873b826e64";
- };
- };
- "lodash.throttle-4.1.1" = {
- name = "lodash.throttle";
- packageName = "lodash.throttle";
- version = "4.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz";
- sha1 = "c23e91b710242ac70c37f1e1cda9274cc39bf2f4";
- };
- };
- "nanobus-3.3.0" = {
- name = "nanobus";
- packageName = "nanobus";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanobus/-/nanobus-3.3.0.tgz";
- sha1 = "bce5d5d435a5362c7dad7f9e90cd21959589be86";
- };
- };
- "status-logger-3.1.1" = {
- name = "status-logger";
- packageName = "status-logger";
- version = "3.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/status-logger/-/status-logger-3.1.1.tgz";
- sha512 = "005i18cgcklklz0gqd9gsck97zwf2zfr9wa26lr9djafcng34nbdlqmhwrm9ixf2qgjb9mm2k72ggscb7v3zvybbkys1xfkzv6immkl";
- };
- };
- "nanotiming-1.0.1" = {
- name = "nanotiming";
- packageName = "nanotiming";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nanotiming/-/nanotiming-1.0.1.tgz";
- sha1 = "13e7a2e2767967974fedfff071edd39327f44ec3";
- };
- };
- "ansi-diff-stream-1.2.0" = {
- name = "ansi-diff-stream";
- packageName = "ansi-diff-stream";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-diff-stream/-/ansi-diff-stream-1.2.0.tgz";
- sha1 = "eb325c20ac3623ecd592011a9295d76d97de460e";
- };
- };
- "lodash.flattendeep-4.4.0" = {
- name = "lodash.flattendeep";
- packageName = "lodash.flattendeep";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz";
- sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2";
- };
- };
- "wrap-ansi-3.0.1" = {
- name = "wrap-ansi";
- packageName = "wrap-ansi";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz";
- sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba";
- };
- };
- "ansi-regex-2.1.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
- };
- };
- "colors-1.1.2" = {
- name = "colors";
- packageName = "colors";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz";
- sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
- };
- };
- "pkginfo-0.4.1" = {
- name = "pkginfo";
- packageName = "pkginfo";
- version = "0.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz";
- sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff";
- };
- };
- "read-1.0.7" = {
- name = "read";
- packageName = "read";
- version = "1.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/read/-/read-1.0.7.tgz";
- sha1 = "b3da19bd052431a97671d44a42634adf710b40c4";
- };
- };
- "revalidator-0.1.8" = {
- name = "revalidator";
- packageName = "revalidator";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz";
- sha1 = "fece61bfa0c1b52a206bd6b18198184bdd523a3b";
- };
- };
- "utile-0.3.0" = {
- name = "utile";
- packageName = "utile";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/utile/-/utile-0.3.0.tgz";
- sha1 = "1352c340eb820e4d8ddba039a4fbfaa32ed4ef3a";
- };
- };
- "winston-2.1.1" = {
- name = "winston";
- packageName = "winston";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz";
- sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e";
- };
- };
- "mute-stream-0.0.7" = {
- name = "mute-stream";
- packageName = "mute-stream";
- version = "0.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz";
- sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab";
- };
- };
- "async-0.9.2" = {
- name = "async";
- packageName = "async";
- version = "0.9.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz";
- sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d";
- };
- };
- "deep-equal-0.2.2" = {
- name = "deep-equal";
- packageName = "deep-equal";
- version = "0.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.2.2.tgz";
- sha1 = "84b745896f34c684e98f2ce0e42abaf43bba017d";
- };
- };
- "i-0.3.6" = {
- name = "i";
- packageName = "i";
- version = "0.3.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/i/-/i-0.3.6.tgz";
- sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d";
- };
- };
- "ncp-1.0.1" = {
- name = "ncp";
- packageName = "ncp";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz";
- sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246";
- };
- };
- "async-1.0.0" = {
- name = "async";
- packageName = "async";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz";
- sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9";
- };
- };
- "colors-1.0.3" = {
- name = "colors";
- packageName = "colors";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz";
- sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
- };
- };
- "cycle-1.0.3" = {
- name = "cycle";
- packageName = "cycle";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz";
- sha1 = "21e80b2be8580f98b468f379430662b046c34ad2";
- };
- };
- "eyes-0.1.8" = {
- name = "eyes";
- packageName = "eyes";
- version = "0.1.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz";
- sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0";
- };
- };
- "pkginfo-0.3.1" = {
- name = "pkginfo";
- packageName = "pkginfo";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz";
- sha1 = "5b29f6a81f70717142e09e765bbeab97b4f81e21";
- };
- };
- "stack-trace-0.0.10" = {
- name = "stack-trace";
- packageName = "stack-trace";
- version = "0.0.10";
- src = fetchurl {
- url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz";
- sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
- };
- };
- "glob-7.1.2" = {
- name = "glob";
- packageName = "glob";
- version = "7.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz";
- sha512 = "08vjxzixc9dwc1hn5pd60yyij98krk2pr758aiga97r02ncvaqx1hidi95wk470k1v84gg4alls9bm52m77174z128bgf13b61x951h";
- };
- };
- "fs.realpath-1.0.0" = {
- name = "fs.realpath";
- packageName = "fs.realpath";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz";
- sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f";
- };
- };
- "inflight-1.0.6" = {
- name = "inflight";
- packageName = "inflight";
- version = "1.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz";
- sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9";
+ url = "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz";
+ sha1 = "7bd282e3f5842ed295bb748cdd9f1ffa2c824685";
};
};
"minimatch-3.0.4" = {
@@ -2884,76 +4450,346 @@ let
sha512 = "1879a3j85h92ypvb7lpv1dqpcxl49rqnbgs5la18zmj1yqhwl60c2m74254wbr5pp3znckqpkg9dvjyrz6hfz8b9vag5a3j910db4f8";
};
};
- "path-is-absolute-1.0.1" = {
- name = "path-is-absolute";
- packageName = "path-is-absolute";
- version = "1.0.1";
+ "minimist-0.0.8" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "0.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
- sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
+ url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz";
+ sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d";
};
};
- "brace-expansion-1.1.8" = {
- name = "brace-expansion";
- packageName = "brace-expansion";
- version = "1.1.8";
+ "minimist-1.2.0" = {
+ name = "minimist";
+ packageName = "minimist";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz";
- sha1 = "c07b211c7c952ec1f8efd51a77ef0d1d3990a292";
+ url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz";
+ sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
};
};
- "balanced-match-1.0.0" = {
- name = "balanced-match";
- packageName = "balanced-match";
- version = "1.0.0";
+ "minipass-2.2.1" = {
+ name = "minipass";
+ packageName = "minipass";
+ version = "2.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
- sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.2.1.tgz";
+ sha512 = "3yy9s65iwrx5hndcqbxrks88xi9cf8hra6zalgf8xfr4ahpp31s0i8lv6jpyb42p0y7z55ac3390sbqxcgcvan3xls449agbjb98mmv";
};
};
- "concat-map-0.0.1" = {
- name = "concat-map";
- packageName = "concat-map";
- version = "0.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz";
- sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b";
- };
- };
- "cliclopts-1.1.1" = {
- name = "cliclopts";
- packageName = "cliclopts";
- version = "1.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/cliclopts/-/cliclopts-1.1.1.tgz";
- sha1 = "69431c7cb5af723774b0d3911b4c37512431910f";
- };
- };
- "stream-parser-0.3.1" = {
- name = "stream-parser";
- packageName = "stream-parser";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz";
- sha1 = "1618548694420021a1182ff0af1911c129761773";
- };
- };
- "findup-sync-0.3.0" = {
- name = "findup-sync";
- packageName = "findup-sync";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz";
- sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16";
- };
- };
- "grunt-known-options-1.1.0" = {
- name = "grunt-known-options";
- packageName = "grunt-known-options";
+ "minizlib-1.1.0" = {
+ name = "minizlib";
+ packageName = "minizlib";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz";
- sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149";
+ url = "https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz";
+ sha512 = "2agpbdf9h90nhafdam3jwrw8gcz3jw1i40cx6bhwaw8qaf2s863gi2b77l73dc3hmf5dx491hv5km1rqzabgsbpkjxrvdcwy6pr8gp1";
+ };
+ };
+ "mirror-folder-2.1.1" = {
+ name = "mirror-folder";
+ packageName = "mirror-folder";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-2.1.1.tgz";
+ sha1 = "1ad3b777b39e403cc27bf52086c23e41ef4c9604";
+ };
+ };
+ "mississippi-1.3.1" = {
+ name = "mississippi";
+ packageName = "mississippi";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mississippi/-/mississippi-1.3.1.tgz";
+ sha512 = "2vfagk7xiqrqmyp78yz1cpnjsaibgix7q22cgxggwzf5kqr7y1p21dbi67vcvsvip1g2s6mrvskw7d8a2288sala5n0nv65hpqw3apz";
+ };
+ };
+ "mkdirp-0.5.1" = {
+ name = "mkdirp";
+ packageName = "mkdirp";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz";
+ sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903";
+ };
+ };
+ "mkdirp-promise-5.0.1" = {
+ name = "mkdirp-promise";
+ packageName = "mkdirp-promise";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz";
+ sha1 = "e9b8f68e552c68a9c1713b84883f7a1dd039b8a1";
+ };
+ };
+ "months-1.2.0" = {
+ name = "months";
+ packageName = "months";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/months/-/months-1.2.0.tgz";
+ sha512 = "0wl48vfgi3c46vwy8cfa0j4z65rbar2j8cwgns9jcgi3cc3n79fm7yjg6wlbd90y3jhhfj03i2xs0as0sv3kkb0jc32d2bk9a2knlyc";
+ };
+ };
+ "most-1.7.2" = {
+ name = "most";
+ packageName = "most";
+ version = "1.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/most/-/most-1.7.2.tgz";
+ sha512 = "1jxsiagsdkjmd2h0ys7kkc34rw79bswfdlyijd2fv434d0sxk8i8j055fhmpfs4ca1j9wgi6pj9k4b2cyq7di528vykwgf7mr8v6d4c";
+ };
+ };
+ "most-last-1.0.0" = {
+ name = "most-last";
+ packageName = "most-last";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/most-last/-/most-last-1.0.0.tgz";
+ sha1 = "4e3f0b289c24cf90b9d8384676de90a26e376171";
+ };
+ };
+ "move-concurrently-1.0.1" = {
+ name = "move-concurrently";
+ packageName = "move-concurrently";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz";
+ sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
+ };
+ };
+ "ms-2.0.0" = {
+ name = "ms";
+ packageName = "ms";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz";
+ sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8";
+ };
+ };
+ "ms-2.1.1" = {
+ name = "ms";
+ packageName = "ms";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz";
+ sha512 = "352z145jr1zx0w6kmlz2jxcaw6j2pwwg9va3x4gk731zw1agka2b213avw12zx6hgn071ibm0f3p80n5cdv896npay4s6jwbrv7w2mn";
+ };
+ };
+ "multi-random-access-2.1.1" = {
+ name = "multi-random-access";
+ packageName = "multi-random-access";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multi-random-access/-/multi-random-access-2.1.1.tgz";
+ sha1 = "6462f1b204109ccc644601650110a828443d66e2";
+ };
+ };
+ "multicast-dns-6.2.2" = {
+ name = "multicast-dns";
+ packageName = "multicast-dns";
+ version = "6.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.2.tgz";
+ sha512 = "06b9ps5a1ymag21szz55z4xzs2ncp0frcqsaldnggmz0m5ijhjv8f553cpkp9zkm37av1pm2y8pn70jbfzk888n1hap6i321babhcy5";
+ };
+ };
+ "multicb-1.2.2" = {
+ name = "multicb";
+ packageName = "multicb";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/multicb/-/multicb-1.2.2.tgz";
+ sha512 = "2liv9lhcxrlp21524jzp1hxzbd07xmb7qlzma5qfn98bgn63ga0i5jalrhlz6qc08fd4jxh3hj2mi9wm14s95lip5x236052rv3i4rx";
+ };
+ };
+ "mute-stream-0.0.7" = {
+ name = "mute-stream";
+ packageName = "mute-stream";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz";
+ sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab";
+ };
+ };
+ "mutexify-1.2.0" = {
+ name = "mutexify";
+ packageName = "mutexify";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mutexify/-/mutexify-1.2.0.tgz";
+ sha512 = "2hha5ly9j3v9pqpfvkbq8spn9sz7qz5bv8p303zmdisskhcn6i7ia5dviv8xhs3xlwi9562i4r4rm6mkk5gg0abm34zm1dkvp2z76m2";
+ };
+ };
+ "mz-2.7.0" = {
+ name = "mz";
+ packageName = "mz";
+ version = "2.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz";
+ sha512 = "3cpmwzmngnmxhklvicnsbl5dchvsy0yikzgf705cq1cplyps3waa03xbjp306bjf167wnplibwki0csnavz98dihq2877g7xqs4dkfg";
+ };
+ };
+ "nan-2.8.0" = {
+ name = "nan";
+ packageName = "nan";
+ version = "2.8.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nan/-/nan-2.8.0.tgz";
+ sha1 = "ed715f3fe9de02b57a5e6252d90a96675e1f085a";
+ };
+ };
+ "nanoassert-1.1.0" = {
+ name = "nanoassert";
+ packageName = "nanoassert";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanoassert/-/nanoassert-1.1.0.tgz";
+ sha1 = "4f3152e09540fde28c76f44b19bbcd1d5a42478d";
+ };
+ };
+ "nanobus-3.3.0" = {
+ name = "nanobus";
+ packageName = "nanobus";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanobus/-/nanobus-3.3.0.tgz";
+ sha1 = "bce5d5d435a5362c7dad7f9e90cd21959589be86";
+ };
+ };
+ "nanotiming-1.0.1" = {
+ name = "nanotiming";
+ packageName = "nanotiming";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nanotiming/-/nanotiming-1.0.1.tgz";
+ sha1 = "13e7a2e2767967974fedfff071edd39327f44ec3";
+ };
+ };
+ "ncp-1.0.1" = {
+ name = "ncp";
+ packageName = "ncp";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ncp/-/ncp-1.0.1.tgz";
+ sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246";
+ };
+ };
+ "ncp-2.0.0" = {
+ name = "ncp";
+ packageName = "ncp";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz";
+ sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3";
+ };
+ };
+ "ndjson-1.5.0" = {
+ name = "ndjson";
+ packageName = "ndjson";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ndjson/-/ndjson-1.5.0.tgz";
+ sha1 = "ae603b36b134bcec347b452422b0bf98d5832ec8";
+ };
+ };
+ "neat-csv-2.1.0" = {
+ name = "neat-csv";
+ packageName = "neat-csv";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neat-csv/-/neat-csv-2.1.0.tgz";
+ sha1 = "06f58360c4c3b955bd467ddc85ae4511a3907a4c";
+ };
+ };
+ "neat-log-1.1.2" = {
+ name = "neat-log";
+ packageName = "neat-log";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/neat-log/-/neat-log-1.1.2.tgz";
+ sha512 = "15fbq2bchsjk85zklc34xl74skmdxbipsf0zjf1k6jfq1fr31h5bn7c6438ff55i9yzrhf11k85ahvahyb73khfjl4sj59zjrqksj9d";
+ };
+ };
+ "nerf-dart-1.0.0" = {
+ name = "nerf-dart";
+ packageName = "nerf-dart";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz";
+ sha1 = "e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a";
+ };
+ };
+ "nets-3.2.0" = {
+ name = "nets";
+ packageName = "nets";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nets/-/nets-3.2.0.tgz";
+ sha1 = "d511fbab7af11da013f21b97ee91747d33852d38";
+ };
+ };
+ "network-address-1.1.2" = {
+ name = "network-address";
+ packageName = "network-address";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/network-address/-/network-address-1.1.2.tgz";
+ sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e";
+ };
+ };
+ "node-abi-2.1.2" = {
+ name = "node-abi";
+ packageName = "node-abi";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-abi/-/node-abi-2.1.2.tgz";
+ sha512 = "1sd6l8zqa18mlzackwy8vns51zjp8xyrd97nc514b0yvndd0y0wsyx2q9h8zr0k9kra5ys1yq75ggkv5av69cyzxji19rdvr5pjsrc6";
+ };
+ };
+ "node-fetch-npm-2.0.2" = {
+ name = "node-fetch-npm";
+ packageName = "node-fetch-npm";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-fetch-npm/-/node-fetch-npm-2.0.2.tgz";
+ sha512 = "0bw6m444q0jc2gmw1yb0im1jv6vhky6d071p72c26ajvf2a7710jq8cp5ampf8j7kdbki7j0mbsi15dh93vrhkpvqpkw0i6ajdk34lw";
+ };
+ };
+ "node-gyp-3.6.2" = {
+ name = "node-gyp";
+ packageName = "node-gyp";
+ version = "3.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz";
+ sha1 = "9bfbe54562286284838e750eac05295853fa1c60";
+ };
+ };
+ "node-gyp-build-3.2.2" = {
+ name = "node-gyp-build";
+ packageName = "node-gyp-build";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-3.2.2.tgz";
+ sha512 = "34hwi28wvvh5nn8bv71n0fb83xjyk84jsn8j9zgkaqnfigpv2hk6fs9jaffsn7qi3yi4n7iwd9yjyagd1rh74ckzdf5s6l59b8vzidp";
+ };
+ };
+ "noop-logger-0.1.1" = {
+ name = "noop-logger";
+ packageName = "noop-logger";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/noop-logger/-/noop-logger-0.1.1.tgz";
+ sha1 = "94a2b1633c4f1317553007d8966fd0e841b6a4c2";
+ };
+ };
+ "noop6-1.0.7" = {
+ name = "noop6";
+ packageName = "noop6";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/noop6/-/noop6-1.0.7.tgz";
+ sha1 = "96767bf2058ba59ca8cb91559347ddc80239fa8e";
};
};
"nopt-3.0.6" = {
@@ -2965,121 +4801,184 @@ let
sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
};
};
- "resolve-1.1.7" = {
- name = "resolve";
- packageName = "resolve";
- version = "1.1.7";
+ "nopt-4.0.1" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz";
- sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
+ url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
+ sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
};
};
- "glob-5.0.15" = {
- name = "glob";
- packageName = "glob";
- version = "5.0.15";
+ "normalize-package-data-2.4.0" = {
+ name = "normalize-package-data";
+ packageName = "normalize-package-data";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz";
- sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1";
+ url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
+ sha512 = "01wzws79ps84ylshjb7rfpjykgiqxnpr89s52p2yyzfx8nfvyh5flvf1almiiavsi75xgi8g3s5davc1mmgz7gn8yvlqz6gnhax8f7n";
};
};
- "abbrev-1.1.1" = {
- name = "abbrev";
- packageName = "abbrev";
- version = "1.1.1";
+ "normalize-path-2.1.1" = {
+ name = "normalize-path";
+ packageName = "normalize-path";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz";
- sha512 = "38s4f3id97wsb0rg9nm9zvxyq0nvwrmrpa5dzvrkp36mf5ibs98b4z6lvsbrwzzs0sbcank6c7gpp06vcwp9acfhp41rzlhi3ybsxwy";
+ url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
+ sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
};
};
- "browser-stdout-1.3.0" = {
- name = "browser-stdout";
- packageName = "browser-stdout";
- version = "1.3.0";
+ "normalize-registry-url-1.0.0" = {
+ name = "normalize-registry-url";
+ packageName = "normalize-registry-url";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.0.tgz";
- sha1 = "f351d32969d32fa5d7a5567154263d928ae3bd1f";
+ url = "https://registry.npmjs.org/normalize-registry-url/-/normalize-registry-url-1.0.0.tgz";
+ sha512 = "3s6mrnn04pf7i9gqc04l6c4mnwdwy08235c4rd1rzw080z1a27bs1xwh2fcbzc8p1lbm4xjbby1g11pd38i4wsfjarbsvvmrvir7znj";
};
};
- "commander-2.11.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.11.0";
+ "normalize-ssh-1.0.0" = {
+ name = "normalize-ssh";
+ packageName = "normalize-ssh";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz";
- sha512 = "2yi2hwf0bghfnv1fdgd4wvh7s0acjrgqbgww97ncm6i6s6ffs1zahnj48f6gqpqj6fsf0jigvnr0civ25k2160c38281r80wvg7jkkg";
+ url = "https://registry.npmjs.org/normalize-ssh/-/normalize-ssh-1.0.0.tgz";
+ sha1 = "22a8308fa7cd932bdb49af74ecac644cf4a6196b";
};
};
- "diff-3.3.1" = {
- name = "diff";
- packageName = "diff";
- version = "3.3.1";
+ "normalize-url-2.0.1" = {
+ name = "normalize-url";
+ packageName = "normalize-url";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-3.3.1.tgz";
- sha512 = "31pj7v5gg5igmvwzk6zxw1wbvwjg6m9sfl0h3bs1x4q6idcw98vr8z8wcqk2603q0blpqkmkxp659kjj91wksr03yr8xlh16djcg8rh";
+ url = "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz";
+ sha512 = "0rykwifg14xfgm9m6md48rkqqxa2cya4xdsv7jjciacis2nz6dzaccpzyldlpvy14rvihpxbdiysfn49a8x8x5jw84klmxzh9di98qg";
};
};
- "growl-1.10.3" = {
- name = "growl";
- packageName = "growl";
- version = "1.10.3";
+ "not-bundled-npm-5.5.1" = {
+ name = "not-bundled-npm";
+ packageName = "not-bundled-npm";
+ version = "5.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz";
- sha512 = "3aibvz85l13j140w4jjdk8939q6r7dnf8ay2licxgkaaldk7wbm093c1p5g7k5cg80rl0xslmczyraawfgdr82hhxn7rfsm1rn6rac4";
+ url = "https://registry.npmjs.org/not-bundled-npm/-/not-bundled-npm-5.5.1.tgz";
+ sha512 = "1mzbw8sibjcs0c9ldxq90v7z5nrni5jz1khkbv7yvxf2gxqdp12b85fzs9qw3lrxjjcxk5w32rzadaz0q0llpqs72ikxcpi3i4wak9a";
};
};
- "he-1.1.1" = {
- name = "he";
- packageName = "he";
- version = "1.1.1";
+ "npm-bundled-1.0.3" = {
+ name = "npm-bundled";
+ packageName = "npm-bundled";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/he/-/he-1.1.1.tgz";
- sha1 = "93410fd21b009735151f8868c2f271f3427e23fd";
+ url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.3.tgz";
+ sha512 = "0xk8ky1cjf8q2wkbgfzplpn04sm9xnl6i71dwnc29rfh8m2glan5nd6l4k3q7ikci7xpwfpcmyy3frr873zndjmhbr344grkyh3f907";
};
};
- "supports-color-4.4.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "4.4.0";
+ "npm-cache-filename-1.0.2" = {
+ name = "npm-cache-filename";
+ packageName = "npm-cache-filename";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz";
- sha512 = "1flwwfdd7gg94xrc0b2ard3qjx4cpy600q49gx43y8pzvs7j56q78bjhv8mk18vgbggr4fd11jda8ck5cdrkc5jcjs04nlp7kwbg85c";
+ url = "https://registry.npmjs.org/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz";
+ sha1 = "ded306c5b0bfc870a9e9faf823bc5f283e05ae11";
};
};
- "optparse-1.0.5" = {
- name = "optparse";
- packageName = "optparse";
- version = "1.0.5";
+ "npm-install-checks-3.0.0" = {
+ name = "npm-install-checks";
+ packageName = "npm-install-checks";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz";
- sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16";
+ url = "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-3.0.0.tgz";
+ sha1 = "d4aecdfd51a53e3723b7b2f93b2ee28e307bc0d7";
};
};
- "slasp-0.0.4" = {
- name = "slasp";
- packageName = "slasp";
- version = "0.0.4";
+ "npm-lifecycle-1.0.3" = {
+ name = "npm-lifecycle";
+ packageName = "npm-lifecycle";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/slasp/-/slasp-0.0.4.tgz";
- sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9";
+ url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-1.0.3.tgz";
+ sha512 = "0iapgirmdb46ia3apm6fsb9qv9c0hi4k9jflrxlgnrm0jhliqgas49lmpz06xafncx1sxgjngl0fw3gr472c7kapzdvpivf0fp5miqa";
};
};
- "fstream-1.0.11" = {
- name = "fstream";
- packageName = "fstream";
- version = "1.0.11";
+ "npm-lifecycle-2.0.0" = {
+ name = "npm-lifecycle";
+ packageName = "npm-lifecycle";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
- sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
+ url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-2.0.0.tgz";
+ sha512 = "1rwl5baayxqs7bcgbrjjbrl8lj46p9r4b4k9ad9gnkvgcs5ghsdr9fi6s4xmd0a9dlli0hfwf5mrd9h0rxmlh9zbn553lwfbp9wfkk8";
};
};
- "graceful-fs-4.1.11" = {
- name = "graceful-fs";
- packageName = "graceful-fs";
- version = "4.1.11";
+ "npm-package-arg-5.1.2" = {
+ name = "npm-package-arg";
+ packageName = "npm-package-arg";
+ version = "5.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz";
- sha1 = "0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658";
+ url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-5.1.2.tgz";
+ sha512 = "36g1gm57qcvdgb4lm6ibl9pgma8lgx8l8i2jzap6w3v36wfzsqa7vb411zd26yp9rgcq23951vl5j6pac22qd5h9x7jm9raznnnr460";
+ };
+ };
+ "npm-package-arg-6.0.0" = {
+ name = "npm-package-arg";
+ packageName = "npm-package-arg";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-6.0.0.tgz";
+ sha512 = "15a1x3fjip5waxap8dbjkm88j0c2bcnay8pw14p74h1499wznynw2if91shrqlrbzwia09x4xiphp6wkxga5z8vf9k08bjarn1vn047";
+ };
+ };
+ "npm-packlist-1.1.10" = {
+ name = "npm-packlist";
+ packageName = "npm-packlist";
+ version = "1.1.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.1.10.tgz";
+ sha512 = "1c5z9bibdf07na26xffshagxk8gfnsbaav802dkvbrlgj4mixz4giji96yb1zs7p9yl9n28mlkhjp9jklq55j27c0i837vk507v8001";
+ };
+ };
+ "npm-pick-manifest-1.0.4" = {
+ name = "npm-pick-manifest";
+ packageName = "npm-pick-manifest";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-1.0.4.tgz";
+ sha512 = "02pmkjkn2nbr1ypwzwybyd6bfckdwr8cr0nah5bwadz21yd7cd9fbvxqalfdc41n88p1zv8qbgp149knkaixnrl8l7jnrwfxislvb1h";
+ };
+ };
+ "npm-profile-2.0.5" = {
+ name = "npm-profile";
+ packageName = "npm-profile";
+ version = "2.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-profile/-/npm-profile-2.0.5.tgz";
+ sha512 = "2325avpmbzxl4vi1hxnxv96rw9j0y712ym3mph3hrsvgq4p8d0yh44vnja22plnw9vplskcx661j2spzqka65zsszzngvwm806skfdl";
+ };
+ };
+ "npm-registry-client-8.5.0" = {
+ name = "npm-registry-client";
+ packageName = "npm-registry-client";
+ version = "8.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-8.5.0.tgz";
+ sha512 = "1nwp5cfjmy4k14g6ziz7zpia8f66ximhrdhw49cj2w173bibq1sgc4d5w951ql5dqf0hcmia956ld9y7qs2q1fx6s2j446zhvdk0irn";
+ };
+ };
+ "npm-run-path-2.0.2" = {
+ name = "npm-run-path";
+ packageName = "npm-run-path";
+ version = "2.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz";
+ sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f";
+ };
+ };
+ "npm-user-validate-1.0.0" = {
+ name = "npm-user-validate";
+ packageName = "npm-user-validate";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-1.0.0.tgz";
+ sha1 = "8ceca0f5cea04d4e93519ef72d0557a75122e951";
};
};
"npmlog-4.1.2" = {
@@ -3091,103 +4990,22 @@ let
sha512 = "2967mavp7zw0aawf5fadqf4pmn7vy5gya1yx2s9wwppvivhd9q4mpdnszfqvd7p6yks649bwbpj8iviw86g0hpp4f93d5ca7dmjmrfs";
};
};
- "osenv-0.1.4" = {
- name = "osenv";
- packageName = "osenv";
- version = "0.1.4";
+ "number-is-nan-1.0.1" = {
+ name = "number-is-nan";
+ packageName = "number-is-nan";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz";
- sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644";
+ url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
+ sha1 = "097b602b53422a522c1afb8790318336941a011d";
};
};
- "semver-5.3.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.3.0";
+ "oauth-sign-0.8.2" = {
+ name = "oauth-sign";
+ packageName = "oauth-sign";
+ version = "0.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz";
- sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f";
- };
- };
- "tar-2.2.1" = {
- name = "tar";
- packageName = "tar";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz";
- sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
- };
- };
- "which-1.3.0" = {
- name = "which";
- packageName = "which";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
- sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
- };
- };
- "are-we-there-yet-1.1.4" = {
- name = "are-we-there-yet";
- packageName = "are-we-there-yet";
- version = "1.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz";
- sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d";
- };
- };
- "console-control-strings-1.1.0" = {
- name = "console-control-strings";
- packageName = "console-control-strings";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz";
- sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e";
- };
- };
- "gauge-2.7.4" = {
- name = "gauge";
- packageName = "gauge";
- version = "2.7.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz";
- sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7";
- };
- };
- "set-blocking-2.0.0" = {
- name = "set-blocking";
- packageName = "set-blocking";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
- sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
- };
- };
- "delegates-1.0.0" = {
- name = "delegates";
- packageName = "delegates";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz";
- sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a";
- };
- };
- "aproba-1.2.0" = {
- name = "aproba";
- packageName = "aproba";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz";
- sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3";
- };
- };
- "has-unicode-2.0.1" = {
- name = "has-unicode";
- packageName = "has-unicode";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz";
- sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9";
+ url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz";
+ sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
};
};
"object-assign-4.1.1" = {
@@ -3199,67 +5017,94 @@ let
sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863";
};
};
- "signal-exit-3.0.2" = {
- name = "signal-exit";
- packageName = "signal-exit";
- version = "3.0.2";
+ "object-keys-1.0.11" = {
+ name = "object-keys";
+ packageName = "object-keys";
+ version = "1.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
- sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
+ url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.11.tgz";
+ sha1 = "c54601778ad560f1142ce0e01bcca8b56d13426d";
};
};
- "string-width-1.0.2" = {
- name = "string-width";
- packageName = "string-width";
- version = "1.0.2";
+ "object.getownpropertydescriptors-2.0.3" = {
+ name = "object.getownpropertydescriptors";
+ packageName = "object.getownpropertydescriptors";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
- sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
+ url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz";
+ sha1 = "8758c846f5b407adab0f236e0986f14b051caa16";
};
};
- "strip-ansi-3.0.1" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "3.0.1";
+ "object.omit-2.0.1" = {
+ name = "object.omit";
+ packageName = "object.omit";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
+ url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz";
+ sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa";
};
};
- "wide-align-1.1.2" = {
- name = "wide-align";
- packageName = "wide-align";
- version = "1.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
- sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
- };
- };
- "code-point-at-1.1.0" = {
- name = "code-point-at";
- packageName = "code-point-at";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz";
- sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77";
- };
- };
- "is-fullwidth-code-point-1.0.0" = {
- name = "is-fullwidth-code-point";
- packageName = "is-fullwidth-code-point";
+ "observatory-1.0.0" = {
+ name = "observatory";
+ packageName = "observatory";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz";
- sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb";
+ url = "https://registry.npmjs.org/observatory/-/observatory-1.0.0.tgz";
+ sha1 = "2baa606e8299e6866914ec9c8a4db6a41136e59b";
};
};
- "number-is-nan-1.0.1" = {
- name = "number-is-nan";
- packageName = "number-is-nan";
- version = "1.0.1";
+ "once-1.4.0" = {
+ name = "once";
+ packageName = "once";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz";
- sha1 = "097b602b53422a522c1afb8790318336941a011d";
+ url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz";
+ sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1";
+ };
+ };
+ "onetime-2.0.1" = {
+ name = "onetime";
+ packageName = "onetime";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz";
+ sha1 = "067428230fd67443b2794b22bba528b6867962d4";
+ };
+ };
+ "opener-1.4.3" = {
+ name = "opener";
+ packageName = "opener";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/opener/-/opener-1.4.3.tgz";
+ sha1 = "5c6da2c5d7e5831e8ffa3964950f8d6674ac90b8";
+ };
+ };
+ "optparse-1.0.5" = {
+ name = "optparse";
+ packageName = "optparse";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz";
+ sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16";
+ };
+ };
+ "os-homedir-1.0.2" = {
+ name = "os-homedir";
+ packageName = "os-homedir";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz";
+ sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3";
+ };
+ };
+ "os-locale-2.1.0" = {
+ name = "os-locale";
+ packageName = "os-locale";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz";
+ sha512 = "0lafrp0i2ajapsnma0x74q7zscn97a56i5hh58a0nyig2igfx9fqn4ain9kvjrr06as5gzdrv2wdf52qc5m861fd0f4cv69ghdjbjyy";
};
};
"os-tmpdir-1.0.2" = {
@@ -3271,148 +5116,337 @@ let
sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274";
};
};
- "block-stream-0.0.9" = {
- name = "block-stream";
- packageName = "block-stream";
- version = "0.0.9";
+ "osenv-0.1.4" = {
+ name = "osenv";
+ packageName = "osenv";
+ version = "0.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz";
- sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a";
+ url = "https://registry.npmjs.org/osenv/-/osenv-0.1.4.tgz";
+ sha1 = "42fe6d5953df06c8064be6f176c3d05aaaa34644";
};
};
- "isexe-2.0.0" = {
- name = "isexe";
- packageName = "isexe";
+ "overlap-2.0.0" = {
+ name = "overlap";
+ packageName = "overlap";
version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
- sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
+ url = "https://registry.npmjs.org/overlap/-/overlap-2.0.0.tgz";
+ sha1 = "b29b6bb2ad7569c4e66faef28cb5d74361179cb4";
};
};
- "nopt-4.0.1" = {
- name = "nopt";
- packageName = "nopt";
- version = "4.0.1";
+ "p-cancelable-0.3.0" = {
+ name = "p-cancelable";
+ packageName = "p-cancelable";
+ version = "0.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
- sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
+ url = "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz";
+ sha512 = "35jir2yjv2l3v8aj062w0hfinzgwpb1sbhmaym8h4xn78j498naj7mkf4rpv74n5bfkysxb7l893l2yw3dpqk5dgb2yiwr8pcydjmj5";
};
};
- "rc-1.2.2" = {
- name = "rc";
- packageName = "rc";
- version = "1.2.2";
+ "p-defer-1.0.0" = {
+ name = "p-defer";
+ packageName = "p-defer";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.2.2.tgz";
- sha1 = "d8ce9cb57e8d64d9c7badd9876c7c34cbe3c7077";
+ url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz";
+ sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c";
};
};
- "request-2.81.0" = {
- name = "request";
- packageName = "request";
- version = "2.81.0";
+ "p-every-1.0.2" = {
+ name = "p-every";
+ packageName = "p-every";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
- sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
+ url = "https://registry.npmjs.org/p-every/-/p-every-1.0.2.tgz";
+ sha1 = "4e01d85c23da19ed71a4afba319bdb4d94c85e00";
};
};
- "hawk-3.1.3" = {
- name = "hawk";
- packageName = "hawk";
- version = "3.1.3";
+ "p-filter-1.0.0" = {
+ name = "p-filter";
+ packageName = "p-filter";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz";
- sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4";
+ url = "https://registry.npmjs.org/p-filter/-/p-filter-1.0.0.tgz";
+ sha1 = "629d317150209c8fd508ba137713ef4bb920e9db";
};
};
- "semver-5.4.1" = {
- name = "semver";
- packageName = "semver";
- version = "5.4.1";
+ "p-finally-1.0.0" = {
+ name = "p-finally";
+ packageName = "p-finally";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz";
- sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
+ url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz";
+ sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae";
};
};
- "detect-libc-1.0.3" = {
- name = "detect-libc";
- packageName = "detect-libc";
- version = "1.0.3";
+ "p-is-promise-1.1.0" = {
+ name = "p-is-promise";
+ packageName = "p-is-promise";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz";
- sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b";
+ url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz";
+ sha1 = "9c9456989e9f6588017b0434d56097675c3da05e";
};
};
- "tar-pack-3.4.1" = {
- name = "tar-pack";
- packageName = "tar-pack";
- version = "3.4.1";
+ "p-limit-1.2.0" = {
+ name = "p-limit";
+ packageName = "p-limit";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz";
- sha512 = "0mgk8jd55vr7i3i29r1skhxwwbqkqfz6mbr32r5nn8h6v5xns8d2rc7835y7wj0zmppckxai7nm8r4s65kkg6yhirnwx33yixn75x1w";
+ url = "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz";
+ sha512 = "2g0r6r6bbcdp6lrxbj2zbcihr1byd55kycm1ijz80l2zvmcvhqsbd7rhmfqylp004d61fibvmwzk4ig89dbyk4azpwgll7dllhsvwv3";
};
};
- "deep-extend-0.4.2" = {
- name = "deep-extend";
- packageName = "deep-extend";
- version = "0.4.2";
+ "p-locate-2.0.0" = {
+ name = "p-locate";
+ packageName = "p-locate";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz";
- sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f";
+ url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz";
+ sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43";
};
};
- "ini-1.3.5" = {
- name = "ini";
- packageName = "ini";
- version = "1.3.5";
+ "p-map-1.2.0" = {
+ name = "p-map";
+ packageName = "p-map";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
- sha512 = "1rjbvf1rg5ywhnba08sgagn2qf23lab330qrqmh7d891zap3xpxcyfyj1cblpf0f0rypglcfacybzyrpd4996aa1mbc820awa33k5j5";
+ url = "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz";
+ sha512 = "084pyivsr35xi3fdmpznf0c0nc9jz15hak8iyh3v24n25b376blg13ngb4mgpm71zdnfp9b17zbyn728z0jjz1r674k71hd4c0cmb5g";
};
};
- "strip-json-comments-2.0.1" = {
- name = "strip-json-comments";
- packageName = "strip-json-comments";
+ "p-queue-2.3.0" = {
+ name = "p-queue";
+ packageName = "p-queue";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-queue/-/p-queue-2.3.0.tgz";
+ sha1 = "65d55e71bc1500fc413122da98ae457ff8a7c038";
+ };
+ };
+ "p-reduce-1.0.0" = {
+ name = "p-reduce";
+ packageName = "p-reduce";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz";
+ sha1 = "18c2b0dd936a4690a529f8231f58a0fdb6a47dfa";
+ };
+ };
+ "p-series-1.0.0" = {
+ name = "p-series";
+ packageName = "p-series";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/p-series/-/p-series-1.0.0.tgz";
+ sha1 = "7ec9e7b4406cc32066298a6f9860e55e91b36e07";
+ };
+ };
+ "p-timeout-2.0.1" = {
+ name = "p-timeout";
+ packageName = "p-timeout";
version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
- sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
+ url = "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz";
+ sha512 = "0h1wg3bw3pyf3vlnxxfnrs3h33lwbx5n1lz4cz8ivh7bi8vjd6makxf6p1xz1d70ww3gj2ghryhbg6w1myxacgirk51ym23qzksdizk";
};
};
- "aws-sign2-0.6.0" = {
- name = "aws-sign2";
- packageName = "aws-sign2";
- version = "0.6.0";
+ "p-try-1.0.0" = {
+ name = "p-try";
+ packageName = "p-try";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz";
- sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
+ url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz";
+ sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3";
};
};
- "form-data-2.1.4" = {
- name = "form-data";
- packageName = "form-data";
- version = "2.1.4";
+ "package-json-4.0.1" = {
+ name = "package-json";
+ packageName = "package-json";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz";
- sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1";
+ url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz";
+ sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed";
};
};
- "har-validator-4.2.1" = {
- name = "har-validator";
- packageName = "har-validator";
- version = "4.2.1";
+ "package-store-0.15.2" = {
+ name = "package-store";
+ packageName = "package-store";
+ version = "0.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
- sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
+ url = "https://registry.npmjs.org/package-store/-/package-store-0.15.2.tgz";
+ sha512 = "074xsl6ca8j68cvbh8gj3h846g9rxgcxwxhbryab9f72brc5lmcq3dcj80kbjbykkzgpikzxj4qdmvxzwrhj3bilgncbbm0ladlv17r";
};
};
- "http-signature-1.1.1" = {
- name = "http-signature";
- packageName = "http-signature";
- version = "1.1.1";
+ "pacote-6.0.4" = {
+ name = "pacote";
+ packageName = "pacote";
+ version = "6.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz";
- sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf";
+ url = "https://registry.npmjs.org/pacote/-/pacote-6.0.4.tgz";
+ sha512 = "36bx0mnsvm3fvq0vbcl05j6fsjf4v4gks1hlxqyga0jxz491cis9y38j8q9cmmfdfbx9xaz3n3h93h0ik4bkn82rb3nz2413wk7xfxi";
+ };
+ };
+ "pako-0.2.9" = {
+ name = "pako";
+ packageName = "pako";
+ version = "0.2.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz";
+ sha1 = "f3f7522f4ef782348da8161bad9ecfd51bf83a75";
+ };
+ };
+ "parallel-transform-1.1.0" = {
+ name = "parallel-transform";
+ packageName = "parallel-transform";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz";
+ sha1 = "d410f065b05da23081fcd10f28854c29bda33b06";
+ };
+ };
+ "parse-glob-3.0.4" = {
+ name = "parse-glob";
+ packageName = "parse-glob";
+ version = "3.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz";
+ sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c";
+ };
+ };
+ "parse-headers-2.0.1" = {
+ name = "parse-headers";
+ packageName = "parse-headers";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-headers/-/parse-headers-2.0.1.tgz";
+ sha1 = "6ae83a7aa25a9d9b700acc28698cd1f1ed7e9536";
+ };
+ };
+ "parse-it-1.0.8" = {
+ name = "parse-it";
+ packageName = "parse-it";
+ version = "1.0.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-it/-/parse-it-1.0.8.tgz";
+ sha1 = "e9a53bde18c8049e7bb415b73e16d3292df8eae7";
+ };
+ };
+ "parse-json-2.2.0" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz";
+ sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9";
+ };
+ };
+ "parse-json-4.0.0" = {
+ name = "parse-json";
+ packageName = "parse-json";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz";
+ sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
+ };
+ };
+ "parse-npm-tarball-url-1.0.2" = {
+ name = "parse-npm-tarball-url";
+ packageName = "parse-npm-tarball-url";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-npm-tarball-url/-/parse-npm-tarball-url-1.0.2.tgz";
+ sha512 = "26zvr85a2wbbkqrwzyy3226waj0p5z3vrh19gxxvkgxf98qgvl1jdz20hvsr20x5f1viwqm9n2yr8yi61kkb9h0cd1kszw2yv8542cs";
+ };
+ };
+ "parse-url-1.3.11" = {
+ name = "parse-url";
+ packageName = "parse-url";
+ version = "1.3.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-url/-/parse-url-1.3.11.tgz";
+ sha1 = "57c15428ab8a892b1f43869645c711d0e144b554";
+ };
+ };
+ "path-absolute-1.0.0" = {
+ name = "path-absolute";
+ packageName = "path-absolute";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-absolute/-/path-absolute-1.0.0.tgz";
+ sha512 = "2fjzk70izrnlxrvqprakq310j8b1zcvsln7aji0qfljcl5is8c7aip8bc6ly07v8qg6l4rsrgzyj411rlbzyhmgnsiwzlnlhkr1lk5k";
+ };
+ };
+ "path-exists-3.0.0" = {
+ name = "path-exists";
+ packageName = "path-exists";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz";
+ sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515";
+ };
+ };
+ "path-is-absolute-1.0.1" = {
+ name = "path-is-absolute";
+ packageName = "path-is-absolute";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz";
+ sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f";
+ };
+ };
+ "path-is-inside-1.0.2" = {
+ name = "path-is-inside";
+ packageName = "path-is-inside";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz";
+ sha1 = "365417dede44430d1c11af61027facf074bdfc53";
+ };
+ };
+ "path-key-2.0.1" = {
+ name = "path-key";
+ packageName = "path-key";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz";
+ sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40";
+ };
+ };
+ "path-name-1.0.0" = {
+ name = "path-name";
+ packageName = "path-name";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-name/-/path-name-1.0.0.tgz";
+ sha1 = "8ca063a63de7982dfa95760edaffd10214494f24";
+ };
+ };
+ "path-type-2.0.0" = {
+ name = "path-type";
+ packageName = "path-type";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz";
+ sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73";
+ };
+ };
+ "path-type-3.0.0" = {
+ name = "path-type";
+ packageName = "path-type";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz";
+ sha512 = "2z1csf4c3fmlwl0ahk533z5zqkjdf36ccfx11kakl9xran9f5asxm4cxjq4lx1kwqdp8gki786cgpldvgrkvfc7pcvh07j5ssqm8rjg";
+ };
+ };
+ "peek-stream-1.1.2" = {
+ name = "peek-stream";
+ packageName = "peek-stream";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.2.tgz";
+ sha1 = "97eb76365bcfd8c89e287f55c8b69d4c3e9bcc52";
};
};
"performance-now-0.2.0" = {
@@ -3424,6 +5458,402 @@ let
sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
};
};
+ "performance-now-2.1.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz";
+ sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b";
+ };
+ };
+ "pify-2.3.0" = {
+ name = "pify";
+ packageName = "pify";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz";
+ sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c";
+ };
+ };
+ "pify-3.0.0" = {
+ name = "pify";
+ packageName = "pify";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz";
+ sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176";
+ };
+ };
+ "pinkie-2.0.4" = {
+ name = "pinkie";
+ packageName = "pinkie";
+ version = "2.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
+ sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
+ };
+ };
+ "pinkie-promise-2.0.1" = {
+ name = "pinkie-promise";
+ packageName = "pinkie-promise";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
+ sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
+ };
+ };
+ "pkginfo-0.3.1" = {
+ name = "pkginfo";
+ packageName = "pkginfo";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz";
+ sha1 = "5b29f6a81f70717142e09e765bbeab97b4f81e21";
+ };
+ };
+ "pkginfo-0.4.1" = {
+ name = "pkginfo";
+ packageName = "pkginfo";
+ version = "0.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz";
+ sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff";
+ };
+ };
+ "pkgs-graph-2.0.0-0" = {
+ name = "pkgs-graph";
+ packageName = "pkgs-graph";
+ version = "2.0.0-0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pkgs-graph/-/pkgs-graph-2.0.0-0.tgz";
+ sha512 = "3p1llv78shph6qwba9p8vd14hxanjdp1zmzivmn94dzfff2diqkvsc0zar9pj40pl2fwkbqg3p266ilcjbj6ajhzn8kcpmir5fx2f0c";
+ };
+ };
+ "pnpm-default-reporter-0.11.8" = {
+ name = "pnpm-default-reporter";
+ packageName = "pnpm-default-reporter";
+ version = "0.11.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm-default-reporter/-/pnpm-default-reporter-0.11.8.tgz";
+ sha512 = "2x14yf0yi5q5dvq1777khbvah4wpcm92l4il946nq0f7nyra450llgp09q56161rk6qk6x7gr9hffii97c25b98a35pr7gwgc8yfrwz";
+ };
+ };
+ "pnpm-file-reporter-0.0.1" = {
+ name = "pnpm-file-reporter";
+ packageName = "pnpm-file-reporter";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm-file-reporter/-/pnpm-file-reporter-0.0.1.tgz";
+ sha1 = "f7c3e2164c5cc955a0b3ed661314e6357b3f2e63";
+ };
+ };
+ "pnpm-install-checks-1.1.0" = {
+ name = "pnpm-install-checks";
+ packageName = "pnpm-install-checks";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm-install-checks/-/pnpm-install-checks-1.1.0.tgz";
+ sha1 = "741d9979762fdfad93f3e469deb4a814d3430008";
+ };
+ };
+ "pnpm-list-2.0.1" = {
+ name = "pnpm-list";
+ packageName = "pnpm-list";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm-list/-/pnpm-list-2.0.1.tgz";
+ sha512 = "0rrmch43p1dncghmvb6mwv59c0gan88d87fdbvzsmg4lj6j5l4bkfrr5x6gmi9z8f4nf3lqddf5b5wg8l7bb5if6c5wknim1w3l2vlb";
+ };
+ };
+ "pnpm-logger-0.0.0" = {
+ name = "pnpm-logger";
+ packageName = "pnpm-logger";
+ version = "0.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm-logger/-/pnpm-logger-0.0.0.tgz";
+ sha1 = "28701b97618a1fc32d2fee1bf410746588bb1a85";
+ };
+ };
+ "pnpm-shrinkwrap-5.1.1" = {
+ name = "pnpm-shrinkwrap";
+ packageName = "pnpm-shrinkwrap";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm-shrinkwrap/-/pnpm-shrinkwrap-5.1.1.tgz";
+ sha512 = "0nrnbsdiq01q2383pib07a7hrc602bpl9sf2j05pmjk5xn7hipicp90jdwlzf36wln2bqjzi1zgv5a5fhw41zx3zfad6affppkf8c5d";
+ };
+ };
+ "prebuild-install-2.5.0" = {
+ name = "prebuild-install";
+ packageName = "prebuild-install";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-2.5.0.tgz";
+ sha512 = "137vbrb6szyda92qg093yp1l6d2l4s1nb7c0dznjgbyrzsm252spxnrdpmj8nmf170fcq404pgsn0p65sxm4z74p2fyqyd415k742fz";
+ };
+ };
+ "prepend-http-1.0.4" = {
+ name = "prepend-http";
+ packageName = "prepend-http";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz";
+ sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc";
+ };
+ };
+ "prepend-http-2.0.0" = {
+ name = "prepend-http";
+ packageName = "prepend-http";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz";
+ sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897";
+ };
+ };
+ "preserve-0.2.0" = {
+ name = "preserve";
+ packageName = "preserve";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz";
+ sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b";
+ };
+ };
+ "prettier-bytes-1.0.4" = {
+ name = "prettier-bytes";
+ packageName = "prettier-bytes";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prettier-bytes/-/prettier-bytes-1.0.4.tgz";
+ sha1 = "994b02aa46f699c50b6257b5faaa7fe2557e62d6";
+ };
+ };
+ "pretty-bytes-4.0.2" = {
+ name = "pretty-bytes";
+ packageName = "pretty-bytes";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-4.0.2.tgz";
+ sha1 = "b2bf82e7350d65c6c33aa95aaa5a4f6327f61cd9";
+ };
+ };
+ "pretty-hash-1.0.1" = {
+ name = "pretty-hash";
+ packageName = "pretty-hash";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pretty-hash/-/pretty-hash-1.0.1.tgz";
+ sha1 = "16e0579188def56bdb565892bcd05a5d65324807";
+ };
+ };
+ "printable-characters-1.0.38" = {
+ name = "printable-characters";
+ packageName = "printable-characters";
+ version = "1.0.38";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/printable-characters/-/printable-characters-1.0.38.tgz";
+ sha1 = "76ef84accfd7f8366fb7138fb92466a916d599bc";
+ };
+ };
+ "proc-output-1.0.6" = {
+ name = "proc-output";
+ packageName = "proc-output";
+ version = "1.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proc-output/-/proc-output-1.0.6.tgz";
+ sha1 = "9ffcfb3ac6a156ee32b7ebd69f024a4f6d896350";
+ };
+ };
+ "process-0.5.2" = {
+ name = "process";
+ packageName = "process";
+ version = "0.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process/-/process-0.5.2.tgz";
+ sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf";
+ };
+ };
+ "process-exists-3.0.0" = {
+ name = "process-exists";
+ packageName = "process-exists";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process-exists/-/process-exists-3.0.0.tgz";
+ sha512 = "3lwxdzkx3bzfvb8qvrjccjdk90advh7p3j52d1b4hn3v2d7cf780k7wbvy94w6chgpq6lrrs6m0n122463q7g8z06aajbjqncq0db9h";
+ };
+ };
+ "process-nextick-args-1.0.7" = {
+ name = "process-nextick-args";
+ packageName = "process-nextick-args";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz";
+ sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3";
+ };
+ };
+ "progress-string-1.2.2" = {
+ name = "progress-string";
+ packageName = "progress-string";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/progress-string/-/progress-string-1.2.2.tgz";
+ sha512 = "07n7s98b5fqdx9jspg14zkw0dndfdpbrd12f5nj5c7m6aifvl4nn27qdbrgy6gzb837cs86cakldqh5kwbi7fv6ra9ll9q83qhsya97";
+ };
+ };
+ "promise-inflight-1.0.1" = {
+ name = "promise-inflight";
+ packageName = "promise-inflight";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz";
+ sha1 = "98472870bf228132fcbdd868129bad12c3c029e3";
+ };
+ };
+ "promise-retry-1.1.1" = {
+ name = "promise-retry";
+ packageName = "promise-retry";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promise-retry/-/promise-retry-1.1.1.tgz";
+ sha1 = "6739e968e3051da20ce6497fb2b50f6911df3d6d";
+ };
+ };
+ "prompt-1.0.0" = {
+ name = "prompt";
+ packageName = "prompt";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prompt/-/prompt-1.0.0.tgz";
+ sha1 = "8e57123c396ab988897fb327fd3aedc3e735e4fe";
+ };
+ };
+ "promzard-0.3.0" = {
+ name = "promzard";
+ packageName = "promzard";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz";
+ sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee";
+ };
+ };
+ "proper-lockfile-2.0.1" = {
+ name = "proper-lockfile";
+ packageName = "proper-lockfile";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-2.0.1.tgz";
+ sha1 = "159fb06193d32003f4b3691dd2ec1a634aa80d1d";
+ };
+ };
+ "proto-list-1.2.4" = {
+ name = "proto-list";
+ packageName = "proto-list";
+ version = "1.2.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz";
+ sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849";
+ };
+ };
+ "protocol-buffers-encodings-1.1.0" = {
+ name = "protocol-buffers-encodings";
+ packageName = "protocol-buffers-encodings";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/protocol-buffers-encodings/-/protocol-buffers-encodings-1.1.0.tgz";
+ sha512 = "28vhf9zv4h6gc3nia9pshzn16jm1h6r58nj2mwmkji35fjbscjwxrxigwy87j82y8wayn29qgc31939b1fyk6dmvvhwv1gp0ywc8s2a";
+ };
+ };
+ "protocols-1.4.6" = {
+ name = "protocols";
+ packageName = "protocols";
+ version = "1.4.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/protocols/-/protocols-1.4.6.tgz";
+ sha1 = "f8bb263ea1b5fd7a7604d26b8be39bd77678bf8a";
+ };
+ };
+ "protoduck-4.0.0" = {
+ name = "protoduck";
+ packageName = "protoduck";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/protoduck/-/protoduck-4.0.0.tgz";
+ sha1 = "fe4874d8c7913366cfd9ead12453a22cd3657f8e";
+ };
+ };
+ "prr-1.0.1" = {
+ name = "prr";
+ packageName = "prr";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz";
+ sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476";
+ };
+ };
+ "ps-list-4.0.0" = {
+ name = "ps-list";
+ packageName = "ps-list";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ps-list/-/ps-list-4.0.0.tgz";
+ sha1 = "57c8b3d38161ee8977811cd32a5dc52237fdb299";
+ };
+ };
+ "pseudomap-1.0.2" = {
+ name = "pseudomap";
+ packageName = "pseudomap";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz";
+ sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
+ };
+ };
+ "pump-1.0.3" = {
+ name = "pump";
+ packageName = "pump";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pump/-/pump-1.0.3.tgz";
+ sha512 = "2mj8bx34brvh97wd2xcn5phgyd2wh3l1ma2xfd0m53yf68w1izp46pmz0s9az5f36mhlvl0mvfd6hp5abhi75fhyrz9wyx6jnx0jkgj";
+ };
+ };
+ "pump-2.0.1" = {
+ name = "pump";
+ packageName = "pump";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz";
+ sha512 = "288hcmlwdnqda84ylx9cv413ic0r59k0dp71hy7a200jsb7h1y63277jwdp1jdp13c1b3pl6g2gzr5gjv9p72f5sp7w3p0d34swrqxf";
+ };
+ };
+ "pumpify-1.4.0" = {
+ name = "pumpify";
+ packageName = "pumpify";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pumpify/-/pumpify-1.4.0.tgz";
+ sha512 = "1h37biy199n445y10vpyiswwcxv8zigfqp0b1xwgbyjq51f2dhjn1pcggjc4j5ccbd64l1ivfi0bqinx4m5clcawvwggy7jv93qsjfs";
+ };
+ };
+ "punycode-1.4.1" = {
+ name = "punycode";
+ packageName = "punycode";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz";
+ sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
+ };
+ };
+ "qrcode-terminal-0.11.0" = {
+ name = "qrcode-terminal";
+ packageName = "qrcode-terminal";
+ version = "0.11.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qrcode-terminal/-/qrcode-terminal-0.11.0.tgz";
+ sha1 = "ffc6c28a2fc0bfb47052b47e23f4f446a5fbdb9e";
+ };
+ };
"qs-6.4.0" = {
name = "qs";
packageName = "qs";
@@ -3433,130 +5863,202 @@ let
sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
};
};
- "ajv-4.11.8" = {
- name = "ajv";
- packageName = "ajv";
- version = "4.11.8";
+ "qs-6.5.1" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz";
- sha1 = "82ffb02b29e662ae53bdc20af15947706739c536";
+ url = "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz";
+ sha512 = "3waqapyj1k4g135sgj636rmswiaixq19is1rw0rpv4qp6k7dl0a9nwy06m7yl5lbdk9p6xpwwngnggbzlzaz6rh11c86j2nvnnf273r";
};
};
- "har-schema-1.0.5" = {
- name = "har-schema";
- packageName = "har-schema";
- version = "1.0.5";
+ "query-string-5.0.1" = {
+ name = "query-string";
+ packageName = "query-string";
+ version = "5.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
- sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
+ url = "https://registry.npmjs.org/query-string/-/query-string-5.0.1.tgz";
+ sha512 = "0lcnspv96dv03600bgjxk2ypak8mysp77n47jkddpz6ldcgscwyan1akqjrddii4abb2brz6gr6yq9pcbdx63m9i16kk8m5028qrkv8";
};
};
- "json-stable-stringify-1.0.1" = {
- name = "json-stable-stringify";
- packageName = "json-stable-stringify";
+ "qw-1.0.1" = {
+ name = "qw";
+ packageName = "qw";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
- sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
+ url = "https://registry.npmjs.org/qw/-/qw-1.0.1.tgz";
+ sha1 = "efbfdc740f9ad054304426acb183412cc8b996d4";
};
};
- "jsonify-0.0.0" = {
- name = "jsonify";
- packageName = "jsonify";
- version = "0.0.0";
+ "ramda-0.24.1" = {
+ name = "ramda";
+ packageName = "ramda";
+ version = "0.24.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz";
- sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73";
+ url = "https://registry.npmjs.org/ramda/-/ramda-0.24.1.tgz";
+ sha1 = "c3b7755197f35b8dc3502228262c4c91ddb6b857";
};
};
- "assert-plus-0.2.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "0.2.0";
+ "ramda-0.25.0" = {
+ name = "ramda";
+ packageName = "ramda";
+ version = "0.25.0";
src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz";
- sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
+ url = "https://registry.npmjs.org/ramda/-/ramda-0.25.0.tgz";
+ sha512 = "1qixam46hr8jsw2f4g0rvhn8jf493dpjqhi65ggacz83ndqwnal1m8kiy18d3ak9x4lapcjb1fvrx18zj26jfhlxp51vhsghnnmyyhr";
};
};
- "hoek-2.16.3" = {
- name = "hoek";
- packageName = "hoek";
- version = "2.16.3";
+ "random-access-file-1.8.1" = {
+ name = "random-access-file";
+ packageName = "random-access-file";
+ version = "1.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz";
- sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed";
+ url = "https://registry.npmjs.org/random-access-file/-/random-access-file-1.8.1.tgz";
+ sha512 = "3pvi9knrjp8krj1hsg8i2qmv5097fid3qnyz4wh2dvpr37x2ga6qqk7afh5f1i5sb9dsw169bara13knccdmjwnivb62xgywz868j7r";
};
};
- "boom-2.10.1" = {
- name = "boom";
- packageName = "boom";
- version = "2.10.1";
+ "random-access-memory-2.4.0" = {
+ name = "random-access-memory";
+ packageName = "random-access-memory";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz";
- sha1 = "39c8918ceff5799f83f9492a848f625add0c766f";
+ url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-2.4.0.tgz";
+ sha1 = "72f3d865b4b55a259879473e2fb2de3569c69ee2";
};
};
- "cryptiles-2.0.5" = {
- name = "cryptiles";
- packageName = "cryptiles";
- version = "2.0.5";
+ "randomatic-1.1.7" = {
+ name = "randomatic";
+ packageName = "randomatic";
+ version = "1.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz";
- sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8";
+ url = "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz";
+ sha512 = "2is2kipfnz3hl4yxgqk07rll6956cq3zzf9cddai3f0lij5acq76v98qv14qkpljh1pqfsyb8p69xa9cyaww6p0j91s4vc9zj6594hg";
};
};
- "sntp-1.0.9" = {
- name = "sntp";
- packageName = "sntp";
- version = "1.0.9";
+ "randombytes-2.0.6" = {
+ name = "randombytes";
+ packageName = "randombytes";
+ version = "2.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
- sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
+ url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.6.tgz";
+ sha512 = "3a0zyz736klfzzpd9vwag3gznq7lrj57igm474dq279gsnyqdgfm1brhrs78ky30gsdwz9rwnjjms00fpdpp2p3x8p9mq2zbhw3k108";
};
};
- "fstream-ignore-1.0.5" = {
- name = "fstream-ignore";
- packageName = "fstream-ignore";
- version = "1.0.5";
+ "range-parser-1.2.0" = {
+ name = "range-parser";
+ packageName = "range-parser";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.5.tgz";
- sha1 = "9c31dae34767018fe1d249b24dada67d092da105";
+ url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz";
+ sha1 = "f49be6b487894ddc40dcc94a322f611092e00d5e";
};
};
- "uid-number-0.0.6" = {
- name = "uid-number";
- packageName = "uid-number";
- version = "0.0.6";
+ "rc-1.2.4" = {
+ name = "rc";
+ packageName = "rc";
+ version = "1.2.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz";
- sha1 = "0ea10e8035e8eb5b8e4449f06da1c730663baa81";
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.4.tgz";
+ sha1 = "a0f606caae2a3b862bbd0ef85482c0125b315fa3";
};
};
- "async-2.1.5" = {
- name = "async";
- packageName = "async";
- version = "2.1.5";
+ "read-1.0.7" = {
+ name = "read";
+ packageName = "read";
+ version = "1.0.7";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz";
- sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
+ url = "https://registry.npmjs.org/read/-/read-1.0.7.tgz";
+ sha1 = "b3da19bd052431a97671d44a42634adf710b40c4";
};
};
- "cli-table-0.3.1" = {
- name = "cli-table";
- packageName = "cli-table";
- version = "0.3.1";
+ "read-cmd-shim-1.0.1" = {
+ name = "read-cmd-shim";
+ packageName = "read-cmd-shim";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz";
- sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23";
+ url = "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz";
+ sha1 = "2d5d157786a37c055d22077c32c53f8329e91c7b";
};
};
- "commander-2.9.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.9.0";
+ "read-installed-4.0.3" = {
+ name = "read-installed";
+ packageName = "read-installed";
+ version = "4.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz";
- sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
+ url = "https://registry.npmjs.org/read-installed/-/read-installed-4.0.3.tgz";
+ sha1 = "ff9b8b67f187d1e4c29b9feb31f6b223acd19067";
+ };
+ };
+ "read-package-json-2.0.12" = {
+ name = "read-package-json";
+ packageName = "read-package-json";
+ version = "2.0.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.12.tgz";
+ sha512 = "15w2z3m1iysjf0zwvyc5mix8nypx42shx90alil4sslq6caj3pgk59zsn2ppxn95nls6bs7yw7khl5rmlq9gljv27w3vs2gxg9wigwv";
+ };
+ };
+ "read-package-tree-5.1.6" = {
+ name = "read-package-tree";
+ packageName = "read-package-tree";
+ version = "5.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.6.tgz";
+ sha512 = "0v1k32zqj8bnqzyp5h0jxnkvpgpzpa6z7iyqbpm3p0ylqafbb2zm656mw6gs16zf98l7y218ygpx2kzks00qcycwwx2cny67mlza98l";
+ };
+ };
+ "read-pkg-2.0.0" = {
+ name = "read-pkg";
+ packageName = "read-pkg";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz";
+ sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8";
+ };
+ };
+ "read-pkg-3.0.0" = {
+ name = "read-pkg";
+ packageName = "read-pkg";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz";
+ sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389";
+ };
+ };
+ "read-pkg-up-2.0.0" = {
+ name = "read-pkg-up";
+ packageName = "read-pkg-up";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz";
+ sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be";
+ };
+ };
+ "readable-stream-1.1.14" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "1.1.14";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz";
+ sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9";
+ };
+ };
+ "readable-stream-2.3.3" = {
+ name = "readable-stream";
+ packageName = "readable-stream";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.3.tgz";
+ sha512 = "1wlizkv2wnz2nyb0lfxgs1m27zzcvasp3n5cfrd7hm4ch1wn79df2nbhzfadba5qqdfb28vhmw3drhp46vk2q6xk524qagvr76v7slv";
+ };
+ };
+ "readdir-scoped-modules-1.0.2" = {
+ name = "readdir-scoped-modules";
+ packageName = "readdir-scoped-modules";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz";
+ sha1 = "9fafa37d286be5d92cbaebdee030dc9b5f406747";
};
};
"readdirp-2.1.0" = {
@@ -3568,22 +6070,328 @@ let
sha1 = "4ed0ad060df3073300c48440373f72d1cc642d78";
};
};
- "lodash-4.17.4" = {
- name = "lodash";
- packageName = "lodash";
- version = "4.17.4";
+ "recursive-watch-1.1.2" = {
+ name = "recursive-watch";
+ packageName = "recursive-watch";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz";
- sha1 = "78203a4d1c328ae1d86dca6460e369b57f4055ae";
+ url = "https://registry.npmjs.org/recursive-watch/-/recursive-watch-1.1.2.tgz";
+ sha1 = "912e2d62a83c8b388d288c4343495f247bc43f8e";
};
};
- "graceful-readlink-1.0.1" = {
- name = "graceful-readlink";
- packageName = "graceful-readlink";
+ "regenerator-runtime-0.11.1" = {
+ name = "regenerator-runtime";
+ packageName = "regenerator-runtime";
+ version = "0.11.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz";
+ sha512 = "03d4l8l8cyywh93wf5vw84lq56jh1b1d7jll4ny4z060j9hvx7w5q3q0b8q227jm93749k1c9h86r2pz0bm2xq5vp14g3r2kbvqc2rj";
+ };
+ };
+ "regex-cache-0.4.4" = {
+ name = "regex-cache";
+ packageName = "regex-cache";
+ version = "0.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz";
+ sha512 = "1crfmf19zkv0imnbbkj7bwrcyin3zxa88cs86b6apkxj8qrsmkxnydhsy2ia75q4ld10rhi2s2c36h7g77a997mh9c2z453s311jllx";
+ };
+ };
+ "regex-escape-3.4.8" = {
+ name = "regex-escape";
+ packageName = "regex-escape";
+ version = "3.4.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/regex-escape/-/regex-escape-3.4.8.tgz";
+ sha512 = "15ylzlxx4y88jldg7cgwv0dmw3ljpq27f9qf17d3g76dqh6ir1ig7dzvqv9nqpr3da1yd2r5ay8jqa6yk7ni5fbbrzgkhf3yha1av8c";
+ };
+ };
+ "registry-auth-token-3.3.1" = {
+ name = "registry-auth-token";
+ packageName = "registry-auth-token";
+ version = "3.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.1.tgz";
+ sha1 = "fb0d3289ee0d9ada2cbb52af5dfe66cb070d3006";
+ };
+ };
+ "registry-url-3.1.0" = {
+ name = "registry-url";
+ packageName = "registry-url";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz";
+ sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942";
+ };
+ };
+ "remedial-1.0.7" = {
+ name = "remedial";
+ packageName = "remedial";
+ version = "1.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remedial/-/remedial-1.0.7.tgz";
+ sha1 = "d6674413a65676007be00dd400980987b2c300c1";
+ };
+ };
+ "remove-all-except-outer-links-1.0.3" = {
+ name = "remove-all-except-outer-links";
+ packageName = "remove-all-except-outer-links";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remove-all-except-outer-links/-/remove-all-except-outer-links-1.0.3.tgz";
+ sha512 = "27mlgakm2rw58mad07fnzfmjk893mr23qqi393b30qsqv2wyng86j0mqn1d06wi2cjzhlcq86zxzz1i3rvd58ajhq71crrm27dyblw7";
+ };
+ };
+ "remove-trailing-separator-1.1.0" = {
+ name = "remove-trailing-separator";
+ packageName = "remove-trailing-separator";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz";
+ sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
+ };
+ };
+ "rename-overwrite-1.0.0" = {
+ name = "rename-overwrite";
+ packageName = "rename-overwrite";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rename-overwrite/-/rename-overwrite-1.0.0.tgz";
+ sha1 = "b45a74ceb93d1073e31c5b701c428de5796523d8";
+ };
+ };
+ "repeat-element-1.1.2" = {
+ name = "repeat-element";
+ packageName = "repeat-element";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz";
+ sha1 = "ef089a178d1483baae4d93eb98b4f9e4e11d990a";
+ };
+ };
+ "repeat-string-1.6.1" = {
+ name = "repeat-string";
+ packageName = "repeat-string";
+ version = "1.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz";
+ sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
+ };
+ };
+ "replace-string-1.1.0" = {
+ name = "replace-string";
+ packageName = "replace-string";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/replace-string/-/replace-string-1.1.0.tgz";
+ sha1 = "87062117f823fe5800c306bacb2cfa359b935fea";
+ };
+ };
+ "request-2.81.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.81.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
+ sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
+ };
+ };
+ "request-2.83.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.83.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz";
+ sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm";
+ };
+ };
+ "require-directory-2.1.1" = {
+ name = "require-directory";
+ packageName = "require-directory";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
+ sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
+ };
+ };
+ "require-main-filename-1.0.1" = {
+ name = "require-main-filename";
+ packageName = "require-main-filename";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
- sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
+ url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
+ sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
+ };
+ };
+ "resolve-1.1.7" = {
+ name = "resolve";
+ packageName = "resolve";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz";
+ sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b";
+ };
+ };
+ "resolve-from-4.0.0" = {
+ name = "resolve-from";
+ packageName = "resolve-from";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz";
+ sha512 = "3i345pdv74jb3xbprqb38xq1zfhsbxzm6b1h0mbcvhfpzz907m4amq35s0spijdj3phs508sha4cnr3incg4w8in4r0kd7ccmicrgx5";
+ };
+ };
+ "resolve-link-target-1.0.1" = {
+ name = "resolve-link-target";
+ packageName = "resolve-link-target";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/resolve-link-target/-/resolve-link-target-1.0.1.tgz";
+ sha512 = "144pdhsw05w6zrwzh2daxd63x0qv6qgf5cimbkbvz9m4ncclp5z9xj6ym5ayhd6xvc2s7pwymj4x439k00czm5jz2h7z1dhgzipf9xs";
+ };
+ };
+ "responselike-1.0.2" = {
+ name = "responselike";
+ packageName = "responselike";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz";
+ sha1 = "918720ef3b631c5642be068f15ade5a46f4ba1e7";
+ };
+ };
+ "restore-cursor-2.0.0" = {
+ name = "restore-cursor";
+ packageName = "restore-cursor";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz";
+ sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf";
+ };
+ };
+ "retry-0.10.1" = {
+ name = "retry";
+ packageName = "retry";
+ version = "0.10.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/retry/-/retry-0.10.1.tgz";
+ sha1 = "e76388d217992c252750241d3d3956fed98d8ff4";
+ };
+ };
+ "revalidator-0.1.8" = {
+ name = "revalidator";
+ packageName = "revalidator";
+ version = "0.1.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz";
+ sha1 = "fece61bfa0c1b52a206bd6b18198184bdd523a3b";
+ };
+ };
+ "rimraf-2.6.2" = {
+ name = "rimraf";
+ packageName = "rimraf";
+ version = "2.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz";
+ sha512 = "3kmrqh8xli7rzfm8wc6j9lp0c6vml172iv3z088an9xlwl1xvkvh3fn92za66ms4c9yww80qa5kan31k1z1ypqvkchmh1mznb09xdwn";
+ };
+ };
+ "rimraf-then-1.0.1" = {
+ name = "rimraf-then";
+ packageName = "rimraf-then";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rimraf-then/-/rimraf-then-1.0.1.tgz";
+ sha1 = "bd4458a79eb561b7548aaec0ac3753ef429fe70b";
+ };
+ };
+ "run-queue-1.0.3" = {
+ name = "run-queue";
+ packageName = "run-queue";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz";
+ sha1 = "e848396f057d223f24386924618e25694161ec47";
+ };
+ };
+ "rusha-0.8.12" = {
+ name = "rusha";
+ packageName = "rusha";
+ version = "0.8.12";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rusha/-/rusha-0.8.12.tgz";
+ sha1 = "5d838ce1fce8b145674ee771eaad5bcb2575e64b";
+ };
+ };
+ "safe-buffer-5.1.1" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz";
+ sha512 = "1p28rllll1w65yzq5azi4izx962399xdsdlfbaynn7vmp981hiss05jhiy9hm7sbbfk3b4dhlcv0zy07fc59mnc07hdv6wcgqkcvawh";
+ };
+ };
+ "sec-1.0.0" = {
+ name = "sec";
+ packageName = "sec";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sec/-/sec-1.0.0.tgz";
+ sha1 = "033d60a3ad20ecf2e00940d14f97823465774335";
+ };
+ };
+ "semver-5.3.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.3.0";
+ src = fetchurl {
+ 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 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
+ };
+ };
+ "semver-5.5.0" = {
+ name = "semver";
+ packageName = "semver";
+ version = "5.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
+ sha512 = "0h32zh035y8m6dzcqhcymbhwgmc8839fa1hhj0jfh9ivp9kmqfj1sbwnsnkzcn9qm3sqn38sa8ys2g4c638lpnmzjr0a0qndmv7f8p1";
+ };
+ };
+ "semver-diff-2.1.0" = {
+ name = "semver-diff";
+ packageName = "semver-diff";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz";
+ sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36";
+ };
+ };
+ "semver-regex-1.0.0" = {
+ name = "semver-regex";
+ packageName = "semver-regex";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz";
+ sha1 = "92a4969065f9c70c694753d55248fc68f8f652c9";
+ };
+ };
+ "set-blocking-2.0.0" = {
+ name = "set-blocking";
+ packageName = "set-blocking";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz";
+ sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7";
};
};
"set-immediate-shim-1.0.1" = {
@@ -3595,6 +6403,1455 @@ let
sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61";
};
};
+ "sha-2.0.1" = {
+ name = "sha";
+ packageName = "sha";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sha/-/sha-2.0.1.tgz";
+ sha1 = "6030822fbd2c9823949f8f72ed6411ee5cf25aae";
+ };
+ };
+ "shebang-command-1.2.0" = {
+ name = "shebang-command";
+ packageName = "shebang-command";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz";
+ sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea";
+ };
+ };
+ "shebang-regex-1.0.0" = {
+ name = "shebang-regex";
+ packageName = "shebang-regex";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz";
+ sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3";
+ };
+ };
+ "signal-exit-3.0.2" = {
+ name = "signal-exit";
+ packageName = "signal-exit";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz";
+ sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d";
+ };
+ };
+ "signed-varint-2.0.1" = {
+ name = "signed-varint";
+ packageName = "signed-varint";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/signed-varint/-/signed-varint-2.0.1.tgz";
+ sha1 = "50a9989da7c98c2c61dad119bc97470ef8528129";
+ };
+ };
+ "simple-get-1.4.3" = {
+ name = "simple-get";
+ packageName = "simple-get";
+ version = "1.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-get/-/simple-get-1.4.3.tgz";
+ sha1 = "e9755eda407e96da40c5e5158c9ea37b33becbeb";
+ };
+ };
+ "simple-sha1-2.1.0" = {
+ name = "simple-sha1";
+ packageName = "simple-sha1";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-2.1.0.tgz";
+ sha1 = "9427bb96ff1263cc10a8414cedd51a18b919e8b3";
+ };
+ };
+ "siphash24-1.1.0" = {
+ name = "siphash24";
+ packageName = "siphash24";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.0.tgz";
+ sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w";
+ };
+ };
+ "slash-1.0.0" = {
+ name = "slash";
+ packageName = "slash";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz";
+ sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55";
+ };
+ };
+ "slasp-0.0.4" = {
+ name = "slasp";
+ packageName = "slasp";
+ version = "0.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slasp/-/slasp-0.0.4.tgz";
+ sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9";
+ };
+ };
+ "slice-ansi-1.0.0" = {
+ name = "slice-ansi";
+ packageName = "slice-ansi";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz";
+ sha512 = "1xd3zsk02nck4y601rn98n8cicrphaw5bdix278mk1yizmjv9s0wpa6akcqggd7d99c55s3byf4ylqdxkshyfsfnfx7lvwbmq2b3siw";
+ };
+ };
+ "slide-1.1.6" = {
+ name = "slide";
+ packageName = "slide";
+ version = "1.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz";
+ sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707";
+ };
+ };
+ "smart-buffer-1.1.15" = {
+ name = "smart-buffer";
+ packageName = "smart-buffer";
+ version = "1.1.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.1.15.tgz";
+ sha1 = "7f114b5b65fab3e2a35aa775bb12f0d1c649bf16";
+ };
+ };
+ "sntp-1.0.9" = {
+ name = "sntp";
+ packageName = "sntp";
+ version = "1.0.9";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz";
+ sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198";
+ };
+ };
+ "sntp-2.1.0" = {
+ name = "sntp";
+ packageName = "sntp";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz";
+ sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
+ };
+ };
+ "socks-1.1.10" = {
+ name = "socks";
+ packageName = "socks";
+ version = "1.1.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socks/-/socks-1.1.10.tgz";
+ sha1 = "5b8b7fc7c8f341c53ed056e929b7bf4de8ba7b5a";
+ };
+ };
+ "socks-proxy-agent-3.0.1" = {
+ name = "socks-proxy-agent";
+ packageName = "socks-proxy-agent";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-3.0.1.tgz";
+ sha512 = "2a5lsw4fry6nqk3jdxvwqrnpasypvl8c4d0kg32912820lc72l7s9jzidfsrn2an9c66xqicspxb2vnir5cjspprs9qklxnd75060b7";
+ };
+ };
+ "sodium-javascript-0.5.4" = {
+ name = "sodium-javascript";
+ packageName = "sodium-javascript";
+ version = "0.5.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sodium-javascript/-/sodium-javascript-0.5.4.tgz";
+ sha512 = "1dqdzm0qjk1rwq62b010b649wdpvlzdxpmwc972p0dcwsc86wqfcm8lbdcxlrwypkn2jq5df1xpbxhxfphnpr993ac543p9s212si30";
+ };
+ };
+ "sodium-native-2.1.4" = {
+ name = "sodium-native";
+ packageName = "sodium-native";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sodium-native/-/sodium-native-2.1.4.tgz";
+ sha512 = "3d3bbjycbpplxgjpfz78vqr8g8hp62j37hr4c3vym7ax36qzxqan73fmqw2i3wd8ix65ysdlzbnzhrs3634ngp840gfpmm9alarc80j";
+ };
+ };
+ "sodium-universal-2.0.0" = {
+ name = "sodium-universal";
+ packageName = "sodium-universal";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sodium-universal/-/sodium-universal-2.0.0.tgz";
+ sha512 = "2rd6r7v2i3z76rzvllqx9ywk5f64q23944njcf14vv7x3l0illqn41bgdiifik4kswgys99mxsrqinq8akf3n7b15r9871km74mbivj";
+ };
+ };
+ "sort-keys-2.0.0" = {
+ name = "sort-keys";
+ packageName = "sort-keys";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz";
+ sha1 = "658535584861ec97d730d6cf41822e1f56684128";
+ };
+ };
+ "sorted-array-functions-1.1.0" = {
+ name = "sorted-array-functions";
+ packageName = "sorted-array-functions";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.1.0.tgz";
+ sha512 = "209rl01n6lwbsxl40lmh1v38sad3d94s0mjb4mz6r3wwwhzcahibr8m2fhlqgsjgzf3dja9wyhz7qjkw39gxlwpapyid2whs4nrzbnf";
+ };
+ };
+ "sorted-indexof-1.0.0" = {
+ name = "sorted-indexof";
+ packageName = "sorted-indexof";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-indexof/-/sorted-indexof-1.0.0.tgz";
+ sha1 = "17c742ff7cf187e2f59a15df9b81f17a62ce0899";
+ };
+ };
+ "sorted-object-2.0.1" = {
+ name = "sorted-object";
+ packageName = "sorted-object";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-object/-/sorted-object-2.0.1.tgz";
+ sha1 = "7d631f4bd3a798a24af1dffcfbfe83337a5df5fc";
+ };
+ };
+ "sorted-union-stream-2.1.3" = {
+ name = "sorted-union-stream";
+ packageName = "sorted-union-stream";
+ version = "2.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sorted-union-stream/-/sorted-union-stream-2.1.3.tgz";
+ sha1 = "c7794c7e077880052ff71a8d4a2dbb4a9a638ac7";
+ };
+ };
+ "source-map-0.6.1" = {
+ name = "source-map";
+ packageName = "source-map";
+ version = "0.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz";
+ sha512 = "3p7hw8p69ikj5mwapmqkacsjnbvdfk5ylyamjg9x5izkl717xvzj0vk3fnmx1n4pf54h5rs7r8ig5kk4jv4ycqqj0hv75cnx6k1lf2j";
+ };
+ };
+ "sparse-bitfield-3.0.3" = {
+ name = "sparse-bitfield";
+ packageName = "sparse-bitfield";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz";
+ sha1 = "ff4ae6e68656056ba4b3e792ab3334d38273ca11";
+ };
+ };
+ "spawno-2.0.7" = {
+ name = "spawno";
+ packageName = "spawno";
+ version = "2.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spawno/-/spawno-2.0.7.tgz";
+ sha512 = "0h8xflvrqwdvz8gadif970wlj5mby4vxhar40h0g96ld6qv6b696msspl89rs2l6n8zv3d9yd5lm85v1g5qk7fpjhqiai2862anzyrc";
+ };
+ };
+ "spdx-correct-1.0.2" = {
+ name = "spdx-correct";
+ packageName = "spdx-correct";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz";
+ sha1 = "4b3073d933ff51f3912f03ac5519498a4150db40";
+ };
+ };
+ "spdx-expression-parse-1.0.4" = {
+ name = "spdx-expression-parse";
+ packageName = "spdx-expression-parse";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz";
+ sha1 = "9bdf2f20e1f40ed447fbe273266191fced51626c";
+ };
+ };
+ "spdx-license-ids-1.2.2" = {
+ name = "spdx-license-ids";
+ packageName = "spdx-license-ids";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz";
+ sha1 = "c9df7a3424594ade6bd11900d596696dc06bac57";
+ };
+ };
+ "speedometer-1.0.0" = {
+ name = "speedometer";
+ packageName = "speedometer";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/speedometer/-/speedometer-1.0.0.tgz";
+ sha1 = "cd671cb06752c22bca3370e2f334440be4fc62e2";
+ };
+ };
+ "split2-2.2.0" = {
+ name = "split2";
+ packageName = "split2";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz";
+ sha512 = "1plzy1n554n2gwfpavi4azb4y45dm2mwj7dq8ma99yg1z55xcdxmkibsfhsh1h19qgsrcamm0ha5qi2c3has6skvx4bix5p67czc1j4";
+ };
+ };
+ "sprintf-js-1.0.3" = {
+ name = "sprintf-js";
+ packageName = "sprintf-js";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz";
+ sha1 = "04e6926f662895354f3dd015203633b857297e2c";
+ };
+ };
+ "sshpk-1.13.1" = {
+ name = "sshpk";
+ packageName = "sshpk";
+ version = "1.13.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.13.1.tgz";
+ sha1 = "512df6da6287144316dc4c18fe1cf1d940739be3";
+ };
+ };
+ "ssri-4.1.6" = {
+ name = "ssri";
+ packageName = "ssri";
+ version = "4.1.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssri/-/ssri-4.1.6.tgz";
+ sha512 = "283n1p781cl2pj3jk32blcvwjdlaixng0v5x2f9qi3ndxrmyg3hk4clsjpcfsszkymy40q426yz5skax4ivsmll2p9hhcc00ivc4ijr";
+ };
+ };
+ "ssri-5.0.0" = {
+ name = "ssri";
+ packageName = "ssri";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssri/-/ssri-5.0.0.tgz";
+ sha512 = "0g0vz6pdy8f13fqnadimwxx39hq1ix1my6gv0cm308vpv7i06f7gk4ywp7q9aw5sbhrakf86x37ai9fn2y4jvw6lashjw8h5bih6vzg";
+ };
+ };
+ "ssri-5.1.0" = {
+ name = "ssri";
+ packageName = "ssri";
+ version = "5.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ssri/-/ssri-5.1.0.tgz";
+ sha512 = "11f7imn7d4s1vs4z45yk8gkis18gbb5qn1z4v5liidy6vwairj5426xciyk10yh3gnxj77bkamzffip8v7v9mjr8ggs8h1iz3qw5ssd";
+ };
+ };
+ "stack-trace-0.0.10" = {
+ name = "stack-trace";
+ packageName = "stack-trace";
+ version = "0.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz";
+ sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
+ };
+ };
+ "stacktracey-1.2.100" = {
+ name = "stacktracey";
+ packageName = "stacktracey";
+ version = "1.2.100";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stacktracey/-/stacktracey-1.2.100.tgz";
+ sha1 = "9e32c7a7fa643eaf69a8f9572361339a8afb6b59";
+ };
+ };
+ "static-methods-1.0.10" = {
+ name = "static-methods";
+ packageName = "static-methods";
+ version = "1.0.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/static-methods/-/static-methods-1.0.10.tgz";
+ sha512 = "2vn92wnri9w5d8san58a7nyyz1ai56gl2qaic9w430bbyyscw98k0a89h3nhk3fkpg9p47hdizwmgp4cnx2g6kxjgk7la5mclk7vb2y";
+ };
+ };
+ "status-logger-3.1.1" = {
+ name = "status-logger";
+ packageName = "status-logger";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/status-logger/-/status-logger-3.1.1.tgz";
+ sha512 = "005i18cgcklklz0gqd9gsck97zwf2zfr9wa26lr9djafcng34nbdlqmhwrm9ixf2qgjb9mm2k72ggscb7v3zvybbkys1xfkzv6immkl";
+ };
+ };
+ "stream-collector-1.0.1" = {
+ name = "stream-collector";
+ packageName = "stream-collector";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-collector/-/stream-collector-1.0.1.tgz";
+ sha1 = "4d4e55f171356121b2c5f6559f944705ab28db15";
+ };
+ };
+ "stream-each-1.2.2" = {
+ name = "stream-each";
+ packageName = "stream-each";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.2.tgz";
+ sha512 = "2h4ymczmf5aqldga4sj8acqlzc3almazi2vwiv7kx63k28sz1wwkqgzzv1hn47jf49k1x94w25fmmi001h5mj3n6g9in1s6b1n5vkcr";
+ };
+ };
+ "stream-iterate-1.2.0" = {
+ name = "stream-iterate";
+ packageName = "stream-iterate";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-iterate/-/stream-iterate-1.2.0.tgz";
+ sha1 = "2bd7c77296c1702a46488b8ad41f79865eecd4e1";
+ };
+ };
+ "stream-parser-0.3.1" = {
+ name = "stream-parser";
+ packageName = "stream-parser";
+ version = "0.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-parser/-/stream-parser-0.3.1.tgz";
+ sha1 = "1618548694420021a1182ff0af1911c129761773";
+ };
+ };
+ "stream-shift-1.0.0" = {
+ name = "stream-shift";
+ packageName = "stream-shift";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz";
+ sha1 = "d5c752825e5367e786f78e18e445ea223a155952";
+ };
+ };
+ "strict-uri-encode-1.1.0" = {
+ name = "strict-uri-encode";
+ packageName = "strict-uri-encode";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz";
+ sha1 = "279b225df1d582b1f54e65addd4352e18faa0713";
+ };
+ };
+ "string-width-1.0.2" = {
+ name = "string-width";
+ packageName = "string-width";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz";
+ sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3";
+ };
+ };
+ "string-width-2.1.1" = {
+ name = "string-width";
+ packageName = "string-width";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz";
+ sha512 = "29s1fqgr4mnhfxwczgdghfmmc1f792m9hysvcjxw2h5lfj8ndf2b6gm02m96qk5m75g4aisijvng4pk618anwbr8i9ay2jyszkqgslw";
+ };
+ };
+ "string_decoder-0.10.31" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "0.10.31";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz";
+ sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94";
+ };
+ };
+ "string_decoder-1.0.3" = {
+ name = "string_decoder";
+ packageName = "string_decoder";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz";
+ sha512 = "22vw5mmwlyblqc2zyqwl39wyhyahhpiyknim8iz5fk6xi002x777gkswiq8fh297djs5ii4pgrys57wq33hr5zf3xfd0d7kjxkzl0g0";
+ };
+ };
+ "stringstream-0.0.5" = {
+ name = "stringstream";
+ packageName = "stringstream";
+ version = "0.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz";
+ sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878";
+ };
+ };
+ "strip-ansi-3.0.1" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
+ sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
+ };
+ };
+ "strip-ansi-4.0.0" = {
+ name = "strip-ansi";
+ packageName = "strip-ansi";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz";
+ sha1 = "a8479022eb1ac368a871389b635262c505ee368f";
+ };
+ };
+ "strip-bom-3.0.0" = {
+ name = "strip-bom";
+ packageName = "strip-bom";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz";
+ sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3";
+ };
+ };
+ "strip-color-0.1.0" = {
+ name = "strip-color";
+ packageName = "strip-color";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-color/-/strip-color-0.1.0.tgz";
+ sha1 = "106f65d3d3e6a2d9401cac0eb0ce8b8a702b4f7b";
+ };
+ };
+ "strip-eof-1.0.0" = {
+ name = "strip-eof";
+ packageName = "strip-eof";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz";
+ sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf";
+ };
+ };
+ "strip-json-comments-2.0.1" = {
+ name = "strip-json-comments";
+ packageName = "strip-json-comments";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz";
+ sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
+ };
+ };
+ "subcommand-2.1.0" = {
+ name = "subcommand";
+ packageName = "subcommand";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/subcommand/-/subcommand-2.1.0.tgz";
+ sha1 = "5e4ceca5a3779e3365b1511e05f866877302f760";
+ };
+ };
+ "supi-0.12.1" = {
+ name = "supi";
+ packageName = "supi";
+ version = "0.12.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supi/-/supi-0.12.1.tgz";
+ sha512 = "1fb6fkng687rhx89agz3mqa854p424b8nwj1ix6ckfv40gnkz3saydxs0di4nildpccn2rgwf01flxk922pj2rap6wqg8fdr2c8crz7";
+ };
+ };
+ "supports-color-2.0.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
+ sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
+ };
+ };
+ "supports-color-3.2.3" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "3.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz";
+ sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6";
+ };
+ };
+ "supports-color-4.4.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "4.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz";
+ sha512 = "1flwwfdd7gg94xrc0b2ard3qjx4cpy600q49gx43y8pzvs7j56q78bjhv8mk18vgbggr4fd11jda8ck5cdrkc5jcjs04nlp7kwbg85c";
+ };
+ };
+ "supports-color-4.5.0" = {
+ name = "supports-color";
+ packageName = "supports-color";
+ version = "4.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz";
+ sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b";
+ };
+ };
+ "symbol-observable-1.1.0" = {
+ name = "symbol-observable";
+ packageName = "symbol-observable";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.1.0.tgz";
+ sha512 = "19pk4fk1ddq50all5c15bb58iwchzck5lvmsvlx5va17sfrq89pda0qrrnlma34m1kzay4q3k3ghmfp32hlqvk8njlfnhvavdvj42km";
+ };
+ };
+ "symlink-dir-1.1.2" = {
+ name = "symlink-dir";
+ packageName = "symlink-dir";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/symlink-dir/-/symlink-dir-1.1.2.tgz";
+ sha512 = "2bzpdrkxnd1iysdlc7n6i5pqwqm98s2m2srfp9br9872qdvv8pbnm3i7r27rqxbad6pypj2lzhkxf8zghfzp3psl9psk9bkbp02yw8r";
+ };
+ };
+ "tar-2.2.1" = {
+ name = "tar";
+ packageName = "tar";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz";
+ sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
+ };
+ };
+ "tar-4.0.2" = {
+ name = "tar";
+ packageName = "tar";
+ version = "4.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar/-/tar-4.0.2.tgz";
+ sha512 = "1mm9s6jly4lwfv9cak7kpiagqx3j6n1dh50k7nlnqy761ckfvn394asfgq1vdnxpjr164h5ybgcfysr8wgm70bwd0y3qnq4w3i8smg2";
+ };
+ };
+ "tar-fs-1.16.0" = {
+ name = "tar-fs";
+ packageName = "tar-fs";
+ version = "1.16.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-fs/-/tar-fs-1.16.0.tgz";
+ sha512 = "1i39d75rgrl2a3v3x65w7bz6az06sg7xdvp7j9zk5bqilj5znclmr7r5n9l6la6nkqikn4lkhnfrgp4hzbvp6ph77nn53g6zvmdpni3";
+ };
+ };
+ "tar-pack-3.4.1" = {
+ name = "tar-pack";
+ packageName = "tar-pack";
+ version = "3.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.1.tgz";
+ sha512 = "0mgk8jd55vr7i3i29r1skhxwwbqkqfz6mbr32r5nn8h6v5xns8d2rc7835y7wj0zmppckxai7nm8r4s65kkg6yhirnwx33yixn75x1w";
+ };
+ };
+ "tar-stream-1.5.5" = {
+ name = "tar-stream";
+ packageName = "tar-stream";
+ version = "1.5.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.5.tgz";
+ sha512 = "219gn10gvilrq6h3yshbhn25fx46n0wlgg66h0v326jhzz8gmpxsinb8bnhx1py35z0cv2248v91k2vy6vmkajmvpmkfmizywn601wr";
+ };
+ };
+ "tasklist-3.1.0" = {
+ name = "tasklist";
+ packageName = "tasklist";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tasklist/-/tasklist-3.1.0.tgz";
+ sha1 = "873a98a4e45cbdecfa2c2ee18865353057e63696";
+ };
+ };
+ "term-size-1.2.0" = {
+ name = "term-size";
+ packageName = "term-size";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz";
+ sha1 = "458b83887f288fc56d6fffbfad262e26638efa69";
+ };
+ };
+ "text-table-0.2.0" = {
+ name = "text-table";
+ packageName = "text-table";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz";
+ sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4";
+ };
+ };
+ "thenify-3.3.0" = {
+ name = "thenify";
+ packageName = "thenify";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thenify/-/thenify-3.3.0.tgz";
+ sha1 = "e69e38a1babe969b0108207978b9f62b88604839";
+ };
+ };
+ "thenify-all-1.6.0" = {
+ name = "thenify-all";
+ packageName = "thenify-all";
+ version = "1.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz";
+ sha1 = "1a1918d402d8fc3f98fbf234db0bcc8cc10e9726";
+ };
+ };
+ "throttle-1.0.3" = {
+ name = "throttle";
+ packageName = "throttle";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/throttle/-/throttle-1.0.3.tgz";
+ sha1 = "8a32e4a15f1763d997948317c5ebe3ad8a41e4b7";
+ };
+ };
+ "through-2.3.8" = {
+ name = "through";
+ packageName = "through";
+ version = "2.3.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz";
+ sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5";
+ };
+ };
+ "through2-2.0.3" = {
+ name = "through2";
+ packageName = "through2";
+ version = "2.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz";
+ sha1 = "0004569b37c7c74ba39c43f3ced78d1ad94140be";
+ };
+ };
+ "thunky-0.1.0" = {
+ name = "thunky";
+ packageName = "thunky";
+ version = "0.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz";
+ sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e";
+ };
+ };
+ "thunky-1.0.2" = {
+ name = "thunky";
+ packageName = "thunky";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/thunky/-/thunky-1.0.2.tgz";
+ sha1 = "a862e018e3fb1ea2ec3fce5d55605cf57f247371";
+ };
+ };
+ "timed-out-4.0.1" = {
+ name = "timed-out";
+ packageName = "timed-out";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz";
+ sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f";
+ };
+ };
+ "timeout-then-1.1.0" = {
+ name = "timeout-then";
+ packageName = "timeout-then";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/timeout-then/-/timeout-then-1.1.0.tgz";
+ sha1 = "0145b06070159c17e2146fd292b01a1bd81e5fbc";
+ };
+ };
+ "to-buffer-1.1.0" = {
+ name = "to-buffer";
+ packageName = "to-buffer";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.0.tgz";
+ sha1 = "375bc03edae5c35a8fa0b3fe95a1f3985db1dcfa";
+ };
+ };
+ "toiletdb-1.4.1" = {
+ name = "toiletdb";
+ packageName = "toiletdb";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/toiletdb/-/toiletdb-1.4.1.tgz";
+ sha512 = "0c9ayp39hvxd1lzl6cxvsxcys0jzfb698i3as3xrw3n9zpxwmx4sqwisv63bfsmdl10c6v4inpj5kvckhlr3nd3ny1pj264r0qags0l";
+ };
+ };
+ "tough-cookie-2.3.3" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.3.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.3.tgz";
+ sha1 = "0b618a5565b6dea90bf3425d04d55edc475a7561";
+ };
+ };
+ "township-client-1.3.2" = {
+ name = "township-client";
+ packageName = "township-client";
+ version = "1.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/township-client/-/township-client-1.3.2.tgz";
+ sha512 = "3da1j7ba37apy5kqlv436dz265b8ni63ca069gy4wrj9krq236j7sp0r259ia6jk1a8d7qqg37kkk8kwmnaqwcy90wnwnjxxp8bnf78";
+ };
+ };
+ "tree-kill-1.2.0" = {
+ name = "tree-kill";
+ packageName = "tree-kill";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.0.tgz";
+ sha512 = "1r0mixygpdqrm2fn92z4cyxzbnvimm16k5gdm2m2jxx8wrj3w0mql9s748hcqp2nzcnybnw74wkm211zlr9ld0j2x1q8f153mszlm8f";
+ };
+ };
+ "trim-0.0.1" = {
+ name = "trim";
+ packageName = "trim";
+ version = "0.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz";
+ sha1 = "5858547f6b290757ee95cccc666fb50084c460dd";
+ };
+ };
+ "ttl-1.3.1" = {
+ name = "ttl";
+ packageName = "ttl";
+ version = "1.3.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ttl/-/ttl-1.3.1.tgz";
+ sha512 = "36d1ph5z6c3p2qqyjq8ckksxs7m0anipm6lzf51dgv59iymac2zwaxj6fablw7zabpjxav32qk8z12fdfx6cdpp97b0van043vb5cgr";
+ };
+ };
+ "tunnel-agent-0.6.0" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
+ sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
+ };
+ };
+ "tweetnacl-0.14.5" = {
+ name = "tweetnacl";
+ packageName = "tweetnacl";
+ version = "0.14.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz";
+ sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64";
+ };
+ };
+ "typedarray-0.0.6" = {
+ name = "typedarray";
+ packageName = "typedarray";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz";
+ sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
+ };
+ };
+ "typpy-2.0.0" = {
+ name = "typpy";
+ packageName = "typpy";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typpy/-/typpy-2.0.0.tgz";
+ sha1 = "adef3bacc12ff47aff920fab03a8ff3279d737d6";
+ };
+ };
+ "typpy-2.3.10" = {
+ name = "typpy";
+ packageName = "typpy";
+ version = "2.3.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typpy/-/typpy-2.3.10.tgz";
+ sha512 = "2m116608xyx0v7pl2hwvw0z7gw1yyxqx7yhp0l3a2nxrlsn7xav33rnys72xrc6jr0dwsg0r71f7qj42pdzgza15fz8l5wphycr5a0c";
+ };
+ };
+ "uid-number-0.0.6" = {
+ name = "uid-number";
+ packageName = "uid-number";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz";
+ sha1 = "0ea10e8035e8eb5b8e4449f06da1c730663baa81";
+ };
+ };
+ "uint64be-2.0.1" = {
+ name = "uint64be";
+ packageName = "uint64be";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uint64be/-/uint64be-2.0.1.tgz";
+ sha1 = "a310d94e4e5e0b02a95d678e33323f802bdc8428";
+ };
+ };
+ "ul-5.0.0" = {
+ name = "ul";
+ packageName = "ul";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ul/-/ul-5.0.0.tgz";
+ sha1 = "ca80d793025f3fd5dc9bf83469818d310a7c9a62";
+ };
+ };
+ "ul-5.2.13" = {
+ name = "ul";
+ packageName = "ul";
+ version = "5.2.13";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ul/-/ul-5.2.13.tgz";
+ sha1 = "9ff0504ea35ca1f74c0bf59e6480def009bad7b5";
+ };
+ };
+ "umask-1.1.0" = {
+ name = "umask";
+ packageName = "umask";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/umask/-/umask-1.1.0.tgz";
+ sha1 = "f29cebf01df517912bb58ff9c4e50fde8e33320d";
+ };
+ };
+ "unbzip2-stream-1.2.5" = {
+ name = "unbzip2-stream";
+ packageName = "unbzip2-stream";
+ version = "1.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.2.5.tgz";
+ sha512 = "0xgvidx384p6cc8zh4m0qq000cn140dsckkijf95ka6iqi9j5nsrjrrf3mr3gxnybcvf2l4hxkaf0j7cqxncm3lnpq4ripw2j7zfc4b";
+ };
+ };
+ "unique-filename-1.1.0" = {
+ name = "unique-filename";
+ packageName = "unique-filename";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.0.tgz";
+ sha1 = "d05f2fe4032560871f30e93cbe735eea201514f3";
+ };
+ };
+ "unique-slug-2.0.0" = {
+ name = "unique-slug";
+ packageName = "unique-slug";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.0.tgz";
+ sha1 = "db6676e7c7cc0629878ff196097c78855ae9f4ab";
+ };
+ };
+ "unique-string-1.0.0" = {
+ name = "unique-string";
+ packageName = "unique-string";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz";
+ sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a";
+ };
+ };
+ "unixify-1.0.0" = {
+ name = "unixify";
+ packageName = "unixify";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unixify/-/unixify-1.0.0.tgz";
+ sha1 = "3a641c8c2ffbce4da683a5c70f03a462940c2090";
+ };
+ };
+ "unordered-array-remove-1.0.2" = {
+ name = "unordered-array-remove";
+ packageName = "unordered-array-remove";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unordered-array-remove/-/unordered-array-remove-1.0.2.tgz";
+ sha1 = "c546e8f88e317a0cf2644c97ecb57dba66d250ef";
+ };
+ };
+ "unordered-set-1.1.0" = {
+ name = "unordered-set";
+ packageName = "unordered-set";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unordered-set/-/unordered-set-1.1.0.tgz";
+ sha1 = "2ba7ef316edd0b9590cc547c74f76a2f164fecca";
+ };
+ };
+ "unordered-set-2.0.0" = {
+ name = "unordered-set";
+ packageName = "unordered-set";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unordered-set/-/unordered-set-2.0.0.tgz";
+ sha1 = "985a27e975baa20b8263aea7a791e9300941a9ec";
+ };
+ };
+ "unpack-stream-3.0.1" = {
+ name = "unpack-stream";
+ packageName = "unpack-stream";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unpack-stream/-/unpack-stream-3.0.1.tgz";
+ sha512 = "3m37z48fshadh46ay1hibdw9fawz3rgx1c16wx63mgplka0bs71364xnn72awwzc83dns0gkhnv3slmk071k1mdrm1bzvbi8z1br8f9";
+ };
+ };
+ "unpipe-1.0.0" = {
+ name = "unpipe";
+ packageName = "unpipe";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz";
+ sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec";
+ };
+ };
+ "untildify-3.0.2" = {
+ name = "untildify";
+ packageName = "untildify";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/untildify/-/untildify-3.0.2.tgz";
+ sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1";
+ };
+ };
+ "unzip-response-1.0.2" = {
+ name = "unzip-response";
+ packageName = "unzip-response";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.2.tgz";
+ sha1 = "b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe";
+ };
+ };
+ "unzip-response-2.0.1" = {
+ name = "unzip-response";
+ packageName = "unzip-response";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz";
+ sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97";
+ };
+ };
+ "update-notifier-2.2.0" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.2.0.tgz";
+ sha1 = "1b5837cf90c0736d88627732b661c138f86de72f";
+ };
+ };
+ "update-notifier-2.3.0" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.3.0.tgz";
+ sha1 = "4e8827a6bb915140ab093559d7014e3ebb837451";
+ };
+ };
+ "url-parse-lax-1.0.0" = {
+ name = "url-parse-lax";
+ packageName = "url-parse-lax";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz";
+ sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73";
+ };
+ };
+ "url-parse-lax-3.0.0" = {
+ name = "url-parse-lax";
+ packageName = "url-parse-lax";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz";
+ sha1 = "16b5cafc07dbe3676c1b1999177823d6503acb0c";
+ };
+ };
+ "url-to-options-1.0.1" = {
+ name = "url-to-options";
+ packageName = "url-to-options";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz";
+ sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9";
+ };
+ };
+ "util-deprecate-1.0.2" = {
+ name = "util-deprecate";
+ packageName = "util-deprecate";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz";
+ sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
+ };
+ };
+ "util-extend-1.0.3" = {
+ name = "util-extend";
+ packageName = "util-extend";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz";
+ sha1 = "a7c216d267545169637b3b6edc6ca9119e2ff93f";
+ };
+ };
+ "util.promisify-1.0.0" = {
+ name = "util.promisify";
+ packageName = "util.promisify";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz";
+ sha512 = "28cvjkydplc2vpnqff8vylscx8851srnkl54y6i54pl6lhpr6548plvyj833jk2mfaf8h31gbn60s00azd28rzc5q5gm1hgcc1smvlb";
+ };
+ };
+ "utile-0.3.0" = {
+ name = "utile";
+ packageName = "utile";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utile/-/utile-0.3.0.tgz";
+ sha1 = "1352c340eb820e4d8ddba039a4fbfaa32ed4ef3a";
+ };
+ };
+ "utp-native-1.6.2" = {
+ name = "utp-native";
+ packageName = "utp-native";
+ version = "1.6.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/utp-native/-/utp-native-1.6.2.tgz";
+ sha512 = "2mcnn6w5as2dvz6rj4fb33174z3a1rl9bm2cfazrr4084gq7aal0bkmkwr1cjpkvy1zgni3zdk0570fx7cmnd0k0hg18wfb2hvbigfg";
+ };
+ };
+ "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 = "3x5mi85l1559nkb35pfksjjgiyfyqrcvmcf0nly1xjl1kb0d37jnxd6sk0b8d331waadnqbf60nfssb563x9pvnjcw87lrh976sv18c";
+ };
+ };
+ "uuid-3.2.1" = {
+ name = "uuid";
+ packageName = "uuid";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz";
+ sha512 = "0843vl1c974n8kw5kn0kvhvhwk8y8jydr0xkwwl2963xxmkw4ingk6xj9c8m48jw2i95giglxzq5aw5v5mij9kv7fzln8pxav1cr6cd";
+ };
+ };
+ "validate-npm-package-license-3.0.1" = {
+ name = "validate-npm-package-license";
+ packageName = "validate-npm-package-license";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz";
+ sha1 = "2804babe712ad3379459acfbe24746ab2c303fbc";
+ };
+ };
+ "validate-npm-package-name-3.0.0" = {
+ name = "validate-npm-package-name";
+ packageName = "validate-npm-package-name";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
+ sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
+ };
+ };
+ "varint-3.0.1" = {
+ name = "varint";
+ packageName = "varint";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/varint/-/varint-3.0.1.tgz";
+ sha1 = "9d3f53e036c0ab12000a74bc2d24cbf093a581d9";
+ };
+ };
+ "varint-4.0.1" = {
+ name = "varint";
+ packageName = "varint";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/varint/-/varint-4.0.1.tgz";
+ sha1 = "490829b942d248463b2b35097995c3bf737198e9";
+ };
+ };
+ "varint-5.0.0" = {
+ name = "varint";
+ packageName = "varint";
+ version = "5.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/varint/-/varint-5.0.0.tgz";
+ sha1 = "d826b89f7490732fabc0c0ed693ed475dcb29ebf";
+ };
+ };
+ "verror-1.10.0" = {
+ name = "verror";
+ packageName = "verror";
+ version = "1.10.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz";
+ sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
+ };
+ };
+ "version-selector-type-2.0.0" = {
+ name = "version-selector-type";
+ packageName = "version-selector-type";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/version-selector-type/-/version-selector-type-2.0.0.tgz";
+ sha512 = "3n7bidjd5r4lph1qq3sz6kyjk3isb2hjvvaccsqqsspphm2in151xgga6lzjimydbvl9a6cr9jy8q06qdgvalq4nxyggs1v49i150qm";
+ };
+ };
+ "wcwidth-1.0.1" = {
+ name = "wcwidth";
+ packageName = "wcwidth";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz";
+ sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8";
+ };
+ };
+ "which-1.3.0" = {
+ name = "which";
+ packageName = "which";
+ version = "1.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
+ sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
+ };
+ };
+ "which-module-2.0.0" = {
+ name = "which-module";
+ packageName = "which-module";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz";
+ sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a";
+ };
+ };
+ "wide-align-1.1.2" = {
+ name = "wide-align";
+ packageName = "wide-align";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
+ sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
+ };
+ };
+ "widest-line-2.0.0" = {
+ name = "widest-line";
+ packageName = "widest-line";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/widest-line/-/widest-line-2.0.0.tgz";
+ sha1 = "0142a4e8a243f8882c0233aa0e0281aa76152273";
+ };
+ };
+ "winston-2.1.1" = {
+ name = "winston";
+ packageName = "winston";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz";
+ sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e";
+ };
+ };
+ "worker-farm-1.5.2" = {
+ name = "worker-farm";
+ packageName = "worker-farm";
+ version = "1.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/worker-farm/-/worker-farm-1.5.2.tgz";
+ sha512 = "28xgfshjpa79hz7v39axfrfnjhhjl371w30vy7dhs0kdzsdd42xi8lz85yjs2m0fp481iydiwscsy61gr99igkmkak7xrjd8vv9062z";
+ };
+ };
+ "wrap-ansi-2.1.0" = {
+ name = "wrap-ansi";
+ packageName = "wrap-ansi";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz";
+ sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85";
+ };
+ };
+ "wrap-ansi-3.0.1" = {
+ name = "wrap-ansi";
+ packageName = "wrap-ansi";
+ version = "3.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz";
+ sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba";
+ };
+ };
+ "wrappy-1.0.2" = {
+ name = "wrappy";
+ packageName = "wrappy";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz";
+ sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f";
+ };
+ };
+ "write-file-atomic-1.3.4" = {
+ name = "write-file-atomic";
+ packageName = "write-file-atomic";
+ version = "1.3.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.3.4.tgz";
+ sha1 = "f807a4f0b1d9e913ae7a48112e6cc3af1991b45f";
+ };
+ };
+ "write-file-atomic-2.1.0" = {
+ name = "write-file-atomic";
+ packageName = "write-file-atomic";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.1.0.tgz";
+ sha512 = "0jpbx5znf640m7icywa21hdgyss5h6c811z27mzk7mh1yhv8sqcqd2y0cwgkrnigx57k2chv5cqwv0z8ff8z32gpdw8jw5imz8pcdni";
+ };
+ };
+ "write-file-atomic-2.3.0" = {
+ name = "write-file-atomic";
+ packageName = "write-file-atomic";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.3.0.tgz";
+ sha512 = "2sgqxmcqzjd7nq9gjh6jz7vfb0gs0ag4jvqzdq93afq3bw3jrm88mhxql9sryyb04f3ipw5jkgjfiigsmdwlz9fgsnnm3cxhcmxxqy6";
+ };
+ };
+ "write-json-file-2.3.0" = {
+ name = "write-json-file";
+ packageName = "write-json-file";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz";
+ sha1 = "2b64c8a33004d54b8698c76d585a77ceb61da32f";
+ };
+ };
+ "write-pkg-3.1.0" = {
+ name = "write-pkg";
+ packageName = "write-pkg";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz";
+ sha1 = "030a9994cc9993d25b4e75a9f1a1923607291ce9";
+ };
+ };
+ "write-yaml-file-1.0.0" = {
+ name = "write-yaml-file";
+ packageName = "write-yaml-file";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/write-yaml-file/-/write-yaml-file-1.0.0.tgz";
+ sha1 = "7b4bd0df72ca13fbe9d6b0178fd83c077b8ea86b";
+ };
+ };
+ "x256-0.0.2" = {
+ name = "x256";
+ packageName = "x256";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/x256/-/x256-0.0.2.tgz";
+ sha1 = "c9af18876f7a175801d564fe70ad9e8317784934";
+ };
+ };
+ "xdg-basedir-3.0.0" = {
+ name = "xdg-basedir";
+ packageName = "xdg-basedir";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz";
+ sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4";
+ };
+ };
+ "xhr-2.4.1" = {
+ name = "xhr";
+ packageName = "xhr";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz";
+ sha512 = "38f6fgl0n5syagym161b29l5vhyan3azv5zs3vmyd4s80svy9xl7ppczk3rdawjn70s1ws5qvbh5zf1wyrj2ifawnr7ix3by3k180m4";
+ };
+ };
+ "xsalsa20-1.0.2" = {
+ name = "xsalsa20";
+ packageName = "xsalsa20";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xsalsa20/-/xsalsa20-1.0.2.tgz";
+ sha512 = "35rg34yxk4ag0qclk7bqxirgr3dgypcvkisqqj2g3y0ma16pkfy81iv79pcwff5p4spygwjh2m9v37llq7367fypqrx89s9kscwal43";
+ };
+ };
+ "xtend-4.0.1" = {
+ name = "xtend";
+ packageName = "xtend";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz";
+ sha1 = "a5c6d532be656e23db820efb943a1f04998d63af";
+ };
+ };
+ "y18n-3.2.1" = {
+ name = "y18n";
+ packageName = "y18n";
+ version = "3.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz";
+ sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41";
+ };
+ };
+ "yallist-2.1.2" = {
+ name = "yallist";
+ packageName = "yallist";
+ version = "2.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
+ sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
+ };
+ };
+ "yallist-3.0.2" = {
+ name = "yallist";
+ packageName = "yallist";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz";
+ sha1 = "8452b4bb7e83c7c188d8041c1a837c773d6d8bb9";
+ };
+ };
+ "yargs-8.0.2" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "8.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz";
+ sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360";
+ };
+ };
+ "yargs-parser-7.0.0" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "7.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz";
+ sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9";
+ };
+ };
+ "zen-observable-0.7.1" = {
+ name = "zen-observable";
+ packageName = "zen-observable";
+ version = "0.7.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zen-observable/-/zen-observable-0.7.1.tgz";
+ sha512 = "134nwk2ggcx46rx0n2cy1fqmlixar7c4sygxkym7kpd8wkqvdnlg1win4kns4zcxx99mxmbpr57jppq8bkva5z2ladfmjdl4wqrb3iq";
+ };
+ };
+ "zen-push-0.2.1" = {
+ name = "zen-push";
+ packageName = "zen-push";
+ version = "0.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/zen-push/-/zen-push-0.2.1.tgz";
+ sha512 = "3bx83jgamf9vq3n0150j5h8ndbxck5psnhw21fwifmq7jz37vcmlm7wmirbxh824jhq3kv16lc4h6iki1kwxx0zsjwyf8hrryyjmzj2";
+ };
+ };
};
in
{
@@ -3635,28 +7892,96 @@ in
dat = nodeEnv.buildNodePackage {
name = "dat";
packageName = "dat";
- version = "13.9.2";
+ version = "13.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dat/-/dat-13.9.2.tgz";
- sha512 = "05x3ij83al1f0r7fiaq788q4k81vlbmydsa1g829pq0q6795p57b12mmmx8nvc8khbbv1iphr065c7h3d7kc9ylps39xn1qdg64jz90";
+ url = "https://registry.npmjs.org/dat/-/dat-13.10.0.tgz";
+ sha512 = "05s22v6dv8mgh50m49cadbiw6ykzjl9q81j3zd4zw5zvpj9zl8xbpazw7kbyvzh58rhr6ydl44llghkl24vpn564gqbig3gnxxgmh8z";
};
dependencies = [
+ sources."abstract-random-access-1.1.2"
+ sources."ajv-5.5.2"
+ sources."ansi-diff-stream-1.2.0"
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-3.2.0"
+ sources."anymatch-1.3.2"
+ sources."ap-0.1.0"
+ sources."append-tree-2.4.1"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-lru-1.1.1"
+ sources."array-unique-0.2.1"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-0.9.2"
+ sources."asynckit-0.4.0"
+ sources."atomic-batcher-1.0.2"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bencode-1.0.0"
+ sources."bitfield-rle-2.1.0"
+ (sources."bittorrent-dht-7.10.0" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ ];
+ })
+ sources."blake2b-2.1.2"
+ sources."blake2b-wasm-1.1.7"
+ sources."body-0.1.0"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-4.0.0"
+ ];
+ })
+ sources."buffer-alloc-unsafe-1.0.0"
+ sources."buffer-equals-1.0.4"
+ sources."buffer-indexof-1.1.1"
+ sources."bulk-write-stream-1.1.3"
sources."bytes-3.0.0"
+ sources."call-me-maybe-1.0.1"
+ sources."caseless-0.12.0"
sources."chalk-2.3.0"
sources."cli-truncate-1.1.0"
+ sources."cliclopts-1.1.1"
+ sources."co-4.6.0"
+ sources."codecs-1.2.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."colors-1.1.2"
+ sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."connections-1.4.2"
+ sources."content-types-0.1.0"
+ sources."core-util-is-1.0.2"
+ sources."corsify-2.1.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."dat-dns-1.3.2"
(sources."dat-doctor-1.3.1" // {
dependencies = [
sources."debug-2.6.9"
sources."lru-2.0.1"
+ sources."pump-1.0.3"
];
})
- sources."dat-encoding-4.0.2"
+ sources."dat-encoding-5.0.1"
+ sources."dat-ignore-2.0.0"
(sources."dat-json-1.0.1" // {
dependencies = [
+ sources."dat-encoding-4.0.2"
sources."debug-2.6.9"
];
})
- (sources."dat-link-resolve-1.1.1" // {
+ (sources."dat-link-resolve-2.1.0" // {
dependencies = [
sources."debug-2.6.9"
];
@@ -3664,63 +7989,22 @@ in
sources."dat-log-1.1.1"
(sources."dat-node-3.5.6" // {
dependencies = [
- (sources."dat-link-resolve-2.1.0" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."dat-encoding-5.0.1"
- sources."varint-5.0.0"
- sources."readable-stream-1.0.34"
- sources."isarray-0.0.1"
- sources."string_decoder-0.10.31"
sources."minimist-0.0.8"
- sources."esprima-1.0.4"
- sources."estraverse-1.3.2"
- sources."object-keys-0.4.0"
+ sources."pump-1.0.3"
sources."unordered-set-2.0.0"
+ sources."varint-5.0.0"
];
})
sources."dat-registry-4.0.0"
- sources."debug-3.1.0"
- (sources."neat-log-1.1.2" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."prettier-bytes-1.0.4"
- sources."progress-string-1.2.2"
- (sources."prompt-1.0.0" // {
- dependencies = [
- sources."async-1.0.0"
- ];
- })
- sources."pump-1.0.3"
- sources."rimraf-2.6.2"
- sources."speedometer-1.0.0"
- (sources."subcommand-2.1.0" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- (sources."throttle-1.0.3" // {
- dependencies = [
- sources."debug-2.6.9"
- ];
- })
- sources."xtend-4.0.1"
- sources."ansi-styles-3.2.0"
- sources."escape-string-regexp-1.0.5"
- sources."supports-color-4.5.0"
- sources."color-convert-1.9.1"
- sources."color-name-1.1.3"
- sources."has-flag-2.0.0"
- sources."slice-ansi-1.0.0"
- sources."string-width-2.1.1"
- sources."is-fullwidth-code-point-2.0.0"
- sources."strip-ansi-4.0.0"
- sources."ansi-regex-3.0.0"
+ sources."dat-secret-storage-4.0.0"
+ sources."dat-storage-1.0.3"
+ sources."dat-swarm-defaults-1.0.0"
sources."datland-swarm-defaults-1.0.2"
+ sources."debug-3.1.0"
+ sources."deep-equal-0.2.2"
+ sources."delayed-stream-1.0.0"
+ sources."directory-index-html-2.1.0"
+ sources."discovery-channel-5.4.7"
(sources."discovery-swarm-4.4.2" // {
dependencies = [
sources."thunky-0.1.0"
@@ -3731,133 +8015,53 @@ in
sources."thunky-0.1.0"
];
})
- sources."minimist-1.2.0"
- sources."thunky-1.0.2"
- sources."ms-2.0.0"
- sources."buffer-equals-1.0.4"
- sources."connections-1.4.2"
- sources."discovery-channel-5.4.6"
- sources."length-prefixed-message-3.0.3"
- sources."to-buffer-1.1.0"
- sources."utp-native-1.6.2"
- (sources."bittorrent-dht-7.8.2" // {
- dependencies = [
- sources."debug-3.1.0"
- ];
- })
- sources."pretty-hash-1.0.1"
- sources."bencode-1.0.0"
- sources."inherits-2.0.3"
- sources."k-bucket-3.3.1"
- sources."k-rpc-4.2.1"
- sources."lru-3.1.0"
- sources."randombytes-2.0.5"
- sources."safe-buffer-5.1.1"
- sources."simple-sha1-2.1.0"
- sources."k-rpc-socket-1.7.2"
- sources."rusha-0.8.9"
- sources."varint-3.0.1"
- sources."nan-2.8.0"
- sources."node-gyp-build-3.2.2"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."dns-socket-1.6.2"
+ sources."dns-packet-1.3.1"
+ sources."dns-socket-1.6.3"
sources."dns-txt-2.0.2"
- sources."multicast-dns-6.2.1"
- sources."network-address-1.1.2"
- sources."unordered-set-1.1.0"
- sources."dns-packet-1.2.2"
- sources."ip-1.1.5"
- sources."buffer-indexof-1.1.1"
- sources."toiletdb-1.4.0"
- sources."last-one-wins-1.0.4"
- sources."dat-dns-1.3.2"
- sources."nets-3.2.0"
- sources."call-me-maybe-1.0.1"
- sources."concat-stream-1.6.0"
- sources."typedarray-0.0.6"
- sources."request-2.83.0"
- sources."xhr-2.4.1"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
+ sources."dom-walk-0.1.1"
+ sources."duplexify-3.5.3"
+ sources."ecc-jsbn-0.1.1"
+ sources."end-of-stream-1.4.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
sources."fast-deep-equal-1.0.0"
sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
- sources."boom-4.3.1"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."global-4.3.2"
- sources."is-function-1.0.1"
- sources."parse-headers-2.0.1"
- sources."min-document-2.19.0"
- sources."process-0.5.2"
- sources."dom-walk-0.1.1"
+ sources."fd-read-stream-1.1.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.3"
+ sources."flat-tree-1.6.0"
sources."for-each-0.3.2"
- sources."trim-0.0.1"
- sources."random-access-memory-2.4.0"
- sources."dat-ignore-2.0.0"
- (sources."dat-storage-1.0.3" // {
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."from2-2.3.0"
+ sources."fs.realpath-1.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."global-4.3.2"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-flag-2.0.0"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-methods-0.1.0"
+ sources."http-signature-1.2.0"
+ (sources."hypercore-6.12.0" // {
dependencies = [
- sources."xtend-2.1.2"
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
+ sources."varint-5.0.0"
];
})
- sources."dat-swarm-defaults-1.0.0"
- (sources."hyperdrive-9.12.0" // {
+ sources."hypercore-protocol-6.5.2"
+ (sources."hyperdrive-9.12.2" // {
dependencies = [
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
sources."varint-4.0.1"
];
})
@@ -3867,48 +8071,103 @@ in
sources."debug-2.6.9"
];
})
- (sources."mirror-folder-2.1.1" // {
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."ip-1.1.5"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."is-function-1.0.1"
+ sources."is-glob-2.0.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-string-1.0.4"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isobject-2.1.0"
+ sources."isstream-0.1.2"
+ sources."iterators-0.1.0"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."k-bucket-3.3.1"
+ sources."k-rpc-4.2.1"
+ sources."k-rpc-socket-1.7.2"
+ sources."kind-of-3.2.2"
+ sources."last-one-wins-1.0.4"
+ sources."length-prefixed-message-3.0.3"
+ sources."lodash.flattendeep-4.4.0"
+ sources."lodash.throttle-4.1.1"
+ sources."lru-3.1.0"
+ sources."memory-pager-1.1.0"
+ sources."merkle-tree-stream-3.0.3"
+ sources."micromatch-2.3.11"
+ sources."mime-1.6.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."min-document-2.19.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."mirror-folder-2.1.1"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."multi-random-access-2.1.1"
+ sources."multicast-dns-6.2.2"
+ sources."multicb-1.2.2"
+ sources."mute-stream-0.0.7"
+ sources."mutexify-1.2.0"
+ sources."nan-2.8.0"
+ sources."nanoassert-1.1.0"
+ sources."nanobus-3.3.0"
+ sources."nanotiming-1.0.1"
+ sources."ncp-1.0.1"
+ (sources."neat-log-1.1.2" // {
dependencies = [
- sources."readable-stream-2.3.3"
- sources."isarray-1.0.0"
- sources."string_decoder-1.0.3"
+ sources."ansi-regex-2.1.1"
];
})
- sources."multicb-1.2.2"
+ sources."nets-3.2.0"
+ sources."network-address-1.1.2"
+ sources."node-gyp-build-3.2.2"
+ sources."normalize-path-2.1.1"
+ sources."oauth-sign-0.8.2"
+ sources."object.omit-2.0.1"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."parse-glob-3.0.4"
+ sources."parse-headers-2.0.1"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."pkginfo-0.4.1"
+ sources."preserve-0.2.0"
+ sources."prettier-bytes-1.0.4"
+ sources."pretty-hash-1.0.1"
+ sources."process-0.5.2"
+ sources."process-nextick-args-1.0.7"
+ sources."progress-string-1.2.2"
+ (sources."prompt-1.0.0" // {
+ dependencies = [
+ sources."async-1.0.0"
+ ];
+ })
+ sources."protocol-buffers-encodings-1.1.0"
+ sources."pump-2.0.1"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
(sources."random-access-file-1.8.1" // {
dependencies = [
sources."debug-2.6.9"
];
})
- sources."sparse-bitfield-3.0.3"
- sources."stream-each-1.2.2"
- sources."untildify-3.0.2"
- sources."anymatch-1.3.2"
- sources."micromatch-2.3.11"
- sources."normalize-path-2.1.1"
- sources."arr-diff-2.0.0"
- sources."array-unique-0.2.1"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-4.0.0"
- ];
- })
- sources."expand-brackets-0.1.5"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."is-extglob-1.0.0"
- sources."is-glob-2.0.1"
- sources."kind-of-3.2.2"
- sources."object.omit-2.0.1"
- sources."parse-glob-3.0.4"
- sources."regex-cache-0.4.4"
- sources."arr-flatten-1.1.0"
- sources."expand-range-1.8.2"
- sources."preserve-0.2.0"
- sources."repeat-element-1.1.2"
- sources."fill-range-2.2.3"
- sources."is-number-2.1.0"
- sources."isobject-2.1.0"
+ sources."random-access-memory-2.4.0"
(sources."randomatic-1.1.7" // {
dependencies = [
(sources."is-number-3.0.0" // {
@@ -3918,157 +8177,87 @@ in
})
];
})
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.6"
- sources."is-posix-bracket-0.1.1"
- sources."for-own-0.1.5"
- sources."is-extendable-0.1.1"
- sources."for-in-1.0.2"
- sources."glob-base-0.3.0"
- sources."is-dotfile-1.0.3"
- sources."glob-parent-2.0.0"
- sources."is-equal-shallow-0.1.3"
- sources."is-primitive-2.0.0"
+ sources."randombytes-2.0.6"
+ sources."range-parser-1.2.0"
+ sources."read-1.0.7"
+ sources."readable-stream-2.3.3"
+ sources."recursive-watch-1.1.2"
+ sources."regex-cache-0.4.4"
sources."remove-trailing-separator-1.1.0"
- (sources."append-tree-2.4.0" // {
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."request-2.83.0"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."rusha-0.8.12"
+ sources."safe-buffer-5.1.1"
+ sources."signed-varint-2.0.1"
+ sources."simple-sha1-2.1.0"
+ sources."siphash24-1.1.0"
+ sources."slice-ansi-1.0.0"
+ sources."sntp-2.1.0"
+ sources."sodium-javascript-0.5.4"
+ sources."sodium-native-2.1.4"
+ sources."sodium-universal-2.0.0"
+ sources."sorted-array-functions-1.1.0"
+ sources."sorted-indexof-1.0.0"
+ sources."sparse-bitfield-3.0.3"
+ sources."speedometer-1.0.0"
+ sources."sshpk-1.13.1"
+ sources."stack-trace-0.0.10"
+ sources."status-logger-3.1.1"
+ sources."stream-collector-1.0.1"
+ sources."stream-each-1.2.2"
+ sources."stream-parser-0.3.1"
+ sources."stream-shift-1.0.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-4.0.0"
+ (sources."subcommand-2.1.0" // {
dependencies = [
- sources."xtend-4.0.1"
+ sources."debug-2.6.9"
];
})
- sources."dat-secret-storage-4.0.0"
- sources."multi-random-access-2.1.1"
- sources."array-lru-1.1.1"
- sources."brfs-1.4.3"
- sources."codecs-1.2.0"
- sources."from2-2.3.0"
- sources."mutexify-1.2.0"
- sources."protocol-buffers-3.2.1"
- sources."quote-stream-1.0.2"
- sources."resolve-1.5.0"
- (sources."static-module-1.5.0" // {
+ sources."supports-color-4.5.0"
+ (sources."throttle-1.0.3" // {
dependencies = [
- sources."quote-stream-0.0.0"
- sources."through2-0.4.2"
+ sources."debug-2.6.9"
];
})
sources."through2-2.0.3"
- sources."buffer-equal-0.0.1"
- sources."path-parse-1.0.5"
- (sources."duplexer2-0.0.2" // {
- dependencies = [
- sources."readable-stream-1.1.14"
- ];
- })
- sources."escodegen-1.3.3"
- sources."falafel-2.1.0"
- sources."has-1.0.1"
- sources."object-inspect-0.4.0"
- sources."shallow-copy-0.0.1"
- (sources."static-eval-0.2.4" // {
- dependencies = [
- sources."escodegen-0.0.28"
- ];
- })
- sources."esutils-1.0.0"
- sources."estraverse-1.5.1"
- sources."esprima-1.1.1"
- sources."source-map-0.1.43"
- sources."amdefine-1.0.1"
- sources."acorn-5.2.1"
- sources."foreach-2.0.5"
- sources."object-keys-1.0.11"
- sources."function-bind-1.1.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."protocol-buffers-schema-3.3.2"
- sources."signed-varint-2.0.1"
- sources."is-property-1.0.2"
- sources."os-homedir-1.0.2"
- sources."abstract-random-access-1.1.2"
- sources."sorted-array-functions-1.0.0"
- sources."duplexify-3.5.1"
- (sources."hypercore-6.11.0" // {
- dependencies = [
- sources."varint-5.0.0"
- ];
- })
- sources."sodium-universal-2.0.0"
- sources."stream-collector-1.0.1"
+ sources."thunky-1.0.2"
+ sources."to-buffer-1.1.0"
+ sources."toiletdb-1.4.1"
+ sources."tough-cookie-2.3.3"
+ sources."township-client-1.3.2"
+ sources."trim-0.0.1"
+ sources."ttl-1.3.1"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
sources."uint64be-2.0.1"
sources."unixify-1.0.0"
- sources."end-of-stream-1.4.0"
- sources."stream-shift-1.0.0"
- sources."once-1.4.0"
- sources."wrappy-1.0.2"
- sources."atomic-batcher-1.0.2"
- sources."bitfield-rle-2.1.0"
- sources."bulk-write-stream-1.1.3"
- sources."flat-tree-1.6.0"
- sources."hypercore-protocol-6.4.2"
- sources."memory-pager-1.1.0"
- sources."merkle-tree-stream-3.0.3"
sources."unordered-array-remove-1.0.2"
- sources."sorted-indexof-1.0.0"
- sources."sodium-javascript-0.5.4"
- sources."sodium-native-2.1.2"
- sources."blake2b-2.1.2"
- sources."nanoassert-1.1.0"
- sources."siphash24-1.1.0"
- sources."xsalsa20-1.0.2"
- sources."blake2b-wasm-1.1.4"
- sources."base64-to-uint8array-1.0.0"
- sources."corsify-2.1.0"
- sources."directory-index-html-2.1.0"
- sources."mime-1.6.0"
- sources."range-parser-1.2.0"
- sources."http-methods-0.1.0"
- sources."content-types-0.1.0"
- sources."body-0.1.0"
- sources."iterators-0.1.0"
- sources."ap-0.1.0"
- sources."fd-read-stream-1.1.0"
- sources."recursive-watch-1.1.2"
- sources."ttl-1.3.1"
- sources."buffer-alloc-unsafe-1.0.0"
- sources."mkdirp-0.5.1"
- sources."township-client-1.3.2"
- sources."is-string-1.0.4"
- sources."lodash.throttle-4.1.1"
- sources."nanobus-3.3.0"
- sources."status-logger-3.1.1"
- sources."nanotiming-1.0.1"
- sources."ansi-diff-stream-1.2.0"
- sources."lodash.flattendeep-4.4.0"
- sources."wrap-ansi-3.0.1"
- sources."colors-1.1.2"
- sources."pkginfo-0.4.1"
- sources."read-1.0.7"
- sources."revalidator-0.1.8"
+ sources."unordered-set-1.1.0"
+ sources."untildify-3.0.2"
+ sources."util-deprecate-1.0.2"
sources."utile-0.3.0"
+ sources."utp-native-1.6.2"
+ sources."uuid-3.2.1"
+ sources."varint-3.0.1"
+ sources."verror-1.10.0"
(sources."winston-2.1.1" // {
dependencies = [
sources."colors-1.0.3"
sources."pkginfo-0.3.1"
];
})
- sources."mute-stream-0.0.7"
- sources."async-0.9.2"
- sources."deep-equal-0.2.2"
- sources."i-0.3.6"
- sources."ncp-1.0.1"
- sources."cycle-1.0.3"
- sources."eyes-0.1.8"
- sources."stack-trace-0.0.10"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."path-is-absolute-1.0.1"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."cliclopts-1.1.1"
- sources."stream-parser-0.3.1"
+ sources."wrap-ansi-3.0.1"
+ sources."wrappy-1.0.2"
+ sources."xhr-2.4.1"
+ sources."xsalsa20-1.0.2"
+ sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -4088,21 +8277,21 @@ in
sha1 = "562b119ebb069ddb464ace2845501be97b35b6a8";
};
dependencies = [
+ sources."abbrev-1.1.1"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."concat-map-0.0.1"
sources."findup-sync-0.3.0"
- sources."grunt-known-options-1.1.0"
- sources."nopt-3.0.6"
- sources."resolve-1.1.7"
sources."glob-5.0.15"
+ sources."grunt-known-options-1.1.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."minimatch-3.0.4"
+ sources."nopt-3.0.6"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
+ sources."resolve-1.1.7"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."abbrev-1.1.1"
];
buildInputs = globalBuildInputs;
meta = {
@@ -4116,35 +8305,35 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "4.0.1";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-4.0.1.tgz";
- sha512 = "07hbr2w894az0s1hi6lglls00nwb941ymwm580q4917kwcmsg3ngagqf9cfxyjdwwivm956dpwzsrkbk4i7a404i56w1y809a3fdw3s";
+ url = "https://registry.npmjs.org/mocha/-/mocha-5.0.0.tgz";
+ sha512 = "3rxvm15qz9qdiyihc9pq4kc008iz89cqdqjlca43swmk3fc7bydlaqk1qyhaj19r5m8cxxrpiwxz5cwrp9im26fin4sgqdfbxs7ch5s";
};
dependencies = [
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
sources."browser-stdout-1.3.0"
sources."commander-2.11.0"
+ sources."concat-map-0.0.1"
sources."debug-3.1.0"
sources."diff-3.3.1"
sources."escape-string-regexp-1.0.5"
+ sources."fs.realpath-1.0.0"
sources."glob-7.1.2"
sources."growl-1.10.3"
+ sources."has-flag-2.0.0"
sources."he-1.1.1"
- sources."mkdirp-0.5.1"
- sources."supports-color-4.4.0"
- sources."ms-2.0.0"
- sources."fs.realpath-1.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
+ sources."supports-color-4.4.0"
sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."minimist-0.0.8"
- sources."has-flag-2.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -4185,109 +8374,109 @@ in
sha1 = "9bfbe54562286284838e750eac05295853fa1c60";
};
dependencies = [
- sources."fstream-1.0.11"
- sources."glob-7.1.2"
- sources."graceful-fs-4.1.11"
- sources."minimatch-3.0.4"
- sources."mkdirp-0.5.1"
- sources."nopt-3.0.6"
- sources."npmlog-4.1.2"
- sources."osenv-0.1.4"
- sources."request-2.83.0"
- sources."rimraf-2.6.2"
- sources."semver-5.3.0"
- sources."tar-2.2.1"
- sources."which-1.3.0"
- sources."inherits-2.0.3"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."minimist-0.0.8"
sources."abbrev-1.1.1"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."object-assign-4.1.1"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
+ sources."ajv-5.5.2"
sources."ansi-regex-2.1.1"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.6.0"
- sources."caseless-0.12.0"
- sources."combined-stream-1.0.5"
- sources."extend-3.0.1"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.1"
- sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."http-signature-1.2.0"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-2.1.0"
- sources."qs-6.5.1"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-5.5.2"
- sources."har-schema-2.0.0"
- sources."co-4.6.0"
- sources."fast-deep-equal-1.0.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."json-schema-traverse-0.3.1"
- sources."hoek-4.2.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."block-stream-0.0.9"
sources."boom-4.3.1"
+ sources."brace-expansion-1.1.8"
+ sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
(sources."cryptiles-3.1.2" // {
dependencies = [
sources."boom-5.2.0"
];
})
- sources."sntp-2.1.0"
- sources."assert-plus-1.0.0"
- sources."jsprim-1.4.1"
- sources."sshpk-1.13.1"
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
- sources."tweetnacl-0.14.5"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."block-stream-0.0.9"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-unicode-2.0.1"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."http-signature-1.2.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."nopt-3.0.6"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-2.1.0"
+ sources."process-nextick-args-1.0.7"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.1"
+ sources."readable-stream-2.3.3"
+ sources."request-2.83.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.3.0"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-2.1.0"
+ sources."sshpk-1.13.1"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."tar-2.2.1"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."which-1.3.0"
+ sources."wide-align-1.1.2"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -4324,124 +8513,124 @@ in
sha512 = "2cwrivwc0ha272cly9r61bbb14kkl1s1hsmn53yr88b6pfjqj512nac6c5rphc6ak88v8gpl1f879qdd3v7386103zzr7miibpmbhis";
};
dependencies = [
- sources."mkdirp-0.5.1"
- sources."nopt-4.0.1"
- sources."npmlog-4.1.2"
- (sources."rc-1.2.2" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."request-2.81.0"
- sources."hawk-3.1.3"
- sources."rimraf-2.6.2"
- sources."semver-5.4.1"
- sources."detect-libc-1.0.3"
- sources."tar-2.2.1"
- sources."tar-pack-3.4.1"
- sources."minimist-0.0.8"
sources."abbrev-1.1.1"
- sources."osenv-0.1.4"
- sources."os-homedir-1.0.2"
- sources."os-tmpdir-1.0.2"
- sources."are-we-there-yet-1.1.4"
- sources."console-control-strings-1.1.0"
- sources."gauge-2.7.4"
- sources."set-blocking-2.0.0"
- sources."delegates-1.0.0"
- sources."readable-stream-2.3.3"
- sources."core-util-is-1.0.2"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."safe-buffer-5.1.1"
- sources."string_decoder-1.0.3"
- sources."util-deprecate-1.0.2"
- sources."aproba-1.2.0"
- sources."has-unicode-2.0.1"
- sources."object-assign-4.1.1"
- sources."signal-exit-3.0.2"
- sources."string-width-1.0.2"
- sources."strip-ansi-3.0.1"
- sources."wide-align-1.1.2"
- sources."code-point-at-1.1.0"
- sources."is-fullwidth-code-point-1.0.0"
- sources."number-is-nan-1.0.1"
+ sources."ajv-4.11.8"
sources."ansi-regex-2.1.1"
- sources."deep-extend-0.4.2"
- sources."ini-1.3.5"
- sources."strip-json-comments-2.0.1"
+ sources."aproba-1.2.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."asn1-0.2.3"
+ sources."assert-plus-0.2.0"
+ sources."asynckit-0.4.0"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."block-stream-0.0.9"
+ sources."boom-2.10.1"
+ sources."brace-expansion-1.1.8"
sources."caseless-0.12.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
sources."combined-stream-1.0.5"
+ sources."concat-map-0.0.1"
+ sources."console-control-strings-1.1.0"
+ sources."core-util-is-1.0.2"
+ sources."cryptiles-2.0.5"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."deep-extend-0.4.2"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."detect-libc-1.0.3"
+ sources."ecc-jsbn-0.1.1"
sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.4"
- sources."har-validator-4.2.1"
- sources."http-signature-1.1.1"
- sources."is-typedarray-1.0.0"
- sources."isstream-0.1.2"
- sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.17"
- sources."oauth-sign-0.8.2"
- sources."performance-now-0.2.0"
- sources."qs-6.4.0"
- sources."stringstream-0.0.5"
- sources."tough-cookie-2.3.3"
- sources."tunnel-agent-0.6.0"
- sources."uuid-3.1.0"
- sources."delayed-stream-1.0.0"
- sources."asynckit-0.4.0"
- sources."ajv-4.11.8"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."fstream-ignore-1.0.5"
+ sources."gauge-2.7.4"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."graceful-fs-4.1.11"
sources."har-schema-1.0.5"
- sources."co-4.6.0"
+ sources."har-validator-4.2.1"
+ sources."has-unicode-2.0.1"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
+ sources."http-signature-1.1.1"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-1.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
sources."json-stable-stringify-1.0.1"
+ sources."json-stringify-safe-5.0.1"
sources."jsonify-0.0.0"
- sources."assert-plus-0.2.0"
(sources."jsprim-1.4.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."ms-2.0.0"
+ sources."nopt-4.0.1"
+ sources."npmlog-4.1.2"
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."once-1.4.0"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."path-is-absolute-1.0.1"
+ sources."performance-now-0.2.0"
+ sources."process-nextick-args-1.0.7"
+ sources."punycode-1.4.1"
+ sources."qs-6.4.0"
+ (sources."rc-1.2.4" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."readable-stream-2.3.3"
+ sources."request-2.81.0"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.1"
+ sources."semver-5.5.0"
+ sources."set-blocking-2.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-1.0.9"
(sources."sshpk-1.13.1" // {
dependencies = [
sources."assert-plus-1.0.0"
];
})
- sources."extsprintf-1.3.0"
- sources."json-schema-0.2.3"
- sources."verror-1.10.0"
- sources."asn1-0.2.3"
- sources."dashdash-1.14.1"
- sources."getpass-0.1.7"
- sources."jsbn-0.1.1"
+ sources."string-width-1.0.2"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-json-comments-2.0.1"
+ sources."tar-2.2.1"
+ sources."tar-pack-3.4.1"
+ sources."tough-cookie-2.3.3"
+ sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
- sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.30.0"
- sources."punycode-1.4.1"
- sources."hoek-2.16.3"
- sources."boom-2.10.1"
- sources."cryptiles-2.0.5"
- sources."sntp-1.0.9"
- sources."glob-7.1.2"
- sources."fs.realpath-1.0.0"
- sources."inflight-1.0.6"
- sources."minimatch-3.0.4"
- sources."once-1.4.0"
- sources."path-is-absolute-1.0.1"
- sources."wrappy-1.0.2"
- sources."brace-expansion-1.1.8"
- sources."balanced-match-1.0.0"
- sources."concat-map-0.0.1"
- sources."block-stream-0.0.9"
- sources."fstream-1.0.11"
- sources."graceful-fs-4.1.11"
- sources."debug-2.6.9"
- sources."fstream-ignore-1.0.5"
sources."uid-number-0.0.6"
- sources."ms-2.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."wide-align-1.1.2"
+ sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -4452,13 +8641,837 @@ in
production = true;
bypassCache = true;
};
+ pnpm = nodeEnv.buildNodePackage {
+ name = "pnpm";
+ packageName = "pnpm";
+ version = "1.31.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-1.31.0.tgz";
+ sha1 = "7d971bb0e48c25d4e04db420eee8ee0bcb4c66d4";
+ };
+ dependencies = [
+ sources."@most/multicast-1.3.0"
+ sources."@most/prelude-1.7.0"
+ sources."@pnpm/check-package-1.0.0"
+ (sources."@pnpm/default-fetcher-0.3.2" // {
+ dependencies = [
+ sources."@types/node-9.3.0"
+ sources."debug-3.1.0"
+ sources."ms-2.0.0"
+ sources."ssri-5.0.0"
+ ];
+ })
+ (sources."@pnpm/default-resolver-0.1.2" // {
+ dependencies = [
+ sources."@types/node-9.3.0"
+ ];
+ })
+ sources."@pnpm/fs-locker-1.0.1"
+ sources."@pnpm/git-fetcher-0.2.0"
+ sources."@pnpm/git-resolver-0.3.0"
+ sources."@pnpm/local-resolver-0.1.1"
+ (sources."@pnpm/logger-1.0.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."@pnpm/npm-resolver-0.3.11"
+ (sources."@pnpm/outdated-0.2.5" // {
+ dependencies = [
+ sources."@types/node-9.3.0"
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."@pnpm/package-requester-0.7.1"
+ sources."@pnpm/pkgid-to-filename-1.0.0"
+ (sources."@pnpm/server-0.7.1" // {
+ dependencies = [
+ sources."@types/node-9.3.0"
+ ];
+ })
+ sources."@pnpm/tarball-fetcher-0.3.4"
+ (sources."@pnpm/tarball-resolver-0.1.0" // {
+ dependencies = [
+ sources."@types/node-8.5.9"
+ ];
+ })
+ sources."@pnpm/types-1.7.0"
+ sources."@sindresorhus/is-0.7.0"
+ sources."@types/archy-0.0.31"
+ sources."@types/byline-4.2.31"
+ sources."@types/chalk-0.4.31"
+ sources."@types/common-tags-1.4.0"
+ sources."@types/get-port-3.2.0"
+ sources."@types/got-7.1.6"
+ sources."@types/load-json-file-2.0.7"
+ sources."@types/mem-1.1.2"
+ sources."@types/mz-0.0.32"
+ sources."@types/node-8.5.9"
+ sources."@types/nopt-3.0.29"
+ sources."@types/npm-2.0.29"
+ sources."@types/p-limit-1.1.2"
+ sources."@types/p-queue-1.1.0"
+ sources."@types/p-series-1.0.1"
+ sources."@types/ramda-0.25.16"
+ sources."@types/rc-0.0.1"
+ sources."@types/retry-0.10.2"
+ sources."@types/semver-5.4.0"
+ sources."@types/update-notifier-1.0.3"
+ sources."@types/uuid-3.4.3"
+ sources."@types/write-json-file-2.2.1"
+ sources."@zkochan/cmd-shim-2.2.4"
+ (sources."@zkochan/libnpx-9.6.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."execa-0.7.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."load-json-file-2.0.0"
+ sources."mem-1.1.0"
+ sources."pify-2.3.0"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."@zkochan/npm-package-arg-1.0.0"
+ sources."JSONStream-1.3.2"
+ sources."abbrev-1.1.1"
+ sources."add-subtract-date-1.0.13"
+ sources."agent-base-4.2.0"
+ sources."agentkeepalive-3.3.0"
+ sources."ajv-5.5.2"
+ sources."ansi-align-2.0.0"
+ sources."ansi-escapes-3.0.0"
+ sources."ansi-parser-3.2.8"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.0"
+ sources."ansicolors-0.3.2"
+ sources."ansistyles-0.1.3"
+ sources."ansy-1.0.13"
+ sources."any-promise-1.3.0"
+ sources."aproba-1.2.0"
+ sources."archy-1.0.0"
+ sources."are-we-there-yet-1.1.4"
+ sources."argparse-1.0.9"
+ sources."arr-flatten-1.1.0"
+ sources."array-find-index-1.0.2"
+ sources."array-flatten-2.1.1"
+ sources."array-includes-3.0.3"
+ sources."array-union-1.0.2"
+ sources."array-uniq-1.0.3"
+ sources."arrify-1.0.1"
+ sources."as-table-1.0.31"
+ sources."asap-2.0.6"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.6.0"
+ sources."babel-runtime-6.26.0"
+ sources."balanced-match-1.0.0"
+ sources."base64-js-0.0.8"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."bindings-1.3.0"
+ sources."bl-1.2.1"
+ sources."block-stream-0.0.9"
+ sources."bluebird-3.5.1"
+ sources."bole-3.0.2"
+ sources."boom-4.3.1"
+ (sources."boxen-1.3.0" // {
+ dependencies = [
+ sources."chalk-2.3.0"
+ ];
+ })
+ sources."brace-expansion-1.1.8"
+ sources."browserify-zlib-0.1.4"
+ sources."buffer-3.6.0"
+ sources."bug-killer-4.4.4"
+ sources."builtin-modules-1.1.1"
+ sources."builtins-1.0.3"
+ sources."byline-5.0.0"
+ sources."bzip2-maybe-1.0.0"
+ sources."cacache-10.0.2"
+ sources."cacheable-request-2.1.4"
+ sources."call-limit-1.1.0"
+ sources."camelcase-4.1.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chalk-2.3.0"
+ sources."chownr-1.0.1"
+ sources."ci-info-1.1.2"
+ sources."cidr-regex-1.0.6"
+ sources."class-methods-1.0.10"
+ sources."cli-box-5.0.0"
+ sources."cli-boxes-1.0.0"
+ sources."cli-cursor-2.1.0"
+ (sources."cli-table2-0.2.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ (sources."cliui-3.2.0" // {
+ dependencies = [
+ sources."string-width-1.0.2"
+ ];
+ })
+ sources."clone-1.0.3"
+ sources."clone-response-1.0.2"
+ (sources."clp-3.2.1" // {
+ dependencies = [
+ sources."typpy-2.0.0"
+ sources."ul-5.0.0"
+ ];
+ })
+ sources."cmd-shim-2.0.2"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."colors-1.1.2"
+ (sources."columnify-1.5.4" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."combined-stream-1.0.5"
+ sources."common-tags-1.7.2"
+ sources."concat-map-0.0.1"
+ sources."concat-stream-1.6.0"
+ sources."config-chain-1.1.11"
+ sources."configstore-3.1.1"
+ sources."console-control-strings-1.1.0"
+ sources."copy-concurrently-1.0.5"
+ sources."core-js-2.5.3"
+ sources."core-util-is-1.0.2"
+ sources."couleurs-6.0.9"
+ sources."create-error-class-3.0.2"
+ sources."credentials-by-uri-1.0.0"
+ sources."cross-spawn-5.1.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."crypto-random-string-1.0.0"
+ sources."csv-parser-1.12.0"
+ sources."currently-unhandled-0.4.1"
+ sources."custom-return-1.0.10"
+ sources."cyclist-0.2.2"
+ sources."dashdash-1.14.1"
+ sources."data-uri-to-buffer-2.0.0"
+ sources."date-unit-ms-1.1.12"
+ sources."daty-1.1.4"
+ sources."days-1.1.1"
+ sources."debug-2.6.9"
+ sources."debuglog-1.0.1"
+ sources."decamelize-1.2.0"
+ sources."decode-uri-component-0.2.0"
+ sources."decompress-maybe-1.0.0"
+ sources."decompress-response-3.3.0"
+ sources."deep-extend-0.4.2"
+ sources."defaults-1.0.3"
+ sources."deffy-2.2.2"
+ sources."define-properties-1.1.2"
+ sources."delay-2.0.0"
+ sources."delayed-stream-1.0.0"
+ sources."delegates-1.0.0"
+ sources."dependencies-hierarchy-2.0.1"
+ sources."dependency-path-1.2.0"
+ sources."detect-indent-5.0.0"
+ sources."detect-libc-1.0.3"
+ sources."dezalgo-1.0.3"
+ (sources."diable-4.0.1" // {
+ dependencies = [
+ sources."ansi-parser-2.0.0"
+ sources."couleurs-5.0.0"
+ sources."deffy-2.0.0"
+ sources."has-flag-1.0.0"
+ sources."supports-color-3.2.3"
+ ];
+ })
+ sources."diff-dates-1.0.11"
+ sources."dint-2.0.2"
+ sources."dir-glob-2.0.0"
+ sources."dot-prop-4.2.0"
+ sources."dotenv-4.0.0"
+ (sources."drive-by-path-1.0.0" // {
+ dependencies = [
+ sources."ramda-0.24.1"
+ ];
+ })
+ sources."drivelist-5.2.12"
+ sources."duplexer3-0.1.4"
+ sources."duplexify-3.5.3"
+ sources."ecc-jsbn-0.1.1"
+ sources."editor-1.0.0"
+ sources."encode-registry-1.1.0"
+ sources."encoding-0.1.12"
+ sources."end-of-stream-1.4.1"
+ sources."err-code-1.1.2"
+ sources."errno-0.1.6"
+ sources."error-ex-1.3.1"
+ sources."es-abstract-1.10.0"
+ sources."es-to-primitive-1.1.1"
+ sources."es6-promise-4.2.4"
+ sources."es6-promisify-5.0.0"
+ sources."escape-string-regexp-1.0.5"
+ sources."esprima-4.0.0"
+ sources."exclude-arr-1.0.9"
+ sources."execa-0.8.0"
+ sources."expand-template-1.1.0"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.0.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-safe-stringify-1.1.13"
+ (sources."fetch-from-npm-registry-0.1.0" // {
+ dependencies = [
+ sources."@types/node-8.5.9"
+ ];
+ })
+ sources."fillo-1.0.11"
+ (sources."find-packages-2.1.2" // {
+ dependencies = [
+ sources."path-type-3.0.0"
+ sources."read-pkg-3.0.0"
+ ];
+ })
+ sources."find-up-2.1.0"
+ sources."flat-colors-3.0.0"
+ sources."flush-write-stream-1.0.2"
+ sources."foreach-2.0.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.1"
+ sources."formatoid-1.2.2"
+ sources."from2-2.3.0"
+ sources."fs-vacuum-1.2.10"
+ sources."fs-write-stream-atomic-1.0.10"
+ sources."fs.realpath-1.0.0"
+ sources."fstream-1.0.11"
+ sources."function-bind-1.1.1"
+ sources."function.name-1.0.10"
+ sources."gauge-2.7.4"
+ sources."generate-function-1.1.0"
+ sources."generate-object-property-1.2.0"
+ sources."genfun-4.0.1"
+ sources."get-caller-file-1.0.2"
+ sources."get-npm-tarball-url-2.0.1"
+ sources."get-port-3.2.0"
+ sources."get-source-1.0.24"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."github-from-package-0.0.0"
+ sources."glob-7.1.2"
+ sources."global-dirs-0.1.1"
+ sources."globby-7.1.1"
+ sources."got-8.0.3"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-git-1.0.1"
+ sources."graph-sequencer-2.0.0"
+ sources."gunzip-maybe-1.4.1"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-1.0.1"
+ sources."has-ansi-2.0.0"
+ sources."has-flag-2.0.0"
+ sources."has-symbol-support-x-1.4.1"
+ sources."has-to-string-tag-x-1.4.1"
+ sources."has-unicode-2.0.1"
+ sources."hawk-6.0.2"
+ sources."hoek-4.2.0"
+ sources."hosted-git-info-2.5.0"
+ sources."http-cache-semantics-3.8.1"
+ sources."http-proxy-agent-2.0.0"
+ sources."http-signature-1.2.0"
+ sources."https-proxy-agent-2.1.1"
+ sources."humanize-ms-1.2.1"
+ sources."iconv-lite-0.4.19"
+ sources."ieee754-1.1.8"
+ sources."iferr-0.1.5"
+ sources."ignore-3.3.7"
+ sources."ignore-walk-3.0.1"
+ sources."import-lazy-2.1.0"
+ sources."imurmurhash-0.1.4"
+ sources."individual-3.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."init-package-json-1.10.1"
+ sources."into-stream-3.1.0"
+ sources."invert-kv-1.0.0"
+ sources."ip-1.1.5"
+ sources."is-arrayish-0.2.1"
+ sources."is-builtin-module-1.0.0"
+ sources."is-bzip2-1.0.0"
+ sources."is-callable-1.1.3"
+ sources."is-ci-1.1.0"
+ sources."is-cidr-1.0.0"
+ sources."is-date-object-1.0.1"
+ sources."is-deflate-1.0.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-gzip-1.0.0"
+ sources."is-inner-link-2.0.2"
+ sources."is-installed-globally-0.1.0"
+ sources."is-npm-1.0.0"
+ sources."is-obj-1.0.1"
+ sources."is-object-1.0.1"
+ sources."is-path-inside-1.0.1"
+ sources."is-plain-obj-1.1.0"
+ sources."is-property-1.0.2"
+ sources."is-redirect-1.0.0"
+ sources."is-regex-1.0.4"
+ sources."is-retry-allowed-1.1.0"
+ sources."is-ssh-1.3.0"
+ sources."is-stream-1.1.0"
+ sources."is-subdir-1.0.2"
+ sources."is-symbol-1.0.1"
+ sources."is-typedarray-1.0.0"
+ sources."is-windows-1.0.1"
+ sources."isarray-1.0.0"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."isurl-1.0.0"
+ sources."iterate-object-1.3.2"
+ sources."js-yaml-3.10.0"
+ sources."jsbn-0.1.1"
+ sources."json-buffer-3.0.0"
+ sources."json-parse-better-errors-1.0.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."json2yaml-1.1.0"
+ sources."jsonparse-1.3.1"
+ sources."jsprim-1.4.1"
+ sources."keyv-3.0.0"
+ sources."latest-version-3.1.0"
+ sources."lazy-property-1.0.0"
+ sources."lcid-1.0.0"
+ (sources."le-table-4.0.0" // {
+ dependencies = [
+ sources."ansi-parser-3.0.0"
+ ];
+ })
+ sources."libnpx-9.6.0"
+ (sources."load-json-file-4.0.0" // {
+ dependencies = [
+ sources."parse-json-4.0.0"
+ ];
+ })
+ sources."load-yaml-file-0.1.0"
+ sources."locate-path-2.0.0"
+ sources."lockfile-1.0.3"
+ sources."lodash-3.10.1"
+ sources."lodash._baseuniq-4.6.0"
+ sources."lodash._createset-4.0.3"
+ sources."lodash._root-3.0.1"
+ sources."lodash.clonedeep-4.5.0"
+ sources."lodash.union-4.6.0"
+ sources."lodash.uniq-4.5.0"
+ sources."lodash.without-4.4.0"
+ sources."log-update-2.3.0"
+ sources."loud-rejection-1.6.0"
+ sources."lowercase-keys-1.0.0"
+ sources."lru-cache-4.1.1"
+ sources."make-dir-1.1.0"
+ sources."make-fetch-happen-2.6.0"
+ sources."meant-1.0.1"
+ sources."mem-3.0.0"
+ sources."mime-db-1.30.0"
+ sources."mime-types-2.1.17"
+ sources."mimic-fn-1.1.0"
+ sources."mimic-response-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."minipass-2.2.1"
+ sources."minizlib-1.1.0"
+ sources."mississippi-1.3.1"
+ sources."mkdirp-0.5.1"
+ sources."mkdirp-promise-5.0.1"
+ sources."months-1.2.0"
+ sources."most-1.7.2"
+ sources."most-last-1.0.0"
+ sources."move-concurrently-1.0.1"
+ sources."ms-2.1.1"
+ sources."mute-stream-0.0.7"
+ sources."mz-2.7.0"
+ sources."nan-2.8.0"
+ sources."ncp-2.0.0"
+ sources."ndjson-1.5.0"
+ sources."neat-csv-2.1.0"
+ sources."nerf-dart-1.0.0"
+ sources."node-abi-2.1.2"
+ sources."node-fetch-npm-2.0.2"
+ (sources."node-gyp-3.6.2" // {
+ dependencies = [
+ sources."nopt-3.0.6"
+ sources."semver-5.3.0"
+ sources."tar-2.2.1"
+ ];
+ })
+ sources."noop-logger-0.1.1"
+ sources."noop6-1.0.7"
+ sources."nopt-4.0.1"
+ sources."normalize-package-data-2.4.0"
+ sources."normalize-path-2.1.1"
+ sources."normalize-registry-url-1.0.0"
+ sources."normalize-ssh-1.0.0"
+ sources."normalize-url-2.0.1"
+ (sources."not-bundled-npm-5.5.1" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."ansi-styles-2.2.1"
+ sources."cacache-9.2.9"
+ sources."chalk-1.1.3"
+ sources."execa-0.7.0"
+ sources."from2-1.3.0"
+ sources."got-6.7.1"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."isarray-0.0.1"
+ sources."minimist-1.2.0"
+ sources."prepend-http-1.0.4"
+ sources."semver-5.4.1"
+ sources."ssri-4.1.6"
+ sources."string-width-1.0.2"
+ sources."string_decoder-0.10.31"
+ sources."strip-ansi-4.0.0"
+ sources."supports-color-2.0.0"
+ (sources."update-notifier-2.2.0" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."url-parse-lax-1.0.0"
+ sources."uuid-3.1.0"
+ sources."write-file-atomic-2.1.0"
+ sources."yallist-3.0.2"
+ ];
+ })
+ sources."npm-bundled-1.0.3"
+ sources."npm-cache-filename-1.0.2"
+ sources."npm-install-checks-3.0.0"
+ sources."npm-lifecycle-1.0.3"
+ sources."npm-package-arg-5.1.2"
+ sources."npm-packlist-1.1.10"
+ sources."npm-pick-manifest-1.0.4"
+ sources."npm-profile-2.0.5"
+ sources."npm-registry-client-8.5.0"
+ sources."npm-run-path-2.0.2"
+ sources."npm-user-validate-1.0.0"
+ (sources."npmlog-4.1.2" // {
+ dependencies = [
+ sources."ansi-regex-2.1.1"
+ sources."strip-ansi-3.0.1"
+ ];
+ })
+ sources."number-is-nan-1.0.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-assign-4.1.1"
+ sources."object-keys-1.0.11"
+ sources."object.getownpropertydescriptors-2.0.3"
+ sources."observatory-1.0.0"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."opener-1.4.3"
+ sources."os-homedir-1.0.2"
+ sources."os-locale-2.1.0"
+ sources."os-tmpdir-1.0.2"
+ sources."osenv-0.1.4"
+ sources."overlap-2.0.0"
+ sources."p-cancelable-0.3.0"
+ sources."p-defer-1.0.0"
+ sources."p-every-1.0.2"
+ sources."p-filter-1.0.0"
+ sources."p-finally-1.0.0"
+ sources."p-is-promise-1.1.0"
+ sources."p-limit-1.2.0"
+ sources."p-locate-2.0.0"
+ sources."p-map-1.2.0"
+ sources."p-queue-2.3.0"
+ sources."p-reduce-1.0.0"
+ sources."p-series-1.0.0"
+ sources."p-timeout-2.0.1"
+ sources."p-try-1.0.0"
+ sources."package-json-4.0.1"
+ (sources."package-store-0.15.2" // {
+ dependencies = [
+ sources."@types/node-9.3.0"
+ sources."debug-3.1.0"
+ sources."minimist-1.2.0"
+ sources."ms-2.0.0"
+ sources."unzip-response-1.0.2"
+ ];
+ })
+ sources."pacote-6.0.4"
+ sources."pako-0.2.9"
+ sources."parallel-transform-1.1.0"
+ sources."parse-it-1.0.8"
+ sources."parse-json-2.2.0"
+ sources."parse-npm-tarball-url-1.0.2"
+ sources."parse-url-1.3.11"
+ sources."path-absolute-1.0.0"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-is-inside-1.0.2"
+ sources."path-key-2.0.1"
+ sources."path-name-1.0.0"
+ sources."path-type-2.0.0"
+ sources."peek-stream-1.1.2"
+ sources."performance-now-2.1.0"
+ sources."pify-3.0.0"
+ sources."pinkie-2.0.4"
+ sources."pinkie-promise-2.0.1"
+ (sources."pkgs-graph-2.0.0-0" // {
+ dependencies = [
+ sources."npm-package-arg-6.0.0"
+ ];
+ })
+ (sources."pnpm-default-reporter-0.11.8" // {
+ dependencies = [
+ sources."@types/node-9.3.0"
+ sources."ansi-regex-3.0.0"
+ sources."strip-ansi-4.0.0"
+ sources."wrap-ansi-3.0.1"
+ ];
+ })
+ (sources."pnpm-file-reporter-0.0.1" // {
+ dependencies = [
+ sources."@types/node-7.0.52"
+ sources."ansi-escapes-1.4.0"
+ sources."ansi-styles-2.2.1"
+ sources."chalk-1.1.3"
+ sources."supports-color-2.0.0"
+ ];
+ })
+ sources."pnpm-install-checks-1.1.0"
+ (sources."pnpm-list-2.0.1" // {
+ dependencies = [
+ sources."@types/node-9.3.0"
+ sources."npm-package-arg-6.0.0"
+ ];
+ })
+ sources."pnpm-logger-0.0.0"
+ sources."pnpm-shrinkwrap-5.1.1"
+ sources."prebuild-install-2.5.0"
+ sources."prepend-http-2.0.0"
+ sources."pretty-bytes-4.0.2"
+ sources."printable-characters-1.0.38"
+ sources."proc-output-1.0.6"
+ (sources."process-exists-3.0.0" // {
+ dependencies = [
+ sources."get-stream-2.3.1"
+ sources."into-stream-2.0.1"
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."process-nextick-args-1.0.7"
+ sources."promise-inflight-1.0.1"
+ sources."promise-retry-1.1.1"
+ sources."promzard-0.3.0"
+ sources."proper-lockfile-2.0.1"
+ sources."proto-list-1.2.4"
+ sources."protocols-1.4.6"
+ sources."protoduck-4.0.0"
+ sources."prr-1.0.1"
+ sources."ps-list-4.0.0"
+ sources."pseudomap-1.0.2"
+ sources."pump-1.0.3"
+ (sources."pumpify-1.4.0" // {
+ dependencies = [
+ sources."pump-2.0.1"
+ ];
+ })
+ sources."punycode-1.4.1"
+ sources."qrcode-terminal-0.11.0"
+ sources."qs-6.5.1"
+ sources."query-string-5.0.1"
+ sources."qw-1.0.1"
+ sources."ramda-0.25.0"
+ sources."rc-1.2.4"
+ sources."read-1.0.7"
+ sources."read-cmd-shim-1.0.1"
+ sources."read-installed-4.0.3"
+ sources."read-package-json-2.0.12"
+ sources."read-package-tree-5.1.6"
+ sources."read-pkg-2.0.0"
+ sources."read-pkg-up-2.0.0"
+ sources."readable-stream-2.3.3"
+ sources."readdir-scoped-modules-1.0.2"
+ sources."regenerator-runtime-0.11.1"
+ sources."regex-escape-3.4.8"
+ sources."registry-auth-token-3.3.1"
+ sources."registry-url-3.1.0"
+ sources."remedial-1.0.7"
+ sources."remove-all-except-outer-links-1.0.3"
+ sources."remove-trailing-separator-1.1.0"
+ sources."rename-overwrite-1.0.0"
+ sources."replace-string-1.1.0"
+ sources."request-2.83.0"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."resolve-from-4.0.0"
+ sources."resolve-link-target-1.0.1"
+ sources."responselike-1.0.2"
+ sources."restore-cursor-2.0.0"
+ sources."retry-0.10.1"
+ sources."rimraf-2.6.2"
+ sources."rimraf-then-1.0.1"
+ sources."run-queue-1.0.3"
+ sources."safe-buffer-5.1.1"
+ sources."sec-1.0.0"
+ sources."semver-5.5.0"
+ sources."semver-diff-2.1.0"
+ sources."semver-regex-1.0.0"
+ sources."set-blocking-2.0.0"
+ sources."sha-2.0.1"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."simple-get-1.4.3"
+ sources."slash-1.0.0"
+ sources."slide-1.1.6"
+ sources."smart-buffer-1.1.15"
+ sources."sntp-2.1.0"
+ sources."socks-1.1.10"
+ sources."socks-proxy-agent-3.0.1"
+ sources."sort-keys-2.0.0"
+ sources."sorted-object-2.0.1"
+ (sources."sorted-union-stream-2.1.3" // {
+ dependencies = [
+ sources."isarray-1.0.0"
+ sources."readable-stream-1.1.14"
+ sources."string_decoder-1.0.3"
+ ];
+ })
+ sources."source-map-0.6.1"
+ sources."spawno-2.0.7"
+ sources."spdx-correct-1.0.2"
+ sources."spdx-expression-parse-1.0.4"
+ sources."spdx-license-ids-1.2.2"
+ sources."split2-2.2.0"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.13.1"
+ sources."ssri-5.1.0"
+ (sources."stacktracey-1.2.100" // {
+ dependencies = [
+ sources."@types/node-8.5.9"
+ ];
+ })
+ sources."static-methods-1.0.10"
+ sources."stream-each-1.2.2"
+ (sources."stream-iterate-1.2.0" // {
+ dependencies = [
+ sources."readable-stream-2.3.3"
+ ];
+ })
+ sources."stream-shift-1.0.0"
+ sources."strict-uri-encode-1.1.0"
+ sources."string-width-2.1.1"
+ sources."string_decoder-1.0.3"
+ sources."stringstream-0.0.5"
+ sources."strip-ansi-3.0.1"
+ sources."strip-bom-3.0.0"
+ sources."strip-color-0.1.0"
+ sources."strip-eof-1.0.0"
+ sources."strip-json-comments-2.0.1"
+ (sources."supi-0.12.1" // {
+ dependencies = [
+ sources."@types/node-9.3.0"
+ sources."execa-0.9.0"
+ sources."npm-lifecycle-2.0.0"
+ sources."pify-2.3.0"
+ sources."write-file-atomic-1.3.4"
+ ];
+ })
+ sources."supports-color-4.5.0"
+ sources."symbol-observable-1.1.0"
+ sources."symlink-dir-1.1.2"
+ sources."tar-4.0.2"
+ sources."tar-fs-1.16.0"
+ sources."tar-stream-1.5.5"
+ (sources."tasklist-3.1.0" // {
+ dependencies = [
+ sources."pify-2.3.0"
+ ];
+ })
+ sources."term-size-1.2.0"
+ sources."text-table-0.2.0"
+ sources."thenify-3.3.0"
+ sources."thenify-all-1.6.0"
+ sources."through-2.3.8"
+ sources."through2-2.0.3"
+ sources."timed-out-4.0.1"
+ sources."timeout-then-1.1.0"
+ sources."tough-cookie-2.3.3"
+ sources."tree-kill-1.2.0"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."typedarray-0.0.6"
+ sources."typpy-2.3.10"
+ sources."uid-number-0.0.6"
+ (sources."ul-5.2.13" // {
+ dependencies = [
+ sources."deffy-2.2.2"
+ ];
+ })
+ sources."umask-1.1.0"
+ sources."unbzip2-stream-1.2.5"
+ sources."unique-filename-1.1.0"
+ sources."unique-slug-2.0.0"
+ sources."unique-string-1.0.0"
+ sources."unpack-stream-3.0.1"
+ sources."unpipe-1.0.0"
+ sources."unzip-response-2.0.1"
+ sources."update-notifier-2.3.0"
+ sources."url-parse-lax-3.0.0"
+ sources."url-to-options-1.0.1"
+ sources."util-deprecate-1.0.2"
+ sources."util-extend-1.0.3"
+ sources."util.promisify-1.0.0"
+ sources."uuid-3.2.1"
+ sources."validate-npm-package-license-3.0.1"
+ sources."validate-npm-package-name-3.0.0"
+ sources."verror-1.10.0"
+ sources."version-selector-type-2.0.0"
+ sources."wcwidth-1.0.1"
+ sources."which-1.3.0"
+ sources."which-module-2.0.0"
+ sources."wide-align-1.1.2"
+ sources."widest-line-2.0.0"
+ sources."worker-farm-1.5.2"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."write-file-atomic-2.3.0"
+ sources."write-json-file-2.3.0"
+ sources."write-pkg-3.1.0"
+ sources."write-yaml-file-1.0.0"
+ sources."x256-0.0.2"
+ sources."xdg-basedir-3.0.0"
+ sources."xtend-4.0.1"
+ sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ sources."yargs-8.0.2"
+ sources."yargs-parser-7.0.0"
+ sources."zen-observable-0.7.1"
+ sources."zen-push-0.2.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Fast, disk space efficient package manager";
+ homepage = https://pnpm.js.org/;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = true;
+ };
semver = nodeEnv.buildNodePackage {
name = "semver";
packageName = "semver";
- version = "5.4.1";
+ version = "5.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.4.1.tgz";
- sha512 = "2r13vwvb5ick34k6flr7vgbjfsdka8zbj5a74rd0ba4bp0nqmhppbaw3qlwn7f4smpifpa4iy4hxj137y598rbvsmy3h0d8vxgvzwar";
+ url = "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz";
+ sha512 = "0h32zh035y8m6dzcqhcymbhwgmc8839fa1hhj0jfh9ivp9kmqfj1sbwnsnkzcn9qm3sqn38sa8ys2g4c638lpnmzjr0a0qndmv7f8p1";
};
buildInputs = globalBuildInputs;
meta = {
@@ -4479,24 +9492,24 @@ in
};
dependencies = [
sources."async-2.1.5"
- sources."cli-table-0.3.1"
- sources."commander-2.9.0"
- sources."readdirp-2.1.0"
- sources."lodash-4.17.4"
- sources."colors-1.0.3"
- sources."graceful-readlink-1.0.1"
- sources."graceful-fs-4.1.11"
- sources."minimatch-3.0.4"
- sources."readable-stream-2.3.3"
- sources."set-immediate-shim-1.0.1"
- sources."brace-expansion-1.1.8"
sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.8"
+ sources."cli-table-0.3.1"
+ sources."colors-1.0.3"
+ sources."commander-2.9.0"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
+ sources."graceful-fs-4.1.11"
+ sources."graceful-readlink-1.0.1"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
+ sources."lodash-4.17.4"
+ sources."minimatch-3.0.4"
sources."process-nextick-args-1.0.7"
+ sources."readable-stream-2.3.3"
+ sources."readdirp-2.1.0"
sources."safe-buffer-5.1.1"
+ sources."set-immediate-shim-1.0.1"
sources."string_decoder-1.0.3"
sources."util-deprecate-1.0.2"
];
diff --git a/pkgs/development/ocaml-modules/asn1-combinators/default.nix b/pkgs/development/ocaml-modules/asn1-combinators/default.nix
index 65a310c9cf0..78102b9c673 100644
--- a/pkgs/development/ocaml-modules/asn1-combinators/default.nix
+++ b/pkgs/development/ocaml-modules/asn1-combinators/default.nix
@@ -1,8 +1,22 @@
-{ stdenv, buildOcaml, fetchFromGitHub, ocaml, findlib, cstruct, zarith, ounit, result, topkg }:
+{ stdenv, buildOcaml, fetchFromGitHub, ocaml, findlib
+, cstruct, zarith, ounit, result, topkg, ptime
+}:
+
+let param =
+ if stdenv.lib.versionAtLeast ocaml.version "4.02" then {
+ version = "0.2.0";
+ sha256 = "0yfq4hnyzx6hy05m60007cfpq88wxwa8wqzib19lnk2qrgy772mx";
+ propagatedBuildInputs = [ ptime ];
+ } else {
+ version = "0.1.3";
+ sha256 = "0hpn049i46sdnv2i6m7r6m6ch0jz8argybh71wykbvcqdby08zxj";
+ propagatedBuildInputs = [ ];
+ };
+in
buildOcaml rec {
name = "asn1-combinators";
- version = "0.1.3";
+ inherit (param) version;
minimumSupportedOcamlVersion = "4.01";
@@ -10,13 +24,11 @@ buildOcaml rec {
owner = "mirleft";
repo = "ocaml-asn1-combinators";
rev = "v${version}";
- sha256 = "0hpn049i46sdnv2i6m7r6m6ch0jz8argybh71wykbvcqdby08zxj";
+ inherit (param) sha256;
};
buildInputs = [ ocaml findlib ounit topkg ];
- propagatedBuildInputs = [ result cstruct zarith ];
-
- createFindlibDestdir = true;
+ propagatedBuildInputs = [ result cstruct zarith ] ++ param.propagatedBuildInputs;
buildPhase = "${topkg.run} build --tests true";
diff --git a/pkgs/development/ocaml-modules/cpdf/default.nix b/pkgs/development/ocaml-modules/cpdf/default.nix
index 07909d1a465..dc6cf491eb4 100644
--- a/pkgs/development/ocaml-modules/cpdf/default.nix
+++ b/pkgs/development/ocaml-modules/cpdf/default.nix
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
'';
meta = {
- homepage = http://www.coherentpdf.com/;
+ homepage = https://www.coherentpdf.com/;
platforms = ocaml.meta.platforms or [];
description = "PDF Command Line Tools";
maintainers = with stdenv.lib.maintainers; [ vbgl ];
diff --git a/pkgs/development/ocaml-modules/dtoa/default.nix b/pkgs/development/ocaml-modules/dtoa/default.nix
new file mode 100644
index 00000000000..9b6e5626614
--- /dev/null
+++ b/pkgs/development/ocaml-modules/dtoa/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, ocaml, findlib, jbuilder }:
+
+assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
+
+stdenv.mkDerivation rec {
+ pname = "dtoa";
+ name = "ocaml-${pname}-${version}";
+ version = "0.3.1";
+
+ src = fetchurl {
+ url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
+ sha256 = "0rzysj07z2q6gk0yhjxnjnba01vmdb9x32wwna10qk3rrb8r2pnn";
+ };
+
+ unpackCmd = "tar xjf $src";
+
+ buildInputs = [ ocaml findlib jbuilder ];
+
+ buildPhase = "jbuilder build -p dtoa";
+
+ inherit (jbuilder) installPhase;
+
+ hardeningDisable = stdenv.lib.optional stdenv.isDarwin "strictoverflow";
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/flowtype/ocaml-dtoa;
+ description = "Converts OCaml floats into strings (doubles to ascii, \"d to a\"), using the efficient Grisu3 algorithm.";
+ license = licenses.mit;
+ platforms = ocaml.meta.platforms or [];
+ maintainers = [ maintainers.eqyiel ];
+ };
+}
diff --git a/pkgs/development/ocaml-modules/eliom/setup-hook.sh b/pkgs/development/ocaml-modules/eliom/setup-hook.sh
index 096d8f8bf63..9868ab93f79 100644
--- a/pkgs/development/ocaml-modules/eliom/setup-hook.sh
+++ b/pkgs/development/ocaml-modules/eliom/setup-hook.sh
@@ -2,4 +2,4 @@ addOcsigenDistilleryTemplate() {
addToSearchPathWithCustomDelimiter : ELIOM_DISTILLERY_PATH $1/eliom-distillery-templates
}
-envHooks+=(addOcsigenDistilleryTemplate)
+addEnvHooks "$hostOffset" addOcsigenDistilleryTemplate
diff --git a/pkgs/development/ocaml-modules/git-http/default.nix b/pkgs/development/ocaml-modules/git-http/default.nix
index fc5591483d2..5b93b960765 100644
--- a/pkgs/development/ocaml-modules/git-http/default.nix
+++ b/pkgs/development/ocaml-modules/git-http/default.nix
@@ -15,6 +15,5 @@ stdenv.mkDerivation rec {
meta = {
description = "Client implementation of the “Smart” HTTP Git protocol in pure OCaml";
inherit (git.meta) homepage license maintainers platforms;
- broken = true;
};
}
diff --git a/pkgs/development/ocaml-modules/git/default.nix b/pkgs/development/ocaml-modules/git/default.nix
index 4d4f86e57eb..9347c6ad00c 100644
--- a/pkgs/development/ocaml-modules/git/default.nix
+++ b/pkgs/development/ocaml-modules/git/default.nix
@@ -3,14 +3,14 @@
}:
stdenv.mkDerivation rec {
- version = "1.11.2";
+ version = "1.11.4";
name = "ocaml${ocaml.version}-git-${version}";
src = fetchFromGitHub {
owner = "mirage";
repo = "ocaml-git";
rev = version;
- sha256 = "1z5b0g4vck1sh1w076i2p3ppxrmb9h30q3nip5snw2r9prkm6y1j";
+ sha256 = "182b6shcfcq50r5snm01hwalnmck43x1xgdd4fvjb6q78pbwag2x";
};
buildInputs = [ ocaml findlib jbuilder ];
diff --git a/pkgs/development/ocaml-modules/mstruct/default.nix b/pkgs/development/ocaml-modules/mstruct/default.nix
index 958cbdc554e..5aa57ba8fbb 100644
--- a/pkgs/development/ocaml-modules/mstruct/default.nix
+++ b/pkgs/development/ocaml-modules/mstruct/default.nix
@@ -7,14 +7,14 @@ then throw "mstruct is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
- version = "1.3.3";
+ version = "1.4.0";
name = "ocaml${ocaml.version}-mstruct-${version}";
src = fetchFromGitHub {
owner = "mirage";
repo = "ocaml-mstruct";
rev = "v${version}";
- sha256 = "1rxjzkg6156vl6yazbk1h0ndqj80wym5aliaapijf60apqqmsp4s";
+ sha256 = "1p4ygwzs3n1fj4apfib0z0sabpph21bkq1dgjk4bsa59pq4prncm";
};
buildInputs = [ ocaml findlib jbuilder opam ];
diff --git a/pkgs/development/ocaml-modules/mysql/default.nix b/pkgs/development/ocaml-modules/mysql/default.nix
index 3fa8e9d46b4..5482d7ac87c 100644
--- a/pkgs/development/ocaml-modules/mysql/default.nix
+++ b/pkgs/development/ocaml-modules/mysql/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, ocaml, findlib, mysql }:
+{ stdenv, fetchurl, fetchpatch, ocaml, findlib, mysql, openssl }:
# TODO: la versione stabile da' un errore di compilazione dovuto a
# qualche cambiamento negli header .h
@@ -26,7 +26,14 @@ stdenv.mkDerivation rec {
createFindlibDestdir = true;
- propagatedBuildInputs = [ mysql.client ];
+ propagatedBuildInputs = [ mysql.connector-c ];
+
+ patches = [
+ (fetchpatch {
+ url = "https://github.com/ygrek/ocaml-mysql/compare/v1.2.1...d6d1b3b262ae2cf493ef56f1dd7afcf663a70a26.patch";
+ sha256 = "0018s2wcrvbsw9yaqmwq500qmikwffrgdp5xg9b8v7ixhd4gi6hn";
+ })
+ ];
meta = {
homepage = http://ocaml-mysql.forge.ocamlcore.org;
diff --git a/pkgs/development/ocaml-modules/notty/default.nix b/pkgs/development/ocaml-modules/notty/default.nix
index dcc57fddaf6..2dffb472f3e 100644
--- a/pkgs/development/ocaml-modules/notty/default.nix
+++ b/pkgs/development/ocaml-modules/notty/default.nix
@@ -1,30 +1,27 @@
-{ stdenv, buildOcaml, fetchpatch, fetchFromGitHub, findlib, topkg, ocb-stubblr
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, ocb-stubblr
, result, uucp, uuseg, uutf
, lwt ? null }:
with stdenv.lib;
+if !versionAtLeast ocaml.version "4.03"
+then throw "notty is not available for OCaml ${ocaml.version}"
+else
+
let withLwt = lwt != null; in
-buildOcaml rec {
- version = "0.1.1a";
- name = "notty";
+stdenv.mkDerivation rec {
+ version = "0.2.1";
+ name = "ocaml${ocaml.version}-notty-${version}";
- minimumSupportedOcamlVersion = "4.02";
-
- src = fetchFromGitHub {
- owner = "pqwy";
- repo = "notty";
- rev = "53f5946653490fce980dc5d8cadf8b122cff4f19";
- sha256 = "0qmwb1hrp04py2i5spy0yd6c5jqxyss3wzvlkgxyl9r07kvsx6xf";
+ src = fetchurl {
+ url = "https://github.com/pqwy/notty/releases/download/v${version}/notty-${version}.tbz";
+ sha256 = "0wdfmgx1mz77s7m451vy8r9i4iqwn7s7b39kpbpckf3w9417riq0";
};
- patches = [ (fetchpatch {
- url = https://github.com/dbuenzli/notty/commit/b0e12930acc26d030a74d6d63d622ae220b12c92.patch;
- sha256 = "0pklplbnjbsjriqj73pc8fsadg404px534w7zknz2617zb44m6x6";
- })];
+ unpackCmd = "tar -xjf $curSrc";
- buildInputs = [ findlib topkg ocb-stubblr ];
+ buildInputs = [ ocaml findlib ocamlbuild topkg ocb-stubblr ];
propagatedBuildInputs = [ result uucp uuseg uutf ] ++
optional withLwt lwt;
@@ -34,7 +31,8 @@ buildOcaml rec {
inherit (topkg) installPhase;
meta = {
- inherit (src.meta) homepage;
+ homepage = "https://github.com/pqwy/notty";
+ inherit (ocaml.meta) platforms;
description = "Declarative terminal graphics for OCaml";
license = licenses.isc;
maintainers = with maintainers; [ sternenseemann ];
diff --git a/pkgs/development/ocaml-modules/ocamlmake/setup-hook.sh b/pkgs/development/ocaml-modules/ocamlmake/setup-hook.sh
index a93a7250beb..6d950437016 100644
--- a/pkgs/development/ocaml-modules/ocamlmake/setup-hook.sh
+++ b/pkgs/development/ocaml-modules/ocamlmake/setup-hook.sh
@@ -2,4 +2,4 @@ addOcamlMakefile () {
export OCAMLMAKEFILE="@out@/include/OCamlMakefile"
}
-envHooks+=(addOcamlMakefile)
+addEnvHooks "$targetOffset" addOcamlMakefile
diff --git a/pkgs/development/ocaml-modules/otr/default.nix b/pkgs/development/ocaml-modules/otr/default.nix
index 189b3adf873..ac853c94094 100644
--- a/pkgs/development/ocaml-modules/otr/default.nix
+++ b/pkgs/development/ocaml-modules/otr/default.nix
@@ -1,22 +1,25 @@
-{ stdenv, buildOcaml, fetchFromGitHub, ocamlbuild, findlib, topkg, ocaml
-, ppx_tools, ppx_sexp_conv, cstruct, ppx_cstruct, sexplib, result, nocrypto, astring
+{ stdenv, fetchFromGitHub, ocaml, ocamlbuild, findlib, topkg
+, ppx_tools, ppx_sexp_conv, cstruct, ppx_cstruct, sexplib, rresult, nocrypto
+, astring
}:
-buildOcaml rec {
- name = "otr";
- version = "0.3.3";
+if !stdenv.lib.versionAtLeast ocaml.version "4.03"
+then throw "otr is not available for OCaml ${ocaml.version}"
+else
- minimumSupportedOcamlVersion = "4.02";
+stdenv.mkDerivation rec {
+ name = "ocaml${ocaml.version}-otr-${version}";
+ version = "0.3.4";
src = fetchFromGitHub {
owner = "hannesm";
repo = "ocaml-otr";
rev = "${version}";
- sha256 = "07zzix5mfsasqpqdx811m0x04gp8mq1ayf4b64998k98027v01rr";
+ sha256 = "0ixf0jvccmcbhk5mhzqakfzimvz200wkdkq3z2d0bdzyggslbdl4";
};
- buildInputs = [ ocamlbuild findlib topkg ppx_tools ppx_sexp_conv ppx_cstruct ];
- propagatedBuildInputs = [ cstruct sexplib result nocrypto astring ];
+ buildInputs = [ ocaml ocamlbuild findlib topkg ppx_tools ppx_sexp_conv ppx_cstruct ];
+ propagatedBuildInputs = [ cstruct sexplib rresult nocrypto astring ];
buildPhase = "${topkg.run} build --tests true";
@@ -26,6 +29,7 @@ buildOcaml rec {
checkPhase = "${topkg.run} test";
meta = with stdenv.lib; {
+ inherit (ocaml.meta) platforms;
homepage = https://github.com/hannesm/ocaml-otr;
description = "Off-the-record messaging protocol, purely in OCaml";
license = licenses.bsd2;
diff --git a/pkgs/development/ocaml-modules/tls/default.nix b/pkgs/development/ocaml-modules/tls/default.nix
index 8c146102ad1..39f82772ffc 100644
--- a/pkgs/development/ocaml-modules/tls/default.nix
+++ b/pkgs/development/ocaml-modules/tls/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildOcaml, fetchFromGitHub, findlib, ocamlbuild, ocaml_oasis
+{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, topkg
, ppx_tools, ppx_sexp_conv, result, x509, nocrypto, cstruct, ppx_cstruct, cstruct-unix, ounit
, lwt ? null}:
@@ -6,31 +6,27 @@ with stdenv.lib;
let withLwt = lwt != null; in
-buildOcaml rec {
- version = "0.7.1";
- name = "tls";
-
- minimunSupportedOcamlVersion = "4.02";
+stdenv.mkDerivation rec {
+ version = "0.9.0";
+ name = "ocaml${ocaml.version}-tls-${version}";
src = fetchFromGitHub {
owner = "mirleft";
repo = "ocaml-tls";
rev = "${version}";
- sha256 = "19q2hzxiasz9pzczgb63kikg0mc9mw98dfvch5falf2rincycj24";
+ sha256 = "0qgw8lq8pk9hss7b5i6fr08pi711i0zqx7yyjgcil47ipjig6c31";
};
- buildInputs = [ ocamlbuild findlib ocaml_oasis ppx_sexp_conv ounit ppx_cstruct cstruct-unix ];
+ buildInputs = [ ocaml ocamlbuild findlib topkg ppx_sexp_conv ounit ppx_cstruct cstruct-unix ];
propagatedBuildInputs = [ cstruct nocrypto result x509 ] ++
optional withLwt lwt;
- configureFlags = [ "--disable-mirage" "--enable-tests" ] ++
- optional withLwt ["--enable-lwt"];
-
- configurePhase = "./configure --prefix $out $configureFlags";
+ buildPhase = "${topkg.run} build --tests true --with-mirage false --with-lwt ${if withLwt then "true" else "false"}";
doCheck = true;
- checkTarget = "test";
- createFindlibDestdir = true;
+ checkPhase = "${topkg.run} test";
+
+ inherit (topkg) installPhase;
meta = with stdenv.lib; {
homepage = https://github.com/mirleft/ocaml-tls;
diff --git a/pkgs/development/ocaml-modules/uri/default.nix b/pkgs/development/ocaml-modules/uri/default.nix
index f08ee7fc2fc..5059ef24aa3 100644
--- a/pkgs/development/ocaml-modules/uri/default.nix
+++ b/pkgs/development/ocaml-modules/uri/default.nix
@@ -1,51 +1,33 @@
-{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, re, stringext, ounit
-, sexplib, ppx_sexp_conv
-, legacyVersion ? false
-, sexplib_p4
+{ stdenv, fetchurl, ocaml, findlib, jbuilder, ppx_sexp_conv, ounit
+, ppx_deriving, re, sexplib, stringext
}:
-if !stdenv.lib.versionAtLeast ocaml.version "4"
-|| legacyVersion && stdenv.lib.versionAtLeast ocaml.version "4.03"
-then throw "uri${stdenv.lib.optionalString legacyVersion "_p4"} is not available for OCaml ${ocaml.version}" else
-
-with
- if legacyVersion
- then {
- version = "1.9.1";
- sha256 = "0v3jxqgyi4kj92r3x83rszfpnvvzy9lyb913basch4q64yka3w85";
- } else {
- version = "1.9.2";
- sha256 = "137pg8j654x7r0d1664iy2zp3l82nki1kkh921lwdrwc5qqdl6jx";
- };
-
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
+ version = "1.9.6";
name = "ocaml${ocaml.version}-uri-${version}";
- src = fetchzip {
- url = "https://github.com/mirage/ocaml-uri/archive/v${version}.tar.gz";
- inherit sha256;
+ src = fetchurl {
+ url = "https://github.com/mirage/ocaml-uri/releases/download/v${version}/uri-${version}.tbz";
+ sha256 = "1m845rwd70wi4iijkrigyz939m1x84ba70hvv0d9sgk6971w4kz0";
};
- buildInputs = [ ocaml findlib ocamlbuild ounit ]
- ++ stdenv.lib.optional (!legacyVersion) ppx_sexp_conv;
- propagatedBuildInputs = [ re (if legacyVersion then sexplib_p4 else sexplib) stringext ];
+ unpackCmd = "tar -xjf $curSrc";
+
+ buildInputs = [ ocaml findlib jbuilder ppx_sexp_conv ounit ];
+ propagatedBuildInputs = [ ppx_deriving re sexplib stringext ];
+
+ buildPhase = "jbuilder build";
- configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
- buildPhase = ''
- ocaml setup.ml -build
- ocaml setup.ml -doc
- '';
doCheck = true;
- checkPhase = "ocaml setup.ml -test";
- installPhase = "ocaml setup.ml -install";
+ checkPhase = "jbuilder runtest";
- createFindlibDestdir = true;
+ inherit (jbuilder) installPhase;
meta = {
- homepage = https://github.com/mirage/ocaml-uri;
- platforms = ocaml.meta.platforms or [];
+ homepage = "https://github.com/mirage/ocaml-uri";
description = "RFC3986 URI parsing library for OCaml";
license = stdenv.lib.licenses.isc;
- maintainers = with stdenv.lib.maintainers; [ vbgl ];
+ maintainers = [ stdenv.lib.maintainers.vbgl ];
+ inherit (ocaml.meta) platforms;
};
}
diff --git a/pkgs/development/ocaml-modules/uri/legacy.nix b/pkgs/development/ocaml-modules/uri/legacy.nix
new file mode 100644
index 00000000000..f08ee7fc2fc
--- /dev/null
+++ b/pkgs/development/ocaml-modules/uri/legacy.nix
@@ -0,0 +1,51 @@
+{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, re, stringext, ounit
+, sexplib, ppx_sexp_conv
+, legacyVersion ? false
+, sexplib_p4
+}:
+
+if !stdenv.lib.versionAtLeast ocaml.version "4"
+|| legacyVersion && stdenv.lib.versionAtLeast ocaml.version "4.03"
+then throw "uri${stdenv.lib.optionalString legacyVersion "_p4"} is not available for OCaml ${ocaml.version}" else
+
+with
+ if legacyVersion
+ then {
+ version = "1.9.1";
+ sha256 = "0v3jxqgyi4kj92r3x83rszfpnvvzy9lyb913basch4q64yka3w85";
+ } else {
+ version = "1.9.2";
+ sha256 = "137pg8j654x7r0d1664iy2zp3l82nki1kkh921lwdrwc5qqdl6jx";
+ };
+
+stdenv.mkDerivation {
+ name = "ocaml${ocaml.version}-uri-${version}";
+
+ src = fetchzip {
+ url = "https://github.com/mirage/ocaml-uri/archive/v${version}.tar.gz";
+ inherit sha256;
+ };
+
+ buildInputs = [ ocaml findlib ocamlbuild ounit ]
+ ++ stdenv.lib.optional (!legacyVersion) ppx_sexp_conv;
+ propagatedBuildInputs = [ re (if legacyVersion then sexplib_p4 else sexplib) stringext ];
+
+ configurePhase = "ocaml setup.ml -configure --prefix $out --enable-tests";
+ buildPhase = ''
+ ocaml setup.ml -build
+ ocaml setup.ml -doc
+ '';
+ doCheck = true;
+ checkPhase = "ocaml setup.ml -test";
+ installPhase = "ocaml setup.ml -install";
+
+ createFindlibDestdir = true;
+
+ meta = {
+ homepage = https://github.com/mirage/ocaml-uri;
+ platforms = ocaml.meta.platforms or [];
+ description = "RFC3986 URI parsing library for OCaml";
+ license = stdenv.lib.licenses.isc;
+ maintainers = with stdenv.lib.maintainers; [ vbgl ];
+ };
+}
diff --git a/pkgs/development/ocaml-modules/wtf8/default.nix b/pkgs/development/ocaml-modules/wtf8/default.nix
new file mode 100644
index 00000000000..4cde95c0c4c
--- /dev/null
+++ b/pkgs/development/ocaml-modules/wtf8/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchurl, ocaml, findlib, jbuilder }:
+
+assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
+
+stdenv.mkDerivation rec {
+ pname = "wtf8";
+ name = "ocaml-${pname}-${version}";
+ version = "1.0.1";
+
+ src = fetchurl {
+ url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
+ sha256 = "1msg3vycd3k8qqj61sc23qks541cxpb97vrnrvrhjnqxsqnh6ygq";
+ };
+
+ unpackCmd = "tar xjf $src";
+
+ buildInputs = [ ocaml findlib jbuilder ];
+
+ buildPhase = "jbuilder build -p wtf8";
+
+ inherit (jbuilder) installPhase;
+
+ createFindLibDestdir = true;
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/flowtype/ocaml-wtf8;
+ description = "WTF-8 is a superset of UTF-8 that allows unpaired surrogates.";
+ license = licenses.mit;
+ platforms = ocaml.meta.platforms or [];
+ maintainers = [ maintainers.eqyiel ];
+ };
+}
diff --git a/pkgs/development/ocaml-modules/x509/default.nix b/pkgs/development/ocaml-modules/x509/default.nix
index 316035b4054..44a25865c1a 100644
--- a/pkgs/development/ocaml-modules/x509/default.nix
+++ b/pkgs/development/ocaml-modules/x509/default.nix
@@ -1,29 +1,28 @@
-{ stdenv, buildOcaml, fetchFromGitHub, ocaml, findlib, asn1-combinators, nocrypto
-, ounit, ocaml_oasis, ppx_sexp_conv, cstruct-unix
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg
+, asn1-combinators, astring, nocrypto, ppx_sexp_conv
+, ounit, cstruct-unix
}:
-buildOcaml rec {
- name = "x509";
- version = "0.5.3";
+stdenv.mkDerivation rec {
+ name = "ocaml${ocaml.version}-x509-${version}";
+ version = "0.6.1";
- mininimumSupportedOcamlVersion = "4.02";
-
- src = fetchFromGitHub {
- owner = "mirleft";
- repo = "ocaml-x509";
- rev = "${version}";
- sha256 = "07cc3z6h87460z3f4vz8nlczw5jkc4vjhix413z9x6nral876rn7";
+ src = fetchurl {
+ url = "https://github.com/mirleft/ocaml-x509/releases/download/${version}/x509-${version}.tbz";
+ sha256 = "1c62mw9rnzq0rs3ihbhfs18nv4mdzwag7893hlqgji3wmaai70pk";
};
- buildInputs = [ ocaml ocaml_oasis findlib ounit ppx_sexp_conv cstruct-unix ];
- propagatedBuildInputs = [ asn1-combinators nocrypto ];
+ unpackCmd = "tar -xjf $curSrc";
- configureFlags = "--enable-tests";
- configurePhase = "./configure --prefix $out $configureFlags";
+ buildInputs = [ ocaml findlib ocamlbuild topkg ppx_sexp_conv ounit cstruct-unix ];
+ propagatedBuildInputs = [ asn1-combinators astring nocrypto ];
+
+ buildPhase = "${topkg.run} build --tests true";
doCheck = true;
- checkTarget = "test";
- createFindlibDestdir = true;
+ checkPhase = "${topkg.run} test";
+
+ inherit (topkg) installPhase;
meta = with stdenv.lib; {
homepage = https://github.com/mirleft/ocaml-x509;
diff --git a/pkgs/development/perl-modules/DBD-mysql/default.nix b/pkgs/development/perl-modules/DBD-mysql/default.nix
index 7302516d542..12ddcf166e2 100644
--- a/pkgs/development/perl-modules/DBD-mysql/default.nix
+++ b/pkgs/development/perl-modules/DBD-mysql/default.nix
@@ -8,7 +8,7 @@ buildPerlPackage rec {
sha256 = "0h4h6zwzj8fwh9ljb8svnsa0a3ch4p10hp59kpdibdb4qh8xwxs7";
};
- buildInputs = [ mysql.lib ] ;
+ buildInputs = [ mysql.connector-c ] ;
propagatedBuildInputs = [ DBI ];
doCheck = false;
diff --git a/pkgs/development/pharo/vm/build-vm.nix b/pkgs/development/pharo/vm/build-vm.nix
index 74fa75e7aa5..b72b1851024 100644
--- a/pkgs/development/pharo/vm/build-vm.nix
+++ b/pkgs/development/pharo/vm/build-vm.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
else if stdenv.isLinux && stdenv.isx86_64 then "linux64x64"
else if stdenv.isDarwin && stdenv.isi686 then "macos32x86"
else if stdenv.isDarwin && stdenv.isx86_64 then "macos64x64"
- else abort "Unsupported platform: only Linux/Darwin x86/x64 are supported.";
+ else throw "Unsupported platform: only Linux/Darwin x86/x64 are supported.";
# Shared data (for the sources file)
pharo-share = import ./share.nix { inherit stdenv fetchurl unzip; };
@@ -106,7 +106,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ bash unzip glibc openssl gcc48 mesa freetype xorg.libX11 xorg.libICE xorg.libSM alsaLib cairo pharo-share libuuid ];
- meta = {
+ meta = with stdenv.lib; {
description = "Clean and innovative Smalltalk-inspired environment";
longDescription = ''
Pharo's goal is to deliver a clean, innovative, free open-source
@@ -122,8 +122,8 @@ stdenv.mkDerivation rec {
packaging (ppa:pharo/stable)' project.
'';
homepage = http://pharo.org;
- license = stdenv.lib.licenses.mit;
- maintainers = [ stdenv.lib.maintainers.lukego ];
- platforms = [ "i686-linux" "x86_64-linux" "i686-darwin" "x86_64-darwin" ];
+ license = licenses.mit;
+ maintainers = [ maintainers.lukego ];
+ platforms = [ "i686-linux" "x86_64-linux" ];
};
}
diff --git a/pkgs/development/pure-modules/glpk/default.nix b/pkgs/development/pure-modules/glpk/default.nix
index 4927ac445f4..e86f08b57ca 100644
--- a/pkgs/development/pure-modules/glpk/default.nix
+++ b/pkgs/development/pure-modules/glpk/default.nix
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl,
- pkgconfig, pure, glpk, gmp, libtool, libmysql, libiodbc, zlib }:
+ pkgconfig, pure, glpk, gmp, libtool, mysql, libiodbc, zlib }:
stdenv.mkDerivation rec {
baseName = "glpk";
@@ -12,13 +12,13 @@ stdenv.mkDerivation rec {
};
glpkWithExtras = lib.overrideDerivation glpk (attrs: {
- propagatedBuildInputs = [ gmp libtool libmysql libiodbc ];
+ propagatedBuildInputs = [ gmp libtool mysql.connector-c libiodbc ];
CPPFLAGS = "-I${gmp.dev}/include";
preConfigure = ''
substituteInPlace configure \
- --replace /usr/include/mysql ${lib.getDev libmysql}/include/mysql
+ --replace /usr/include/mysql ${mysql.connector-c}/include/mysql
'';
configureFlags = [ "--enable-dl"
"--enable-odbc"
diff --git a/pkgs/development/python-modules/APScheduler/default.nix b/pkgs/development/python-modules/APScheduler/default.nix
index 5acb6cd5785..8af07ece687 100644
--- a/pkgs/development/python-modules/APScheduler/default.nix
+++ b/pkgs/development/python-modules/APScheduler/default.nix
@@ -20,12 +20,12 @@
buildPythonPackage rec {
pname = "APScheduler";
- version = "3.4.0";
+ version = "3.5.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "b51118a8ed014104f7e440456dcbd90f2015aea7bcc34c57e307fb34bc746316";
+ sha256 = "952c8f46a11f32b9d5bfbe3e347dac2cdf0680d8b4799590dc9c3a9865b73b65";
};
buildInputs = [
diff --git a/pkgs/development/python-modules/Mako/default.nix b/pkgs/development/python-modules/Mako/default.nix
new file mode 100644
index 00000000000..f3f1eed265d
--- /dev/null
+++ b/pkgs/development/python-modules/Mako/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, markupsafe
+, nose
+, mock
+, pytest
+, isPyPy
+}:
+
+buildPythonPackage rec {
+ pname = "Mako";
+ version = "1.0.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae";
+ };
+
+ checkInputs = [ markupsafe nose mock pytest ];
+ propagatedBuildInputs = [ markupsafe ];
+
+ doCheck = !isPyPy; # https://bitbucket.org/zzzeek/mako/issue/238/2-tests-failed-on-pypy-24-25
+
+ meta = {
+ description = "Super-fast templating language";
+ homepage = http://www.makotemplates.org;
+ license = lib.licenses.mit;
+ platforms = lib.platforms.unix;
+ maintainers = with lib.maintainers; [ domenkozar ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/MechanicalSoup/default.nix b/pkgs/development/python-modules/MechanicalSoup/default.nix
index 56e2cf501ed..b5d202af50a 100644
--- a/pkgs/development/python-modules/MechanicalSoup/default.nix
+++ b/pkgs/development/python-modules/MechanicalSoup/default.nix
@@ -1,5 +1,5 @@
{ fetchPypi, buildPythonPackage, lib
-, requests, beautifulsoup4, six
+, requests, beautifulsoup4, six, lxml
, pytestrunner, requests-mock, pytestcov, pytest
}:
@@ -7,23 +7,23 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "MechanicalSoup";
- version = "0.8.0";
+ version = "0.9.0.post4";
src = fetchPypi {
inherit pname version;
- sha256 = "38a6ca35428196be94f87f8f036ee4a88b1418d1f77e5634ad92acfaa22c28da";
+ sha256 = "ce8f822afbc9bef1499be417e8d5deecd0cd32606420165700e89477955f03ab";
};
checkInputs = [ pytest pytestrunner requests-mock pytestcov ];
- propagatedBuildInputs = [ requests beautifulsoup4 six ];
+ propagatedBuildInputs = [ lxml requests beautifulsoup4 six ];
# Requires network
doCheck = false;
postPatch = ''
# Is in setup_requires but not used in setup.py...
- substituteInPlace setup.py --replace "'pytest-runner'," ""
+ substituteInPlace setup.py --replace "'pytest-runner'" ""
'';
meta = with lib; {
diff --git a/pkgs/development/python-modules/Nikola/default.nix b/pkgs/development/python-modules/Nikola/default.nix
index f281a02d49b..8f8d91c64d2 100644
--- a/pkgs/development/python-modules/Nikola/default.nix
+++ b/pkgs/development/python-modules/Nikola/default.nix
@@ -30,7 +30,7 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Nikola";
- version = "7.8.10";
+ version = "7.8.11";
# Nix contains only Python 3 supported version of doit, which is a dependency
# of Nikola. Python 2 support would require older doit 0.29.0 (which on the
@@ -47,7 +47,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "e242c3d0dd175d95a0baf5268b108081ba160b83ceafec8c9bc2ec0a24a56537";
+ sha256 = "10d95b3af84e61496ef729665eafa2235fd0fd4cc6c57644dd0f2c19a968dd0f";
};
meta = {
diff --git a/pkgs/development/python-modules/Pygments/default.nix b/pkgs/development/python-modules/Pygments/default.nix
index 11a6fc96eb2..8ab846986f0 100644
--- a/pkgs/development/python-modules/Pygments/default.nix
+++ b/pkgs/development/python-modules/Pygments/default.nix
@@ -23,6 +23,6 @@ buildPythonPackage rec {
homepage = http://pygments.org/;
description = "A generic syntax highlighter";
license = lib.licenses.bsd2;
- maintainers = with lib.maintainers; [ nckx garbas ];
+ maintainers = with lib.maintainers; [ garbas ];
};
}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/Theano/default.nix b/pkgs/development/python-modules/Theano/default.nix
index e0ff839ce1b..03dc825218e 100644
--- a/pkgs/development/python-modules/Theano/default.nix
+++ b/pkgs/development/python-modules/Theano/default.nix
@@ -35,13 +35,13 @@ let
in buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Theano";
- version = "0.9.0";
+ version = "1.0.1";
disabled = isPyPy || pythonOlder "2.6" || (isPy3k && pythonOlder "3.3");
src = fetchPypi {
inherit pname version;
- sha256 = "05xwg00da8smkvkh6ywbywqzj8dw7x840jr74wqhdy9icmqncpbl";
+ sha256 = "88d8aba1fe2b6b75eacf455d01bc7e31e838c5a0fb8c13dde2d9472495ff4662";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/absl-py/default.nix b/pkgs/development/python-modules/absl-py/default.nix
index 1c9fa3d786f..5e295bb9516 100644
--- a/pkgs/development/python-modules/absl-py/default.nix
+++ b/pkgs/development/python-modules/absl-py/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "absl-py";
- version = "0.1.5";
+ version = "0.1.9";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "94943ed0cd77077fe2d18e79b2f28d3e92f585f7d1c6edc75e640121f3c5d580";
+ sha256 = "1c787e3bc7ef8fea7a8a79cf36b0c550b4bd66e13c05d1352fbc5786488befb0";
};
propagatedBuildInputs = [ six ];
diff --git a/pkgs/development/python-modules/aenum/default.nix b/pkgs/development/python-modules/aenum/default.nix
index 3aa03aaa599..466c20e19ca 100644
--- a/pkgs/development/python-modules/aenum/default.nix
+++ b/pkgs/development/python-modules/aenum/default.nix
@@ -1,21 +1,26 @@
-{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:
+{ stdenv, fetchPypi, buildPythonPackage, python, isPy3k, glibcLocales }:
buildPythonPackage rec {
pname = "aenum";
- version = "2.0.8";
+ version = "2.0.9";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "3209fa41b8c41345442e8d9b5158a57d3e96d84c3d5ebbe8e521e1e2eff1598d";
+ sha256 = "d98bc55136d696fcf323760c3db0de489da9e41fd51283fa6f90205deb85bf6a";
};
- doCheck = !isPy3k;
- # The following tests fail (only in python3
- # test_convert (aenum.test.TestIntEnumConvert)
- # test_convert_value_lookup_priority (aenum.test.TestIntEnumConvert)
- # test_convert (aenum.test.TestIntEnumConvert)
- # test_convert_value_lookup_priority (aenum.test.TestIntEnumConvert)
+ # For Python 3, locale has to be set to en_US.UTF-8 for
+ # tests to pass
+ checkInputs = if isPy3k then [ glibcLocales ] else [];
+
+ checkPhase = ''
+ runHook preCheck
+ ${if isPy3k then "export LC_ALL=en_US.UTF-8" else ""}
+ PYTHONPATH=`pwd` ${python.interpreter} aenum/test.py
+ runHook postCheck
+ '';
+
meta = {
description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
diff --git a/pkgs/development/python-modules/afew/default.nix b/pkgs/development/python-modules/afew/default.nix
deleted file mode 100644
index ca00477d408..00000000000
--- a/pkgs/development/python-modules/afew/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub
-, isPy3k , setuptools_scm, notmuch, chardet, subprocess32 }:
-
-buildPythonPackage rec {
- pname = "afew";
- version = "1.2.0";
- name = "${pname}-${version}";
-
- src = fetchFromGitHub {
- owner = "afewmail";
- repo = "afew";
- rev = "3405475276a2433e1238be330e538ebf2a976e5e";
- sha256 = "1h974avnfc6636az130yjqwm28z3aaqm49bjhpy3razx6zvyhzlf";
- };
-
- buildInputs = [ setuptools_scm ];
- SETUPTOOLS_SCM_PRETEND_VERSION = "${version}";
-
- propagatedBuildInputs = [
- notmuch
- chardet
- ] ++ stdenv.lib.optional (!isPy3k) subprocess32;
-
- postInstall = ''
- wrapProgram $out/bin/afew \
- --prefix LD_LIBRARY_PATH : ${notmuch}/lib
- '';
-
- meta = with stdenv.lib; {
- homepage = https://github.com/afewmail/afew;
- description = "An initial tagging script for notmuch mail";
- maintainers = with maintainers; [ garbas andir flokli ];
- };
-}
diff --git a/pkgs/development/python-modules/aiohttp/cors.nix b/pkgs/development/python-modules/aiohttp/cors.nix
index ab9595ec2b9..9da239b524a 100644
--- a/pkgs/development/python-modules/aiohttp/cors.nix
+++ b/pkgs/development/python-modules/aiohttp/cors.nix
@@ -3,7 +3,7 @@
buildPythonPackage rec {
pname = "aiohttp-cors";
version = "0.6.0";
- name = "${pname}-${version}";
+
src = fetchPypi {
inherit pname version;
sha256 = "1r0mb4dw0dc1lpi54dk5vxqs06nyhvagp76lyrvk7rd94z5mjkd4";
diff --git a/pkgs/development/python-modules/aiohttp/default.nix b/pkgs/development/python-modules/aiohttp/default.nix
index 53443b3b32f..bea839f49e3 100644
--- a/pkgs/development/python-modules/aiohttp/default.nix
+++ b/pkgs/development/python-modules/aiohttp/default.nix
@@ -6,31 +6,33 @@
, multidict
, async-timeout
, yarl
+, idna-ssl
, pytest
, gunicorn
, pytest-raisesregexp
+, pytest-mock
}:
buildPythonPackage rec {
pname = "aiohttp";
- version = "2.3.3";
- name = "${pname}-${version}";
+ version = "2.3.10";
src = fetchPypi {
inherit pname version;
- sha256 = "0a2e33e90560dacb819b095b9d9611597925d75d1b93dd9490055d3826d98a82";
+ sha256 = "8adda6583ba438a4c70693374e10b60168663ffa6564c5c75d3c7a9055290964";
};
disabled = pythonOlder "3.4";
- doCheck = false; # Too many tests fail.
+ checkInputs = [ pytest gunicorn pytest-raisesregexp pytest-mock ];
- checkInputs = [ pytest gunicorn pytest-raisesregexp ];
- propagatedBuildInputs = [ async-timeout chardet multidict yarl ];
+ propagatedBuildInputs = [ async-timeout chardet multidict yarl ]
+ ++ lib.optional (pythonOlder "3.7") idna-ssl;
- meta = {
- description = "Http client/server for asyncio";
- license = with lib.licenses; [ asl20 ];
+ meta = with lib; {
+ description = "Asynchronous HTTP Client/Server for Python and asyncio";
+ license = licenses.asl20;
homepage = https://github.com/KeepSafe/aiohttp/;
+ maintainers = with maintainers; [ dotlambda ];
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/development/python-modules/alembic/default.nix b/pkgs/development/python-modules/alembic/default.nix
index 364f4cf9a3a..54e1a753597 100644
--- a/pkgs/development/python-modules/alembic/default.nix
+++ b/pkgs/development/python-modules/alembic/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "alembic";
- version = "0.9.6";
+ version = "0.9.7";
src = fetchPypi {
inherit pname version;
- sha256 = "042851ebe9efa07be6dc1395b1793b6c1d8964a39b73a0ce1649e2bcd41ea732";
+ sha256 = "46f4849c6dce69f54dd5001b3215b6a983dee6b17512efee10e237fa11f20cfa";
};
buildInputs = [ pytest pytestcov mock coverage ];
diff --git a/pkgs/development/python-modules/aniso8601/default.nix b/pkgs/development/python-modules/aniso8601/default.nix
index 6e61e84a5d5..ba60922856e 100644
--- a/pkgs/development/python-modules/aniso8601/default.nix
+++ b/pkgs/development/python-modules/aniso8601/default.nix
@@ -3,7 +3,7 @@
buildPythonPackage rec {
pname = "aniso8601";
- version = "1.3.0";
+ version = "2.0.0";
name = "${pname}-${version}";
meta = with stdenv.lib; {
@@ -16,6 +16,6 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "c3b5246f5601b6ae5671911bc4ee5b3e3fe94752e8afab5ce074d8b1232952f1";
+ sha256 = "085786415d3550e89785ffbedaa9bb37d41de0707a1268bdbba11249064b71d1";
};
}
diff --git a/pkgs/development/python-modules/ansicolors/default.nix b/pkgs/development/python-modules/ansicolors/default.nix
index 9192186cd71..a737cb06ea2 100644
--- a/pkgs/development/python-modules/ansicolors/default.nix
+++ b/pkgs/development/python-modules/ansicolors/default.nix
@@ -1,15 +1,21 @@
-{ stdenv, buildPythonPackage, fetchPypi }:
+{ stdenv, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "ansicolors";
- version = "1.0.2";
- name = "${pname}-${version}";
+ version = "1.1.8";
src = fetchPypi {
inherit pname version;
- sha256 = "02lmh2fbqcwr98cq13l9ql0fvyad1dcb3ap3c5xq9qwjp45m6r3n";
+ extension = "zip";
+ sha256 = "99f94f5e3348a0bcd43c82e5fc4414013ccc19d70bd939ad71e0133ce9c372e0";
};
+ checkInputs = [ pytest ];
+
+ checkPhase = ''
+ py.test
+ '';
+
meta = with stdenv.lib; {
homepage = https://github.com/verigak/colors/;
description = "ANSI colors for Python";
diff --git a/pkgs/development/python-modules/argon2_cffi/default.nix b/pkgs/development/python-modules/argon2_cffi/default.nix
index 80985f868c7..f46efd9f496 100644
--- a/pkgs/development/python-modules/argon2_cffi/default.nix
+++ b/pkgs/development/python-modules/argon2_cffi/default.nix
@@ -10,12 +10,12 @@
buildPythonPackage rec {
pname = "argon2_cffi";
- version = "16.3.0";
+ version = "18.1.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "1ap3il3j1pjyprrhpfyhc21izpmhzhfb5s69vlzc65zvd1nj99cr";
+ sha256 = "7e4b75611b73f53012117ad21cdde7a17b32d1e99ff6799f22d827eb83a2a59b";
};
propagatedBuildInputs = [ cffi six ];
diff --git a/pkgs/development/python-modules/arrow/default.nix b/pkgs/development/python-modules/arrow/default.nix
index a85987a95b1..65f4ae79f4b 100644
--- a/pkgs/development/python-modules/arrow/default.nix
+++ b/pkgs/development/python-modules/arrow/default.nix
@@ -1,23 +1,26 @@
{ stdenv, buildPythonPackage, fetchPypi
-, nose, chai, simplejson
+, nose, chai, simplejson, backports_functools_lru_cache
, dateutil }:
buildPythonPackage rec {
- name = "${pname}-${version}";
pname = "arrow";
- version = "0.10.0";
+ version = "0.12.1";
src = fetchPypi {
inherit pname version;
- sha256 = "08n7q2l69hlainds1byd4lxhwrq7zsw7s640zkqc3bs5jkq0cnc0";
+ sha256 = "a558d3b7b6ce7ffc74206a86c147052de23d3d4ef0e17c210dd478c53575c4cd";
};
checkPhase = ''
nosetests --cover-package=arrow
'';
- buildInputs = [ nose chai simplejson ];
- propagatedBuildInputs = [ dateutil ];
+ checkInputs = [ nose chai simplejson ];
+ propagatedBuildInputs = [ dateutil backports_functools_lru_cache ];
+
+ postPatch = ''
+ substituteInPlace setup.py --replace "==1.2.1" ""
+ '';
meta = with stdenv.lib; {
description = "Python library for date manipulation";
diff --git a/pkgs/development/python-modules/asana/default.nix b/pkgs/development/python-modules/asana/default.nix
index 41a111c3167..7990ece749b 100644
--- a/pkgs/development/python-modules/asana/default.nix
+++ b/pkgs/development/python-modules/asana/default.nix
@@ -4,7 +4,7 @@
buildPythonPackage rec {
pname = "asana";
- version = "0.6.5";
+ version = "0.6.7";
name = "${pname}-${version}";
meta = {
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "eab8d24c2a4670b541b75da2f4bf5b995fe71559c1338da53ce9039f7b19c9a0";
+ sha256 = "d576601116764050c4cf63b417f1c24700b76cf6686f0e51e6b0b77d450e7973";
};
checkInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/asgiref/default.nix b/pkgs/development/python-modules/asgiref/default.nix
index 1b5112fb335..d88f44149bf 100644
--- a/pkgs/development/python-modules/asgiref/default.nix
+++ b/pkgs/development/python-modules/asgiref/default.nix
@@ -1,12 +1,12 @@
{ stdenv, buildPythonPackage, fetchurl, six }:
buildPythonPackage rec {
- version = "1.1.2";
+ version = "2.1.0";
pname = "asgiref";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/a/asgiref/${name}.tar.gz";
- sha256 = "8b46c3d6e2ad354d9da3cfb9873f9bd46fe1b768fbc11065275ba5430a46700c";
+ sha256 = "2bfd70fcc51df4036768b91d7b13524090dc8f366d79fa44ba2b0aeb47306344";
};
propagatedBuildInputs = [ six ];
diff --git a/pkgs/development/python-modules/asn1crypto/default.nix b/pkgs/development/python-modules/asn1crypto/default.nix
index eedaac50fac..5f512fcd6f8 100644
--- a/pkgs/development/python-modules/asn1crypto/default.nix
+++ b/pkgs/development/python-modules/asn1crypto/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "asn1crypto";
- version = "0.23.0";
+ version = "0.24.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0874981329cfebb366d6584c3d16e913f2a0eb026c9463efcc4aaf42a9d94d70";
+ sha256 = "9d5c20441baf0cb60a4ac34cc447c6c189024b6b4c6cd7877034f4965c464e49";
};
# No tests included
diff --git a/pkgs/development/python-modules/astor/default.nix b/pkgs/development/python-modules/astor/default.nix
index 965bf37d520..9fb92b860a1 100644
--- a/pkgs/development/python-modules/astor/default.nix
+++ b/pkgs/development/python-modules/astor/default.nix
@@ -1,15 +1,21 @@
-{ stdenv, buildPythonPackage, fetchPypi }:
+{ stdenv, buildPythonPackage, fetchPypi, pytest }:
buildPythonPackage rec {
pname = "astor";
- version = "0.5";
+ version = "0.6.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "1fdafq5hkis1fxqlmhw0sn44zp2ar46nxhbc22cvwg7hsd8z5gsa";
+ sha256 = "ff6d2e2962d834acb125cc4dcc80c54a8c17c253f4cc9d9c43b5102a560bb75d";
};
+ # disable tests broken with python3.6: https://github.com/berkerpeksag/astor/issues/89
+ checkInputs = [ pytest ];
+ checkPhase = ''
+ py.test -k 'not check_expressions and not check_astunparse and not test_convert_stdlib and not test_codegen_as_submodule and not test_codegen_from_root'
+ '';
+
meta = with stdenv.lib; {
description = "Library for reading, writing and rewriting python AST";
homepage = https://github.com/berkerpeksag/astor;
diff --git a/pkgs/development/python-modules/astral/default.nix b/pkgs/development/python-modules/astral/default.nix
new file mode 100644
index 00000000000..76dba87f964
--- /dev/null
+++ b/pkgs/development/python-modules/astral/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchPypi, pytz, pytest }:
+
+buildPythonPackage rec {
+ pname = "astral";
+ version = "1.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ extension = "zip";
+ sha256 = "1zm1ypc6w279gh7lbgsfbzfxk2x4gihlq3rfh59hj70hmhjwiwp7";
+ };
+
+ propagatedBuildInputs = [ pytz ];
+
+ checkInputs = [ pytest ];
+ checkPhase = ''
+ py.test -k "not test_GoogleLocator"
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Calculations for the position of the sun and the moon";
+ homepage = https://github.com/sffjunkie/astral/;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ flokli ];
+ };
+}
diff --git a/pkgs/development/python-modules/astroid/default.nix b/pkgs/development/python-modules/astroid/default.nix
index 86a0daa0456..862157f686a 100644
--- a/pkgs/development/python-modules/astroid/default.nix
+++ b/pkgs/development/python-modules/astroid/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "astroid";
- version = "1.5.3";
+ version = "1.6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "492c2a2044adbf6a84a671b7522e9295ad2f6a7c781b899014308db25312dd35";
+ sha256 = "71dadba2110008e2c03f9fde662ddd2053db3c0489d0e03c94e828a0399edd4f";
};
propagatedBuildInputs = [ logilab_common six lazy-object-proxy wrapt ]
diff --git a/pkgs/development/python-modules/astropy/default.nix b/pkgs/development/python-modules/astropy/default.nix
index 12f00be0cb7..514762b7a37 100644
--- a/pkgs/development/python-modules/astropy/default.nix
+++ b/pkgs/development/python-modules/astropy/default.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "astropy";
- version = "2.0.2";
+ version = "2.0.3";
name = "${pname}-${version}";
doCheck = false; #Some tests are failing. More importantly setup.py hangs on completion. Needs fixing with a proper shellhook.
src = fetchPypi {
inherit pname version;
- sha256 = "4544a422b1173d79b2d65ba74c627f04a5fd8530d97fb604752d657d754e103d";
+ sha256 = "fdfc0248f6250798ed6d1327be609cb901db89ae01fc768cfbc9e263bdf56f4f";
};
propagatedBuildInputs = [ pytest numpy ]; # yes it really has pytest in install_requires
diff --git a/pkgs/development/python-modules/attrs/default.nix b/pkgs/development/python-modules/attrs/default.nix
index e58bf3846dc..8ef2b5989f4 100644
--- a/pkgs/development/python-modules/attrs/default.nix
+++ b/pkgs/development/python-modules/attrs/default.nix
@@ -2,17 +2,16 @@
, pympler, coverage, six, clang }:
buildPythonPackage rec {
- name = "${pname}-${version}";
pname = "attrs";
- version = "17.2.0";
+ version = "17.4.0";
src = fetchPypi {
inherit pname version;
- sha256 = "04gx08ikpk26wnq22f7l42gapcvk8iz1512r927k6sadz6cinkax";
+ sha256 = "1c7960ccfd6a005cd9f7ba884e6316b5e430a3f1a6c37c5f87d8b43f83b54ec9";
};
# macOS needs clang for testing
- buildInputs = [
+ checkInputs = [
pytest hypothesis zope_interface pympler coverage six
] ++ lib.optionals (stdenv.isDarwin) [ clang ];
@@ -20,6 +19,9 @@ buildPythonPackage rec {
py.test
'';
+ # To prevent infinite recursion with pytest
+ doCheck = false;
+
meta = with lib; {
description = "Python attributes without boilerplate";
homepage = https://github.com/hynek/attrs;
diff --git a/pkgs/development/python-modules/aws-xray-sdk/default.nix b/pkgs/development/python-modules/aws-xray-sdk/default.nix
new file mode 100644
index 00000000000..dae88b34900
--- /dev/null
+++ b/pkgs/development/python-modules/aws-xray-sdk/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, jsonpickle
+, wrapt
+, requests
+}:
+
+buildPythonPackage rec {
+ pname = "aws-xray-sdk";
+ version = "0.95";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "9e7ba8dd08fd2939376c21423376206bff01d0deaea7d7721c6b35921fed1943";
+ };
+
+ propagatedBuildInputs = [
+ jsonpickle wrapt requests
+ ];
+
+ meta = {
+ description = "AWS X-Ray SDK for the Python programming language";
+ license = lib.licenses.asl20;
+ homepage = https://github.com/aws/aws-xray-sdk-python;
+ };
+
+ doCheck = false;
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/backports_abc/default.nix b/pkgs/development/python-modules/backports_abc/default.nix
new file mode 100644
index 00000000000..ab34d376de0
--- /dev/null
+++ b/pkgs/development/python-modules/backports_abc/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "backports_abc";
+ version = "0.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "033be54514a03e255df75c5aee8f9e672f663f93abb723444caec8fe43437bde";
+ };
+
+ checkPhase = ''
+ ${python.interpreter} -m unittest discover
+ '';
+
+ meta = {
+ homepage = https://github.com/cython/backports_abc;
+ license = lib.licenses.psfl;
+ description = "A backport of recent additions to the 'collections.abc' module";
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/backports_functools_lru_cache/default.nix b/pkgs/development/python-modules/backports_functools_lru_cache/default.nix
new file mode 100644
index 00000000000..2442e132f1b
--- /dev/null
+++ b/pkgs/development/python-modules/backports_functools_lru_cache/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, setuptools_scm
+}:
+
+buildPythonPackage rec {
+ pname = "backports.functools_lru_cache";
+ version = "1.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "31f235852f88edc1558d428d890663c49eb4514ffec9f3650e7f3c9e4a12e36f";
+ };
+
+ buildInputs = [ setuptools_scm ];
+ doCheck = false; # No proper test
+
+ meta = {
+ description = "Backport of functools.lru_cache";
+ homepage = https://github.com/jaraco/backports.functools_lru_cache;
+ license = lib.licenses.mit;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/backports_lzma/default.nix b/pkgs/development/python-modules/backports_lzma/default.nix
new file mode 100644
index 00000000000..6f7a45a4fe8
--- /dev/null
+++ b/pkgs/development/python-modules/backports_lzma/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, isPy3k
+, lzma
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "backports.lzma";
+ version = "0.0.9";
+
+ disabled = isPy3k;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "9ba5d94214a79900ee297a594b8e154cd8e4a54d26eb06243c0e2f3ad5286539";
+ };
+
+ buildInputs = [ lzma ];
+
+ # Needs the compiled module in $out
+ checkPhase = ''
+ PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH ${python.interpreter} -m unittest discover -s test
+ '';
+
+ meta = {
+ description = "Backport of Python 3.3's 'lzma' module for XZ/LZMA compressed files";
+ homepage = https://github.com/peterjc/backports.lzma;
+ license = lib.licenses.bsd3;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/biopython/default.nix b/pkgs/development/python-modules/biopython/default.nix
new file mode 100644
index 00000000000..ea09a003c66
--- /dev/null
+++ b/pkgs/development/python-modules/biopython/default.nix
@@ -0,0 +1,32 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, numpy
+}:
+
+buildPythonPackage rec {
+ pname = "biopython";
+ version = "1.70";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "4a7c5298f03d1a45523f32bae1fffcff323ea9dce007fb1241af092f5ab2e45b";
+ };
+
+ propagatedBuildInputs = [ numpy ];
+ # Checks try to write to $HOME, which does not work with nix
+ doCheck = false;
+ meta = {
+ description = "Python library for bioinformatics";
+ longDescription = ''
+ Biopython is a set of freely available tools for biological computation
+ written in Python by an international team of developers. It is a
+ distributed collaborative effort to develop Python libraries and
+ applications which address the needs of current and future work in
+ bioinformatics.
+ '';
+ homepage = http://biopython.org/wiki/Documentation;
+ maintainers = with lib.maintainers; [ luispedro ];
+ license = lib.licenses.bsd3;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/blaze/default.nix b/pkgs/development/python-modules/blaze/default.nix
index 017b85cacc7..74e327fd342 100644
--- a/pkgs/development/python-modules/blaze/default.nix
+++ b/pkgs/development/python-modules/blaze/default.nix
@@ -25,12 +25,11 @@
buildPythonPackage rec {
pname = "blaze";
- version = "0.11.0";
- name = "${pname}-${version}";
+ version = "0.11.3";
src = fetchurl {
url = "https://github.com/blaze/blaze/archive/${version}.tar.gz";
- sha256 = "07zrrxkmdqk84xvdmp29859zcfzlpx5pz6g62l28nqp6n6a7yq9a";
+ sha256 = "075gqc9d7g284z4nfwv5zbq99ln22w25l4lcndjg3v10kmsjadww";
};
checkInputs = [ pytest ];
@@ -56,13 +55,8 @@ buildPythonPackage rec {
toolz
];
- # Failing test
- # ERROR collecting blaze/tests/test_interactive.py
- # E networkx.exception.NetworkXNoPath: node not
- # reachable from
- doCheck = false;
-
checkPhase = ''
+ rm pytest.ini # Not interested in coverage
py.test blaze/tests
'';
diff --git a/pkgs/development/python-modules/bleach/default.nix b/pkgs/development/python-modules/bleach/default.nix
new file mode 100644
index 00000000000..e4ccb0c92d6
--- /dev/null
+++ b/pkgs/development/python-modules/bleach/default.nix
@@ -0,0 +1,44 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytest
+, pytestrunner
+, six
+, html5lib
+}:
+
+buildPythonPackage rec {
+ pname = "bleach";
+ version = "2.1.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "38fc8cbebea4e787d8db55d6f324820c7f74362b70db9142c1ac7920452d1a19";
+ };
+
+ checkInputs = [ pytest pytestrunner ];
+ propagatedBuildInputs = [ six html5lib ];
+
+ postPatch = ''
+ substituteInPlace setup.py --replace ",<3dev" ""
+ '';
+
+ meta = {
+ description = "An easy, HTML5, whitelisting HTML sanitizer";
+ longDescription = ''
+ Bleach is an HTML sanitizing library that escapes or strips markup and
+ attributes based on a white list. Bleach can also linkify text safely,
+ applying filters that Django's urlize filter cannot, and optionally
+ setting rel attributes, even on links already in the text.
+
+ Bleach is intended for sanitizing text from untrusted sources. If you
+ find yourself jumping through hoops to allow your site administrators
+ to do lots of things, you're probably outside the use cases. Either
+ trust those users, or don't.
+ '';
+ homepage = https://github.com/mozilla/bleach;
+ downloadPage = https://github.com/mozilla/bleach/releases;
+ license = lib.licenses.asl20;
+ maintainers = with lib.maintainers; [ prikhi ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/bokeh/default.nix b/pkgs/development/python-modules/bokeh/default.nix
index 244ee43d0aa..e3c77fa65cf 100644
--- a/pkgs/development/python-modules/bokeh/default.nix
+++ b/pkgs/development/python-modules/bokeh/default.nix
@@ -34,11 +34,11 @@
buildPythonPackage rec {
pname = "bokeh";
name = "${pname}${version}";
- version = "0.12.10";
+ version = "0.12.13";
src = fetchPypi {
inherit pname version;
- sha256 = "6465fae82e94223f16584645b38d34a73d95712870f29c0244649c2cbf2c8393";
+ sha256 = "6e28cbfd88de0c459435278b75f9982591ec0aaa3d37a195052645e1c62e89e3";
};
disabled = isPyPy;
diff --git a/pkgs/development/python-modules/bootstrapped-pip/default.nix b/pkgs/development/python-modules/bootstrapped-pip/default.nix
index ef12e39f23b..88209ad3fd1 100644
--- a/pkgs/development/python-modules/bootstrapped-pip/default.nix
+++ b/pkgs/development/python-modules/bootstrapped-pip/default.nix
@@ -9,9 +9,9 @@ let
};
setuptools_source = fetchPypi {
pname = "setuptools";
- version = "38.2.3";
+ version = "38.4.0";
format = "wheel";
- sha256 = "0c4j3jiiwc0h1bdv4xklinp90spgvgiv5fsxp119hif9934nfxfs";
+ sha256 = "155c2ec9fdcc00c3973d966b416e1cf3a1e7ce75f4c09fb760b23f94b935926e";
};
# TODO: Shouldn't be necessary anymore for pip > 9.0.1!
diff --git a/pkgs/development/python-modules/boto3/default.nix b/pkgs/development/python-modules/boto3/default.nix
new file mode 100644
index 00000000000..eaab0031205
--- /dev/null
+++ b/pkgs/development/python-modules/boto3/default.nix
@@ -0,0 +1,50 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, botocore
+, jmespath
+, s3transfer
+, futures
+, docutils
+, nose
+, mock
+, isPy3k
+}:
+
+buildPythonPackage rec {
+ pname = "boto3";
+ version = "1.4.8";
+
+ src = fetchFromGitHub {
+ owner = "boto";
+ repo = "boto3";
+ rev = version;
+ sha256 = "11ysd7a9l5y98q7b7az56phsj2m7w90abf4jabwrknp2c43sq9bi";
+ };
+
+ propagatedBuildInputs = [ botocore jmespath s3transfer ] ++ lib.optionals (!isPy3k) [ futures ];
+ checkInputs = [ docutils nose mock ];
+
+ checkPhase = ''
+ runHook preCheck
+ # This method is not in mock. It might have appeared in some versions.
+ sed -i 's/action.assert_called_once()/self.assertEqual(action.call_count, 1)/' \
+ tests/unit/resources/test_factory.py
+ nosetests -d tests/unit --verbose
+ runHook postCheck
+ '';
+
+ # Network access
+ doCheck = false;
+
+ meta = {
+ homepage = https://github.com/boto/boto3;
+ license = lib.licenses.asl20;
+ description = "AWS SDK for Python";
+ longDescription = ''
+ Boto3 is the Amazon Web Services (AWS) Software Development Kit (SDK) for
+ Python, which allows Python developers to write software that makes use of
+ services like Amazon S3 and Amazon EC2.
+ '';
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/botocore/default.nix b/pkgs/development/python-modules/botocore/default.nix
index fe3fe06f4e7..8f9c0fd74e6 100644
--- a/pkgs/development/python-modules/botocore/default.nix
+++ b/pkgs/development/python-modules/botocore/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "botocore";
- version = "1.8.10";
+ version = "1.8.33";
src = fetchPypi {
inherit pname version;
- sha256 = "16dznd0mxxs8imsl228vx5s9bz9v7ggajs496jy21n5a19cadkch";
+ sha256 = "fa29ea54f26b1193682332d3b4cdde7aa79b4eaccb23f70e88672509c24546f4";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/bpython/default.nix b/pkgs/development/python-modules/bpython/default.nix
index 515494b5f93..f9ab331a3f6 100644
--- a/pkgs/development/python-modules/bpython/default.nix
+++ b/pkgs/development/python-modules/bpython/default.nix
@@ -1,14 +1,12 @@
-{ stdenv, buildPythonPackage, fetchurl, pygments, greenlet, curtsies, urwid, requests, mock }:
+{ stdenv, buildPythonPackage, fetchPypi, pygments, greenlet, curtsies, urwid, requests, mock }:
buildPythonPackage rec {
pname = "bpython";
version = "0.17";
- name = "${pname}-${version}";
- # 0.17 is still missing on PyPI, https://github.com/bpython/bpython/issues/706
- src = fetchurl {
- url = "https://bpython-interpreter.org/releases/${pname}-${version}.tar.gz";
- sha256 = "13fyyx06645ikvmj9zmkixr12kzk1c3a3f9s9i2rvaczjycn82lz";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1mbah208jhd7bsfaa17fwpi55f7fvif0ghjwgrjmpmx8w1vqab9l";
};
propagatedBuildInputs = [ curtsies greenlet pygments requests urwid ];
diff --git a/pkgs/development/python-modules/brotlipy/default.nix b/pkgs/development/python-modules/brotlipy/default.nix
new file mode 100644
index 00000000000..1dd2a070480
--- /dev/null
+++ b/pkgs/development/python-modules/brotlipy/default.nix
@@ -0,0 +1,36 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, cffi
+, enum34
+, construct
+, pytest
+, hypothesis
+}:
+
+buildPythonPackage rec {
+ pname = "brotlipy";
+ version = "0.7.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "36def0b859beaf21910157b4c33eb3b06d8ce459c942102f16988cca6ea164df";
+ };
+
+ propagatedBuildInputs = [ cffi enum34 construct ];
+
+ checkInputs = [ pytest hypothesis ];
+
+ checkPhase = ''
+ py.test
+ '';
+
+ # Missing test files
+ doCheck = false;
+
+ meta = {
+ description = "Python bindings for the reference Brotli encoder/decoder";
+ homepage = "https://github.com/python-hyper/brotlipy/";
+ license = lib.licenses.mit;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/cached-property/default.nix b/pkgs/development/python-modules/cached-property/default.nix
new file mode 100644
index 00000000000..6ab5015a1e7
--- /dev/null
+++ b/pkgs/development/python-modules/cached-property/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, freezegun
+}:
+
+buildPythonPackage rec {
+ pname = "cached-property";
+ version = "1.3.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "6562f0be134957547421dda11640e8cadfa7c23238fc4e0821ab69efdb1095f3";
+ };
+
+ checkInputs = [ freezegun ];
+
+ meta = {
+ description = "A decorator for caching properties in classes";
+ homepage = https://github.com/pydanny/cached-property;
+ license = lib.licenses.bsd3;
+ platforms = lib.platforms.unix;
+ maintainers = with lib.maintainers; [ ericsagnes ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/certifi/default.nix b/pkgs/development/python-modules/certifi/default.nix
index 79eea057454..d36f0f308d3 100644
--- a/pkgs/development/python-modules/certifi/default.nix
+++ b/pkgs/development/python-modules/certifi/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "certifi";
- version = "2017.7.27.1";
+ version = "2018.1.18";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "40523d2efb60523e113b44602298f0960e900388cf3bb6043f645cf57ea9e3f5";
+ sha256 = "edbc3f203427eef571f79a7692bb160a2b0f7ccaa31953e99bd17e307cf63f7d";
};
meta = {
diff --git a/pkgs/development/python-modules/cffi/clang.patch b/pkgs/development/python-modules/cffi/clang.patch
deleted file mode 100644
index 27674edb58b..00000000000
--- a/pkgs/development/python-modules/cffi/clang.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/testing/cffi1/test_recompiler.py b/testing/cffi1/test_recompiler.py
-index a3277b0..0d6e2c3 100644
---- a/testing/cffi1/test_recompiler.py
-+++ b/testing/cffi1/test_recompiler.py
-@@ -2270,7 +2270,7 @@ def test_char16_char32_type(no_cpp=False):
- char32_t foo_4bytes(char32_t);
- """)
- lib = verify(ffi, "test_char16_char32_type" + no_cpp * "_nocpp", """
-- #if !defined(__cplusplus) || __cplusplus < 201103L
-+ #if !defined(__cplusplus)
- typedef uint_least16_t char16_t;
- typedef uint_least32_t char32_t;
- #endif
diff --git a/pkgs/development/python-modules/cffi/default.nix b/pkgs/development/python-modules/cffi/default.nix
index f8e313d660e..28d4a36aca7 100644
--- a/pkgs/development/python-modules/cffi/default.nix
+++ b/pkgs/development/python-modules/cffi/default.nix
@@ -2,16 +2,14 @@
if isPyPy then null else buildPythonPackage rec {
pname = "cffi";
- version = "1.11.2";
+ version = "1.11.4";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "ab87dd91c0c4073758d07334c1e5f712ce8fe48f007b86f8238773963ee700a6";
+ sha256 = "df9083a992b17a28cd4251a3f5c879e0198bb26c9e808c4647e0a18739f1d11d";
};
- patches = stdenv.lib.optional (isPy27 && stdenv.cc.isClang) ./clang.patch;
-
outputs = [ "out" "dev" ];
propagatedBuildInputs = [ libffi pycparser ];
@@ -39,7 +37,7 @@ if isPyPy then null else buildPythonPackage rec {
'';
meta = with stdenv.lib; {
- maintainers = with maintainers; [ domenkozar ];
+ maintainers = with maintainers; [ domenkozar lnl7 ];
homepage = https://cffi.readthedocs.org/;
license = with licenses; [ mit ];
description = "Foreign Function Interface for Python calling C code";
diff --git a/pkgs/development/python-modules/chainer/default.nix b/pkgs/development/python-modules/chainer/default.nix
new file mode 100644
index 00000000000..06a455176a2
--- /dev/null
+++ b/pkgs/development/python-modules/chainer/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, lib, python
+, buildPythonPackage, fetchPypi, isPy3k
+, filelock, protobuf, numpy, pytest, mock
+, cupy, cudaSupport ? false
+}:
+
+buildPythonPackage rec {
+ pname = "chainer";
+ version = "3.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0mbc8kwk7pvg03bf0j57a48gr6rsdg4lzmyj0dak8y2l4lmyskpw";
+ };
+
+ checkInputs = [
+ pytest
+ mock
+ ];
+
+ propagatedBuildInputs = [
+ filelock
+ protobuf
+ numpy
+ ] ++ lib.optionals cudaSupport [ cupy ];
+
+ # In python3, test was failed...
+ doCheck = !isPy3k;
+
+ meta = with stdenv.lib; {
+ description = "A flexible framework of neural networks for deep learning";
+ homepage = https://chainer.org/;
+ license = licenses.mit;
+ maintainers = with maintainers; [ hyphon81 ];
+ };
+}
diff --git a/pkgs/development/python-modules/click-threading/default.nix b/pkgs/development/python-modules/click-threading/default.nix
new file mode 100644
index 00000000000..5be41007c6a
--- /dev/null
+++ b/pkgs/development/python-modules/click-threading/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytest
+, click
+, isPy3k
+, futures
+}:
+
+buildPythonPackage rec {
+ pname = "click-threading";
+ version = "0.4.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "400b0bb63d9096b6bf2806efaf742a1cc8b6c88e0484f0afe7d7a7f0e9870609";
+ };
+
+ checkInputs = [ pytest ];
+ propagatedBuildInputs = [ click ] ++ lib.optional (!isPy3k) futures;
+
+ checkPhase = ''
+ py.test
+ '';
+
+ # Tests are broken on 3.x
+ doCheck = !isPy3k;
+
+ meta = {
+ homepage = https://github.com/click-contrib/click-threading/;
+ description = "Multithreaded Click apps made easy";
+ license = lib.licenses.mit;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/colorlog/default.nix b/pkgs/development/python-modules/colorlog/default.nix
new file mode 100644
index 00000000000..e737b884897
--- /dev/null
+++ b/pkgs/development/python-modules/colorlog/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchPypi, pytest }:
+
+buildPythonPackage rec {
+ pname = "colorlog";
+ version = "3.1.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0i21sd6pggr2gqza41vyq2rqyb552wf5iwl4bc16i7kqislbd53z";
+ };
+
+ checkInputs = [ pytest ];
+
+ checkPhase = ''
+ py.test -p no:logging
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Log formatting with colors";
+ homepage = https://github.com/borntyping/python-colorlog;
+ license = licenses.mit;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/conda/default.nix b/pkgs/development/python-modules/conda/default.nix
new file mode 100644
index 00000000000..a240ea21e3e
--- /dev/null
+++ b/pkgs/development/python-modules/conda/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pycosat
+, requests
+, ruamel_yaml
+, isPy3k
+, enum34
+}:
+
+# Note: this installs conda as a library. The application cannot be used.
+# This is likely therefore NOT what you're looking for.
+
+buildPythonPackage rec {
+ pname = "conda";
+ version = "4.3.16";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "a91ef821343dea3ba9670f3d10b36c1ace4f4c36d70c175d8fc8886e94285953";
+ };
+
+ propagatedBuildInputs = [ pycosat requests ruamel_yaml ] ++ lib.optional (!isPy3k) enum34;
+
+ # No tests
+ doCheck = false;
+
+ meta = {
+ description = "OS-agnostic, system-level binary package manager";
+ homepage = https://github.com/conda/conda;
+ license = lib.licenses.bsd3;
+ };
+
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/crayons/default.nix b/pkgs/development/python-modules/crayons/default.nix
new file mode 100644
index 00000000000..16b3998eb85
--- /dev/null
+++ b/pkgs/development/python-modules/crayons/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchPypi, buildPythonPackage, colorama }:
+
+buildPythonPackage rec {
+ pname = "crayons";
+ version = "0.1.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "17c0v0dkk8sn8kyyy2w7myxq9981glrbczh6h8sdcr750lb6j5sy";
+ };
+
+ propagatedBuildInputs = [ colorama ];
+
+ meta = with stdenv.lib; {
+ description = "TextUI colors for Python";
+ homepage = https://github.com/kennethreitz/crayons;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/credstash/default.nix b/pkgs/development/python-modules/credstash/default.nix
index 810a6a7bd8e..6a9e1240b86 100644
--- a/pkgs/development/python-modules/credstash/default.nix
+++ b/pkgs/development/python-modules/credstash/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "credstash";
- version = "1.13.4";
+ version = "1.14.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "676cc03a6143dec260c78aeef09d08a64faf27c411f8a94f6d9338e985879f81";
+ sha256 = "718b337f7a6fa001e014386071f05c59900525d0507009126d2fe8d75fe0761d";
};
propagatedBuildInputs = [ cryptography boto3 pyyaml docutils ];
diff --git a/pkgs/development/python-modules/csscompressor/default.nix b/pkgs/development/python-modules/csscompressor/default.nix
index a9aad8d40e5..8d0e7a58e76 100644
--- a/pkgs/development/python-modules/csscompressor/default.nix
+++ b/pkgs/development/python-modules/csscompressor/default.nix
@@ -1,12 +1,12 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "csscompressor";
- version = "0.9.4";
+ version = "0.9.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0e12f125b88379d7b680636d94a3c8fa14bed1de2358f7f9a9e6749e222cff3b";
+ sha256 = "afa22badbcf3120a4f392e4d22f9fff485c044a1feda4a950ecc5eba9dd31a05";
};
doCheck = false; # No tests
diff --git a/pkgs/development/python-modules/cupy/default.nix b/pkgs/development/python-modules/cupy/default.nix
new file mode 100644
index 00000000000..6ac91c0aa25
--- /dev/null
+++ b/pkgs/development/python-modules/cupy/default.nix
@@ -0,0 +1,46 @@
+{ stdenv, python, buildPythonPackage
+, fetchPypi, isPy3k, linuxPackages, gcc5
+, fastrlock, numpy, six, wheel, pytest, mock
+, cudatoolkit, cudnn, nccl
+}:
+
+buildPythonPackage rec {
+ pname = "cupy";
+ version = "2.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0si0ri8azxvxh3lpm4l4g60jf4nwzibi53yldbdbzb1svlqq060r";
+ };
+
+ checkInputs = [
+ pytest
+ mock
+ ];
+
+ nativeBuildInputs = [
+ gcc5
+ ];
+
+ propagatedBuildInputs = [
+ cudatoolkit
+ cudnn
+ linuxPackages.nvidia_x11
+ nccl
+ fastrlock
+ numpy
+ six
+ wheel
+ ];
+
+ # In python3, test was failed...
+ doCheck = !isPy3k;
+
+ meta = with stdenv.lib; {
+ description = "A NumPy-compatible matrix library accelerated by CUDA";
+ homepage = https://cupy.chainer.org/;
+ license = licenses.mit;
+ platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ hyphon81 ];
+ };
+}
diff --git a/pkgs/development/python-modules/curtsies/default.nix b/pkgs/development/python-modules/curtsies/default.nix
index a1e5f235235..d9505b384af 100644
--- a/pkgs/development/python-modules/curtsies/default.nix
+++ b/pkgs/development/python-modules/curtsies/default.nix
@@ -3,8 +3,6 @@
buildPythonPackage rec {
pname = "curtsies";
version = "0.2.11";
- name = "${pname}-${version}";
-
src = fetchPypi {
inherit pname version;
sha256 = "1vljmw3sy6lrqahhpyg4gk13mzcx3mwhvg8s41698ms3cpgkjipc";
diff --git a/pkgs/development/python-modules/cx_freeze/default.nix b/pkgs/development/python-modules/cx_freeze/default.nix
index 3d937debe58..69a5e8c11d4 100644
--- a/pkgs/development/python-modules/cx_freeze/default.nix
+++ b/pkgs/development/python-modules/cx_freeze/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "cx_Freeze";
- version = "5.0.2";
+ version = "5.1.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0zbx9j5z5l06bvwvlqvvn7h9dm7zjcjgxm7agbb625nymkq6cd15";
+ sha256 = "2eadddde670f5c5f6cf88638a0ac4e5d5fe181292a31063275fa56c7bf22426b";
};
propagatedBuildInputs = [ ncurses ];
diff --git a/pkgs/development/python-modules/cytoolz/default.nix b/pkgs/development/python-modules/cytoolz/default.nix
index dcb4e9474c3..9c5a2b2110c 100644
--- a/pkgs/development/python-modules/cytoolz/default.nix
+++ b/pkgs/development/python-modules/cytoolz/default.nix
@@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "cytoolz";
- version = "0.8.2";
+ version = "0.9.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "476a2ad176de5eaef80499b7b43d4f72ba6d23df33d349088dae315e9b31c552";
+ sha256 = "5ebb55855a8bb7800afa58e52408763935527e0305f35600c71b43c86013dec2";
};
# Extension types
@@ -23,6 +23,12 @@ buildPythonPackage rec {
checkInputs = [ nose ];
propagatedBuildInputs = [ toolz ];
+ # File as accidentally included in release
+ # See https://github.com/pytoolz/cytoolz/issues/116#issuecomment-355770073
+ postPatch = ''
+ rm cytoolz/tests/test_curried_doctests.py
+ '';
+
# Disable failing test https://github.com/pytoolz/cytoolz/issues/97
checkPhase = ''
NOSE_EXCLUDE=test_curried_exceptions nosetests -v $out/${python.sitePackages}
diff --git a/pkgs/development/python-modules/daphne/default.nix b/pkgs/development/python-modules/daphne/default.nix
index c90fb61ce03..f819a234146 100644
--- a/pkgs/development/python-modules/daphne/default.nix
+++ b/pkgs/development/python-modules/daphne/default.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
pname = "daphne";
name = "${pname}-${version}";
- version = "1.3.0";
+ version = "1.4.2";
src = fetchPypi {
inherit pname version;
- sha256 = "1xmmjp21m1w88ljsgnkf6cbzw5nxamh9cfmfgzxffpn4cdmvn96i";
+ sha256 = "302725f223853b05688f28c361e050f8db9568b1ce27340c76272c26b49e6d72";
};
buildInputs = [ hypothesis ];
diff --git a/pkgs/development/python-modules/dask/default.nix b/pkgs/development/python-modules/dask/default.nix
index 70647b6377f..79e423d4847 100644
--- a/pkgs/development/python-modules/dask/default.nix
+++ b/pkgs/development/python-modules/dask/default.nix
@@ -12,12 +12,12 @@
buildPythonPackage rec {
pname = "dask";
- version = "0.15.4";
+ version = "0.16.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "cb93b8260f5f854ccf26b52bdc700600a08e6b7527085c7b7d63c04238bab9ea";
+ sha256 = "07a0609ce053c8c2675037e6d5242899f90ecfb5262e1d0b2d7264fe8814099c";
};
checkInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/datashape/default.nix b/pkgs/development/python-modules/datashape/default.nix
index 81ead843169..9177e9f0ff4 100644
--- a/pkgs/development/python-modules/datashape/default.nix
+++ b/pkgs/development/python-modules/datashape/default.nix
@@ -1,6 +1,6 @@
{ lib
, buildPythonPackage
-, fetchPypi
+, fetchFromGitHub
, pytest
, mock
, numpy
@@ -8,14 +8,24 @@
, dateutil
}:
-buildPythonPackage rec {
- pname = "datashape";
- version = "0.5.2";
- name = "${pname}-${version}";
+let
+ # Fetcher function looks similar to fetchPypi.
+ # Allows for easier overriding, without having to know
+ # how the source is actually fetched.
+ fetcher = {pname, version, sha256}: fetchFromGitHub {
+ owner = "blaze";
+ repo = pname;
+ rev = version;
+ inherit sha256;
+ };
- src = fetchPypi {
+in buildPythonPackage rec {
+ pname = "datashape";
+ version = "0.5.4";
+
+ src = fetcher {
inherit pname version;
- sha256 = "2356ea690c3cf003c1468a243a9063144235de45b080b3652de4f3d44e57d783";
+ sha256 = "0rhlj2kjj1vx5m73wnc5518rd6cs1zsbgpsvzk893n516k69shcf";
};
checkInputs = [ pytest mock ];
diff --git a/pkgs/development/python-modules/decorator/default.nix b/pkgs/development/python-modules/decorator/default.nix
new file mode 100644
index 00000000000..e852ac0385c
--- /dev/null
+++ b/pkgs/development/python-modules/decorator/default.nix
@@ -0,0 +1,20 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "decorator";
+ version = "4.2.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "7d46dd9f3ea1cf5f06ee0e4e1277ae618cf48dfb10ada7c8427cd46c42702a0e";
+ };
+
+ meta = {
+ homepage = https://pypi.python.org/pypi/decorator;
+ description = "Better living through Python with decorators";
+ license = lib.licenses.mit;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/devpi-common/default.nix b/pkgs/development/python-modules/devpi-common/default.nix
index f2be8ec5638..c43d34a9b55 100644
--- a/pkgs/development/python-modules/devpi-common/default.nix
+++ b/pkgs/development/python-modules/devpi-common/default.nix
@@ -2,12 +2,12 @@
with pythonPackages;buildPythonPackage rec {
pname = "devpi-common";
- version = "3.2.0";
+ version = "3.2.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0rh119iw5hk41gsvbjr0wixvl1i4f0b1vcnw9ym35rmcp517z0wb";
+ sha256 = "e9afa277a9b227d92335c49fab40be2e9bb112c0f4dda84906c14addb1ded2f7";
};
propagatedBuildInputs = [ requests py ];
diff --git a/pkgs/development/python-modules/diff_cover/default.nix b/pkgs/development/python-modules/diff_cover/default.nix
new file mode 100644
index 00000000000..b8286e7d6b1
--- /dev/null
+++ b/pkgs/development/python-modules/diff_cover/default.nix
@@ -0,0 +1,36 @@
+{ stdenv, buildPythonPackage, fetchPypi, jinja2, jinja2_pluralize, pygments,
+ six, inflect, mock, nose, coverage, pycodestyle, flake8, pyflakes, git,
+ pylint, pydocstyle, fetchpatch }:
+
+buildPythonPackage rec {
+ pname = "diff_cover";
+ version = "1.0.2";
+
+ preCheck = ''
+ export LC_ALL=en_US.UTF-8;
+ '';
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1wbp0kfv2mjxwnq2jlqmwvb71fywwc4x4azxi7ll5dll6nhjyd61";
+ };
+
+ patches = [
+ (fetchpatch {
+ name = "tests-fix.patch";
+ url = "https://github.com/Bachmann1234/diff-cover/commit/85c30959c8ed2aa3848f400095a2418f15bb7777.patch";
+ sha256 = "0xni4syrxww9kdv8495f416vqgfdys4w2hgf5rdi35hy3ybfslh0";
+ })
+ ];
+
+ propagatedBuildInputs = [ jinja2 jinja2_pluralize pygments six inflect ];
+
+ checkInputs = [ mock nose coverage pycodestyle flake8 pyflakes pylint pydocstyle git ];
+
+ meta = with stdenv.lib; {
+ description = "Automatically find diff lines that need test coverage";
+ homepage = https://github.com/Bachmann1234/diff-cover;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ dzabraev ];
+ };
+}
diff --git a/pkgs/development/python-modules/discordpy/default.nix b/pkgs/development/python-modules/discordpy/default.nix
index e11ee54f1a6..e548781fde6 100644
--- a/pkgs/development/python-modules/discordpy/default.nix
+++ b/pkgs/development/python-modules/discordpy/default.nix
@@ -1,5 +1,5 @@
{ lib
-, fetchurl
+, fetchPypi
, buildPythonPackage
, pythonOlder
, withVoice ? true, libopus
@@ -9,14 +9,12 @@
, pynacl
}:
-let
+buildPythonPackage rec {
pname = "discord.py";
version = "0.16.12";
-in buildPythonPackage rec {
- name = "${pname}-${version}";
- src = fetchurl {
- url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
+ src = fetchPypi {
+ inherit pname version;
sha256 = "17fb8814100fbaf7a79468baa432184db6cef3bbea4ad194fe297c7407d50108";
};
@@ -38,5 +36,9 @@ in buildPythonPackage rec {
description = "A python wrapper for the Discord API";
homepage = "https://discordpy.rtfd.org/";
license = lib.licenses.mit;
+
+ # discord.py requires websockets<4.0
+ # See https://github.com/Rapptz/discord.py/issues/973
+ broken = true;
};
}
diff --git a/pkgs/development/python-modules/distro/default.nix b/pkgs/development/python-modules/distro/default.nix
index 49349839331..36264921f64 100644
--- a/pkgs/development/python-modules/distro/default.nix
+++ b/pkgs/development/python-modules/distro/default.nix
@@ -3,7 +3,7 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "distro";
- version = "1.0.4";
+ version = "1.2.0";
buildInputs = [ pytest pytestcov tox];
@@ -14,7 +14,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "9b000b0d637bb0cbd130a7a4835681e6993e309a85564dfea9d884825fe46954";
+ sha256 = "d94370e43b676ac44fbe1ab68ca903a6147eaba3a9e8eff85b2c05556a455b76";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/django-ipware/default.nix b/pkgs/development/python-modules/django-ipware/default.nix
index c4d993ac03b..1f3aedab810 100644
--- a/pkgs/development/python-modules/django-ipware/default.nix
+++ b/pkgs/development/python-modules/django-ipware/default.nix
@@ -3,7 +3,7 @@
buildPythonPackage rec {
pname = "django-ipware";
name = "${pname}-${version}";
- version = "1.1.6";
+ version = "2.0.1";
meta = {
description = "A Django application to retrieve user's IP address";
@@ -13,7 +13,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "00zah4g2h93nbsijz556j97v9qkn9sxcia1a2wrwdwnav2fhzack";
+ sha256 = "3fba8821298c8533ce5609debf31dc8a22f228c50e100f42d97637a9f9357d43";
};
propagatedBuildInputs = [ django ];
diff --git a/pkgs/development/python-modules/django-jinja2/default.nix b/pkgs/development/python-modules/django-jinja2/default.nix
index aabfecfcacc..b8b632e1a18 100644
--- a/pkgs/development/python-modules/django-jinja2/default.nix
+++ b/pkgs/development/python-modules/django-jinja2/default.nix
@@ -5,7 +5,7 @@
buildPythonPackage rec {
pname = "django-jinja";
name = "${pname}-${version}";
- version = "2.2.2";
+ version = "2.4.1";
meta = {
description = "Simple and nonobstructive jinja2 integration with Django";
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "099b99iprkvlsndrjmw4v3i3i60i9gm1aq5r88z15r7vgmv6sigj";
+ sha256 = "8a49d73de616a12075eee14c6d3bbab936261a463457d40348d8b8e2995cfbed";
};
buildInputs = [ django pytz tox ];
diff --git a/pkgs/development/python-modules/django/1_11.nix b/pkgs/development/python-modules/django/1_11.nix
index 9079fd86e1c..ca0322cf607 100644
--- a/pkgs/development/python-modules/django/1_11.nix
+++ b/pkgs/development/python-modules/django/1_11.nix
@@ -7,13 +7,13 @@
buildPythonPackage rec {
pname = "Django";
name = "${pname}-${version}";
- version = "1.11.8";
+ version = "1.11.9";
disabled = pythonOlder "2.7";
src = fetchurl {
url = "http://www.djangoproject.com/m/releases/1.11/${name}.tar.gz";
- sha256 = "04gphaarwj1yrhhpi9im6gsg77i2vv0iwyjc0pmxba53nndyglzy";
+ sha256 = "0d0hh9sh2rwazi7z2lnqvz1424bq6ps6c5h6ss04klp14agi4g9m";
};
patches = stdenv.lib.optionals withGdal [
diff --git a/pkgs/development/python-modules/django/2_0.nix b/pkgs/development/python-modules/django/2_0.nix
new file mode 100644
index 00000000000..c1f935e51c6
--- /dev/null
+++ b/pkgs/development/python-modules/django/2_0.nix
@@ -0,0 +1,44 @@
+{ stdenv, buildPythonPackage, fetchPypi, substituteAll,
+ isPy3k,
+ geos, gdal, pytz,
+ withGdal ? false
+}:
+
+buildPythonPackage rec {
+ pname = "Django";
+ name = "${pname}-${version}";
+ version = "2.0.1";
+
+ disabled = !isPy3k;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0by1gswkrzxn594fa26llkzsc410999fq8s0b5d1598jwi5q0syr";
+ };
+
+ patches = stdenv.lib.optionals withGdal [
+ (substituteAll {
+ src = ./1.10-gis-libs.template.patch;
+ geos = geos;
+ gdal = gdal;
+ extension = stdenv.hostPlatform.extensions.sharedLibrary;
+ })
+ ];
+
+ # patch only $out/bin to avoid problems with starter templates (see #3134)
+ postFixup = ''
+ wrapPythonProgramsIn $out/bin "$out $pythonPath"
+ '';
+
+ propagatedBuildInputs = [ pytz ];
+
+ # too complicated to setup
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "A high-level Python Web framework";
+ homepage = https://www.djangoproject.com/;
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ georgewhewell ];
+ };
+}
diff --git a/pkgs/development/python-modules/django_guardian/default.nix b/pkgs/development/python-modules/django_guardian/default.nix
index a92a7038cd3..d2f8361bc7d 100644
--- a/pkgs/development/python-modules/django_guardian/default.nix
+++ b/pkgs/development/python-modules/django_guardian/default.nix
@@ -16,7 +16,7 @@ buildPythonPackage rec {
propagatedBuildInputs = [ django six ];
checkPhase = ''
- ${python.interpreter} nix_run_setup.py test --addopts="--ignore build"
+ ${python.interpreter} nix_run_setup test --addopts="--ignore build"
'';
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/djangorestframework/default.nix b/pkgs/development/python-modules/djangorestframework/default.nix
index e2c8acd1a0b..b11847beaa9 100644
--- a/pkgs/development/python-modules/djangorestframework/default.nix
+++ b/pkgs/development/python-modules/djangorestframework/default.nix
@@ -1,12 +1,12 @@
{ stdenv, buildPythonPackage, fetchurl, django }:
buildPythonPackage rec {
- version = "3.7.3";
+ version = "3.7.7";
pname = "djangorestframework";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/d/djangorestframework/${name}.tar.gz";
- sha256 = "067960e5e9e5586d3b2d53a1d626c4800dc33cd8309487d404fc63355674556f";
+ sha256 = "9f9e94e8d22b100ed3a43cee8c47a7ff7b185e778a1f2da9ec5c73fc4e081b87";
};
# Test settings are missing
diff --git a/pkgs/development/python-modules/docker/default.nix b/pkgs/development/python-modules/docker/default.nix
index 88d85dad91a..4ce013ac797 100644
--- a/pkgs/development/python-modules/docker/default.nix
+++ b/pkgs/development/python-modules/docker/default.nix
@@ -3,13 +3,13 @@
, ipaddress, backports_ssl_match_hostname, docker_pycreds
}:
buildPythonPackage rec {
- version = "2.5.1";
+ version = "2.7.0";
pname = "docker";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/d/docker/${name}.tar.gz";
- sha256 = "b876e6909d8d2360e0540364c3a952a62847137f4674f2439320ede16d6db880";
+ sha256 = "144248308e8ea31c4863c6d74e1b55daf97cc190b61d0fe7b7313ab920d6a76c";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/docker_compose/default.nix b/pkgs/development/python-modules/docker_compose/default.nix
index 78e733c1b9d..e6be57c8b52 100644
--- a/pkgs/development/python-modules/docker_compose/default.nix
+++ b/pkgs/development/python-modules/docker_compose/default.nix
@@ -3,21 +3,20 @@
, pyyaml, backports_ssl_match_hostname, colorama, docopt
, dockerpty, docker, ipaddress, jsonschema, requests
, six, texttable, websocket_client, cached-property
-, enum34, functools32
+, enum34, functools32,
}:
buildPythonApplication rec {
- version = "1.15.0";
+ version = "1.18.0";
pname = "docker-compose";
- name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0yg58m5kk22kihbra0h40miqnbdmkirjr9y47wns613sdikrymmg";
+ sha256 = "2930cbfe2685018fbb75377600ab6288861d9955717b3f14212f63950351d379";
};
# lots of networking and other fails
doCheck = false;
- buildInputs = [ mock pytest nose ];
+ checkInputs = [ mock pytest nose ];
propagatedBuildInputs = [
pyyaml backports_ssl_match_hostname colorama dockerpty docker
ipaddress jsonschema requests six texttable websocket_client
@@ -26,7 +25,7 @@ buildPythonApplication rec {
stdenv.lib.optional (pythonOlder "3.4") enum34 ++
stdenv.lib.optional (pythonOlder "3.2") functools32;
- patchPhase = ''
+ postPatch = ''
# Remove upper bound on requires, see also
# https://github.com/docker/compose/issues/4431
sed -i "s/, < .*',$/',/" setup.py
diff --git a/pkgs/development/python-modules/dyn/default.nix b/pkgs/development/python-modules/dyn/default.nix
index 881f51b69aa..efb9cab8048 100644
--- a/pkgs/development/python-modules/dyn/default.nix
+++ b/pkgs/development/python-modules/dyn/default.nix
@@ -3,12 +3,12 @@
buildPythonPackage rec {
pname = "dyn";
- version = "1.8.0";
+ version = "1.8.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "4ab3cd9a1478674cf2d2aa6740fb0ddf77daaa9ab3e35e5d2bc92f60301f8523";
+ sha256 = "e112149d48b4500c18b3cfb6e0e6e780bb5aa0e56ff87cac412280200b9ec8bf";
};
buildInputs = [ glibcLocales ];
diff --git a/pkgs/development/python-modules/easy-thumbnails/default.nix b/pkgs/development/python-modules/easy-thumbnails/default.nix
index 38e201849c1..fbe5c02771d 100644
--- a/pkgs/development/python-modules/easy-thumbnails/default.nix
+++ b/pkgs/development/python-modules/easy-thumbnails/default.nix
@@ -5,7 +5,7 @@
buildPythonPackage rec {
pname = "easy-thumbnails";
name = "${pname}-${version}";
- version = "2.4.2";
+ version = "2.5";
meta = {
description = "Easy thumbnails for Django";
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "8cad7ea4fb2b800284e842d8a44f685cbc1968535be04c24a4bbf6e6dbc550c4";
+ sha256 = "e244d1f26027fc32c6ca60ffb0169a39099446f614b0433e907a2588ae7d9b95";
};
propagatedBuildInputs = [ django pillow ];
diff --git a/pkgs/development/python-modules/ecpy/default.nix b/pkgs/development/python-modules/ecpy/default.nix
index 25ca8dabf2b..84830e7f2b8 100644
--- a/pkgs/development/python-modules/ecpy/default.nix
+++ b/pkgs/development/python-modules/ecpy/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "ECPy";
- version = "0.8.2";
+ version = "0.8.3";
src = fetchPypi {
inherit pname version;
- sha256 = "0509a90714448ef47ef727cb7aee3415995c883c945e972521b5838fa4c50e24";
+ sha256 = "ef3d95419d53368f52fb7d4b883b8df0dfc2dd19a76243422d24981c3e5f27bd";
};
buildInputs = [ hidapi pycrypto pillow protobuf future ];
diff --git a/pkgs/development/python-modules/elasticsearch-curator/default.nix b/pkgs/development/python-modules/elasticsearch-curator/default.nix
index bbd2904fd9e..bdace922084 100644
--- a/pkgs/development/python-modules/elasticsearch-curator/default.nix
+++ b/pkgs/development/python-modules/elasticsearch-curator/default.nix
@@ -16,7 +16,6 @@
buildPythonPackage rec {
pname = "elasticsearch-curator";
version = "5.4.1";
- name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
diff --git a/pkgs/development/python-modules/elasticsearch/default.nix b/pkgs/development/python-modules/elasticsearch/default.nix
new file mode 100644
index 00000000000..88399d31697
--- /dev/null
+++ b/pkgs/development/python-modules/elasticsearch/default.nix
@@ -0,0 +1,29 @@
+{ buildPythonPackage
+, fetchPypi
+, urllib3, requests
+, nosexcover, mock
+, stdenv
+}:
+
+buildPythonPackage (rec {
+ pname = "elasticsearch";
+ version = "6.1.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "8d91a3fce12123a187b673f18c23bcffa6e7b49ba057555d59eeeded0ba15dce";
+ };
+
+ # Check is disabled because running them destroy the content of the local cluster!
+ # https://github.com/elasticsearch/elasticsearch-py/tree/master/test_elasticsearch
+ doCheck = false;
+ propagatedBuildInputs = [ urllib3 requests ];
+ buildInputs = [ nosexcover mock ];
+
+ meta = with stdenv.lib; {
+ description = "Official low-level client for Elasticsearch";
+ homepage = https://github.com/elasticsearch/elasticsearch-py;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ desiderius ];
+ };
+})
diff --git a/pkgs/development/python-modules/evdev/default.nix b/pkgs/development/python-modules/evdev/default.nix
new file mode 100644
index 00000000000..250a2f55932
--- /dev/null
+++ b/pkgs/development/python-modules/evdev/default.nix
@@ -0,0 +1,29 @@
+{ lib, buildPythonPackage, isPy34, fetchPypi, linuxHeaders }:
+
+buildPythonPackage rec {
+ pname = "evdev";
+ version = "0.7.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "188ahmqnh5y1f46m7pyjdmi9zfxswaggn6xga65za554d72azvap";
+ };
+
+ buildInputs = [ linuxHeaders ];
+
+ patchPhase = ''
+ substituteInPlace setup.py --replace /usr/include/linux ${linuxHeaders}/include/linux
+ '';
+
+ doCheck = false;
+
+ disabled = isPy34; # see http://bugs.python.org/issue21121
+
+ meta = with lib; {
+ description = "Provides bindings to the generic input event interface in Linux";
+ homepage = http://pythonhosted.org/evdev;
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ goibhniu ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/python-modules/eve/default.nix b/pkgs/development/python-modules/eve/default.nix
index 1a9b684a9f3..fe6daf73339 100644
--- a/pkgs/development/python-modules/eve/default.nix
+++ b/pkgs/development/python-modules/eve/default.nix
@@ -3,12 +3,12 @@
buildPythonPackage rec {
pname = "Eve";
- version = "0.7.4";
+ version = "0.7.6";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0xihl5w2m4vkp0515qjibiy88pk380n5jmj8n9hh7q40b1vx1kwb";
+ sha256 = "1ba84ab471bc2203a728fe4707a9279c44420224180b418601778125f51577ff";
};
patches = [
diff --git a/pkgs/development/python-modules/extras/default.nix b/pkgs/development/python-modules/extras/default.nix
new file mode 100644
index 00000000000..adcc43f2650
--- /dev/null
+++ b/pkgs/development/python-modules/extras/default.nix
@@ -0,0 +1,23 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "extras";
+ version = "1.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e";
+ };
+
+ # error: invalid command 'test'
+ doCheck = false;
+
+ meta = {
+ description = "A module provides basic functions for parsing mime-type names and matching them against a list of media-ranges";
+ homepage = https://code.google.com/p/mimeparse/;
+ license = lib.licenses.mit;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/faker/default.nix b/pkgs/development/python-modules/faker/default.nix
index 3c95a26881e..2d459d625d0 100644
--- a/pkgs/development/python-modules/faker/default.nix
+++ b/pkgs/development/python-modules/faker/default.nix
@@ -8,12 +8,12 @@ assert pythonOlder "3.3" -> ipaddress != null;
buildPythonPackage rec {
pname = "Faker";
- version = "0.8.7";
+ version = "0.8.8";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "bf7dabcd6807c8829da28a4de491adf7998af506b8571db6a6eb58161157248a";
+ sha256 = "e928cf853ef69d7471421f2a3716a1239e43de0fa9855f4016ee0c9f1057328a";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/fastimport/default.nix b/pkgs/development/python-modules/fastimport/default.nix
index ee1048ec5fa..44f7bcdab06 100644
--- a/pkgs/development/python-modules/fastimport/default.nix
+++ b/pkgs/development/python-modules/fastimport/default.nix
@@ -1,11 +1,11 @@
-{ stdenv, buildPythonPackage, python, fetchurl }:
+{ stdenv, buildPythonPackage, python, fetchPypi}:
buildPythonPackage rec {
- name = "fastimport-${version}";
+ pname = "fastimport";
version = "0.9.6";
- src = fetchurl {
- url = "mirror://pypi/f/fastimport/${name}.tar.gz";
+ src = fetchPypi {
+ inherit pname version;
sha256 = "1aqjsin4rmqm7ln4j0p73fzxifws6c6ikgyhav7r137m2ixsxl43";
};
diff --git a/pkgs/development/python-modules/fastrlock/default.nix b/pkgs/development/python-modules/fastrlock/default.nix
new file mode 100644
index 00000000000..848f01d6e16
--- /dev/null
+++ b/pkgs/development/python-modules/fastrlock/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+ pname = "fastrlock";
+ version = "0.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "00mr9b15d539z89ng5nf89s2ryhk90xwx95jal77ma0wslixrk5d";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/scoder/fastrlock;
+ description = "A fast RLock implementation for CPython";
+ license = licenses.mit;
+ maintainers = with maintainers; [ hyphon81 ];
+ };
+}
diff --git a/pkgs/development/python-modules/faulthandler/default.nix b/pkgs/development/python-modules/faulthandler/default.nix
index f8d877f0655..ee2a65e981c 100644
--- a/pkgs/development/python-modules/faulthandler/default.nix
+++ b/pkgs/development/python-modules/faulthandler/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "faulthandler";
- version = "2.6";
+ version = "3.0";
src = fetchPypi {
inherit pname version;
- sha256 = "0zywq3jaznddvqc3hnfrlv24wmpyq4xgajk9xhv6578qw1rpfj2r";
+ sha256 = "acc10e10909f0f956ba1b42b6c450ea0bdaaa27b3942899f65931396cfcdd36a";
};
meta = {
diff --git a/pkgs/development/python-modules/fedpkg/default.nix b/pkgs/development/python-modules/fedpkg/default.nix
index c3aeed0abbe..0230466e6e3 100644
--- a/pkgs/development/python-modules/fedpkg/default.nix
+++ b/pkgs/development/python-modules/fedpkg/default.nix
@@ -21,6 +21,6 @@ buildPythonPackage rec {
description = "Subclass of the rpkg project for dealing with rpm packaging";
homepage = https://pagure.io/fedpkg;
license = licenses.gpl2;
- maintainers = with maintainers; [ mornfall ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/filelock/default.nix b/pkgs/development/python-modules/filelock/default.nix
new file mode 100644
index 00000000000..5d617ba9369
--- /dev/null
+++ b/pkgs/development/python-modules/filelock/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+ pname = "filelock";
+ version = "3.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "b3ad481724adfb2280773edd95ce501e497e88fa4489c6e41e637ab3fd9a456c";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/benediktschmitt/py-filelock;
+ description = "A platform independent file lock for Python";
+ license = licenses.unlicense;
+ maintainers = with maintainers; [ hyphon81 ];
+ };
+}
diff --git a/pkgs/development/python-modules/fiona/default.nix b/pkgs/development/python-modules/fiona/default.nix
index 5c150844c84..1fc7ae5aa58 100644
--- a/pkgs/development/python-modules/fiona/default.nix
+++ b/pkgs/development/python-modules/fiona/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "Fiona";
- version = "1.7.10.post1";
+ version = "1.7.11";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "fc4c8996be3131f36c791d66273317d38b72b19dc24c2afc332fd734752eb7a8";
+ sha256 = "5e9c68ea71e9d79fcfb68c9a101c0b133301e233c9bcca7b7c65f33cc7636ef5";
};
buildInputs = [
diff --git a/pkgs/development/python-modules/flake8-debugger/default.nix b/pkgs/development/python-modules/flake8-debugger/default.nix
index c00bf0c8551..aab91433088 100644
--- a/pkgs/development/python-modules/flake8-debugger/default.nix
+++ b/pkgs/development/python-modules/flake8-debugger/default.nix
@@ -3,10 +3,10 @@
buildPythonPackage rec {
pname = "flake8-debugger";
name = "${pname}-${version}";
- version = "1.4.0";
+ version = "3.0.0";
src = fetchurl {
url = "mirror://pypi/f/flake8-debugger/${name}.tar.gz";
- sha256 = "0chjfa6wvnqjnx778qzahhwvjx1j0rc8ax0ipp5bn70gf47lj62r";
+ sha256 = "e5c8ac980d819db2f3fbb89fe0e43a2fe6c127edd6ce4984a3f7e0bbdac3d2d4";
};
buildInputs = [ nose ];
propagatedBuildInputs = [ flake8 ];
diff --git a/pkgs/development/python-modules/flask-common/default.nix b/pkgs/development/python-modules/flask-common/default.nix
new file mode 100644
index 00000000000..31fe2a677c3
--- /dev/null
+++ b/pkgs/development/python-modules/flask-common/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchPypi, buildPythonPackage
+, crayons, flask, flask_cache, gunicorn, maya, meinheld, whitenoise }:
+
+buildPythonPackage rec {
+ pname = "Flask-Common";
+ version = "0.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1f6ibvkxpxgczxs4qcbh5bj8rf9ggggbagi2dkaphx5w29xbbys4";
+ };
+
+ propagatedBuildInputs = [ crayons flask flask_cache gunicorn maya meinheld whitenoise ];
+
+ meta = with stdenv.lib; {
+ description = "Flask extension with lots of common time-savers";
+ homepage = https://github.com/kennethreitz/flask-common;
+ license = licenses.asl20; # XXX: setup.py lists BSD but git repo has Apache 2.0 LICENSE
+ };
+}
diff --git a/pkgs/development/python-modules/flask-limiter/default.nix b/pkgs/development/python-modules/flask-limiter/default.nix
new file mode 100644
index 00000000000..a60c5a993ea
--- /dev/null
+++ b/pkgs/development/python-modules/flask-limiter/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, fetchPypi, buildPythonPackage, flask, limits }:
+
+buildPythonPackage rec {
+ pname = "Flask-Limiter";
+ version = "1.0.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1f0diannnc6rc0ngsh222lws3qf89wxm0aschaxxvwjvybf9iklc";
+ };
+
+ propagatedBuildInputs = [ flask limits ];
+
+ meta = with stdenv.lib; {
+ description = "Rate limiting for flask applications";
+ homepage = https://flask-limiter.readthedocs.org/;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/flask-testing/default.nix b/pkgs/development/python-modules/flask-testing/default.nix
index 178e000a32e..5f843138eae 100644
--- a/pkgs/development/python-modules/flask-testing/default.nix
+++ b/pkgs/development/python-modules/flask-testing/default.nix
@@ -6,11 +6,11 @@ with stdenv.lib;
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Flask-Testing";
- version = "0.6.2";
+ version = "0.7.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1w0dpwvrcpffm8ychyxpm8s5blm7slik9kplh9jb3sgwcv9gyppj";
+ sha256 = "dc076623d7d850653a018cb64f500948334c8aeb6b10a5a842bf1bcfb98122bc";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/flit/default.nix b/pkgs/development/python-modules/flit/default.nix
index 298da4a85bf..3a73b464a46 100644
--- a/pkgs/development/python-modules/flit/default.nix
+++ b/pkgs/development/python-modules/flit/default.nix
@@ -11,6 +11,7 @@
, pytest
, testpath
, responses
+, pytoml
}:
# Flit is actually an application to build universal wheels.
@@ -20,25 +21,22 @@
buildPythonPackage rec {
pname = "flit";
- version = "0.11.4";
- name = "${pname}-${version}";
-
-# format = "wheel";
+ version = "0.13";
src = fetchPypi {
inherit pname version;
-# url = https://files.pythonhosted.org/packages/24/98/50a090112a04d9e29155c31a222637668b0a4dd778fefcd3132adc50e877/flit-0.10-py3-none-any.whl;
- sha256 = "8ba7603cc3bf4149d81811d40fe331abc45ff37a207c63f5f712a0fdb69297bb";
+ sha256 = "8f558351bf4bb82b872d3bdbea7055cbb2e33ed2bdf809284bf927d4c78bf0ee";
};
disabled = !isPy3k;
- propagatedBuildInputs = [ docutils requests requests_download ] ++ lib.optional (pythonOlder "3.6") zipfile36;
+ propagatedBuildInputs = [ docutils requests requests_download pytoml ] ++ lib.optional (pythonOlder "3.6") zipfile36;
checkInputs = [ pytest testpath responses ];
# Disable test that needs some ini file.
+ # Disable test that wants hg
checkPhase = ''
- py.test -k "not test_invalid_classifier"
+ py.test -k "not test_invalid_classifier and not test_build_sdist"
'';
meta = {
diff --git a/pkgs/development/python-modules/fonttools/default.nix b/pkgs/development/python-modules/fonttools/default.nix
index 1dfc22f769b..80fc3893f17 100644
--- a/pkgs/development/python-modules/fonttools/default.nix
+++ b/pkgs/development/python-modules/fonttools/default.nix
@@ -7,12 +7,12 @@
buildPythonPackage rec {
pname = "fonttools";
- version = "3.17.0";
+ version = "3.21.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "1c4f26bf32cd58d5881bfe1f42e5f0a1637a58452a60ae1623999f3ae7da0e24";
+ sha256 = "96b636793c806206b1925e21224f4ab2ce5bea8ae0990ed181b8ac8d30848f47";
extension = "zip";
};
diff --git a/pkgs/development/python-modules/fritzconnection/default.nix b/pkgs/development/python-modules/fritzconnection/default.nix
new file mode 100644
index 00000000000..ced7d7bdcd4
--- /dev/null
+++ b/pkgs/development/python-modules/fritzconnection/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildPythonPackage, fetchPypi, lxml, requests, tkinter }:
+
+buildPythonPackage rec {
+ pname = "fritzconnection";
+ version = "0.6.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "14g3sxprq65lxbgkf3rjgb1bjqnj2jc5p1swlq9sk9gwnl6ca3ds";
+ };
+
+ prePatch = ''
+ substituteInPlace fritzconnection/test.py \
+ --replace "from fritzconnection import" "from .fritzconnection import"
+ '';
+
+ propagatedBuildInputs = [ lxml requests tkinter ];
+
+ meta = with stdenv.lib; {
+ description = "Python-Tool to communicate with the AVM FritzBox using the TR-064 protocol";
+ homepage = https://bitbucket.org/kbr/fritzconnection;
+ license = licenses.mit;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/ftfy/default.nix b/pkgs/development/python-modules/ftfy/default.nix
index b1ba77ab868..e54531017f4 100644
--- a/pkgs/development/python-modules/ftfy/default.nix
+++ b/pkgs/development/python-modules/ftfy/default.nix
@@ -11,11 +11,11 @@ buildPythonPackage rec {
name = "${pname}-${version}";
pname = "ftfy";
# latest is 5.1.1, buy spaCy requires 4.4.3
- version = "5.1.1";
+ version = "5.2.0";
src = fetchPypi {
inherit pname version;
- sha256 = "67a29a2fad5f72aec2d8a0a7084e4f499ed040455133ee96b1c458609fc29e78";
+ sha256 = "b9f84a1437f68ad0bb964fd9da9f6b88d090113ec9e78f290f6d6d0221468e38";
};
propagatedBuildInputs = [ html5lib wcwidth];
diff --git a/pkgs/development/python-modules/gensim/default.nix b/pkgs/development/python-modules/gensim/default.nix
index ea5fc12e432..4edd9ac3e55 100644
--- a/pkgs/development/python-modules/gensim/default.nix
+++ b/pkgs/development/python-modules/gensim/default.nix
@@ -13,10 +13,10 @@
buildPythonPackage rec {
pname = "gensim";
name = "${pname}-${version}";
- version = "3.0.1";
+ version = "3.2.0";
src = fetchPypi {
inherit pname version;
- sha256 = "4827012f6f020ac4f4067c2a2a88542391917113faaa417505e1ee8a1e7e2650";
+ sha256 = "db00b68c6567ba0598d400b917c889e8801adf249170ce0a80ec38187d1b0797";
};
propagatedBuildInputs = [ smart_open numpy six scipy
diff --git a/pkgs/development/python-modules/gflags/default.nix b/pkgs/development/python-modules/gflags/default.nix
index 6fe4b7fcab8..9eb8e3b2d6c 100644
--- a/pkgs/development/python-modules/gflags/default.nix
+++ b/pkgs/development/python-modules/gflags/default.nix
@@ -2,16 +2,14 @@
buildPythonPackage rec {
version = "3.1.2";
- pname = "gflags";
- name = pname + "-" + version;
+ pname = "python-gflags";
src = fetchPypi {
- inherit version;
- pname = "python-gflags";
+ inherit pname version;
sha256 = "40ae131e899ef68e9e14aa53ca063839c34f6a168afe622217b5b875492a1ee2";
};
- buildInputs = [ pytest ];
+ checkInputs = [ pytest ];
propagatedBuildInputs = [ six ];
diff --git a/pkgs/development/python-modules/google_api_core/default.nix b/pkgs/development/python-modules/google_api_core/default.nix
new file mode 100644
index 00000000000..2899eeb4a8a
--- /dev/null
+++ b/pkgs/development/python-modules/google_api_core/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, google_auth, protobuf, googleapis_common_protos, requests, grpcio, setuptools, mock, pytest }:
+
+buildPythonPackage rec {
+ pname = "google-api-core";
+ version = "0.1.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0144d467083ed54d2e8ccb4212d42c3724fe0b844b7d3a0ff85aea54b7ae8347";
+ };
+
+ propagatedBuildInputs = [ google_auth protobuf googleapis_common_protos requests grpcio ];
+ checkInputs = [ setuptools mock pytest ];
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = with stdenv.lib; {
+ description = "This library is not meant to stand-alone. Instead it defines common helpers used by all Google API clients.";
+ homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ vanschelven ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_auth/default.nix b/pkgs/development/python-modules/google_auth/default.nix
new file mode 100644
index 00000000000..2076f3c3444
--- /dev/null
+++ b/pkgs/development/python-modules/google_auth/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, pytest, mock, oauth2client, flask, requests, urllib3, pytest-localserver, six, pyasn1-modules, cachetools, rsa }:
+
+buildPythonPackage rec {
+ pname = "google-auth";
+ version = "1.3.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "d119b5954393d81c4a986ab420cf2c8129fc95ff5c4c6bb8ab5c8f3e6446394f";
+ };
+
+ checkInputs = [ pytest mock oauth2client flask requests urllib3 pytest-localserver ];
+ propagatedBuildInputs = [ six pyasn1-modules cachetools rsa ];
+
+ # The removed test tests the working together of google_auth and google's https://pypi.python.org/pypi/oauth2client
+ # but the latter is deprecated. Since it is not currently part of the nixpkgs collection and deprecated it will
+ # probably never be. We just remove the test to make the tests work again.
+ postPatch = ''rm tests/test__oauth2client.py'';
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = with stdenv.lib; {
+ description = "This library simplifies using Google’s various server-to-server authentication mechanisms to access Google APIs.";
+ homepage = "https://google-auth.readthedocs.io/en/latest/";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ vanschelven ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_cloud_core/default.nix b/pkgs/development/python-modules/google_cloud_core/default.nix
new file mode 100644
index 00000000000..c0ccef3c959
--- /dev/null
+++ b/pkgs/development/python-modules/google_cloud_core/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, google_api_core, grpcio, pytest, mock }:
+
+buildPythonPackage rec {
+ pname = "google-cloud-core";
+ version = "0.28.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1h8bx99ksla48zkb7bhkqy66b8prg49dp15alh851vzi9ii2zii7";
+ };
+
+ propagatedBuildInputs = [ google_api_core grpcio ];
+ checkInputs = [ pytest mock ];
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = with stdenv.lib; {
+ description = "API Client library for Google Cloud: Core Helpers";
+ homepage = "https://github.com/GoogleCloudPlatform/google-cloud-python";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ vanschelven ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_cloud_speech/default.nix b/pkgs/development/python-modules/google_cloud_speech/default.nix
new file mode 100644
index 00000000000..796bd26febd
--- /dev/null
+++ b/pkgs/development/python-modules/google_cloud_speech/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, setuptools, google_api_core, google_gax, google_cloud_core, pytest, mock }:
+
+buildPythonPackage rec {
+ pname = "google-cloud-speech";
+ version = "0.30.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0ckigh6bfzhflhllqdnfygm8w0r6ncp0myf1midifx7sn880g4pa";
+ };
+
+ propagatedBuildInputs = [ setuptools google_api_core google_gax google_cloud_core ];
+ checkInputs = [ pytest mock ];
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Cloud Speech API enables integration of Google speech recognition into applications.";
+ homepage = "https://googlecloudplatform.github.io/google-cloud-python/latest/speech/";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ vanschelven ];
+ };
+}
diff --git a/pkgs/development/python-modules/google_gax/default.nix b/pkgs/development/python-modules/google_gax/default.nix
new file mode 100644
index 00000000000..24000161338
--- /dev/null
+++ b/pkgs/development/python-modules/google_gax/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, google_auth, ply, protobuf, grpcio, requests, googleapis_common_protos, dill, future, pytest, mock, unittest2 }:
+
+buildPythonPackage rec {
+ pname = "google-gax";
+ version = "0.15.16";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0p1ribd2xy7a04wnjv12agkcdi6f9cpj838884hayx07p5g8v3ji";
+ };
+
+ propagatedBuildInputs = [ google_auth ply protobuf grpcio requests googleapis_common_protos dill future ];
+ checkInputs = [ pytest mock unittest2 ];
+
+ # Importing test__grpc_google_auth fails with "ModuleNotFoundError: No module named 'google_auth_httplib2'", where
+ # that file would be is unclear to me so I just remove the test.
+ postPatch = ''rm tests/test__grpc_google_auth.py'';
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Google API Extensions for Python (gax-python) tools based on gRPC and Google API conventions.";
+ homepage = "http://gax-python.readthedocs.io/en/latest/";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ vanschelven ];
+ };
+}
diff --git a/pkgs/development/python-modules/googleapis_common_protos/default.nix b/pkgs/development/python-modules/googleapis_common_protos/default.nix
new file mode 100644
index 00000000000..28e84f4846e
--- /dev/null
+++ b/pkgs/development/python-modules/googleapis_common_protos/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, protobuf, pytest }:
+
+buildPythonPackage rec {
+ pname = "googleapis-common-protos";
+ version = "1.5.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1whfjl44gy15ha6palpwa2m0xi36dsvpaz8vw0cvb2k2lbdfsxf0";
+ };
+
+ propagatedBuildInputs = [ protobuf ];
+ checkInputs = [ pytest ];
+
+ doCheck = false; # there are no tests
+
+ meta = with stdenv.lib; {
+ description = "Common protobufs used in Google APIs";
+ homepage = "https://github.com/googleapis/googleapis";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ vanschelven ];
+ };
+}
diff --git a/pkgs/development/python-modules/gpy/default.nix b/pkgs/development/python-modules/gpy/default.nix
index bc48a7490aa..bb39746d296 100644
--- a/pkgs/development/python-modules/gpy/default.nix
+++ b/pkgs/development/python-modules/gpy/default.nix
@@ -3,12 +3,12 @@
buildPythonPackage rec {
pname = "GPy";
- version = "1.8.4";
+ version = "1.8.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "38c1202f1790952b88c298224139ee5b14d4518e3ddc6186c60db2ece016d8c1";
+ sha256 = "1562e34629192f209273f454e41614a127c6ef04144cd0eb5992d484721d55d3";
};
# running tests produces "ImportError: cannot import name 'linalg_cython'"
diff --git a/pkgs/development/python-modules/grammalecte/default.nix b/pkgs/development/python-modules/grammalecte/default.nix
index a3de4d3f7bc..485c5b5ef07 100644
--- a/pkgs/development/python-modules/grammalecte/default.nix
+++ b/pkgs/development/python-modules/grammalecte/default.nix
@@ -7,23 +7,19 @@
buildPythonPackage rec {
pname = "grammalecte";
- version = "0.5.18";
+ version = "0.6.1";
name = "${pname}-${version}";
src = fetchurl {
url = "http://www.dicollecte.org/grammalecte/zip/Grammalecte-fr-v${version}.zip";
- sha256 = "0izfsqsj8w4awhmwmn4x8wwpqsmqbnfvfafzk93i6yj0l3fn3i97";
+ sha256 = "0y2ck6pkd2p3cbjlxxvz3x5rnbg3ghfx97n13302rnab66cy4zkh";
};
propagatedBuildInputs = [ bottle ];
preBuild = "cd ..";
postInstall = ''
- mkdir $out/bin
- cp $out/cli.py $out/bin/gramalecte
- cp $out/server.py $out/bin/gramalected
- chmod a+rx $out/bin/gramalecte
- chmod a+rx $out/bin/gramalected
+ rm $out/bin/bottle.py
'';
disabled = !isPy3k;
diff --git a/pkgs/development/python-modules/grpcio/default.nix b/pkgs/development/python-modules/grpcio/default.nix
new file mode 100644
index 00000000000..c22f2c2f4d7
--- /dev/null
+++ b/pkgs/development/python-modules/grpcio/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonPackage, fetchPypi, lib
+, six, protobuf, enum34, futures, isPy26, isPy27, isPy34 }:
+
+buildPythonPackage rec {
+ pname = "grpcio";
+ version = "1.8.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "88d87aab9c7889b3ab29dd74aac1a5493ed78b9bf5afba1c069c9dd5531f951d";
+ };
+
+ propagatedBuildInputs = [ six protobuf ]
+ ++ lib.optionals (isPy26 || isPy27 || isPy34) [ enum34 ]
+ ++ lib.optionals (isPy26 || isPy27) [ futures ];
+
+ meta = with stdenv.lib; {
+ description = "HTTP/2-based RPC framework";
+ license = lib.licenses.bsd3;
+ homepage = "https://grpc.io/grpc/python/";
+ maintainers = with maintainers; [ vanschelven ];
+ };
+}
diff --git a/pkgs/development/python-modules/gssapi/default.nix b/pkgs/development/python-modules/gssapi/default.nix
index 3b13f8a2049..b075db5ae98 100644
--- a/pkgs/development/python-modules/gssapi/default.nix
+++ b/pkgs/development/python-modules/gssapi/default.nix
@@ -3,12 +3,12 @@ nose, shouldbe, gss, krb5Full, which, darwin }:
buildPythonPackage rec {
pname = "gssapi";
- version = "1.2.0";
+ version = "1.3.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "1q6ccpz6anl9vggwxdq32wp6xjh2lyfbf7av6jqnmvmyqdfwh3b9";
+ sha256 = "765205082a9490c8e8be88ac16a6249d124396a671665edeec9927a7f244d712";
};
# It's used to locate headers
diff --git a/pkgs/development/python-modules/guzzle_sphinx_theme/default.nix b/pkgs/development/python-modules/guzzle_sphinx_theme/default.nix
index e0b36de5672..08b42b80799 100644
--- a/pkgs/development/python-modules/guzzle_sphinx_theme/default.nix
+++ b/pkgs/development/python-modules/guzzle_sphinx_theme/default.nix
@@ -1,11 +1,8 @@
{ stdenv, buildPythonPackage, sphinx, fetchPypi }:
-
buildPythonPackage rec {
- name = "${pname}-${version}";
pname = "guzzle_sphinx_theme";
version = "0.7.11";
-
src = fetchPypi {
inherit pname version;
sha256 = "1rnkzrrsbnifn3vsb4pfaia3nlvgvw6ndpxp7lzjrh23qcwid34v";
diff --git a/pkgs/development/python-modules/hbmqtt/default.nix b/pkgs/development/python-modules/hbmqtt/default.nix
new file mode 100644
index 00000000000..379aa1c3cf4
--- /dev/null
+++ b/pkgs/development/python-modules/hbmqtt/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, buildPythonPackage, fetchPypi, isPy3k
+, transitions, websockets, passlib, docopt, pyyaml, nose }:
+
+buildPythonPackage rec {
+ pname = "hbmqtt";
+ version = "0.9.1";
+
+ disabled = !isPy3k;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "04lqqcy84f9gcwqhrlvzp689r3mkdd8ipsnfzw8gryfny4lh8wrx";
+ };
+
+ propagatedBuildInputs = [ transitions websockets passlib docopt pyyaml ];
+
+ checkInputs = [ nose ];
+
+ checkPhase = ''
+ nosetests -e test_connect_tcp
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/beerfactory/hbmqtt;
+ description = "MQTT client/broker using Python asynchronous I/O";
+ license = licenses.mit;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/html5lib/default.nix b/pkgs/development/python-modules/html5lib/default.nix
new file mode 100644
index 00000000000..97d2854ca22
--- /dev/null
+++ b/pkgs/development/python-modules/html5lib/default.nix
@@ -0,0 +1,42 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, flake8
+, pytest
+, pytest-expect
+, mock
+, six
+, webencodings
+}:
+
+buildPythonPackage rec {
+ pname = "html5lib";
+ version = "1.0.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "66cb0dcfdbbc4f9c3ba1a63fdb511ffdbd4f513b2b6d81b80cd26ce6b3fb3736";
+ };
+
+ checkInputs = [ flake8 pytest pytest-expect mock ];
+ propagatedBuildInputs = [
+ six webencodings
+ ];
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = {
+ homepage = https://github.com/html5lib/html5lib-python;
+ downloadPage = https://github.com/html5lib/html5lib-python/releases;
+ description = "HTML parser based on WHAT-WG HTML5 specification";
+ longDescription = ''
+ html5lib is a pure-python library for parsing HTML. It is designed to
+ conform to the WHATWG HTML specification, as is implemented by all
+ major web browsers.
+ '';
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ domenkozar prikhi ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/htmlmin/default.nix b/pkgs/development/python-modules/htmlmin/default.nix
index 2206b3559ba..8df4b3813c4 100644
--- a/pkgs/development/python-modules/htmlmin/default.nix
+++ b/pkgs/development/python-modules/htmlmin/default.nix
@@ -1,11 +1,11 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "htmlmin";
- version = "0.1.11";
+ version = "0.1.12";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "f27fb96fdddeb1725ee077be532c7bea23288c69d0e996e7798f24fae7a14e5e";
+ sha256 = "50c1ef4630374a5d723900096a961cff426dff46b48f34d194a81bbe14eca178";
};
# Tests run fine in a normal source checkout, but not when being built by nix.
diff --git a/pkgs/development/python-modules/httpbin/default.nix b/pkgs/development/python-modules/httpbin/default.nix
index d11d6b3668f..77dc27f1096 100644
--- a/pkgs/development/python-modules/httpbin/default.nix
+++ b/pkgs/development/python-modules/httpbin/default.nix
@@ -1,24 +1,38 @@
{ stdenv
, buildPythonPackage
, fetchPypi
+, fetchpatch
, flask
+, flask-common
+, flask-limiter
, markupsafe
, decorator
, itsdangerous
+, raven
, six
+, brotlipy
}:
buildPythonPackage rec {
pname = "httpbin";
- version = "0.5.0";
- name = "${pname}-${version}";
+ version = "0.6.2";
src = fetchPypi {
inherit pname version;
- sha256 = "6b57f563900ecfe126015223a259463848daafbdc2687442317c0992773b9054";
+ sha256 = "0afa0486a76305cac441b5cc80d5d4ccd82b20875da7c5119ecfe616cefef45f";
};
- propagatedBuildInputs = [ flask markupsafe decorator itsdangerous six ];
+ patches = [
+ # https://github.com/kennethreitz/httpbin/issues/403
+ # https://github.com/kennethreitz/flask-common/issues/7
+ # https://github.com/evansd/whitenoise/issues/166
+ (fetchpatch {
+ url = "https://github.com/javabrett/httpbin/commit/5735c888e1e51b369fcec41b91670a90535e661e.patch";
+ sha256 = "167h8mscdjagml33dyqk8nziiz3dqbggnkl6agsirk5270nl5f7q";
+ })
+ ];
+
+ propagatedBuildInputs = [ brotlipy flask flask-common flask-limiter markupsafe decorator itsdangerous raven six ];
# No tests
doCheck = false;
diff --git a/pkgs/development/python-modules/hypothesis/default.nix b/pkgs/development/python-modules/hypothesis/default.nix
index ab56cde9c13..91939d14688 100644
--- a/pkgs/development/python-modules/hypothesis/default.nix
+++ b/pkgs/development/python-modules/hypothesis/default.nix
@@ -1,6 +1,6 @@
{ stdenv, buildPythonPackage, fetchFromGitHub, python
, pythonOlder, pythonAtLeast, enum34
-, doCheck ? true, pytest, pytest_xdist, flake8, flaky
+, doCheck ? true, pytest, pytest_xdist, flake8, flaky, mock
}:
buildPythonPackage rec {
# http://hypothesis.readthedocs.org/en/latest/packaging.html
@@ -9,7 +9,7 @@ buildPythonPackage rec {
# pytz fake_factory django numpy pytest
# If you need these, you can just add them to your environment.
- version = "3.11.1";
+ version = "3.27.0";
pname = "hypothesis";
name = "${pname}-${version}";
@@ -18,10 +18,10 @@ buildPythonPackage rec {
owner = "HypothesisWorks";
repo = "hypothesis-python";
rev = "${version}";
- sha256 = "0damf6zbm0db2a3gfwrbbj92yal576wpmhhchc0w0np8vdnax70n";
- };
+ sha256 = "1lvhd8jrwajyc5w1alb9vinsi97fjfqpkxkh8g8j527831lig0j0";
+ };
- checkInputs = stdenv.lib.optionals doCheck [ pytest pytest_xdist flake8 flaky ];
+ checkInputs = stdenv.lib.optionals doCheck [ pytest pytest_xdist flake8 flaky mock];
propagatedBuildInputs = stdenv.lib.optionals (pythonOlder "3.4") [ enum34 ];
inherit doCheck;
@@ -38,7 +38,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "A Python library for property based testing";
- homepage = https://github.com/DRMacIver/hypothesis;
+ homepage = https://github.com/HypothesisWorks/hypothesis;
license = licenses.mpl20;
};
}
diff --git a/pkgs/development/python-modules/idna-ssl/default.nix b/pkgs/development/python-modules/idna-ssl/default.nix
new file mode 100644
index 00000000000..177e68f6295
--- /dev/null
+++ b/pkgs/development/python-modules/idna-ssl/default.nix
@@ -0,0 +1,23 @@
+{ lib, buildPythonPackage, fetchPypi, idna }:
+
+buildPythonPackage rec {
+ pname = "idna_ssl";
+ version = "1.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1227e44039bd31e02adaeafdbba61281596d623d222643fb021f87f2144ea147";
+ };
+
+ propagatedBuildInputs = [ idna ];
+
+ # Infinite recursion: tests require aiohttp, aiohttp requires idna-ssl
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Patch ssl.match_hostname for Unicode(idna) domains support";
+ homepage = https://github.com/aio-libs/idna-ssl;
+ license = licenses.mit;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/idna/default.nix b/pkgs/development/python-modules/idna/default.nix
new file mode 100644
index 00000000000..635f8b33d3c
--- /dev/null
+++ b/pkgs/development/python-modules/idna/default.nix
@@ -0,0 +1,20 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "idna";
+ version = "2.6";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "2c6a5de3089009e3da7c5dde64a141dbc8551d5b7f6cf4ed7c2568d0cc520a8f";
+ };
+
+ meta = {
+ homepage = "http://github.com/kjd/idna/";
+ description = "Internationalized Domain Names in Applications (IDNA)";
+ license = lib.licenses.bsd3;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/intervaltree/default.nix b/pkgs/development/python-modules/intervaltree/default.nix
index 69b35df2973..feccdff683e 100644
--- a/pkgs/development/python-modules/intervaltree/default.nix
+++ b/pkgs/development/python-modules/intervaltree/default.nix
@@ -17,10 +17,8 @@ buildPythonPackage rec {
checkPhase = ''
runHook preCheck
- # pytest will try to run tests for nix_run_setup.py / files in build/lib which fails
- mv nix_run_setup.py run_setup
rm build -rf
- ${python.interpreter} run_setup test
+ ${python.interpreter} nix_run_setup test
runHook postCheck
'';
diff --git a/pkgs/development/python-modules/ipykernel/default.nix b/pkgs/development/python-modules/ipykernel/default.nix
index a77f6ac9c2f..330141fcd06 100644
--- a/pkgs/development/python-modules/ipykernel/default.nix
+++ b/pkgs/development/python-modules/ipykernel/default.nix
@@ -13,12 +13,12 @@
buildPythonPackage rec {
pname = "ipykernel";
- version = "4.6.1";
+ version = "4.8.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "2e1825aca4e2585b5adb7953ea16e53f53a62159ed49952a564b1e23507205db";
+ sha256 = "dedc199df6a38725c732986dfa606c245fb8fe0fe999b33a0c305b73d80c6774";
};
buildInputs = [ nose ] ++ lib.optional isPy27 mock;
diff --git a/pkgs/development/python-modules/ipython/5.nix b/pkgs/development/python-modules/ipython/5.nix
index b25039cc71e..808853891e9 100644
--- a/pkgs/development/python-modules/ipython/5.nix
+++ b/pkgs/development/python-modules/ipython/5.nix
@@ -27,12 +27,12 @@
buildPythonPackage rec {
pname = "ipython";
- version = "5.3.0";
+ version = "5.5.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "bf5e615e7d96dac5a61fbf98d9e2926d98aa55582681bea7e9382992a3f43c1d";
+ sha256 = "66469e894d1f09d14a1f23b971a410af131daa9ad2a19922082e02e0ddfd150f";
};
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
diff --git a/pkgs/development/python-modules/ipywidgets/default.nix b/pkgs/development/python-modules/ipywidgets/default.nix
index 3d156323491..f77c3570c02 100644
--- a/pkgs/development/python-modules/ipywidgets/default.nix
+++ b/pkgs/development/python-modules/ipywidgets/default.nix
@@ -14,12 +14,12 @@
buildPythonPackage rec {
pname = "ipywidgets";
- version = "7.0.5";
+ version = "7.1.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "321be3dc48193130ba16e8080172bb5cd052eb65e3ad0ea7b5f80ff73e24bc54";
+ sha256 = "3e2be7dea4f97c9a4df71ef065cad9f2e420dd901127bf7cb690fb56d2b34ea3";
};
# Tests are not distributed
diff --git a/pkgs/development/python-modules/iso8601/default.nix b/pkgs/development/python-modules/iso8601/default.nix
new file mode 100644
index 00000000000..4f9ff70556b
--- /dev/null
+++ b/pkgs/development/python-modules/iso8601/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytest
+}:
+
+buildPythonPackage rec {
+ pname = "iso8601";
+ version = "0.1.12";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "49c4b20e1f38aa5cf109ddcd39647ac419f928512c869dc01d5c7098eddede82";
+ };
+
+ checkInputs = [ pytest ];
+
+ checkPhase = ''
+ py.test iso8601
+ '';
+
+ meta = {
+ homepage = https://bitbucket.org/micktwomey/pyiso8601/;
+ description = "Simple module to parse ISO 8601 dates";
+ maintainers = with lib.maintainers; [ phreedom ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/jdcal/default.nix b/pkgs/development/python-modules/jdcal/default.nix
new file mode 100644
index 00000000000..d3ed32c0882
--- /dev/null
+++ b/pkgs/development/python-modules/jdcal/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytest
+}:
+
+buildPythonPackage rec {
+ pname = "jdcal";
+ version = "1.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "b760160f8dc8cc51d17875c6b663fafe64be699e10ce34b6a95184b5aa0fdc9e";
+ };
+
+ checkInputs = [ pytest ];
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = {
+ description = "A module containing functions for converting between Julian dates and calendar dates";
+ homepage = "https://github.com/phn/jdcal";
+ license = lib.licenses.bsd2;
+ maintainers = with lib.maintainers; [ lihop ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/jedi/default.nix b/pkgs/development/python-modules/jedi/default.nix
index bf9f9f9c082..df8a287ea09 100644
--- a/pkgs/development/python-modules/jedi/default.nix
+++ b/pkgs/development/python-modules/jedi/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "jedi";
- version = "0.11.0";
+ version = "0.11.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "f6d5973573e76b1fd2ea75f6dcd6445d02d41ff3af5fc61b275b4e323d1dd396";
+ sha256 = "d6e799d04d1ade9459ed0f20de47c32f2285438956a677d083d3c98def59fa97";
};
postPatch = ''
diff --git a/pkgs/development/python-modules/jellyfish/default.nix b/pkgs/development/python-modules/jellyfish/default.nix
new file mode 100644
index 00000000000..db83e6cb299
--- /dev/null
+++ b/pkgs/development/python-modules/jellyfish/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pytest
+, unicodecsv
+}:
+
+buildPythonPackage rec {
+ pname = "jellyfish";
+ version = "0.5.6";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "887a9a49d0caee913a883c3e7eb185f6260ebe2137562365be422d1316bd39c9";
+ };
+
+ checkInputs = [ pytest unicodecsv ];
+
+ meta = {
+ homepage = https://github.com/sunlightlabs/jellyfish;
+ description = "Approximate and phonetic matching of strings";
+ maintainers = with lib.maintainers; [ koral ];
+ };
+}
diff --git a/pkgs/development/python-modules/jinja2/default.nix b/pkgs/development/python-modules/jinja2/default.nix
index ca286ae06aa..cb0eb130a2f 100644
--- a/pkgs/development/python-modules/jinja2/default.nix
+++ b/pkgs/development/python-modules/jinja2/default.nix
@@ -1,20 +1,24 @@
-{ stdenv, buildPythonPackage, fetchPypi
-, markupsafe }:
+{ stdenv, buildPythonPackage, fetchFromGitHub
+, pytest, markupsafe }:
buildPythonPackage rec {
pname = "Jinja2";
version = "2.9.6";
name = "${pname}-${version}";
- src = fetchPypi {
- inherit pname version;
- sha256 = "1zzrkywhziqffrzks14kzixz7nd4yh2vc0fb04a68vfd2ai03anx";
+ src = fetchFromGitHub {
+ owner = "pallets";
+ repo = "jinja";
+ rev = version;
+ sha256 = "1xxc5vdhz214aawmllv0fi4ak6d7zac662yb7gn1xfgqfz392pg5";
};
+ checkInputs = [ pytest ];
propagatedBuildInputs = [ markupsafe ];
- # No tests included
- doCheck = false;
+ checkPhase = ''
+ pytest -v
+ '';
meta = with stdenv.lib; {
homepage = http://jinja.pocoo.org/;
@@ -24,7 +28,7 @@ buildPythonPackage rec {
Jinja2 is a template engine written in pure Python. It provides a
Django inspired non-XML syntax but supports inline expressions and
an optional sandboxed environment.
- '';
+ '';
platforms = platforms.all;
maintainers = with maintainers; [ pierron garbas sjourdois ];
};
diff --git a/pkgs/development/python-modules/jinja2_pluralize/default.nix b/pkgs/development/python-modules/jinja2_pluralize/default.nix
new file mode 100644
index 00000000000..5f80f4e4b20
--- /dev/null
+++ b/pkgs/development/python-modules/jinja2_pluralize/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonPackage, fetchPypi, jinja2, inflect }:
+
+buildPythonPackage rec {
+ pname = "jinja2_pluralize";
+ version = "0.3.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "071wnzzz20wjb0iw7grxgj1lb2f0kz50qyfbcq54rddr2x82sp6z";
+ };
+
+ propagatedBuildInputs = [
+ jinja2
+ inflect
+ ];
+
+ meta = with stdenv.lib; {
+ description = "Jinja2 pluralize filters";
+ homepage = https://github.com/audreyr/jinja2_pluralize;
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ dzabraev ];
+ };
+}
diff --git a/pkgs/development/python-modules/jsbeautifier/default.nix b/pkgs/development/python-modules/jsbeautifier/default.nix
index a2278566c6d..19b1eeefa53 100644
--- a/pkgs/development/python-modules/jsbeautifier/default.nix
+++ b/pkgs/development/python-modules/jsbeautifier/default.nix
@@ -2,7 +2,7 @@
buildPythonApplication rec {
pname = "jsbeautifier";
- version = "1.7.4";
+ version = "1.7.5";
name = "${pname}-${version}";
propagatedBuildInputs = [ six ];
@@ -11,7 +11,7 @@ buildPythonApplication rec {
src = fetchurl {
url = "mirror://pypi/j/jsbeautifier/${name}.tar.gz";
- sha256 = "7fc14f279117a55a5e854602f6e8c1cb178c6d83f7cf75e2e9f50678fe11079e";
+ sha256 = "78eb1e5c8535484f0d0b588aca38da3fb5e0e34de2d1ab53c077e71c55757473";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/jsondiff/default.nix b/pkgs/development/python-modules/jsondiff/default.nix
new file mode 100644
index 00000000000..9d4331c8ea8
--- /dev/null
+++ b/pkgs/development/python-modules/jsondiff/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "jsondiff";
+ version = "1.1.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "2d0437782de9418efa34e694aa59f43d7adb1899bd9a793f063867ddba8f7893";
+ };
+
+ # No tests
+ doCheck = false;
+
+ meta = {
+ description = "Diff JSON and JSON-like structures in Python";
+ homepage = https://github.com/ZoomerAnalytics/jsondiff;
+ license = lib.licenses.mit;
+ };
+
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/jsonpatch/default.nix b/pkgs/development/python-modules/jsonpatch/default.nix
index 39f36b1d949..8d238b4746d 100644
--- a/pkgs/development/python-modules/jsonpatch/default.nix
+++ b/pkgs/development/python-modules/jsonpatch/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "jsonpatch";
- version = "1.16";
+ version = "1.21";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "f025c28a08ce747429ee746bb21796c3b6417ec82288f8fe6514db7398f2af8a";
+ sha256 = "11f5ffdf543a83047a2f54ac28f8caad7f34724cb1ea26b27547fd974f1a2153";
};
# test files are missing
diff --git a/pkgs/development/python-modules/jsonpickle/default.nix b/pkgs/development/python-modules/jsonpickle/default.nix
new file mode 100644
index 00000000000..2d9f02a5aff
--- /dev/null
+++ b/pkgs/development/python-modules/jsonpickle/default.nix
@@ -0,0 +1,23 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "jsonpickle";
+ version = "0.9.5";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "cc25dc79571d4ad7db59d05ddb7de0d76a8d598cf6136e1dbeaa9361ebcfe749";
+ };
+
+ doCheck = false;
+
+ meta = {
+ description = "Python library for serializing any arbitrary object graph into JSON";
+ homepage = http://jsonpickle.github.io/;
+ license = lib.licenses.bsd3;
+ };
+
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/jupyter_client/default.nix b/pkgs/development/python-modules/jupyter_client/default.nix
index 3782d313df8..42d7752eda3 100644
--- a/pkgs/development/python-modules/jupyter_client/default.nix
+++ b/pkgs/development/python-modules/jupyter_client/default.nix
@@ -1,30 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
-, nose
, traitlets
, jupyter_core
, pyzmq
, dateutil
, isPyPy
, py
+, ipykernel
+, ipython
+, mock
+, pytest
}:
buildPythonPackage rec {
pname = "jupyter_client";
- version = "5.1.0";
- name = "${pname}-${version}";
+ version = "5.2.1";
src = fetchPypi {
inherit pname version;
- sha256 = "08756b021765c97bc5665390700a4255c2df31666ead8bff116b368d09912aba";
+ sha256 = "462790d46b244f0a631ea5e3cd5cdbad6874d5d24cc0ff512deb7c16cdf8653d";
};
- buildInputs = [ nose ];
+ checkInputs = [ ipykernel ipython mock pytest ];
propagatedBuildInputs = [traitlets jupyter_core pyzmq dateutil] ++ lib.optional isPyPy py;
checkPhase = ''
- nosetests -v
+ py.test
'';
# Circular dependency with ipykernel
diff --git a/pkgs/development/python-modules/jupyter_core/default.nix b/pkgs/development/python-modules/jupyter_core/default.nix
index 4db36cf7b37..403f7c047d5 100644
--- a/pkgs/development/python-modules/jupyter_core/default.nix
+++ b/pkgs/development/python-modules/jupyter_core/default.nix
@@ -11,15 +11,15 @@
buildPythonPackage rec {
pname = "jupyter_core";
- version = "4.3.0";
+ version = "4.4.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "a96b129e1641425bf057c3d46f4f44adce747a7d60107e8ad771045c36514d40";
+ sha256 = "ba70754aa680300306c699790128f6fbd8c306ee5927976cbe48adacf240c0b7";
};
- buildInputs = [ pytest mock glibcLocales ];
+ checkInputs = [ pytest mock glibcLocales ];
propagatedBuildInputs = [ ipython traitlets ];
patches = [ ./tests_respect_pythonpath.patch ];
diff --git a/pkgs/development/python-modules/jupyter_core/tests_respect_pythonpath.patch b/pkgs/development/python-modules/jupyter_core/tests_respect_pythonpath.patch
index 61415b756ab..7e7e9ae93a0 100644
--- a/pkgs/development/python-modules/jupyter_core/tests_respect_pythonpath.patch
+++ b/pkgs/development/python-modules/jupyter_core/tests_respect_pythonpath.patch
@@ -1,24 +1,20 @@
---- a/jupyter_core/tests/test_command.py 2016-09-13 15:22:49.000000000 +0200
-+++ b/jupyter_core/tests/test_command.py 2017-10-23 12:49:27.489527705 +0200
-@@ -113,7 +113,10 @@
- witness = a.join(witness_cmd)
- witness.write('#!%s\n%s\n' % (sys.executable, 'print("WITNESS ME")'))
- witness.chmod(0o700)
-- out = check_output([sys.executable, str(jupyter), 'witness'], env={'PATH': ''})
-+ out = check_output(
-+ [sys.executable, str(jupyter), 'witness'],
-+ env={'PATH': '', 'PYTHONPATH': os.environ['PYTHONPATH']}
-+ )
- assert b'WITNESS' in out
-
-
-@@ -136,5 +139,8 @@
- witness_b.write('#!%s\n%s\n' % (sys.executable, 'print("WITNESS B")'))
- witness_b.chmod(0o700)
-
-- out = check_output([sys.executable, str(jupyter), 'witness'], env={'PATH': str(b)})
-+ out = check_output(
-+ [sys.executable, str(jupyter), 'witness'],
-+ env={'PATH': str(b), 'PYTHONPATH': os.environ['PYTHONPATH']}
-+ )
- assert b'WITNESS A' in out
+--- a/jupyter_core/tests/test_command.py
++++ b/jupyter_core/tests/test_command.py
+@@ -131,7 +131,7 @@ def test_not_on_path(tmpdir):
+ witness_src = '#!%s\n%s\n' % (sys.executable, 'print("WITNESS ME")')
+ write_executable(witness, witness_src)
+
+- env = {'PATH': ''}
++ env = {'PATH': '', 'PYTHONPATH': os.environ['PYTHONPATH']}
+ if 'SYSTEMROOT' in os.environ: # Windows http://bugs.python.org/issue20614
+ env[str('SYSTEMROOT')] = os.environ['SYSTEMROOT']
+ if sys.platform == 'win32':
+@@ -157,7 +157,7 @@ def test_path_priority(tmpdir):
+ witness_b_src = '#!%s\n%s\n' % (sys.executable, 'print("WITNESS B")')
+ write_executable(witness_b, witness_b_src)
+
+- env = {'PATH': str(b)}
++ env = {'PATH': str(b), 'PYTHONPATH': os.environ['PYTHONPATH']}
+ if 'SYSTEMROOT' in os.environ: # Windows http://bugs.python.org/issue20614
+ env[str('SYSTEMROOT')] = os.environ['SYSTEMROOT']
+ if sys.platform == 'win32':
diff --git a/pkgs/development/python-modules/jupyterhub/default.nix b/pkgs/development/python-modules/jupyterhub/default.nix
new file mode 100644
index 00000000000..dbd2e36b7b8
--- /dev/null
+++ b/pkgs/development/python-modules/jupyterhub/default.nix
@@ -0,0 +1,122 @@
+{ lib
+, python
+, buildPythonPackage
+, fetchPypi
+, fetchzip
+, alembic
+, ipython
+, jinja2
+, python-oauth2
+, pamela
+, sqlalchemy
+, tornado
+, traitlets
+, requests
+, pythonOlder
+, nodejs-8_x
+, nodePackages
+}:
+
+let
+ # js/css assets that setup.py tries to fetch via `npm install` when building
+ # from source.
+ bootstrap =
+ fetchzip {
+ url = "https://registry.npmjs.org/bootstrap/-/bootstrap-3.3.7.tgz";
+ sha256 = "0r7s54bbf68ri1na9bbabyf12mcpb6zk5ja2q6z82aw1fa4xi3yd";
+ };
+ font-awesome =
+ fetchzip {
+ url = "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz";
+ sha256 = "1xnxbdlfdd60z5ix152m8r2kk9dkwlqwpypky1mm3dv64ajnzdbk";
+ };
+ jquery =
+ fetchzip {
+ url = "https://registry.npmjs.org/jquery/-/jquery-3.2.1.tgz";
+ sha256 = "1j6y18miwzafdj8kfpwbmbn9qvgnbnpc7l4arqrhqj33m04xrlgi";
+ };
+ moment =
+ fetchzip {
+ url = "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz";
+ sha256 = "1b4vyvs24v6y92pf2iqjm5aa7jg7khcpspn00girc7lpi917f9vw";
+ };
+ requirejs =
+ fetchzip {
+ url = "https://registry.npmjs.org/requirejs/-/requirejs-2.3.4.tgz";
+ sha256 = "0q6mkj0iv341kks06dya6lfs2kdw0n6vc7n4a7aa3ia530fk9vja";
+ };
+
+in
+
+buildPythonPackage rec {
+ pname = "jupyterhub";
+ version = "0.8.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "100cf18d539802807a45450d38fefbb376cf1c810f3b1b31be31638829a5c69c";
+ };
+
+ # Most of this only applies when building from source (e.g. js/css assets are
+ # pre-built and bundled in the official release tarball on pypi).
+ #
+ # Stuff that's always needed:
+ # * At runtime, we need configurable-http-proxy, so we substitute the store
+ # path.
+ #
+ # Other stuff that's only needed when building from source:
+ # * js/css assets are fetched from npm.
+ # * substitute store path for `lessc` commmand.
+ # * set up NODE_PATH so `lessc` can find `less-plugin-clean-css`.
+ # * don't run `npm install`.
+ preBuild = ''
+ export NODE_PATH=${nodePackages.less-plugin-clean-css}/lib/node_modules
+
+ substituteInPlace jupyterhub/proxy.py --replace \
+ "'configurable-http-proxy'" \
+ "'${nodePackages.configurable-http-proxy}/bin/configurable-http-proxy'"
+
+ substituteInPlace jupyterhub/tests/test_proxy.py --replace \
+ "'configurable-http-proxy'" \
+ "'${nodePackages.configurable-http-proxy}/bin/configurable-http-proxy'"
+
+ substituteInPlace setup.py --replace \
+ "'npm', 'run', 'lessc', '--'" \
+ "'${nodePackages.less}/bin/lessc'"
+
+ substituteInPlace setup.py --replace \
+ "'npm', 'install', '--progress=false'" \
+ "'true'"
+
+ declare -A deps
+ deps[bootstrap]=${bootstrap}
+ deps[font-awesome]=${font-awesome}
+ deps[jquery]=${jquery}
+ deps[moment]=${moment}
+ deps[requirejs]=${requirejs}
+
+ mkdir -p share/jupyter/hub/static/components
+ for dep in "''${!deps[@]}"; do
+ if [ ! -e share/jupyter/hub/static/components/$dep ]; then
+ cp -r ''${deps[$dep]} share/jupyter/hub/static/components/$dep
+ fi
+ done
+ '';
+
+ propagatedBuildInputs = [
+ alembic ipython jinja2 pamela python-oauth2 requests sqlalchemy tornado
+ traitlets
+ ];
+
+ # Disable tests because they take an excessive amount of time to complete.
+ doCheck = false;
+
+ disabled = pythonOlder "3.4";
+
+ meta = with lib; {
+ description = "Serves multiple Jupyter notebook instances";
+ homepage = http://jupyter.org/;
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ ixxie cstrahan ];
+ };
+}
diff --git a/pkgs/development/python-modules/keras/default.nix b/pkgs/development/python-modules/keras/default.nix
index d88b6e4999b..8ef263cdfa8 100644
--- a/pkgs/development/python-modules/keras/default.nix
+++ b/pkgs/development/python-modules/keras/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "Keras";
- version = "2.1.1";
+ version = "2.1.3";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "f0ca2458c60d9711edf4291230b31795307ad3781cb6232ff4792b53c8f55123";
+ sha256 = "7ca3a381523bad40a6922e88951a316664cb088fd01cea07e5ec8ada3327e3c7";
};
checkInputs = [
diff --git a/pkgs/development/python-modules/keyring/default.nix b/pkgs/development/python-modules/keyring/default.nix
index ca7a518665c..0f99152766a 100644
--- a/pkgs/development/python-modules/keyring/default.nix
+++ b/pkgs/development/python-modules/keyring/default.nix
@@ -1,23 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi
, secretstorage
, fs, gdata, python_keyczar, pyasn1, pycrypto, six, setuptools_scm
-, mock, pytest_28, pytestrunner }:
+, mock, pytest, pytestrunner }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "keyring";
- version = "10.4.0";
+ version = "10.6.0";
src = fetchPypi {
inherit pname version;
- sha256 = "09iv50c14mdmdk7sjd6bb47yg7347gymh6r8c0q4gfnzs173y6lh";
+ sha256 = "69c2b69d66a0db1165c6875c1833c52f4dc62179959692b30c8c4a4b8390d895";
};
buildInputs = [
fs gdata python_keyczar pyasn1 pycrypto six setuptools_scm
];
- checkInputs = [ mock pytest_28 pytestrunner ];
+ checkInputs = [ mock pytest pytestrunner ];
propagatedBuildInputs = [ secretstorage ];
diff --git a/pkgs/development/python-modules/kitchen/default.nix b/pkgs/development/python-modules/kitchen/default.nix
index a35737e69ba..b4b6c48201b 100644
--- a/pkgs/development/python-modules/kitchen/default.nix
+++ b/pkgs/development/python-modules/kitchen/default.nix
@@ -12,6 +12,6 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Kitchen contains a cornucopia of useful code";
license = licenses.lgpl2;
- maintainers = with maintainers; [ mornfall ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/koji/default.nix b/pkgs/development/python-modules/koji/default.nix
index 56865b336be..f2073a48c58 100644
--- a/pkgs/development/python-modules/koji/default.nix
+++ b/pkgs/development/python-modules/koji/default.nix
@@ -25,7 +25,7 @@ buildPythonPackage rec {
'';
meta = {
- maintainers = [ stdenv.lib.maintainers.mornfall ];
+ maintainers = [ ];
platforms = stdenv.lib.platforms.linux;
};
}
diff --git a/pkgs/development/python-modules/lark-parser/default.nix b/pkgs/development/python-modules/lark-parser/default.nix
index b81cc132a2d..a1b58a4eb05 100644
--- a/pkgs/development/python-modules/lark-parser/default.nix
+++ b/pkgs/development/python-modules/lark-parser/default.nix
@@ -6,13 +6,13 @@
buildPythonPackage rec {
pname = "lark-parser"; # PyPI name
- version = "2017-12-10";
+ version = "2017-12-18";
src = fetchFromGitHub {
owner = "erezsh";
repo = "lark";
- rev = "852607b978584ecdec68ac115dd8554cdb0a2305";
- sha256 = "1clzmvbp1b4zamcm6ldak0hkw46n3lhw4b28qq9xdl0n4va6zig7";
+ rev = "9d6cde9b1ba971f02ea8106fa3b71a934e83d6fa";
+ sha256 = "0nv6nxd8wx9dwhn37m94fkc10gknckrjs1hzajxygla3dpql455j";
};
checkPhase = ''
diff --git a/pkgs/development/python-modules/ldap/default.nix b/pkgs/development/python-modules/ldap/default.nix
index 635308f3760..32f25eeda42 100644
--- a/pkgs/development/python-modules/ldap/default.nix
+++ b/pkgs/development/python-modules/ldap/default.nix
@@ -1,18 +1,18 @@
{ lib, writeText, buildPythonPackage, isPy3k, fetchPypi
-, openldap, cyrus_sasl, openssl, pytest }:
+, openldap, cyrus_sasl, openssl, pytest, pyasn1 }:
buildPythonPackage rec {
pname = "python-ldap";
- version = "2.4.45";
+ version = "2.5.2";
name = "${pname}-${version}";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "824fde180a53772e23edc031c4dd64ac1af4a3eade78f00d9d510937d562f64e";
+ sha256 = "b8c134dfedaef0e6ff4a4b94277708dcadb758b448905a83b8946df077356ed2";
};
- buildInputs = [ pytest ];
+ checkInputs = [ pytest pyasn1 ];
checkPhase = ''
# Needed by tests to setup a mockup ldap server.
diff --git a/pkgs/development/python-modules/ldap3/default.nix b/pkgs/development/python-modules/ldap3/default.nix
index 895272f351d..a58090680cd 100644
--- a/pkgs/development/python-modules/ldap3/default.nix
+++ b/pkgs/development/python-modules/ldap3/default.nix
@@ -1,13 +1,12 @@
{ stdenv, fetchPypi, buildPythonPackage, gssapi, pyasn1 }:
buildPythonPackage rec {
- version = "2.3";
+ version = "2.4.1";
pname = "ldap3";
- name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "1b36lwil4iflk2ay8gi663abpnfm8id7qg4n3jkmmqbnc1sv6mn0";
+ sha256 = "1a66pc00az0nx9kvhzidbg099pvk52ngycf891bp5jyfm1ahvzp8";
};
buildInputs = [ gssapi ];
diff --git a/pkgs/development/python-modules/ldaptor/default.nix b/pkgs/development/python-modules/ldaptor/default.nix
new file mode 100644
index 00000000000..4eab700ff14
--- /dev/null
+++ b/pkgs/development/python-modules/ldaptor/default.nix
@@ -0,0 +1,35 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, twisted
+, pycrypto
+, pyopenssl
+, pyparsing
+, zope_interface
+, isPy3k
+}:
+
+buildPythonPackage rec {
+ pname = "ldaptor";
+ version = "16.0.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "6b9ebe5814e9e7091703c4e3bfeae73b46508b4678e2ff403cddaedf8213815d";
+ };
+
+ propagatedBuildInputs = [
+ twisted pycrypto pyopenssl pyparsing zope_interface
+ ];
+
+ disabled = isPy3k;
+
+ # TypeError: None is neither bytes nor unicode
+ doCheck = false;
+
+ meta = {
+ description = "A Pure-Python Twisted library for LDAP";
+ homepage = https://github.com/twisted/ldaptor;
+ license = lib.licenses.mit;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/libagent/default.nix b/pkgs/development/python-modules/libagent/default.nix
index e8cecda7589..d6c96534d74 100644
--- a/pkgs/development/python-modules/libagent/default.nix
+++ b/pkgs/development/python-modules/libagent/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "libagent";
- version = "0.9.5";
+ version = "0.9.7";
src = fetchPypi{
inherit pname version;
- sha256 = "982b81c19dc9ee1158dc32fedbe1c36aff2b6872fa0dd42173b639b965ccfb2e";
+ sha256 = "3ae14dc14859f7b4b92583ab0d40884ac07f26dbe00c7b747df2d50f4b1af098";
};
buildInputs = [
diff --git a/pkgs/development/python-modules/libtmux/default.nix b/pkgs/development/python-modules/libtmux/default.nix
index 57f8d2c8114..3fe0b3911c2 100644
--- a/pkgs/development/python-modules/libtmux/default.nix
+++ b/pkgs/development/python-modules/libtmux/default.nix
@@ -1,7 +1,6 @@
-{ stdenv, fetchPypi, buildPythonPackage, pytest_29 }:
+{ stdenv, fetchPypi, buildPythonPackage, pytest }:
buildPythonPackage rec {
- name = "${pname}-${version}";
pname = "libtmux";
version = "0.7.7";
@@ -10,11 +9,14 @@ buildPythonPackage rec {
sha256 = "5670c8da8d0192d932ac1e34f010e0eeb098cdb2af6daad0307b5418e7a37733";
};
- buildInputs = [ pytest_29 ];
- patchPhase = ''
+ checkInputs = [ pytest ];
+ postPatch = ''
sed -i 's/==.*$//' requirements/test.txt
'';
+ # No tests in archive
+ doCheck = false;
+
meta = with stdenv.lib; {
description = "Scripting library for tmux";
homepage = https://libtmux.readthedocs.io/;
diff --git a/pkgs/development/python-modules/libusb1/default.nix b/pkgs/development/python-modules/libusb1/default.nix
new file mode 100644
index 00000000000..f3b48eaa576
--- /dev/null
+++ b/pkgs/development/python-modules/libusb1/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, lib, buildPythonPackage, fetchPypi, libusb1 }:
+
+buildPythonPackage rec {
+ pname = "libusb1";
+ version = "1.6.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "03b7xrz8vqg8w0za5r503jhcmbd1ls5610jcja1rqz833nf0v4wc";
+ };
+
+ postPatch = lib.optionalString stdenv.isLinux ''
+ substituteInPlace usb1/libusb1.py --replace \
+ "ctypes.util.find_library(base_name)" \
+ "'${libusb1}/lib/libusb-1.0${stdenv.hostPlatform.extensions.sharedLibrary}'"
+ '';
+
+ buildInputs = [ libusb1 ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/vpelletier/python-libusb1;
+ description = "Python ctype-based wrapper around libusb1";
+ license = licenses.lgpl2Plus;
+ maintainers = with maintainers; [ rnhmjoj ];
+ };
+}
diff --git a/pkgs/development/python-modules/limits/default.nix b/pkgs/development/python-modules/limits/default.nix
new file mode 100644
index 00000000000..672cad5bfe1
--- /dev/null
+++ b/pkgs/development/python-modules/limits/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchPypi, buildPythonPackage, six }:
+
+buildPythonPackage rec {
+ pname = "limits";
+ version = "1.2.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0dfbrmqixsvhvzqgd4s8rfj933k1w5q4bm23pp9zyp70xlb0mfmd";
+ };
+
+ propagatedBuildInputs = [ six ];
+
+ doCheck = false; # ifilter
+
+ meta = with stdenv.lib; {
+ description = "Rate limiting utilities";
+ license = licenses.mit;
+ homepage = https://limits.readthedocs.org/;
+ };
+}
diff --git a/pkgs/development/python-modules/line_profiler/default.nix b/pkgs/development/python-modules/line_profiler/default.nix
index 570bba2a8c4..26dfda613f7 100644
--- a/pkgs/development/python-modules/line_profiler/default.nix
+++ b/pkgs/development/python-modules/line_profiler/default.nix
@@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "line_profiler";
- version = "2.0";
+ version = "2.1.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "739f8ad0e4bcd0cb82e99afc09e00a0351234f6b3f0b1f7f0090a8a2fbbf8381";
+ sha256 = "efa66e9e3045aa7cb1dd4bf0106e07dec9f80bc781a993fbaf8162a36c20af5c";
};
buildInputs = [ cython ];
diff --git a/pkgs/development/python-modules/llfuse/default.nix b/pkgs/development/python-modules/llfuse/default.nix
index 4c4c89d8f19..ef4d9fb5d02 100644
--- a/pkgs/development/python-modules/llfuse/default.nix
+++ b/pkgs/development/python-modules/llfuse/default.nix
@@ -4,12 +4,12 @@
buildPythonPackage rec {
pname = "llfuse";
- version = "1.0";
+ version = "1.3.2";
name = pname + "-" + version;
src = fetchurl {
url = "mirror://pypi/l/llfuse/${name}.tar.bz2";
- sha256 = "1li7q04ljrvwharw4fblcbfhvk6s0l3lnv8yqb4c22lcgbkiqlps";
+ sha256 = "96252a286a2be25810904d969b330ef2a57c2b9c18c5b503bbfbae40feb2bb63";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/python-modules/llvmlite/default.nix b/pkgs/development/python-modules/llvmlite/default.nix
index 57deaf3caf3..d702d8f95b0 100644
--- a/pkgs/development/python-modules/llvmlite/default.nix
+++ b/pkgs/development/python-modules/llvmlite/default.nix
@@ -1,5 +1,5 @@
{ stdenv
-, fetchurl
+, fetchPypi
, buildPythonPackage
, python
, llvm
@@ -10,21 +10,20 @@
buildPythonPackage rec {
pname = "llvmlite";
- name = "${pname}-${version}";
- version = "0.20.0";
+ version = "0.21.0";
disabled = isPyPy;
- src = fetchurl {
- url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
- sha256 = "b2f174848df16bb9195a07fec102110a06d018da736bd9b3570a54d44c797c29";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "3a5dd0695fdfb9fd47464cd71791b84935bf9642e11f4811d57aa1f2da8cdaa8";
};
propagatedBuildInputs = [ llvm ] ++ stdenv.lib.optional (pythonOlder "3.4") enum34;
# Disable static linking
# https://github.com/numba/llvmlite/issues/93
- patchPhase = ''
+ postPatch = ''
substituteInPlace ffi/Makefile.linux --replace "-static-libstdc++" ""
substituteInPlace llvmlite/tests/test_binding.py --replace "test_linux" "nope"
diff --git a/pkgs/development/python-modules/ltc_scrypt/default.nix b/pkgs/development/python-modules/ltc_scrypt/default.nix
deleted file mode 100644
index 273571c66e1..00000000000
--- a/pkgs/development/python-modules/ltc_scrypt/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ stdenv
-, buildPythonPackage
-, fetchPypi
-}:
-
-buildPythonPackage rec {
- pname = "ltc_scrypt";
- version = "1.0";
- name = "${pname}-${version}";
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "1h90hh3iw4i7zs7jgskdjlk8gi97b3v2zqsxdfwdvhrrnhpvv856";
- };
-
- meta = with stdenv.lib; {
- description = "Bindings for scrypt proof of work used by Litecoin";
- homepage = https://pypi.python.org/pypi/ltc_scrypt;
- maintainers = with maintainers; [ asymmetric ];
- license = licenses.bsd2;
- };
-}
diff --git a/pkgs/development/python-modules/lxml/default.nix b/pkgs/development/python-modules/lxml/default.nix
new file mode 100644
index 00000000000..bfd0c8227ee
--- /dev/null
+++ b/pkgs/development/python-modules/lxml/default.nix
@@ -0,0 +1,27 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, libxml2
+, libxslt
+}:
+
+buildPythonPackage rec {
+ pname = "lxml";
+ version = "4.1.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a5cfd0f40e";
+ };
+
+ buildInputs = [ libxml2 libxslt ];
+
+ hardeningDisable = stdenv.lib.optional stdenv.isDarwin "format";
+
+ meta = {
+ description = "Pythonic binding for the libxml2 and libxslt libraries";
+ homepage = http://lxml.de;
+ license = stdenv.lib.licenses.bsd3;
+ maintainers = with stdenv.lib.maintainers; [ sjourdois ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/marionette-harness/default.nix b/pkgs/development/python-modules/marionette-harness/default.nix
index fbdd13a7f38..f909974db6b 100644
--- a/pkgs/development/python-modules/marionette-harness/default.nix
+++ b/pkgs/development/python-modules/marionette-harness/default.nix
@@ -14,13 +14,13 @@
buildPythonPackage rec {
pname = "marionette-harness";
- version = "4.1.0";
+ version = "4.3.0";
name = "${pname}-${version}";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "20c188791e28d586c58acf86ff28cb704c4195a4da6eb10db7b8c6771e3f2983";
+ sha256 = "a98bb65a0c63f60d9e3d7ef21dabc9c29676917dc2ec0d46851a3ed694c820cc";
};
propagatedBuildInputs = [ mozprofile mozversion browsermob-proxy moztest
diff --git a/pkgs/development/python-modules/marionette-harness/marionette_driver.nix b/pkgs/development/python-modules/marionette-harness/marionette_driver.nix
index d3eab83eea8..4315b08e016 100644
--- a/pkgs/development/python-modules/marionette-harness/marionette_driver.nix
+++ b/pkgs/development/python-modules/marionette-harness/marionette_driver.nix
@@ -9,13 +9,13 @@
buildPythonPackage rec {
pname = "marionette_driver";
- version = "2.3.0";
+ version = "2.5.0";
name = "${pname}-${version}";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "0ab9xxsp0zvckf32k84n52hpibw2c62sa2pmx821d3q0d67yv2vv";
+ sha256 = "0axhdin9ys3i9lnwqqqw87wap9000bk6cdgrzpd2gqricc7l3v65";
};
propagatedBuildInputs = [ mozversion mozrunner ];
diff --git a/pkgs/development/python-modules/markdown/default.nix b/pkgs/development/python-modules/markdown/default.nix
new file mode 100644
index 00000000000..515dee0e766
--- /dev/null
+++ b/pkgs/development/python-modules/markdown/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, nose
+, pyyaml
+}:
+
+buildPythonPackage rec {
+ pname = "Markdown";
+ version = "2.6.10";
+
+ src = fetchPypi {
+ extension = "zip";
+ inherit pname version;
+ sha256 = "cfa536d1ee8984007fcecc5a38a493ff05c174cb74cb2341dafd175e6bc30851";
+ };
+
+ # error: invalid command 'test'
+# doCheck = false;
+
+ checkInputs = [ nose pyyaml ];
+
+ meta = {
+ description = "A Python implementation of John Gruber’s Markdown with Extension support";
+ homepage = https://github.com/Python-Markdown/markdown;
+ license = lib.licenses.bsd3;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/marshmallow/default.nix b/pkgs/development/python-modules/marshmallow/default.nix
index afb60801dc9..a9db6ef1e84 100644
--- a/pkgs/development/python-modules/marshmallow/default.nix
+++ b/pkgs/development/python-modules/marshmallow/default.nix
@@ -5,7 +5,7 @@
buildPythonPackage rec {
pname = "marshmallow";
name = "${pname}-${version}";
- version = "2.14.0";
+ version = "2.15.0";
meta = {
homepage = "https://github.com/marshmallow-code/marshmallow";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "09943a460026b9a61c3f4cedd0e5ccfed7cfce3271debd19e3f97df561088718";
+ sha256 = "d3f31fe7be2106b1d783cbd0765ef4e1c6615505514695f33082805f929dd584";
};
propagatedBuildInputs = [ dateutil simplejson ];
diff --git a/pkgs/development/python-modules/matplotlib/default.nix b/pkgs/development/python-modules/matplotlib/default.nix
index 345a21ecddf..33505b5f618 100644
--- a/pkgs/development/python-modules/matplotlib/default.nix
+++ b/pkgs/development/python-modules/matplotlib/default.nix
@@ -20,13 +20,13 @@ assert enableTk -> (tcl != null)
assert enableQt -> pyqt4 != null;
buildPythonPackage rec {
- version = "2.1.0";
+ version = "2.1.1";
pname = "matplotlib";
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/m/matplotlib/${name}.tar.gz";
- sha256 = "4b5f16c9cefde553ea79975305dcaa67c8e13d927b6e55aa14b4a8d867e25387";
+ sha256 = "659f5e1aa0e0f01488c61eff47560c43b8be511c6a29293d7f3896ae17bd8b23";
};
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
diff --git a/pkgs/development/python-modules/maya/default.nix b/pkgs/development/python-modules/maya/default.nix
new file mode 100644
index 00000000000..9c6cb241fea
--- /dev/null
+++ b/pkgs/development/python-modules/maya/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, fetchPypi, fetchpatch, buildPythonPackage
+, dateparser, humanize, pendulum, ruamel_yaml, tzlocal }:
+
+buildPythonPackage rec {
+ pname = "maya";
+ version = "0.3.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1x88k4irpckvd7jf2yvqjw1s52hjqbxym1r1d928yb3fkj7rvlxs";
+ };
+
+ patches = [
+ (fetchpatch {
+ # https://github.com/kennethreitz/maya/issues/112
+ # Merged, so should be in next release.
+ url = "https://github.com/kennethreitz/maya/commit/f69a93b1103130139cdec30511777823957fb659.patch";
+ sha256 = "152ba7amv9dhhx1wcklfalsdzsxggik9f7rsrikms921lq9xqc8h";
+ })
+ ];
+
+ propagatedBuildInputs = [ dateparser humanize pendulum ruamel_yaml tzlocal ];
+
+ # No tests
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Datetimes for Humans";
+ homepage = https://github.com/kennethreitz/maya;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/mdp/default.nix b/pkgs/development/python-modules/mdp/default.nix
index 28f6057e563..9fbaced9b65 100644
--- a/pkgs/development/python-modules/mdp/default.nix
+++ b/pkgs/development/python-modules/mdp/default.nix
@@ -1,16 +1,15 @@
-{ stdenv, buildPythonPackage, fetchPypi, pytest_29, future, numpy }:
+{ stdenv, buildPythonPackage, fetchPypi, pytest, future, numpy }:
buildPythonPackage rec {
pname = "MDP";
version = "3.5";
- name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k";
};
- checkInputs = [ pytest_29 ];
+ checkInputs = [ pytest ];
propagatedBuildInputs = [ future numpy ];
# Tests disabled because of missing dependencies not in nix
diff --git a/pkgs/development/python-modules/meinheld/default.nix b/pkgs/development/python-modules/meinheld/default.nix
new file mode 100644
index 00000000000..526cd3ed4ee
--- /dev/null
+++ b/pkgs/development/python-modules/meinheld/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchPypi, buildPythonPackage, greenlet }:
+
+buildPythonPackage rec {
+ pname = "meinheld";
+ version = "0.6.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0rg5878njn66cc0x2fwrakikz24946r0cxxl6j8vvz5phd4zygi9";
+ };
+
+ propagatedBuildInputs = [ greenlet ];
+
+ # No tests
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "High performance asynchronous Python WSGI Web Server";
+ homepage = http://meinheld.org/;
+ license = licenses.bsd3;
+ };
+}
diff --git a/pkgs/development/python-modules/mistune/default.nix b/pkgs/development/python-modules/mistune/default.nix
index 14aef5b00d1..7ab4a184263 100644
--- a/pkgs/development/python-modules/mistune/default.nix
+++ b/pkgs/development/python-modules/mistune/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec {
pname = "mistune";
- version = "0.7.4";
+ version = "0.8.3";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0byj9jg9ly7karf5sb1aqcw7avaim9sxl8ws7yw7p1fibjgsy5w5";
+ sha256 = "bc10c33bfdcaa4e749b779f62f60d6e12f8215c46a292d05e486b869ae306619";
};
buildInputs = [ nose ];
diff --git a/pkgs/development/python-modules/moto/default.nix b/pkgs/development/python-modules/moto/default.nix
index cf74e1dc134..84096d8aa92 100644
--- a/pkgs/development/python-modules/moto/default.nix
+++ b/pkgs/development/python-modules/moto/default.nix
@@ -1,17 +1,20 @@
-{ stdenv, buildPythonPackage, fetchPypi, jinja2, werkzeug, flask, requests, pytz
-, six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil }:
+{ stdenv, buildPythonPackage, fetchPypi, jinja2, werkzeug, flask
+, requests, pytz, backports_tempfile, cookies, jsondiff, botocore, aws-xray-sdk, docker
+, six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil, mock, pyaml }:
buildPythonPackage rec {
pname = "moto";
- version = "0.4.31";
- name = "moto-${version}";
+ version = "1.2.0";
+
src = fetchPypi {
inherit pname version;
- sha256 = "19s8hfz4mzzzdksa0ddlvrga5mxdaqahk89p5l29a5id8127shr8";
+ sha256 = "c42b894cdf35412c95f0c6b40309cf802436e049cd172dc5db7516c7b845191b";
};
propagatedBuildInputs = [
+ aws-xray-sdk
boto
+ boto3
dateutil
flask
httpretty
@@ -21,6 +24,13 @@ buildPythonPackage rec {
requests
six
xmltodict
+ mock
+ pyaml
+ backports_tempfile
+ cookies
+ jsondiff
+ botocore
+ docker
];
checkInputs = [ boto3 nose sure freezegun ];
diff --git a/pkgs/development/python-modules/multidict/default.nix b/pkgs/development/python-modules/multidict/default.nix
index 614157542b1..7eaa0962b44 100644
--- a/pkgs/development/python-modules/multidict/default.nix
+++ b/pkgs/development/python-modules/multidict/default.nix
@@ -1,20 +1,18 @@
{ lib
-, fetchurl
+, fetchPypi
, buildPythonPackage
, cython
, pytest, psutil, pytestrunner
, isPy3k
}:
-let
+buildPythonPackage rec {
pname = "multidict";
- version = "3.3.2";
-in buildPythonPackage rec {
- name = "${pname}-${version}";
+ version = "4.1.0";
- src = fetchurl {
- url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
- sha256 = "f82e61c7408ed0dce1862100db55595481911f159d6ddec0b375d35b6449509b";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0liazqlyk2nmr82nhiw2z72j7bjqxaisifkj476msw140d4i4i7v";
};
buildInputs = [ cython ];
@@ -22,9 +20,10 @@ in buildPythonPackage rec {
disabled = !isPy3k;
- meta = {
+ meta = with lib; {
description = "Multidict implementation";
homepage = https://github.com/aio-libs/multidict/;
- license = lib.licenses.asl20;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ dotlambda ];
};
}
diff --git a/pkgs/development/python-modules/mygpoclient/default.nix b/pkgs/development/python-modules/mygpoclient/default.nix
new file mode 100644
index 00000000000..097898a2d84
--- /dev/null
+++ b/pkgs/development/python-modules/mygpoclient/default.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchFromGitHub, buildPythonPackage, nose, minimock }:
+
+buildPythonPackage rec {
+ pname = "mypgoclient";
+ version = "1.8";
+
+ src = fetchFromGitHub {
+ owner = "gpodder";
+ repo = "mygpoclient";
+ rev = version;
+ sha256 = "0aa28wc55x3rxa7clwfv5v5500ffyaq0vkxaa3v01y1r93dxkdvp";
+ };
+
+ checkInputs = [ nose minimock ];
+
+ checkPhase = ''
+ nosetests
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A gpodder.net client library";
+ longDescription = ''
+ The mygpoclient library allows developers to utilize a Pythonic interface
+ to the gpodder.net web services.
+ '';
+ homepage = https://github.com/gpodder/mygpoclient;
+ license = with licenses; [ gpl3 ];
+ maintainers = with maintainers; [ skeidel ];
+ };
+}
diff --git a/pkgs/development/python-modules/natsort/default.nix b/pkgs/development/python-modules/natsort/default.nix
index 4fc1f7255c6..8e81f923b91 100644
--- a/pkgs/development/python-modules/natsort/default.nix
+++ b/pkgs/development/python-modules/natsort/default.nix
@@ -39,9 +39,7 @@ buildPythonPackage rec {
sha256 = "9ffbfb74bf3fc3905be1b9b052ed865675651e38fcd972ed1ed5c64a02f93cbd";
};
- # do not run checks on nix_run_setup.py
- patches = lib.singleton ./setup.patch
- ++ lib.optional (isPy35 || isPy36) ./python-3.6.3-test-failures.patch;
+ patches = lib.optional (isPy35 || isPy36) ./python-3.6.3-test-failures.patch;
# testing based on project's tox.ini
checkPhase = ''
diff --git a/pkgs/development/python-modules/natsort/setup.patch b/pkgs/development/python-modules/natsort/setup.patch
deleted file mode 100644
index 4c52b740152..00000000000
--- a/pkgs/development/python-modules/natsort/setup.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/setup.cfg b/setup.cfg
-index 604994d..e38c3ec 100644
---- a/setup.cfg
-+++ b/setup.cfg
-@@ -6,6 +6,7 @@ formats = gztar
-
- [tool:pytest]
- flakes-ignore =
-+ nix_run_setup.py ALL
- natsort/compat/py23.py UndefinedName
- natsort/__init__.py UnusedImport
- natsort/compat/* UnusedImport
-@@ -14,6 +15,7 @@ flakes-ignore =
- test_natsort/test_locale_help.py UnusedImport RedefinedWhileUnused
- test_natsort/compat/* UnusedImport
- pep8ignore =
-+ nix_run_setup.py ALL
- natsort/ns_enum.py E126 E241 E123 E221
- test_natsort/test_*.py E501 E241 E221
- test_natsort/test_natsort_keygen.py E501 E241 E221 E701
diff --git a/pkgs/development/python-modules/nbxmpp/default.nix b/pkgs/development/python-modules/nbxmpp/default.nix
index 964b42fe4ee..26525adb1c9 100644
--- a/pkgs/development/python-modules/nbxmpp/default.nix
+++ b/pkgs/development/python-modules/nbxmpp/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "nbxmpp";
- version = "0.6.0";
+ version = "0.6.2";
src = fetchPypi {
inherit pname version;
- sha256 = "0x495yb0abkdspyziw7dyyjwxx6ivnv5zznk92wa3mcind5s9757";
+ sha256 = "10bfb12b083a7509779298c31b4b61e2ed7e78d1960cbcfb3de8d38f3b830991";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/netdisco/default.nix b/pkgs/development/python-modules/netdisco/default.nix
new file mode 100644
index 00000000000..96de3ee2836
--- /dev/null
+++ b/pkgs/development/python-modules/netdisco/default.nix
@@ -0,0 +1,32 @@
+{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub, requests, zeroconf, netifaces, pytest }:
+
+buildPythonPackage rec {
+ pname = "netdisco";
+ version = "1.2.4";
+
+ disabled = !isPy3k;
+
+ # PyPI is missing tests/ directory
+ src = fetchFromGitHub {
+ owner = "home-assistant";
+ repo = pname;
+ rev = version;
+ sha256 = "170s9py8rw07cfgwvv7mf69g8jjg32m2rgw8x3kbvjqlmrdijxmm";
+ };
+
+ propagatedBuildInputs = [ requests zeroconf netifaces ];
+
+ checkInputs = [ pytest ];
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Python library to scan local network for services and devices";
+ homepage = https://github.com/home-assistant/netdisco/;
+ license = licenses.asl20;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/networkx/default.nix b/pkgs/development/python-modules/networkx/default.nix
new file mode 100644
index 00000000000..f6fc4139c85
--- /dev/null
+++ b/pkgs/development/python-modules/networkx/default.nix
@@ -0,0 +1,34 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, nose
+, decorator
+, isPy36
+, isPyPy
+}:
+
+buildPythonPackage rec {
+ pname = "networkx";
+ version = "1.11";
+
+ # Currently broken on PyPy.
+ # https://github.com/networkx/networkx/pull/1361
+ disabled = isPyPy;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1f74s56xb4ggixiq0vxyfxsfk8p20c7a099lpcf60izv1php03hd";
+ };
+
+ checkInputs = [ nose ];
+ propagatedBuildInputs = [ decorator ];
+
+ # 17 failures with 3.6 https://github.com/networkx/networkx/issues/2396#issuecomment-304437299
+ doCheck = !(isPy36);
+
+ meta = {
+ homepage = "https://networkx.github.io/";
+ description = "Library for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks";
+ license = lib.licenses.bsd3;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/nibabel/default.nix b/pkgs/development/python-modules/nibabel/default.nix
new file mode 100644
index 00000000000..7db4378a6e6
--- /dev/null
+++ b/pkgs/development/python-modules/nibabel/default.nix
@@ -0,0 +1,36 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, numpy
+, nose
+, six
+}:
+
+buildPythonPackage rec {
+ pname = "nibabel";
+ version = "2.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1h6nhi1s2ab7sdyyl3qjnvlw0kggcnam7vn4b3z56ay20596kvhw";
+ };
+
+ propagatedBuildInputs = [
+ numpy
+ nose
+ six
+ ];
+
+ # Failing tests
+ # nibabel.tests.test_minc1.test_old_namespace
+ # nibabel.gifti.tests.test_parse_gifti_fast.test_parse_dataarrays
+ # nibabel.gifti.tests.test_giftiio.test_read_deprecated
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ homepage = http://nipy.org/nibabel/;
+ description = "Access a multitude of neuroimaging data formats";
+ license = licenses.mit;
+ maintainers = with maintainers; [ ashgillman ];
+ };
+}
diff --git a/pkgs/development/python-modules/nilearn/default.nix b/pkgs/development/python-modules/nilearn/default.nix
index 16036a69179..6133abac705 100644
--- a/pkgs/development/python-modules/nilearn/default.nix
+++ b/pkgs/development/python-modules/nilearn/default.nix
@@ -3,12 +3,12 @@
buildPythonPackage rec {
pname = "nilearn";
- version = "0.3.1";
+ version = "0.4.0";
name = pname + "-" + version;
src = fetchPypi {
inherit pname version;
- sha256 = "0kkarh5cdcd2czs0bf0s1g51qas84mfxfq0dzd7k5h5l0qr4zy06";
+ sha256 = "bb692254bde35d7e1d3d1534d9b3117810b35a744724625f150fbbc64d519c02";
};
checkPhase = "nosetests --exclude with_expand_user nilearn/tests";
diff --git a/pkgs/development/python-modules/nimfa/default.nix b/pkgs/development/python-modules/nimfa/default.nix
new file mode 100644
index 00000000000..26f1ea3294b
--- /dev/null
+++ b/pkgs/development/python-modules/nimfa/default.nix
@@ -0,0 +1,30 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, isPy3k
+, numpy
+, scipy
+, matplotlib
+, pytest
+}:
+
+buildPythonPackage rec {
+ pname = "nimfa";
+ version = "1.3.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "651376eba6b049fe270dc0d29d4b2abecb5e998c2013df6735a97875503e2ffe";
+ };
+
+ propagatedBuildInputs = [ numpy scipy ];
+ checkInputs = [ matplotlib pytest ];
+ doCheck = !isPy3k; # https://github.com/marinkaz/nimfa/issues/42
+
+ meta = with stdenv.lib; {
+ description = "Nonnegative matrix factorization library";
+ homepage = "http://nimfa.biolab.si";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ ashgillman ];
+ };
+}
diff --git a/pkgs/development/python-modules/nipype/default.nix b/pkgs/development/python-modules/nipype/default.nix
new file mode 100644
index 00000000000..8ee6eeb104b
--- /dev/null
+++ b/pkgs/development/python-modules/nipype/default.nix
@@ -0,0 +1,68 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, isPy3k
+# python dependencies
+, click
+, configparser ? null
+, dateutil
+, funcsigs
+, future
+, mock
+, networkx
+, nibabel
+, numpy
+, packaging
+, prov
+, psutil
+, pydot
+, pytest
+, scipy
+, simplejson
+, traits
+, xvfbwrapper
+# other dependencies
+, which
+}:
+
+assert !isPy3k -> configparser != null;
+
+buildPythonPackage rec {
+ pname = "nipype";
+ version = "0.14.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0airdrh93vwmbfkqxp5cqfzm0zzqcvjnvphv3zhg197y39xxpl1k";
+ };
+
+ doCheck = false; # fails with TypeError: None is not callable
+ checkInputs = [ which ];
+ buildInputs = [ pytest mock ]; # required in installPhase
+ propagatedBuildInputs = [
+ click
+ dateutil
+ funcsigs
+ future
+ networkx
+ nibabel
+ numpy
+ packaging
+ prov
+ psutil
+ pydot
+ scipy
+ simplejson
+ traits
+ xvfbwrapper
+ ] ++ stdenv.lib.optional (!isPy3k) [
+ configparser
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = http://nipy.org/nipype/;
+ description = "Neuroimaging in Python: Pipelines and Interfaces";
+ license = licenses.bsd3;
+ maintainers = with maintainers; [ ashgillman ];
+ };
+}
diff --git a/pkgs/development/python-modules/node-semver/default.nix b/pkgs/development/python-modules/node-semver/default.nix
index 8c518f9b7ff..7351d2edfd3 100644
--- a/pkgs/development/python-modules/node-semver/default.nix
+++ b/pkgs/development/python-modules/node-semver/default.nix
@@ -2,14 +2,14 @@
buildPythonPackage rec {
name = "${pname}-${version}";
- version = "0.2.0";
+ version = "0.3.0";
pname = "node-semver";
buildInputs = [ pytest tox ];
src = fetchPypi {
inherit pname version;
- sha256 = "c32bfc976fd9e003c4a15665e5fe9f337366ba6b60aeb34e4479da9d7bbb0081";
+ sha256 = "d8a3906e7677f8ab05aeb3fc94c7a2fa163def5507271452ce6831282f23f1cb";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/nose-parameterized/default.nix b/pkgs/development/python-modules/nose-parameterized/default.nix
new file mode 100644
index 00000000000..3c7cd077cdc
--- /dev/null
+++ b/pkgs/development/python-modules/nose-parameterized/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchPypi, buildPythonPackage, nose, six, glibcLocales, isPy3k }:
+
+buildPythonPackage rec {
+ pname = "nose-parameterized";
+ version = "0.6.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1khlabgib4161vn6alxsjaa8javriywgx9vydddi659gp9x6fpnk";
+ };
+
+ # Tests require some python3-isms but code works without.
+ doCheck = isPy3k;
+
+ buildInputs = [ nose glibcLocales ];
+ propagatedBuildInputs = [ six ];
+
+ checkPhase = ''
+ LC_ALL="en_US.UTF-8" nosetests -v
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Parameterized testing with any Python test framework";
+ homepage = https://pypi.python.org/pypi/nose-parameterized;
+ license = licenses.bsd3;
+ };
+}
diff --git a/pkgs/development/python-modules/notebook/default.nix b/pkgs/development/python-modules/notebook/default.nix
index 2a23ff4de78..77ff31934c3 100644
--- a/pkgs/development/python-modules/notebook/default.nix
+++ b/pkgs/development/python-modules/notebook/default.nix
@@ -17,17 +17,17 @@
, ipykernel
, terminado
, requests
+, send2trash
, pexpect
}:
buildPythonPackage rec {
pname = "notebook";
- version = "5.2.1";
- name = "${pname}-${version}";
+ version = "5.3.1";
src = fetchPypi {
inherit pname version;
- sha256 = "4ae5b81dd39b37cdd99dcffe83a5182c849947b92d46ac4d2b5093af2bb9f224";
+ sha256 = "12vk3shylx61whdchxbg71mdlwiw2l31vl227sqwpb0p67bbw2rq";
};
LC_ALL = "en_US.utf8";
@@ -36,7 +36,7 @@ buildPythonPackage rec {
++ (if isPy3k then [ nose_warnings_filters ] else [ mock ]);
propagatedBuildInputs = [
- jinja2 tornado ipython_genutils traitlets jupyter_core
+ jinja2 tornado ipython_genutils traitlets jupyter_core send2trash
jupyter_client nbformat nbconvert ipykernel terminado requests pexpect
];
diff --git a/pkgs/development/python-modules/numba/default.nix b/pkgs/development/python-modules/numba/default.nix
index b0d7ae72c95..97aad8c0928 100644
--- a/pkgs/development/python-modules/numba/default.nix
+++ b/pkgs/development/python-modules/numba/default.nix
@@ -1,5 +1,5 @@
{ stdenv
-, fetchurl
+, fetchPypi
, python
, buildPythonPackage
, isPy27
@@ -14,13 +14,12 @@
}:
buildPythonPackage rec {
- version = "0.35.0";
+ version = "0.36.2";
pname = "numba";
- name = "${pname}-${version}";
- src = fetchurl {
- url = "mirror://pypi/n/numba/${name}.tar.gz";
- sha256 = "11564937757605bee590c5758c73cfe9fd6d569726b56d970316a6228971ecc3";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "d61597808ce511e81b64e32da664f52beb7d947bf834dde8b8b60b29d205e5c2";
};
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1";
@@ -29,7 +28,7 @@ buildPythonPackage rec {
# Copy test script into $out and run the test suite.
checkPhase = ''
- python -m numba.runtests
+ ${python.interpreter} -m numba.runtests
'';
# ImportError: cannot import name '_typeconv'
doCheck = false;
diff --git a/pkgs/development/python-modules/numexpr/default.nix b/pkgs/development/python-modules/numexpr/default.nix
new file mode 100644
index 00000000000..e6fc5888fea
--- /dev/null
+++ b/pkgs/development/python-modules/numexpr/default.nix
@@ -0,0 +1,43 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, python
+, numpy
+}:
+
+buildPythonPackage rec {
+ pname = "numexpr";
+ version = "2.6.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "f0bef9a3a5407fb8d6344cf91b658bef7c13ec8a8eb13f423822d9d2ca5af6ce";
+ };
+
+ propagatedBuildInputs = [ numpy ];
+
+ # Run the test suite.
+ # It requires the build path to be in the python search path.
+ checkPhase = ''
+ ${python}/bin/${python.executable} <=2" ""
+ '';
+
# gcc: error: pygpu_language_opencl.cpp: No such file or directory
doCheck = false;
diff --git a/pkgs/development/python-modules/pysc2/default.nix b/pkgs/development/python-modules/pysc2/default.nix
index a2dfd53b795..89799988fa1 100644
--- a/pkgs/development/python-modules/pysc2/default.nix
+++ b/pkgs/development/python-modules/pysc2/default.nix
@@ -18,8 +18,8 @@
}:
buildPythonPackage rec {
+ pname = "PySC2";
version = "1.2";
- name = "PySC2-${version}";
src = fetchFromGitHub {
owner = "deepmind";
diff --git a/pkgs/development/python-modules/pysigset/default.nix b/pkgs/development/python-modules/pysigset/default.nix
new file mode 100644
index 00000000000..85bcf56f062
--- /dev/null
+++ b/pkgs/development/python-modules/pysigset/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+ pname = "pysigset";
+ version = "0.3.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0ym44z3nwp8chfi7snmknkqnl2q9bghzv9p923r8w748i5hvyxx8";
+ };
+
+ meta = with stdenv.lib; {
+ description = "Provides access to sigprocmask(2) and friends and convenience wrappers to python application developers wanting to SIG_BLOCK and SIG_UNBLOCK signals";
+ homepage = https://github.com/ossobv/pysigset;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ dzabraev ];
+ };
+}
diff --git a/pkgs/development/python-modules/pyslurm/default.nix b/pkgs/development/python-modules/pyslurm/default.nix
index e855b952f27..41b42bb63ec 100644
--- a/pkgs/development/python-modules/pyslurm/default.nix
+++ b/pkgs/development/python-modules/pyslurm/default.nix
@@ -2,18 +2,16 @@
buildPythonPackage rec {
pname = "pyslurm";
- version = "unstable-69e4f4f";
+ version = "20171102";
name = pname + "-" + version;
src = fetchFromGitHub {
repo = "pyslurm";
owner = "PySlurm";
- rev = "69e4f4fd66003b98ddb7da25613fe641d4ae160d";
- sha256 = "051kafkndbniklxyf0drb360aiblnqcf9rqjbvmqh66zrfya1m28";
+ rev = "a2acbc820da419e308c5817998d2abe78a7b75e6";
+ sha256 = "1wmlx5fh1xzjyksvmq7i083hmyvs7id61ysk2d9hbmf8rza498as";
};
- patches = [ ./pyslurm-dlfcn.patch ];
-
buildInputs = [ cython slurm ];
setupPyBuildFlags = [ "--slurm-lib=${slurm}/lib" "--slurm-inc=${slurm.dev}/include" ];
diff --git a/pkgs/development/python-modules/pyslurm/pyslurm-dlfcn.patch b/pkgs/development/python-modules/pyslurm/pyslurm-dlfcn.patch
deleted file mode 100644
index 2b3798a3070..00000000000
--- a/pkgs/development/python-modules/pyslurm/pyslurm-dlfcn.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-diff --git a/pyslurm/__init__.py b/pyslurm/__init__.py
-index 81643e1..e8b6836 100644
---- a/pyslurm/__init__.py
-+++ b/pyslurm/__init__.py
-@@ -11,8 +11,11 @@ import sys
- old_dlopen_flags = ''
- if hasattr(sys, "setdlopenflags"):
- old_dlopen_flags = sys.getdlopenflags()
-- import DLFCN
-- sys.setdlopenflags(old_dlopen_flags | DLFCN.RTLD_GLOBAL)
-+ if sys.version_info >= (3,6):
-+ from os import RTLD_GLOBAL
-+ else:
-+ from DLFCN import RTLD_GLOBAL
-+ sys.setdlopenflags(old_dlopen_flags | RTLD_GLOBAL)
-
- from .pyslurm import *
-
diff --git a/pkgs/development/python-modules/pysoundfile/default.nix b/pkgs/development/python-modules/pysoundfile/default.nix
index ef67ed85cc0..aa7d23c5fcb 100644
--- a/pkgs/development/python-modules/pysoundfile/default.nix
+++ b/pkgs/development/python-modules/pysoundfile/default.nix
@@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "PySoundFile";
- version = "0.8.1";
+ version = "0.9.0.post1";
name = pname + "-" + version;
src = fetchPypi {
inherit pname version;
- sha256 = "72c3e23b7c9998460ec78176084ea101e3439596ab29df476bc8508708df84df";
+ sha256 = "43dd46a2afc0484c26930a7e59eef9365cee81bce7a4aadc5699f788f60d32c3";
};
checkInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/pyte/default.nix b/pkgs/development/python-modules/pyte/default.nix
index 2bd71070581..ed408feec81 100644
--- a/pkgs/development/python-modules/pyte/default.nix
+++ b/pkgs/development/python-modules/pyte/default.nix
@@ -3,8 +3,6 @@
buildPythonPackage rec {
pname = "pyte";
version = "0.7.0";
- name = "${pname}-${version}";
-
src = fetchPypi {
inherit pname version;
sha256 = "1an54hvyjm8gncx8cgabz9mkpgjkdb0bkyjlkh7g7f94nr3wnfl7";
diff --git a/pkgs/development/python-modules/pytest-aiohttp/default.nix b/pkgs/development/python-modules/pytest-aiohttp/default.nix
new file mode 100644
index 00000000000..afdc085aa9f
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-aiohttp/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, buildPythonPackage, fetchPypi, pytest, aiohttp }:
+
+buildPythonPackage rec {
+ pname = "pytest-aiohttp";
+ version = "0.3.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0kx4mbs9bflycd8x9af0idcjhdgnzri3nw1qb0vpfyb3751qaaf9";
+ };
+
+ propagatedBuildInputs = [ pytest aiohttp ];
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/aio-libs/pytest-aiohttp/;
+ description = "Pytest plugin for aiohttp support";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/pytest-flake8/default.nix b/pkgs/development/python-modules/pytest-flake8/default.nix
index 2b615e5820e..d79f32a6766 100644
--- a/pkgs/development/python-modules/pytest-flake8/default.nix
+++ b/pkgs/development/python-modules/pytest-flake8/default.nix
@@ -17,7 +17,7 @@ buildPythonPackage rec {
};
checkPhase = ''
- pytest --ignore=nix_run_setup.py .
+ pytest .
'';
meta = {
diff --git a/pkgs/development/python-modules/pytest-httpbin/default.nix b/pkgs/development/python-modules/pytest-httpbin/default.nix
index 6f6f79109d9..caa2c27e3f8 100644
--- a/pkgs/development/python-modules/pytest-httpbin/default.nix
+++ b/pkgs/development/python-modules/pytest-httpbin/default.nix
@@ -11,21 +11,17 @@
buildPythonPackage rec {
pname = "pytest-httpbin";
- name = "${pname}-${version}";
- version = "0.2.3";
+ version = "0.3.0";
src = fetchFromGitHub {
owner = "kevin1024";
repo = "pytest-httpbin";
rev = "v${version}";
- sha256 = "0j3n12jjy8cm0va8859wqra6abfyajrgh2qj8bhcngf3a72zl9ks";
+ sha256 = "0p86ljx775gxxicscs1dydmmx92r1g9bs00vdvxrsl3qdll1ksfm";
};
- checkPhase = ''
- py.test -k "not test_chunked_encoding"
- '';
+ checkInputs = [ pytest ];
- buildInputs = [ pytest ];
propagatedBuildInputs = [ flask decorator httpbin six requests ];
meta = {
diff --git a/pkgs/development/python-modules/pytest-localserver/default.nix b/pkgs/development/python-modules/pytest-localserver/default.nix
index fdd1986c04f..c98370ed938 100644
--- a/pkgs/development/python-modules/pytest-localserver/default.nix
+++ b/pkgs/development/python-modules/pytest-localserver/default.nix
@@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "pytest-localserver";
name = "${pname}-${version}";
- version = "0.3.7";
+ version = "0.4.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1c11hn61n06ms0wmw6536vs5k4k9hlndxsb3p170nva56a9dfa6q";
+ sha256 = "a72af60a1ec8f73668a7884c86baf1fbe48394573cb4fa36709887217736c021";
};
propagatedBuildInputs = [ werkzeug ];
diff --git a/pkgs/development/python-modules/pytest-rerunfailures/default.nix b/pkgs/development/python-modules/pytest-rerunfailures/default.nix
new file mode 100644
index 00000000000..9c906fe2fa4
--- /dev/null
+++ b/pkgs/development/python-modules/pytest-rerunfailures/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchPypi, pytest, mock }:
+
+buildPythonPackage rec {
+ pname = "pytest-rerunfailures";
+ version = "4.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "18lpy6d9b4ck8j3jwh4vmxj54is0fwanpmpg70qg4y0fycdqzwks";
+ };
+
+ checkInputs = [ pytest mock ];
+
+ checkPhase = ''
+ py.test
+ '';
+
+ meta = with stdenv.lib; {
+ 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 ];
+ };
+}
diff --git a/pkgs/development/python-modules/pytest-xdist/default.nix b/pkgs/development/python-modules/pytest-xdist/default.nix
index e993a67c49f..d671fd9654a 100644
--- a/pkgs/development/python-modules/pytest-xdist/default.nix
+++ b/pkgs/development/python-modules/pytest-xdist/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "pytest-xdist";
- version = "1.20.1";
+ version = "1.22.0";
src = fetchPypi {
inherit pname version;
- sha256 = "433e82f9b34986a4e4b2be38c60e82cca3ac64b7e1b38f4d8e3e118292939712";
+ sha256 = "65228a859191f2c74ee68c127317eefe35eedd3d43fc1431f19240663b0cafcd";
};
buildInputs = [ pytest setuptools_scm pytest-forked];
diff --git a/pkgs/development/python-modules/pytest/2_7.nix b/pkgs/development/python-modules/pytest/2_7.nix
deleted file mode 100644
index e63c3f5ebbd..00000000000
--- a/pkgs/development/python-modules/pytest/2_7.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
-buildPythonPackage rec {
- pname = "pytest";
- version = "2.7.3";
- name = pname + "-" + version;
-
- src = fetchurl {
- url = "mirror://pypi/p/pytest/${name}.tar.gz";
- sha256 = "1z4yi986f9n0p8qmzmn21m21m8j1x78hk3505f89baqm6pdw7afm";
- };
-
- # Disabled temporarily because of Hydra issue with namespaces
- doCheck = false;
-
- preCheck = ''
- # don't test bash builtins
- rm testing/test_argcomplete.py
- '';
-
- propagatedBuildInputs = [ py ]
- ++ (stdenv.lib.optional isPy26 argparse)
- ++ stdenv.lib.optional
- pkgs.config.pythonPackages.pytest.selenium or false
- selenium;
-
- meta = with stdenv.lib; {
- maintainers = with maintainers; [ domenkozar lovek323 madjar ];
- platforms = platforms.unix;
- };
-}
diff --git a/pkgs/development/python-modules/pytest/2_8.nix b/pkgs/development/python-modules/pytest/2_8.nix
deleted file mode 100644
index 963154b11ce..00000000000
--- a/pkgs/development/python-modules/pytest/2_8.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
-buildPythonPackage rec {
- pname = "pytest";
- version = "2.8.7";
- name = pname + "-" + version;
-
- src = fetchurl {
- url = "mirror://pypi/p/pytest/${name}.tar.gz";
- sha256 = "1bwb06g64x2gky8x5hcrfpg6r351xwvafimnhm5qxq7wajz8ck7w";
- };
-
- # Disabled temporarily because of Hydra issue with namespaces
- doCheck = false;
-
- preCheck = ''
- # don't test bash builtins
- rm testing/test_argcomplete.py
- '';
-
- propagatedBuildInputs = [ py ]
- ++ (stdenv.lib.optional isPy26 argparse)
- ++ stdenv.lib.optional
- pkgs.config.pythonPackages.pytest.selenium or false
- selenium;
-
- meta = with stdenv.lib; {
- maintainers = with maintainers; [ domenkozar lovek323 madjar ];
- platforms = platforms.unix;
- };
-}
diff --git a/pkgs/development/python-modules/pytest/2_9.nix b/pkgs/development/python-modules/pytest/2_9.nix
deleted file mode 100644
index 2d28517441b..00000000000
--- a/pkgs/development/python-modules/pytest/2_9.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ stdenv, pkgs, buildPythonPackage, fetchurl, isPy26, argparse, py, selenium }:
-buildPythonPackage rec {
- pname = "pytest";
- version = "2.9.2";
- name = pname + "-" + version;
-
- src = fetchurl {
- url = "mirror://pypi/p/pytest/${name}.tar.gz";
- sha256 = "1n6igbc1b138wx1q5gca4pqw1j6nsyicfxds5n0b5989kaxqmh8j";
- };
-
- # Disabled temporarily because of Hydra issue with namespaces
- doCheck = false;
-
- preCheck = ''
- # don't test bash builtins
- rm testing/test_argcomplete.py
- '';
-
- propagatedBuildInputs = [ py ]
- ++ (stdenv.lib.optional isPy26 argparse)
- ++ stdenv.lib.optional
- pkgs.config.pythonPackages.pytest.selenium or false
- selenium;
-
- meta = with stdenv.lib; {
- maintainers = with maintainers; [ domenkozar lovek323 madjar ];
- platforms = platforms.unix;
- };
-}
diff --git a/pkgs/development/python-modules/pytest/3_0.nix b/pkgs/development/python-modules/pytest/3_0.nix
deleted file mode 100644
index 487fe1b73c7..00000000000
--- a/pkgs/development/python-modules/pytest/3_0.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, hypothesis, py
-, setuptools_scm
-}:
-buildPythonPackage rec {
- version = "3.0.7";
- pname = "pytest";
- name = "${pname}-${version}";
-
- preCheck = ''
- # don't test bash builtins
- rm testing/test_argcomplete.py
- '';
-
- src = fetchPypi {
- inherit pname version;
- sha256 = "b70696ebd1a5e6b627e7e3ac1365a4bc60aaf3495e843c1e70448966c5224cab";
- };
-
- buildInputs = [ hypothesis setuptools_scm ];
- propagatedBuildInputs = [ py ]
- ++ (stdenv.lib.optional isPy26 argparse);
-
- meta = with stdenv.lib; {
- maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
- platforms = platforms.unix;
- };
-}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/pytest/default.nix b/pkgs/development/python-modules/pytest/default.nix
index 8e280b8fd0d..91e22baa4ad 100644
--- a/pkgs/development/python-modules/pytest/default.nix
+++ b/pkgs/development/python-modules/pytest/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, hypothesis, py
-, setuptools_scm, setuptools
+{ stdenv, buildPythonPackage, fetchPypi, isPy26, argparse, attrs, hypothesis, py
+, setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k
}:
buildPythonPackage rec {
- version = "3.2.5";
+ version = "3.3.2";
pname = "pytest";
preCheck = ''
@@ -12,16 +12,18 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "6d5bd4f7113b444c55a3bbb5c738a3dd80d43563d063fc42dcb0aaefbdd78b81";
+ sha256 = "53548280ede7818f4dc2ad96608b9f08ae2cc2ca3874f2ceb6f97e3583f25bc4";
};
checkInputs = [ hypothesis ];
buildInputs = [ setuptools_scm ];
- propagatedBuildInputs = [ py setuptools ]
+ propagatedBuildInputs = [ attrs py setuptools six pluggy ]
+ ++ (stdenv.lib.optional (!isPy3k) funcsigs)
++ (stdenv.lib.optional isPy26 argparse);
meta = with stdenv.lib; {
maintainers = with maintainers; [ domenkozar lovek323 madjar lsix ];
platforms = platforms.unix;
+ description = "Framework for writing tests";
};
}
diff --git a/pkgs/development/python-modules/pytestrunner/default.nix b/pkgs/development/python-modules/pytestrunner/default.nix
new file mode 100644
index 00000000000..67af195b68a
--- /dev/null
+++ b/pkgs/development/python-modules/pytestrunner/default.nix
@@ -0,0 +1,19 @@
+{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, pytest }:
+
+buildPythonPackage rec {
+ pname = "pytest-runner";
+ version = "3.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "00v7pi09q60yx0l1kzyklnmr5bp597mir85a9gsi7bdfyly3lz0g";
+ };
+
+ buildInputs = [ setuptools_scm pytest ];
+
+ meta = with stdenv.lib; {
+ description = "Invoke py.test as distutils command with dependency resolution";
+ homepage = https://bitbucket.org/pytest-dev/pytest-runner;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/python-fuse/default.nix b/pkgs/development/python-modules/python-fuse/default.nix
index d9debce6aec..02b86b3b33a 100644
--- a/pkgs/development/python-modules/python-fuse/default.nix
+++ b/pkgs/development/python-modules/python-fuse/default.nix
@@ -7,21 +7,21 @@
}:
buildPythonPackage rec {
- baseName = "fuse";
- version = "0.2.1";
- name = "${baseName}-${version}";
- disabled = isPy3k;
+ pname = "fuse";
+ version = "0.2.1";
- src = fetchurl {
- url = "mirror://sourceforge/fuse/fuse-python-${version}.tar.gz";
- sha256 = "06rmp1ap6flh64m81j0n3a357ij2vj9zwcvvw0p31y6hz1id9shi";
- };
+ disabled = isPy3k;
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ fuse ];
+ src = fetchurl {
+ url = "mirror://sourceforge/fuse/fuse-python-${version}.tar.gz";
+ sha256 = "06rmp1ap6flh64m81j0n3a357ij2vj9zwcvvw0p31y6hz1id9shi";
+ };
- meta = {
- description = "Python bindings for FUSE";
- license = lib.licenses.lgpl21;
- };
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ fuse ];
+
+ meta = {
+ description = "Python bindings for FUSE";
+ license = lib.licenses.lgpl21;
+ };
}
diff --git a/pkgs/development/python-modules/python-oauth2/default.nix b/pkgs/development/python-modules/python-oauth2/default.nix
new file mode 100644
index 00000000000..38649ca1985
--- /dev/null
+++ b/pkgs/development/python-modules/python-oauth2/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, python
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "python-oauth2";
+ version = "1.0.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0a1d0qnlgm07wq9r9bbm5jqkqry73w34m87p0141bk76lg7bb0sm";
+ };
+ # attempts to run mysql
+ doCheck = false;
+
+ meta = with lib; {
+ description = "Framework that aims at making it easy to provide authentication via OAuth 2.0 within an application stack";
+ homepage = https://github.com/wndhydrnt/python-oauth2;
+ license = licenses.mit;
+ maintainers = with maintainers; [ ixxie ];
+ };
+}
diff --git a/pkgs/development/python-modules/python-stdnum/default.nix b/pkgs/development/python-modules/python-stdnum/default.nix
index a78b1ffbee2..44a6b522a4e 100644
--- a/pkgs/development/python-modules/python-stdnum/default.nix
+++ b/pkgs/development/python-modules/python-stdnum/default.nix
@@ -1,14 +1,14 @@
{ lib, fetchurl, buildPythonPackage, isPy3k }:
buildPythonPackage rec {
- version = "1.7";
+ version = "1.8.1";
pname = "python-stdnum";
name = "${pname}-${version}";
# Failing tests and dependency issue on Py3k
disabled = isPy3k;
src = fetchurl {
url = "mirror://pypi/p/python-stdnum/${name}.tar.gz";
- sha256 = "987c25e1047e8742131bcf29dac7a406987adb1463465749e2daaba8cb19d264";
+ sha256 = "d7162fdb29337aebed65700cc7297016f6cd32cae4ad7aed8f7e7531f0217943";
};
meta = {
homepage = http://arthurdejong.org/python-stdnum/;
diff --git a/pkgs/development/python-modules/python-utils/default.nix b/pkgs/development/python-modules/python-utils/default.nix
index 37c15c07537..654b851b663 100644
--- a/pkgs/development/python-modules/python-utils/default.nix
+++ b/pkgs/development/python-modules/python-utils/default.nix
@@ -14,8 +14,15 @@ buildPythonPackage rec {
checkInputs = [ pytest pytestrunner pytestcov pytestflakes pytestpep8 sphinx ];
+ postPatch = ''
+ # pytest-runner is only actually required in checkPhase
+ substituteInPlace setup.py --replace "setup_requires=['pytest-runner']," ""
+ '';
+
+ # Tests failing
+ doCheck = false;
+
checkPhase = ''
- rm nix_run_setup.py
py.test
'';
diff --git a/pkgs/development/python-modules/python_fedora/default.nix b/pkgs/development/python-modules/python_fedora/default.nix
index e7c3630f42f..f476d0d4d44 100644
--- a/pkgs/development/python-modules/python_fedora/default.nix
+++ b/pkgs/development/python-modules/python_fedora/default.nix
@@ -18,6 +18,6 @@ buildPythonPackage rec {
description = "Python Fedora Module";
homepage = https://github.com/fedora-infra/python-fedora;
license = licenses.lgpl2;
- maintainers = with maintainers; [ mornfall ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/pythonix/default.nix b/pkgs/development/python-modules/pythonix/default.nix
new file mode 100644
index 00000000000..dacc27c53a0
--- /dev/null
+++ b/pkgs/development/python-modules/pythonix/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub, ninja, meson, pkgconfig, gcc7, nixUnstable, isPy3k }:
+
+assert isPy3k;
+
+stdenv.mkDerivation rec {
+ name = "pythonix-${version}";
+ version = "0.1.0";
+
+ src = fetchFromGitHub {
+ owner = "Mic92";
+ repo = "pythonix";
+ rev = "v${version}";
+ sha256 = "1piblysypyr442a6najk4mdh87xc377i2fdbfw6fr569z60mnnnj";
+ };
+
+ nativeBuildInputs = [ meson pkgconfig ninja gcc7 ];
+
+ buildInputs = [ nixUnstable ];
+
+ meta = with stdenv.lib; {
+ description = ''
+ Eval nix code from python.
+ '';
+ maintainers = [ maintainers.mic92 ];
+ license = licenses.mit;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/python-modules/pytoml/default.nix b/pkgs/development/python-modules/pytoml/default.nix
index 55479e76daf..91661a1fb51 100644
--- a/pkgs/development/python-modules/pytoml/default.nix
+++ b/pkgs/development/python-modules/pytoml/default.nix
@@ -1,18 +1,22 @@
-{ stdenv, buildPythonPackage, fetchgit
-, python }:
+{ stdenv
+, buildPythonPackage
+, fetchgit
+, python
+}:
buildPythonPackage rec {
pname = "pytoml";
- version = "0.1.11";
- name = "${pname}-${version}";
+ version = "0.1.14";
- checkPhase = "${python.interpreter} test/test.py";
+ checkPhase = ''
+ ${python.interpreter} test/test.py
+ '';
# fetchgit used to ensure test submodule is available
src = fetchgit {
url = "${meta.homepage}.git";
rev = "refs/tags/v${version}";
- sha256 = "1jiw04zk9ccynr8kb1vqh9r1p2kh0al7g7b1f94911iazg7dgs9j";
+ sha256 = "1ip71yqxnyi4jhw5x1q7a0za61ndhpfh0vbx08jfv0w4ayng6rgv";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/pytools/default.nix b/pkgs/development/python-modules/pytools/default.nix
new file mode 100644
index 00000000000..2bf7413c600
--- /dev/null
+++ b/pkgs/development/python-modules/pytools/default.nix
@@ -0,0 +1,39 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, decorator
+, appdirs
+, six
+, numpy
+, pytest
+}:
+
+buildPythonPackage rec {
+ pname = "pytools";
+ version = "2017.6";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "80f1bba4469d473c1b3969bc8e188c03bcc94d35807a889ceebbfc78e3208115";
+ };
+
+ checkInputs = [ pytest ];
+
+ propagatedBuildInputs = [
+ decorator
+ appdirs
+ six
+ numpy
+ ];
+
+ checkPhase = ''
+ py.test -k 'not test_persistent_dict'
+ '';
+
+ meta = {
+ homepage = https://github.com/inducer/pytools/;
+ description = "Miscellaneous Python lifesavers.";
+ license = lib.licenses.mit;
+ maintainers = with lib.maintainers; [ artuuge ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/pytzdata/default.nix b/pkgs/development/python-modules/pytzdata/default.nix
new file mode 100644
index 00000000000..6de0431edb3
--- /dev/null
+++ b/pkgs/development/python-modules/pytzdata/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchPypi, buildPythonPackage }:
+
+buildPythonPackage rec {
+ pname = "pytzdata";
+ version = "2017.3.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1wi3jh39zsa9iiyyhynhj7w5b2p9wdyd0ppavpsrmf3wxvr7cwz8";
+ };
+
+ # No tests
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Timezone database for Python";
+ homepage = https://github.com/sdispater/pytzdata;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/pywbem/default.nix b/pkgs/development/python-modules/pywbem/default.nix
index 8e10fbb2258..d09a9bbd6d8 100644
--- a/pkgs/development/python-modules/pywbem/default.nix
+++ b/pkgs/development/python-modules/pywbem/default.nix
@@ -4,7 +4,7 @@
}:
buildPythonPackage rec {
- name = "pywbem-${version}";
+ pname = "pywbem";
version = "0.10.0";
src = fetchFromGitHub {
diff --git a/pkgs/development/python-modules/pywinrm/default.nix b/pkgs/development/python-modules/pywinrm/default.nix
index ecd46bb1ff5..10150259ef5 100644
--- a/pkgs/development/python-modules/pywinrm/default.nix
+++ b/pkgs/development/python-modules/pywinrm/default.nix
@@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "pywinrm";
- version = "0.2.2";
+ version = "0.3.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "06xc0mbqf718vmsp0fq0rb64nql66l5w2x23bmqnzl6nzc0gfc1h";
+ sha256 = "799fc3e33fec8684443adf5778860388289102ea4fa1458f1bf307d167855573";
};
checkInputs = [ mock pytest ];
diff --git a/pkgs/development/python-modules/raven/default.nix b/pkgs/development/python-modules/raven/default.nix
index 66e2595f8d2..b6cc70ed787 100644
--- a/pkgs/development/python-modules/raven/default.nix
+++ b/pkgs/development/python-modules/raven/default.nix
@@ -1,20 +1,19 @@
-{ lib, buildPythonPackage, fetchurl, isPy3k, contextlib2 }:
+{ lib, buildPythonPackage, fetchPypi, isPy3k, contextlib2, blinker }:
buildPythonPackage rec {
pname = "raven";
- version = "6.4.0";
- name = pname + "-" + version;
+ version = "6.5.0";
- src = fetchurl {
- url = "mirror://pypi/r/raven/${name}.tar.gz";
- sha256 = "00m985w9fja2jf8dpvdhygcr26rwabxkgvcc2v5j6v7d6lrvpvdq";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "84da75114739191bdf2388f296ffd6177e83567a7fbaf2701e034ad6026e4f3b";
};
# way too many dependencies to run tests
# see https://github.com/getsentry/raven-python/blob/master/setup.py
doCheck = false;
- propagatedBuildInputs = lib.optionals (!isPy3k) [ contextlib2 ];
+ propagatedBuildInputs = [ blinker ] ++ lib.optionals (!isPy3k) [ contextlib2 ];
meta = {
description = "A Python client for Sentry (getsentry.com)";
diff --git a/pkgs/development/python-modules/rdflib/default.nix b/pkgs/development/python-modules/rdflib/default.nix
new file mode 100644
index 00000000000..cdbba180673
--- /dev/null
+++ b/pkgs/development/python-modules/rdflib/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, isodate
+, html5lib
+, SPARQLWrapper
+, networkx
+, nose
+, python
+}:
+
+buildPythonPackage rec {
+ pname = "rdflib";
+ version = "4.2.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0398c714znnhaa2x7v51b269hk20iz073knq2mvmqp2ma92z27fs";
+ };
+
+ propagatedBuildInputs = [isodate html5lib SPARQLWrapper ];
+
+ checkInputs = [ networkx nose ];
+
+ # Python 2 syntax
+ # Failing doctest
+ doCheck = false;
+
+ checkPhase = ''
+ ${python.interpreter} run_tests.py
+ '';
+
+ meta = {
+ description = "A Python library for working with RDF, a simple yet powerful language for representing information";
+ homepage = http://www.rdflib.net/;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/regex/default.nix b/pkgs/development/python-modules/regex/default.nix
new file mode 100644
index 00000000000..c6279f5e7c4
--- /dev/null
+++ b/pkgs/development/python-modules/regex/default.nix
@@ -0,0 +1,23 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+
+buildPythonPackage rec {
+ pname = "regex";
+ version = "2018.01.10";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "139678fc013b75e486e580c39b4c52d085ed7362e400960f8be1711a414f16b5";
+ };
+
+ meta = {
+ description = "Alternative regular expression module, to replace re";
+ homepage = "https://bitbucket.org/mrabarnett/mrab-regex";
+ license = lib.licenses.psfl;
+ platforms = lib.platforms.linux;
+ maintainers = with lib.maintainers; [ abbradar ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/relatorio/default.nix b/pkgs/development/python-modules/relatorio/default.nix
index 5e1ea8b4642..5c5f2578fbf 100644
--- a/pkgs/development/python-modules/relatorio/default.nix
+++ b/pkgs/development/python-modules/relatorio/default.nix
@@ -3,10 +3,10 @@
buildPythonPackage rec {
pname = "relatorio";
name = "${pname}-${version}";
- version = "0.7.1";
+ version = "0.8.0";
src = fetchurl {
url = "mirror://pypi/r/relatorio/${name}.tar.gz";
- sha256 = "744f1e39313f037a0ab52a154338ece151d83e5442a9278db1f8ce450ce6c2cd";
+ sha256 = "bddf85d029c5c85a0f976d73907e14e4c3093065fe8527170c91abf0218546d9";
};
propagatedBuildInputs = [
genshi
diff --git a/pkgs/development/python-modules/restview/default.nix b/pkgs/development/python-modules/restview/default.nix
index 0f2ce45c885..3c61ea4ded2 100644
--- a/pkgs/development/python-modules/restview/default.nix
+++ b/pkgs/development/python-modules/restview/default.nix
@@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "restview";
name = "${pname}-${version}";
- version = "2.7.0";
+ version = "2.8.0";
src = fetchPypi {
inherit pname version;
- sha256 = "e7842100f3de179c68cfe7c2cf56c61509cd6068bc6dd58ab42c0ade5d5f97ec";
+ sha256 = "5f6f1523228eab3269f59dd03ac560f7d370cd81df6fdbcb4914b5e6bd896a11";
};
propagatedBuildInputs = [ docutils readme_renderer pygments ];
diff --git a/pkgs/development/python-modules/robomachine/default.nix b/pkgs/development/python-modules/robomachine/default.nix
index 8f71bab9c25..72407131cb1 100644
--- a/pkgs/development/python-modules/robomachine/default.nix
+++ b/pkgs/development/python-modules/robomachine/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "robomachine";
- version = "0.6";
+ version = "0.8.0";
name = pname + "-" + version;
src = fetchurl {
url = "mirror://pypi/R/RoboMachine/RoboMachine-0.6.tar.gz";
- sha256 = "6c9a9bae7bffa272b2a09b05df06c29a3a776542c70cae8041a8975a061d2e54";
+ sha256 = "242cfd9be0f7591138eaeba03c9c190f894ce045e1767ab7b90eca330259fc45";
};
propagatedBuildInputs = [ pyparsing argparse robotframework ];
diff --git a/pkgs/development/python-modules/ropper/default.nix b/pkgs/development/python-modules/ropper/default.nix
index f7ef16b02bb..b35145872dd 100644
--- a/pkgs/development/python-modules/ropper/default.nix
+++ b/pkgs/development/python-modules/ropper/default.nix
@@ -3,23 +3,25 @@
, fetchPypi
, capstone
, filebytes
-, pytest }:
+, pytest
+}:
buildPythonApplication rec {
- name = "${pname}-${version}";
pname = "ropper";
- version = "1.10.10";
+ version = "1.11.3";
src = fetchPypi {
inherit pname version;
- sha256 = "1676e07947a19df9d17002307a7555c2647a4224d6f2869949e8fc4bd18f2e87";
+ sha256 = "77d9b03083d0a098261a1d2856cd330ea3db520511a78472e421a00526aa220c";
};
# XXX tests rely on user-writeable /dev/shm to obtain process locks and return PermissionError otherwise
# workaround: sudo chmod 777 /dev/shm
checkPhase = ''
py.test testcases
'';
- buildInputs = [pytest];
+ doCheck = false; # Tests not included in archive
+
+ checkInputs = [pytest];
propagatedBuildInputs = [ capstone filebytes ];
meta = with stdenv.lib; {
homepage = https://scoding.de/ropper/;
diff --git a/pkgs/development/python-modules/rpkg/default.nix b/pkgs/development/python-modules/rpkg/default.nix
index 1e8baa553bd..3164be5aa86 100644
--- a/pkgs/development/python-modules/rpkg/default.nix
+++ b/pkgs/development/python-modules/rpkg/default.nix
@@ -22,7 +22,7 @@ buildPythonPackage rec {
description = "Python library for dealing with rpm packaging";
homepage = https://pagure.io/fedpkg;
license = licenses.gpl2Plus;
- maintainers = with maintainers; [ mornfall ];
+ maintainers = with maintainers; [ ];
};
}
diff --git a/pkgs/development/python-modules/rx/default.nix b/pkgs/development/python-modules/rx/default.nix
new file mode 100644
index 00000000000..6945d7486f6
--- /dev/null
+++ b/pkgs/development/python-modules/rx/default.nix
@@ -0,0 +1,23 @@
+{ lib, fetchFromGitHub, buildPythonPackage, nose }:
+
+buildPythonPackage rec {
+ pname = "rx";
+ version = "1.6.0";
+
+ # There are no tests on the pypi source
+ src = fetchFromGitHub {
+ owner = "ReactiveX";
+ repo = "rxpy";
+ rev = version;
+ sha256 = "174xi2j36igxmaqcgl5p64p31a7z19v62xb5czybjw72gpyyfyri";
+ };
+
+ checkInputs = [ nose ];
+
+ meta = {
+ homepage = https://github.com/ReactiveX/RxPY;
+ description = "Reactive Extensions for Python";
+ maintainers = with lib.maintainers; [ thanegill ];
+ license = lib.licenses.asl20;
+ };
+}
diff --git a/pkgs/development/python-modules/salmon-mail/default.nix b/pkgs/development/python-modules/salmon-mail/default.nix
new file mode 100644
index 00000000000..37c7b157ea5
--- /dev/null
+++ b/pkgs/development/python-modules/salmon-mail/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, nose, dnspython
+, chardet, lmtpd, pythondaemon, six, jinja2, mock }:
+
+buildPythonPackage rec {
+ name = "${pname}-${version}";
+ pname = "salmon-mail";
+ version = "3.0.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1smggsnkwiqy8zjq604dkm5g0np27pdnj3szsbn8v4ja84nncq18";
+ };
+
+ checkInputs = [ nose jinja2 mock ];
+ propagatedBuildInputs = [ chardet dnspython lmtpd pythondaemon six ];
+
+ meta = with stdenv.lib; {
+ homepage = http://salmon-mail.readthedocs.org/;
+ description = "Pythonic mail application server";
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ jluttine ];
+ };
+}
diff --git a/pkgs/development/python-modules/salmon/default.nix b/pkgs/development/python-modules/salmon/default.nix
deleted file mode 100644
index f9d7f79164a..00000000000
--- a/pkgs/development/python-modules/salmon/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub, pythonOlder, nose, dnspython
-, chardet, lmtpd, pythondaemon, six, jinja2, mock }:
-
-buildPythonPackage rec {
- pname = "salmon";
- # NOTE: The latest release version 2 is over 3 years old. So let's use some
- # recent commit from master. There will be a new release at some point, then
- # one can change this to use PyPI. See:
- # https://github.com/moggers87/salmon/issues/52
- version = "bec795cdab744be4f103d8e35584dfee622ddab2";
- name = "${pname}-${version}";
-
- src = fetchFromGitHub {
- owner = "moggers87";
- repo = "salmon";
- rev = version;
- sha256 = "0nx8pyxy7n42nsqqvhd85ycm1i5wlacsi7lwb4rrs9d416bpd300";
- };
-
- checkInputs = [ nose jinja2 mock ];
- propagatedBuildInputs = [ chardet dnspython lmtpd pythondaemon six ];
-
- meta = with stdenv.lib; {
- homepage = http://salmon-mail.readthedocs.org/;
- description = "Pythonic mail application server";
- license = licenses.gpl3;
- maintainers = with maintainers; [ jluttine ];
- };
-}
diff --git a/pkgs/development/python-modules/schema/default.nix b/pkgs/development/python-modules/schema/default.nix
index 2c57ce29582..2c8e63e5ed2 100644
--- a/pkgs/development/python-modules/schema/default.nix
+++ b/pkgs/development/python-modules/schema/default.nix
@@ -3,12 +3,12 @@
buildPythonPackage rec {
pname = "schema";
- version = "0.6.6";
+ version = "0.6.7";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "1lw28j9w9vxyigg7vkfkvi6ic9lgjkdnfvnxdr7pklslqvzmk2vm";
+ sha256 = "410f44cb025384959d20deef00b4e1595397fa30959947a4f0d92e9c84616f35";
};
checkInputs = [ pytest ];
diff --git a/pkgs/development/python-modules/scikitlearn/default.nix b/pkgs/development/python-modules/scikitlearn/default.nix
index b2826588a28..6d32b056a0a 100644
--- a/pkgs/development/python-modules/scikitlearn/default.nix
+++ b/pkgs/development/python-modules/scikitlearn/default.nix
@@ -20,8 +20,9 @@ buildPythonPackage rec {
LC_ALL="en_US.UTF-8";
+ # Disable doctests on OSX: https://github.com/scikit-learn/scikit-learn/issues/10213
checkPhase = ''
- HOME=$TMPDIR OMP_NUM_THREADS=1 nosetests $out/${python.sitePackages}/sklearn/
+ HOME=$TMPDIR OMP_NUM_THREADS=1 nosetests ${stdenv.lib.optionalString stdenv.isDarwin "--doctest-options=+SKIP"} $out/${python.sitePackages}/sklearn/
'';
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/scrapy/default.nix b/pkgs/development/python-modules/scrapy/default.nix
index 5b40c74a181..005d02e6047 100644
--- a/pkgs/development/python-modules/scrapy/default.nix
+++ b/pkgs/development/python-modules/scrapy/default.nix
@@ -2,7 +2,7 @@
testfixtures, pillow, six, twisted, w3lib, lxml, queuelib, pyopenssl,
service-identity, parsel, pydispatcher, cssselect, lib }:
buildPythonPackage rec {
- version = "1.4.0";
+ version = "1.5.0";
pname = "Scrapy";
name = "${pname}-${version}";
@@ -26,7 +26,7 @@ buildPythonPackage rec {
src = fetchurl {
url = "mirror://pypi/S/Scrapy/${name}.tar.gz";
- sha256 = "04a08f027eef5d271342a016439533c81ba46f14bfcf230fecf602e99beaf233";
+ sha256 = "31a0bf05d43198afaf3acfb9b4fb0c09c1d7d7ff641e58c66e36117f26c4b755";
};
meta = with lib; {
diff --git a/pkgs/development/python-modules/seaborn/default.nix b/pkgs/development/python-modules/seaborn/default.nix
index 1647e6cfc14..20ad32b3261 100644
--- a/pkgs/development/python-modules/seaborn/default.nix
+++ b/pkgs/development/python-modules/seaborn/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "seaborn";
- version = "0.7.1";
+ version = "0.8.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0pawrqc3mxpwd5g9pvi9gba02637bh5c8ldpp8izfwpfn52469zs";
+ sha256 = "6702978b903d0284446e935916b980dfebae4063c18ad8eb6e8f9e76d0257eae";
};
checkInputs = [ nose ];
diff --git a/pkgs/development/python-modules/secp256k1/default.nix b/pkgs/development/python-modules/secp256k1/default.nix
new file mode 100644
index 00000000000..6b9f00783fd
--- /dev/null
+++ b/pkgs/development/python-modules/secp256k1/default.nix
@@ -0,0 +1,48 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, pkgconfig
+, pytest
+, pytestrunner
+, cffi
+, secp256k1
+}:
+
+buildPythonPackage rec {
+ pname = "secp256k1";
+ version = "0.13.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "a3b43e02d321c09eafa769a6fc2c156f555cab3a7db62175ef2fd21e16cdf20c";
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ checkInputs = [ pytest pytestrunner ];
+ propagatedBuildInputs = [ cffi secp256k1 ];
+
+ # Tests are not included in archive
+ doCheck = false;
+
+ preConfigure = ''
+ cp -r ${secp256k1.src} libsecp256k1
+ touch libsecp256k1/autogen.sh
+ export INCLUDE_DIR=${secp256k1}/include
+ export LIB_DIR=${secp256k1}/lib
+ '';
+
+ checkPhase = ''
+ py.test tests
+ '';
+
+ postPatch = ''
+ substituteInPlace setup.py --replace ", 'pytest-runner==2.6.2'" ""
+ '';
+
+ meta = {
+ homepage = https://github.com/ludbb/secp256k1-py;
+ description = "Python FFI bindings for secp256k1";
+ license = with lib.licenses; [ mit ];
+ maintainers = with lib.maintainers; [ chris-martin ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/send2trash/default.nix b/pkgs/development/python-modules/send2trash/default.nix
new file mode 100644
index 00000000000..379f5677bd1
--- /dev/null
+++ b/pkgs/development/python-modules/send2trash/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildPythonPackage
+, fetchFromGitHub
+, pytest
+, configparser
+}:
+
+buildPythonPackage rec {
+ pname = "Send2Trash";
+ version = "1.4.2";
+
+ src = fetchFromGitHub {
+ owner = "hsoft";
+ repo = "send2trash";
+ rev = version;
+ sha256 = "1w502i5h8xaqf03g6h95h4vs1wqfv6kg925dn63phrwmg1hfz2xx";
+ };
+
+ checkPhase = "HOME=. py.test";
+ checkInputs = [ pytest configparser ];
+
+ meta = with lib; {
+ description = "Send file to trash natively under macOS, Windows and Linux";
+ homepage = https://github.com/hsoft/send2trash;
+ license = licenses.bsd3;
+ };
+}
diff --git a/pkgs/development/python-modules/serpy/default.nix b/pkgs/development/python-modules/serpy/default.nix
index 2414b97e94a..610a75fa317 100644
--- a/pkgs/development/python-modules/serpy/default.nix
+++ b/pkgs/development/python-modules/serpy/default.nix
@@ -5,7 +5,7 @@
buildPythonPackage rec {
pname = "serpy";
name = "${pname}-${version}";
- version = "0.2.0";
+ version = "0.3.1";
meta = {
description = "ridiculously fast object serialization";
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "7e62e242321b208362966d5ab32b45df93b1cb88da4ce6260277da060b4f7475";
+ sha256 = "3772b2a9923fbf674000ff51abebf6ea8f0fca0a2cfcbfa0d63ff118193d1ec5";
};
buildInputs = [ flake8 py pyflakes tox ];
diff --git a/pkgs/development/python-modules/serversyncstorage/default.nix b/pkgs/development/python-modules/serversyncstorage/default.nix
new file mode 100644
index 00000000000..40a580877af
--- /dev/null
+++ b/pkgs/development/python-modules/serversyncstorage/default.nix
@@ -0,0 +1,38 @@
+{ stdenv
+, buildPythonPackage
+, fetchgit
+, isPy27
+, testfixtures
+, unittest2
+, webtest
+, pyramid
+, sqlalchemy
+, simplejson
+, mozsvc
+, cornice
+, pyramid_hawkauth
+, pymysql
+, pymysqlsa
+, umemcache
+, WSGIProxy
+, requests
+, pybrowserid
+}:
+
+buildPythonPackage rec {
+ name = "serversyncstorage-${version}";
+ version = "1.6.11";
+ disabled = !isPy27;
+
+ src = fetchgit {
+ url = https://github.com/mozilla-services/server-syncstorage.git;
+ rev = "refs/tags/${version}";
+ sha256 = "197gj2jfs2c6nzs20j37kqxwi91wabavxnfm4rqmrjwhgqjwhnm0";
+ };
+
+ buildInputs = [ testfixtures unittest2 webtest ];
+ propagatedBuildInputs = [
+ pyramid sqlalchemy simplejson mozsvc cornice pyramid_hawkauth pymysql
+ pymysqlsa umemcache WSGIProxy requests pybrowserid
+ ];
+}
diff --git a/pkgs/development/python-modules/setuptools/default.nix b/pkgs/development/python-modules/setuptools/default.nix
index 1c53f3cd437..5535a80fd4a 100644
--- a/pkgs/development/python-modules/setuptools/default.nix
+++ b/pkgs/development/python-modules/setuptools/default.nix
@@ -8,13 +8,13 @@
# Should use buildPythonPackage here somehow
stdenv.mkDerivation rec {
pname = "setuptools";
- version = "38.2.3";
+ version = "38.4.0";
name = "${python.libPrefix}-${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "124jlg72bbk2xxv5wqbwcl4h5cdslslzk92rxjxiplg79l499hv3";
+ sha256 = "6501fc32f505ec5b3ed36ec65ba48f1b975f52cf2ea101c7b73a08583fd12f75";
};
buildInputs = [ python wrapPython unzip ];
diff --git a/pkgs/development/python-modules/shapely/default.nix b/pkgs/development/python-modules/shapely/default.nix
index e8e92818ecf..dab3542b809 100644
--- a/pkgs/development/python-modules/shapely/default.nix
+++ b/pkgs/development/python-modules/shapely/default.nix
@@ -6,11 +6,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Shapely";
- version = "1.6.2.post1";
+ version = "1.6.3";
src = fetchPypi {
inherit pname version;
- sha256 = "07fba518e76b3276558f62a5829bdfa476f790cdef752383ccdc8c66b04b0899";
+ sha256 = "14152f111c7711fc6756fd538ec12fc8cdde7419f869b244922f71f61b2a6c6b";
};
buildInputs = [ geos glibcLocales cython ];
diff --git a/pkgs/development/python-modules/simplejson/default.nix b/pkgs/development/python-modules/simplejson/default.nix
index 846e8dc21a1..25dbecac949 100644
--- a/pkgs/development/python-modules/simplejson/default.nix
+++ b/pkgs/development/python-modules/simplejson/default.nix
@@ -6,13 +6,13 @@
buildPythonPackage rec {
pname = "simplejson";
- version = "3.11.1";
+ version = "3.13.2";
name = "${pname}-${version}";
doCheck = !stdenv.isDarwin;
src = fetchPypi {
inherit pname version;
- sha256 = "01a22d49ddd9a168b136f26cac87d9a335660ce07aa5c630b8e3607d6f4325e7";
+ sha256 = "4c4ecf20e054716cc1e5a81cadc44d3f4027108d8dd0861d8b1e3bd7a32d4f0a";
};
meta = {
diff --git a/pkgs/development/python-modules/six/default.nix b/pkgs/development/python-modules/six/default.nix
index 00fbbbc01eb..6921b3590e4 100644
--- a/pkgs/development/python-modules/six/default.nix
+++ b/pkgs/development/python-modules/six/default.nix
@@ -19,6 +19,9 @@ buildPythonPackage rec {
py.test test_six.py
'';
+ # To prevent infinite recursion with pytest
+ doCheck = false;
+
meta = {
description = "A Python 2 and 3 compatibility library";
homepage = https://pypi.python.org/pypi/six/;
diff --git a/pkgs/development/python-modules/smart_open/default.nix b/pkgs/development/python-modules/smart_open/default.nix
index 436d85102d8..2e2020f61f0 100644
--- a/pkgs/development/python-modules/smart_open/default.nix
+++ b/pkgs/development/python-modules/smart_open/default.nix
@@ -12,11 +12,11 @@
buildPythonPackage rec {
pname = "smart_open";
name = "${pname}-${version}";
- version = "1.5.3";
+ version = "1.5.6";
src = fetchPypi {
inherit pname version;
- sha256 = "0m5j71f7f36s17v4mwv0bxg4azknvcy82rbjp28b4vifrjd6dm7s";
+ sha256 = "8fd2de1c359bd0074bd6d334a5b9820ae1c5b6ba563970b95052bace4b71baeb";
};
propagatedBuildInputs = [ boto bz2file requests responses moto ];
diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix
index 40df45616e9..6c7c3c8400c 100644
--- a/pkgs/development/python-modules/spacy/default.nix
+++ b/pkgs/development/python-modules/spacy/default.nix
@@ -19,23 +19,12 @@
, ftfy
, thinc
, pip
+, regex
}:
-let
- enableDebugging = true;
- regexLocked = buildPythonPackage rec {
- name = "${pname}-${version}";
- pname = "regex";
- version = "2017.04.05";
- src = fetchPypi {
- inherit pname version;
- sha256 = "0c95gf3jzz8mv52lkgq0h7sbasjwvdhghm4s0phmy5k9sr78f4fq";
- };
- };
-in buildPythonPackage rec {
+buildPythonPackage rec {
pname = "spacy";
version = "1.8.2";
- name = pname + "-" + version;
src = fetchFromGitHub {
owner = "explosion";
@@ -56,7 +45,7 @@ in buildPythonPackage rec {
ujson
dill
requests
- regexLocked
+ regex
ftfy
thinc
pytest
diff --git a/pkgs/development/python-modules/sphinx/default.nix b/pkgs/development/python-modules/sphinx/default.nix
index e83ab1c724a..6f3d0b3c117 100644
--- a/pkgs/development/python-modules/sphinx/default.nix
+++ b/pkgs/development/python-modules/sphinx/default.nix
@@ -27,10 +27,10 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Sphinx";
- version = "1.6.5";
+ version = "1.6.6";
src = fetchPypi {
inherit pname version;
- sha256 = "c6de5dbdbb7a0d7d2757f4389cc00e8f6eb3c49e1772378967a12cfcf2cfe098";
+ sha256 = "c39a6fa41bd3ec6fc10064329a664ed3a3ca2e27640a823dc520c682e4433cdb";
};
LC_ALL = "en_US.UTF-8";
diff --git a/pkgs/development/python-modules/splinter/default.nix b/pkgs/development/python-modules/splinter/default.nix
new file mode 100644
index 00000000000..abd9bd230d4
--- /dev/null
+++ b/pkgs/development/python-modules/splinter/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, selenium
+, flask
+, coverage
+}:
+
+buildPythonPackage rec {
+ pname = "splinter";
+ version = "0.7.7";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "f97119f84d339067169451d56043f37f6b0a504a17a7ac6e48c91c012be72af6";
+ };
+
+ propagatedBuildInputs = [ selenium ];
+
+ checkInputs = [ flask coverage ];
+
+ # No tests included
+ doCheck = false;
+
+ meta = {
+ description = "Browser abstraction for web acceptance testing";
+ homepage = https://github.com/cobrateam/splinter;
+ license = lib.licenses.bsd3;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/sqlalchemy/default.nix b/pkgs/development/python-modules/sqlalchemy/default.nix
index 9b3a5fa2039..175aa4a6c3a 100644
--- a/pkgs/development/python-modules/sqlalchemy/default.nix
+++ b/pkgs/development/python-modules/sqlalchemy/default.nix
@@ -1,7 +1,7 @@
{ lib
, fetchPypi
, buildPythonPackage
-, pytest_30
+, pytest
, mock
, pytest_xdist
, isPy3k
@@ -11,15 +11,15 @@
buildPythonPackage rec {
pname = "SQLAlchemy";
name = "${pname}-${version}";
- version = "1.1.15";
+ version = "1.2.1";
src = fetchPypi {
inherit pname version;
- sha256 = "8b79a5ed91cdcb5abe97b0045664c55c140aec09e5dd5c01303e23de5fe7a95a";
+ sha256 = "9ede7070d6fd18f28058be88296ed67893e2637465516d6a596cd9afea97b154";
};
checkInputs = [
- pytest_30
+ pytest
mock
# Disable pytest_xdist tests for now, because our version seems to be too new.
# pytest_xdist
diff --git a/pkgs/development/python-modules/sqlmap/default.nix b/pkgs/development/python-modules/sqlmap/default.nix
index 2c85bdbe3d1..dd7fdc173e5 100644
--- a/pkgs/development/python-modules/sqlmap/default.nix
+++ b/pkgs/development/python-modules/sqlmap/default.nix
@@ -5,12 +5,12 @@
buildPythonPackage rec {
pname = "sqlmap";
- version = "1.1.11";
+ version = "1.2";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "bb5297df9cd97316b3c7ca64f8e31cae5cc6b94c015afd84c546877f1f77d6e4";
+ sha256 = "18ac6392a710f0cc106c28c4e27e43e8f1b25cb46fb8b6714836212607c07b10";
};
# No tests in archive
diff --git a/pkgs/development/python-modules/stevedore/default.nix b/pkgs/development/python-modules/stevedore/default.nix
index 326282a39c3..9639ce96194 100644
--- a/pkgs/development/python-modules/stevedore/default.nix
+++ b/pkgs/development/python-modules/stevedore/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "stevedore";
- version = "1.27.1";
+ version = "1.28.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "236468dae36707069e8b3bdb455e9f1be090b1e6b937f4ac0c56a538d6f50be0";
+ sha256 = "f1c7518e7b160336040fee272174f1f7b29a46febb3632502a8f2055f973d60b";
};
doCheck = false;
diff --git a/pkgs/development/python-modules/stripe/default.nix b/pkgs/development/python-modules/stripe/default.nix
index 7edfb9c4f0e..22c047fc54e 100644
--- a/pkgs/development/python-modules/stripe/default.nix
+++ b/pkgs/development/python-modules/stripe/default.nix
@@ -3,7 +3,7 @@
buildPythonPackage rec {
pname = "stripe";
- version = "1.70.0";
+ version = "1.77.1";
name = "${pname}-${version}";
# Tests require network connectivity and there's no easy way to disable
@@ -12,7 +12,7 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "ee77103d2d18fe6369f23c40c93067425c5ed67e08b1a7678e681217e8fa8062";
+ sha256 = "d1c638b417301849ff4ee0327332cfdec96edda83c79b08af307339138077d59";
};
buildInputs = [ unittest2 mock ];
diff --git a/pkgs/development/python-modules/structlog/default.nix b/pkgs/development/python-modules/structlog/default.nix
new file mode 100644
index 00000000000..4dc9c3c79bc
--- /dev/null
+++ b/pkgs/development/python-modules/structlog/default.nix
@@ -0,0 +1,41 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, fetchpatch
+, pytest
+, pretend
+, freezegun
+, simplejson
+}:
+
+buildPythonPackage rec {
+ pname = "structlog";
+ version = "17.2.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "6980001045abd235fa12582222627c19b89109e58b85eb77d5a5abc778df6e20";
+ };
+
+ patches = [
+ # Fix tests for pytest 3.3
+ (fetchpatch {
+ url = "https://github.com/hynek/structlog/commit/22f0ae50607a0cb024361599f84610ce290deb99.patch";
+ sha256 = "03622i13ammkpyrdk48kimbz94gbkpcmdpy0kj2z09m1kp6q2ljv";
+ })
+ ];
+
+ checkInputs = [ pytest pretend freezegun ];
+ propagatedBuildInputs = [ simplejson ];
+
+ checkPhase = ''
+ rm tests/test_twisted.py*
+ py.test
+ '';
+
+ meta = {
+ description = "Painless structural logging";
+ homepage = http://www.structlog.org/;
+ license = lib.licenses.asl20;
+ };
+}
diff --git a/pkgs/development/python-modules/supervise_api/default.nix b/pkgs/development/python-modules/supervise_api/default.nix
index 5b98aa3415b..f1631013152 100644
--- a/pkgs/development/python-modules/supervise_api/default.nix
+++ b/pkgs/development/python-modules/supervise_api/default.nix
@@ -2,20 +2,26 @@
, buildPythonPackage
, fetchPypi
, supervise
+, isPy3k
+, whichcraft
}:
buildPythonPackage rec {
pname = "supervise_api";
- version = "0.1.5";
+ version = "0.3.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "1pqqlw80cjdgrlpvdmydkyhsrr4s531mn6bfkshm68j9gk4kq6px";
+ sha256 = "13gy2m14zh6lbdm45b40ffjnw8y3dapz9hvzpwk8vyvbxj4f1vaf";
};
- propagatedBuildInputs = [ supervise ];
+ propagatedBuildInputs = [
+ supervise
+ ] ++ lib.optionals ( !isPy3k ) [
+ whichcraft
+ ];
# no tests
doCheck = false;
diff --git a/pkgs/development/python-modules/sybil/default.nix b/pkgs/development/python-modules/sybil/default.nix
index b1fe22df476..1370c59ace8 100644
--- a/pkgs/development/python-modules/sybil/default.nix
+++ b/pkgs/development/python-modules/sybil/default.nix
@@ -3,11 +3,11 @@
buildPythonApplication rec {
pname = "sybil";
- version = "1.0.5";
+ version = "1.0.6";
src = fetchPypi {
inherit pname version;
- sha256 = "0x8qd5p5qliv8wmdglda2iy3f70i4jg8zqyk8yhklm5hrxm8jdl6";
+ sha256 = "5bd7dd09eff68cbec9062e6950124fadfaaccbc0f50b23c1037f4d70ae86f0f1";
};
checkInputs = [ pytest nose ];
diff --git a/pkgs/development/python-modules/syncserver/default.nix b/pkgs/development/python-modules/syncserver/default.nix
new file mode 100644
index 00000000000..e050bcf5404
--- /dev/null
+++ b/pkgs/development/python-modules/syncserver/default.nix
@@ -0,0 +1,39 @@
+{ stdenv
+, buildPythonPackage
+, fetchgit
+, isPy27
+, unittest2
+, cornice
+, gunicorn
+, pyramid
+, requests
+, simplejson
+, sqlalchemy
+, mozsvc
+, tokenserver
+, serversyncstorage
+, configparser
+}:
+
+buildPythonPackage rec {
+ name = "syncserver-${version}";
+ version = "1.6.0";
+ disabled = ! isPy27;
+
+ src = fetchgit {
+ url = https://github.com/mozilla-services/syncserver.git;
+ rev = "refs/tags/${version}";
+ sha256 = "1fsiwihgq3z5b5kmssxxil5g2abfvsf6wfikzyvi4sy8hnym77mb";
+ };
+
+ buildInputs = [ unittest2 ];
+ propagatedBuildInputs = [
+ cornice gunicorn pyramid requests simplejson sqlalchemy mozsvc tokenserver
+ serversyncstorage configparser
+ ];
+
+ meta = {
+ maintainers = [ ];
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/development/python-modules/tabulate/default.nix b/pkgs/development/python-modules/tabulate/default.nix
index 9ddc2a0e08b..db7f43c1ea4 100644
--- a/pkgs/development/python-modules/tabulate/default.nix
+++ b/pkgs/development/python-modules/tabulate/default.nix
@@ -5,13 +5,13 @@
}:
buildPythonPackage rec {
- version = "0.7.7";
+ version = "0.8.2";
pname = "tabulate";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "83a0b8e17c09f012090a50e1e97ae897300a72b35e0c86c0b53d3bd2ae86d8c6";
+ sha256 = "e4ca13f26d0a6be2a2915428dc21e732f1e44dad7f76d7030b2ef1ec251cf7f2";
};
checkInputs = [ nose ];
diff --git a/pkgs/development/python-modules/terminado/default.nix b/pkgs/development/python-modules/terminado/default.nix
new file mode 100644
index 00000000000..7ebd2f1c967
--- /dev/null
+++ b/pkgs/development/python-modules/terminado/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, ptyprocess
+, tornado
+}:
+
+buildPythonPackage rec {
+ pname = "terminado";
+ version = "0.8.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0yh69k6579g848rmjyllb5h75pkvgcy27r1l3yzgkf33wnnzkasm";
+ };
+
+ propagatedBuildInputs = [ ptyprocess tornado ];
+
+ meta = with lib; {
+ description = "Terminals served by Tornado websockets";
+ homepage = https://github.com/jupyter/terminado;
+ license = licenses.bsd2;
+ };
+}
diff --git a/pkgs/development/python-modules/testtools/default.nix b/pkgs/development/python-modules/testtools/default.nix
index e786cb84329..eb6a6694b05 100644
--- a/pkgs/development/python-modules/testtools/default.nix
+++ b/pkgs/development/python-modules/testtools/default.nix
@@ -12,19 +12,18 @@
, pyrsistent
}:
-# testtools 2.0.0 and up has a circular run-time dependency on futures
+
buildPythonPackage rec {
pname = "testtools";
- version = "1.9.0";
- name = "${pname}-${version}";
+ version = "2.3.0";
# Python 2 only judging from SyntaxError
# disabled = isPy3k;
src = fetchPypi {
inherit pname version;
- sha256 = "b46eec2ad3da6e83d53f2b0eca9a8debb687b4f71343a074f83a16bbdb3c0644";
+ sha256 = "5827ec6cf8233e0f29f51025addd713ca010061204fdea77484a2934690a0559";
};
propagatedBuildInputs = [ pbr python_mimeparse extras lxml unittest2 pyrsistent ];
@@ -33,6 +32,11 @@ buildPythonPackage rec {
# No tests in archive
doCheck = false;
+ # testtools 2.0.0 and up has a circular run-time dependency on futures
+ postPatch = ''
+ substituteInPlace requirements.txt --replace "fixtures>=1.3.0" ""
+ '';
+
meta = {
description = "A set of extensions to the Python standard library's unit testing framework";
homepage = https://pypi.python.org/pypi/testtools;
diff --git a/pkgs/development/python-modules/textacy/default.nix b/pkgs/development/python-modules/textacy/default.nix
index 1647b837d97..333c4825f0f 100644
--- a/pkgs/development/python-modules/textacy/default.nix
+++ b/pkgs/development/python-modules/textacy/default.nix
@@ -25,11 +25,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "textacy";
- version = "0.4.1";
+ version = "0.5.0";
src = fetchPypi {
inherit pname version;
- sha256 = "04wf3a7zgzz83nmgkh488wkl50zm9yfdpv3sl12sm2zj685plqcz";
+ sha256 = "6fc4603fd52c386081b063ef7aa15ca77e5e937a3064b197359659fccfdeb406";
};
disabled = isPy27; # 2.7 requires backports.csv
diff --git a/pkgs/development/python-modules/texttable/default.nix b/pkgs/development/python-modules/texttable/default.nix
new file mode 100644
index 00000000000..fc97297c010
--- /dev/null
+++ b/pkgs/development/python-modules/texttable/default.nix
@@ -0,0 +1,20 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+ pname = "texttable";
+ version = "1.2.1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "c89dc0148ae29645917aab7e970a30d1af565b3ca276cef8ab1a60469f0d8100";
+ };
+
+ meta = {
+ description = "A module to generate a formatted text table, using ASCII characters";
+ homepage = http://foutaise.org/code/;
+ license = lib.licenses.lgpl2;
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/thespian/default.nix b/pkgs/development/python-modules/thespian/default.nix
index 7a6ff3cc53d..1a2aced6858 100644
--- a/pkgs/development/python-modules/thespian/default.nix
+++ b/pkgs/development/python-modules/thespian/default.nix
@@ -1,19 +1,19 @@
{ stdenv, fetchPypi, buildPythonPackage, lib }:
buildPythonPackage rec {
- version = "3.8.3";
+ version = "3.9.1";
pname = "thespian";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "0vvwsh3waxd5ldrayr86kdcshv07bp361fl7p16g9i044vklwly4";
+ sha256 = "0b303bv85176xd5mf3q5j549s28wi70ck2xxgj1cvpydh23dzipb";
};
- # Do not run the test suite: it takes a long type and uses
+ # Do not run the test suite: it takes a long time and uses
# significant system resources, including requiring localhost
- # network operations. Thespian tests are performed via it's Travis
+ # network operations. Thespian tests are performed via its Travis
# CI configuration and do not need to be duplicated here.
doCheck = false;
diff --git a/pkgs/development/python-modules/tifffile/default.nix b/pkgs/development/python-modules/tifffile/default.nix
new file mode 100644
index 00000000000..b0c3131785f
--- /dev/null
+++ b/pkgs/development/python-modules/tifffile/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchPypi, buildPythonPackage, isPy27, pythonOlder
+, numpy, nose, enum34, futures }:
+
+buildPythonPackage rec {
+ pname = "tifffile";
+ version = "0.13.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "43d3903e8ea4542aaa4759ec3683641555d3a15e68fa5a41aaf14cce4110641a";
+ };
+
+ checkInputs = [ nose ];
+ checkPhase = ''
+ nosetests --exe -v --exclude="test_extension"
+ '';
+
+ propagatedBuildInputs = [ numpy ]
+ ++ lib.optional isPy27 futures
+ ++ lib.optional (pythonOlder "3.0") enum34;
+
+ meta = with stdenv.lib; {
+ description = "Read and write image data from and to TIFF files.";
+ homepage = https://github.com/blink1073/tifffile;
+ maintainers = [ maintainers.lebastr ];
+ license = licenses.bsd2;
+ };
+}
diff --git a/pkgs/development/python-modules/tiros/default.nix b/pkgs/development/python-modules/tiros/default.nix
index a620c6eb58d..7bf21b02521 100644
--- a/pkgs/development/python-modules/tiros/default.nix
+++ b/pkgs/development/python-modules/tiros/default.nix
@@ -5,11 +5,11 @@
buildPythonPackage rec {
pname = "tiros";
name = "${pname}-${version}";
- version = "1.0.40";
+ version = "1.0.42";
src = fetchPypi {
inherit pname version;
- sha256 = "841ca13564e3cddfd1404cbc60b3433bcc1e31c2753ecea20d0ad68173b80169";
+ sha256 = "d0f9bc6d463654c971a78e02a3159ec62a2db684a217a7e940e66d4a381bdd52";
};
patchPhase = ''
diff --git a/pkgs/development/python-modules/tokenserver/default.nix b/pkgs/development/python-modules/tokenserver/default.nix
new file mode 100644
index 00000000000..af7acbc0218
--- /dev/null
+++ b/pkgs/development/python-modules/tokenserver/default.nix
@@ -0,0 +1,36 @@
+{ stdenv
+, buildPythonPackage
+, fetchgit
+, testfixtures
+, cornice
+, mozsvc
+, pybrowserid
+, tokenlib
+, pymysql
+, umemcache
+, hawkauthlib
+, alembic
+, pymysqlsa
+, paste
+, boto
+}:
+
+buildPythonPackage rec {
+ name = "tokenserver-${version}";
+ version = "1.2.27";
+
+ src = fetchgit {
+ url = https://github.com/mozilla-services/tokenserver.git;
+ rev = "refs/tags/${version}";
+ sha256 = "0il3bgjld495g9gxvvrm56kpan5swaizzg216qz3zxmb6w9ly3fm";
+ };
+
+ doCheck = false;
+ buildInputs = [ testfixtures ];
+ propagatedBuildInputs = [ cornice mozsvc pybrowserid tokenlib
+ pymysql umemcache hawkauthlib alembic pymysqlsa paste boto ];
+
+ meta = {
+ platforms = stdenv.lib.platforms.all;
+ };
+}
diff --git a/pkgs/development/python-modules/toolz/default.nix b/pkgs/development/python-modules/toolz/default.nix
index 36b85bce3ac..0fc14024903 100644
--- a/pkgs/development/python-modules/toolz/default.nix
+++ b/pkgs/development/python-modules/toolz/default.nix
@@ -6,12 +6,12 @@
buildPythonPackage rec{
pname = "toolz";
- version = "0.8.2";
+ version = "0.9.0";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "0l3czks4xy37i8099waxk2fdz5g0k1dwys2mkhlxc0b0886cj4sa";
+ sha256 = "929f0a7ea7f61c178bd951bdae93920515d3fbdbafc8e6caf82d752b9b3b31c9";
};
checkInputs = [ nose ];
diff --git a/pkgs/development/python-modules/tornado/default.nix b/pkgs/development/python-modules/tornado/default.nix
index bc39745945d..db513d1c614 100644
--- a/pkgs/development/python-modules/tornado/default.nix
+++ b/pkgs/development/python-modules/tornado/default.nix
@@ -10,7 +10,7 @@
buildPythonPackage rec {
pname = "tornado";
- version = "4.5.2";
+ version = "4.5.3";
name = "${pname}-${version}";
propagatedBuildInputs = [ backports_abc backports_ssl_match_hostname certifi singledispatch ];
@@ -23,6 +23,6 @@ buildPythonPackage rec {
src = fetchPypi {
inherit pname version;
- sha256 = "1fb8e494cd46c674d86fac5885a3ff87b0e283937a47d74eb3c02a48c9e89ad0";
+ sha256 = "6d14e47eab0e15799cf3cdcc86b0b98279da68522caace2bd7ce644287685f0a";
};
}
diff --git a/pkgs/development/python-modules/tox/default.nix b/pkgs/development/python-modules/tox/default.nix
new file mode 100644
index 00000000000..bc70d65cc1f
--- /dev/null
+++ b/pkgs/development/python-modules/tox/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, py
+, virtualenv
+, pluggy
+, setuptools_scm
+, six
+}:
+
+buildPythonPackage rec {
+ pname = "tox";
+ version = "2.9.1";
+
+ buildInputs = [ setuptools_scm ];
+ propagatedBuildInputs = [ py virtualenv pluggy six ];
+
+ doCheck = false;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "752f5ec561c6c08c5ecb167d3b20f4f4ffc158c0ab78855701a75f5cef05f4b8";
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/python-modules/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix
index 2392a4a9968..209ee8ccd6b 100644
--- a/pkgs/development/python-modules/tqdm/default.nix
+++ b/pkgs/development/python-modules/tqdm/default.nix
@@ -11,12 +11,12 @@
buildPythonPackage rec {
pname = "tqdm";
- version = "4.19.4";
+ version = "4.19.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "7ca803c2ea268c6bdb541e2dac74a3af23cf4bf7b4132a6a78926d255f8c8df1";
+ sha256 = "df32e6f127dc0ccbc675eadb33f749abbcb8f174c5cb9ec49c0cdb73aa737377";
};
buildInputs = [ nose coverage glibcLocales flake8 ];
diff --git a/pkgs/development/python-modules/transitions/default.nix b/pkgs/development/python-modules/transitions/default.nix
new file mode 100644
index 00000000000..edf13782b07
--- /dev/null
+++ b/pkgs/development/python-modules/transitions/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, six, nose, mock, dill, pycodestyle }:
+
+buildPythonPackage rec {
+ pname = "transitions";
+ version = "0.6.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1ikxsjg7vil0yhiwhiimnjzcb1ig6g6g79sdhs9v8rnrszk1mi2n";
+ };
+
+ postPatch = ''
+ substituteInPlace setup.py --replace "dill<0.2.7" dill
+ '';
+
+ propagatedBuildInputs = [ six ];
+
+ checkInputs = [ nose mock dill pycodestyle ];
+
+ checkPhase = ''
+ nosetests
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/pytransitions/transitions;
+ description = "A lightweight, object-oriented finite state machine implementation in Python";
+ license = licenses.mit;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/twilio/default.nix b/pkgs/development/python-modules/twilio/default.nix
index faca6edace5..5a32a64c296 100644
--- a/pkgs/development/python-modules/twilio/default.nix
+++ b/pkgs/development/python-modules/twilio/default.nix
@@ -4,8 +4,6 @@
buildPythonPackage rec {
pname = "twilio";
version = "6.8.0";
- name = "${pname}-${version}";
-
# tests not included in PyPi, so fetch from github instead
src = fetchFromGitHub {
owner = "twilio";
diff --git a/pkgs/development/python-modules/typeguard/default.nix b/pkgs/development/python-modules/typeguard/default.nix
index b441ad8052c..0af8c47e35c 100644
--- a/pkgs/development/python-modules/typeguard/default.nix
+++ b/pkgs/development/python-modules/typeguard/default.nix
@@ -9,11 +9,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "typeguard";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchPypi {
inherit pname version;
- sha256 = "0l3pih5ca469v7if255h5rqymirsw46bi6s7p885jxhq1gv6cfpk";
+ sha256 = "40b22d18d2215b76b3ddda2564acfbddfa6e702968637fbd969187c2a6fb99da";
};
buildInputs = [ setuptools_scm ];
diff --git a/pkgs/development/python-modules/tzlocal/default.nix b/pkgs/development/python-modules/tzlocal/default.nix
index 2277cb7c4ca..1c61d0afab3 100644
--- a/pkgs/development/python-modules/tzlocal/default.nix
+++ b/pkgs/development/python-modules/tzlocal/default.nix
@@ -4,13 +4,13 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "tzlocal";
- version = "1.4";
+ version = "1.5.1";
propagatedBuildInputs = [ pytz ];
src = fetchPypi {
inherit pname version;
- sha256 = "0n9hw4kqblyc0avzwi26rqmvyk9impb608rvy11qifmigy7r18h5";
+ sha256 = "4ebeb848845ac898da6519b9b31879cf13b6626f7184c496037b818e238f2c4e";
};
# test fail (timezone test fail)
diff --git a/pkgs/development/python-modules/ua-parser/default.nix b/pkgs/development/python-modules/ua-parser/default.nix
new file mode 100644
index 00000000000..1b397f6c737
--- /dev/null
+++ b/pkgs/development/python-modules/ua-parser/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildPythonPackage, fetchPypi, pyyaml }:
+
+buildPythonPackage rec {
+ pname = "ua-parser";
+ version = "0.7.3";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1p8siba0rnb5nsl354fd5fc4751d5ybw7hgnd56yn8dncxdb1bqa";
+ };
+
+ buildInputs = [ pyyaml ];
+
+ doCheck = false; # requires files from uap-core
+
+ meta = with stdenv.lib; {
+ description = "A python implementation of the UA Parser";
+ homepage = https://github.com/ua-parser/uap-python;
+ license = licenses.asl20;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/uncertainties/default.nix b/pkgs/development/python-modules/uncertainties/default.nix
index e60ed958223..d90ada60632 100644
--- a/pkgs/development/python-modules/uncertainties/default.nix
+++ b/pkgs/development/python-modules/uncertainties/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "uncertainties";
- version = "3.0.1";
+ version = "3.0.2";
src = fetchPypi {
inherit pname version;
- sha256 = "de0765cac6911e5afa93ee941063a07b4a98dbd9c314c5eea4ab14bfff0054a4";
+ sha256 = "91db922d54dff6094b4ea0d6e058f713a992cdf42e3ebaf73278e1893bfa2942";
};
buildInputs = [ nose numpy ];
diff --git a/pkgs/development/python-modules/unidecode/default.nix b/pkgs/development/python-modules/unidecode/default.nix
index 9b81a28f085..3cffe380490 100644
--- a/pkgs/development/python-modules/unidecode/default.nix
+++ b/pkgs/development/python-modules/unidecode/default.nix
@@ -3,11 +3,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Unidecode";
- version = "0.04.21";
+ version = "1.0.22";
src = fetchPypi {
inherit pname version;
- sha256 = "0lfhp9c5xrbpjvbpr12ji52g1lx04404bzzdg6pvabhzisw6l2i8";
+ sha256 = "8c33dd588e0c9bc22a76eaa0c715a5434851f726131bd44a6c26471746efabf5";
};
LC_ALL="en_US.UTF-8";
diff --git a/pkgs/development/python-modules/uranium/default.nix b/pkgs/development/python-modules/uranium/default.nix
index 2e4a232f1f1..24eecf82311 100644
--- a/pkgs/development/python-modules/uranium/default.nix
+++ b/pkgs/development/python-modules/uranium/default.nix
@@ -5,17 +5,17 @@ then throw "Uranium not supported for interpreter ${python.executable}"
else
stdenv.mkDerivation rec {
- version = "3.0.3";
+ version = "3.1.0";
pname = "uranium";
name = "${pname}-${version}";
-
+
src = fetchFromGitHub {
owner = "Ultimaker";
repo = "Uranium";
rev = version;
- sha256 = "1pyzpcdb6kb0basvhgpjdiws8x0bwl71k7nkf3j3s9wk1dvyw824";
+ sha256 = "1wz2nk973g8227r9v6j7gry3m0b0ikirkws8sfhysvgj0vgak9yk";
};
-
+
buildInputs = [ python gettext ];
propagatedBuildInputs = [ pyqt5 numpy scipy libarcus ];
nativeBuildInputs = [ cmake doxygen ];
diff --git a/pkgs/development/python-modules/us/default.nix b/pkgs/development/python-modules/us/default.nix
new file mode 100644
index 00000000000..eb001410ce5
--- /dev/null
+++ b/pkgs/development/python-modules/us/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, jellyfish
+}:
+
+buildPythonPackage rec {
+ pname = "us";
+ version = "1.0.0";
+
+ propagatedBuildInputs = [ jellyfish ];
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1niglalkp7pinibzbxjdz9mxx9qmwkrh8884dag3kr72cfkrpp09";
+ };
+
+ meta = {
+ description = "A package for easily working with US and state metadata";
+ longDescription = ''
+ all US states and territories, postal abbreviations, Associated Press style
+ abbreviations, FIPS codes, capitals, years of statehood, time zones, phonetic
+ state name lookup, is contiguous or continental, URLs to shapefiles for state,
+ census, congressional districts, counties, and census tracts
+ '';
+ homepage = https://github.com/unitedstates/python-us/;
+ license = lib.licenses.bsd3;
+ };
+}
diff --git a/pkgs/development/python-modules/user-agents/default.nix b/pkgs/development/python-modules/user-agents/default.nix
new file mode 100644
index 00000000000..6b14eebb310
--- /dev/null
+++ b/pkgs/development/python-modules/user-agents/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildPythonPackage, fetchFromGitHub, ua-parser }:
+
+buildPythonPackage rec {
+ pname = "user-agents";
+ version = "1.1.0";
+
+ # PyPI is missing devices.json
+ src = fetchFromGitHub {
+ owner = "selwin";
+ repo = "python-user-agents";
+ rev = "v${version}";
+ sha256 = "14kxd780zhp8718xr1z63xffaj3bvxgr4pldh9sv943m4hvi0gw5";
+ };
+
+ propagatedBuildInputs = [ ua-parser ];
+
+ meta = with stdenv.lib; {
+ description = "A Python library to identify devices by parsing user agent strings";
+ homepage = https://github.com/selwin/python-user-agents;
+ license = licenses.mit;
+ platforms = platforms.unix;
+ maintainers = with maintainers; [ dotlambda ];
+ };
+}
diff --git a/pkgs/development/python-modules/versioneer/default.nix b/pkgs/development/python-modules/versioneer/default.nix
new file mode 100644
index 00000000000..a3328671417
--- /dev/null
+++ b/pkgs/development/python-modules/versioneer/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+
+buildPythonPackage rec {
+
+ pname = "versioneer";
+ version = "0.18";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0dgkzg1r7mjg91xp81sv9z4mabyxl39pkd11jlc1200md20zglga";
+ };
+
+ # Couldn't get tests to work because, for instance, they used virtualenv and
+ # pip.
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Version-string management for VCS-controlled trees";
+ homepage = https://github.com/warner/python-versioneer;
+ license = licenses.publicDomain;
+ maintainers = with maintainers; [ jluttine ];
+ };
+
+}
diff --git a/pkgs/development/python-modules/voluptuous/default.nix b/pkgs/development/python-modules/voluptuous/default.nix
index 250a0951d96..00c13cba066 100644
--- a/pkgs/development/python-modules/voluptuous/default.nix
+++ b/pkgs/development/python-modules/voluptuous/default.nix
@@ -3,7 +3,6 @@
buildPythonPackage rec {
pname = "voluptuous";
version = "0.10.5";
- name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
diff --git a/pkgs/development/python-modules/vowpalwabbit/default.nix b/pkgs/development/python-modules/vowpalwabbit/default.nix
index 8c980cf2b2c..f2b5e06baaa 100644
--- a/pkgs/development/python-modules/vowpalwabbit/default.nix
+++ b/pkgs/development/python-modules/vowpalwabbit/default.nix
@@ -3,11 +3,11 @@
pythonPackages.buildPythonPackage rec {
pname = "vowpalwabbit";
name = "${pname}-${version}";
- version = "8.3.2";
+ version = "8.4.0";
src = fetchurl{
url = "mirror://pypi/v/vowpalwabbit/${name}.tar.gz";
- sha256 = "0qm8rlrs2gfgamqnpx4lapxakpzgh0yh3kp1lbd7lhb0r748m3k7";
+ sha256 = "abd22bfae99fb102cf8a6aec49e8c278cb7317d3a7eb60f70cd102be9c336fd5";
};
# vw tries to write some explicit things to home
# python installed: The directory '/homeless-shelter/.cache/pip/http'
diff --git a/pkgs/development/python-modules/websockets/default.nix b/pkgs/development/python-modules/websockets/default.nix
index 48803655258..f24f10675f8 100644
--- a/pkgs/development/python-modules/websockets/default.nix
+++ b/pkgs/development/python-modules/websockets/default.nix
@@ -6,13 +6,13 @@
let
pname = "websockets";
- version = "3.4";
+ version = "4.0.1";
in buildPythonPackage rec {
name = "${pname}-${version}";
src = fetchurl {
url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
- sha256 = "43e5b9f51dd0000a4c6f646e2ade0c886bd14a784ffac08b9e079bd17a63bcc5";
+ sha256 = "da4d4fbe059b0453e726d6d993760065d69b823a27efc3040402a6fcfe6a1ed9";
};
disabled = pythonOlder "3.3";
diff --git a/pkgs/development/python-modules/werkzeug/default.nix b/pkgs/development/python-modules/werkzeug/default.nix
index 5979d895a74..58be98f183b 100644
--- a/pkgs/development/python-modules/werkzeug/default.nix
+++ b/pkgs/development/python-modules/werkzeug/default.nix
@@ -1,21 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi
-, itsdangerous
+, itsdangerous, hypothesis
, pytest, requests, glibcLocales }:
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "Werkzeug";
- version = "0.12.2";
+ version = "0.14.1";
src = fetchPypi {
inherit pname version;
- sha256 = "09mv4cya3lywkn4mi3qrqmjgwiw99kdk03dk912j8da6ny3pnflh";
+ sha256 = "c3fd7a7d41976d9f44db327260e263132466836cef6f91512889ed60ad26557c";
};
- LC_ALL = "en_US.UTF-8";
-
propagatedBuildInputs = [ itsdangerous ];
- buildInputs = [ pytest requests glibcLocales ];
+ checkInputs = [ pytest requests glibcLocales hypothesis ];
+
+ checkPhase = ''
+ LC_ALL="en_US.UTF-8" py.test ${stdenv.lib.optionalString stdenv.isDarwin "-k 'not test_get_machine_id'"}
+ '';
meta = with stdenv.lib; {
homepage = http://werkzeug.pocoo.org/;
diff --git a/pkgs/development/python-modules/whitenoise/default.nix b/pkgs/development/python-modules/whitenoise/default.nix
new file mode 100644
index 00000000000..d2359b2195f
--- /dev/null
+++ b/pkgs/development/python-modules/whitenoise/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchPypi, buildPythonPackage }:
+
+buildPythonPackage rec {
+ pname = "whitenoise";
+ version = "4.0b4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0ra2bbsihwfhnf1ibahzzabgfjfghxqcrbfx6r5r50mlil5n8bf4";
+ };
+
+ # No tests
+ doCheck = false;
+
+ meta = with stdenv.lib; {
+ description = "Radically simplified static file serving for WSGI applications";
+ homepage = http://whitenoise.evans.io/;
+ license = licenses.mit;
+ };
+}
diff --git a/pkgs/development/python-modules/widgetsnbextension/default.nix b/pkgs/development/python-modules/widgetsnbextension/default.nix
index b9ab1dfbc1d..ab63b444af6 100644
--- a/pkgs/development/python-modules/widgetsnbextension/default.nix
+++ b/pkgs/development/python-modules/widgetsnbextension/default.nix
@@ -8,11 +8,11 @@
buildPythonPackage rec {
pname = "widgetsnbextension";
name = "${pname}-${version}";
- version = "3.0.8";
+ version = "3.1.0";
src = fetchPypi {
inherit pname version;
- sha256 = "a57e29e733b989e68fdd0f3d6927a3691763b39792591d573b95a89a5a12ec15";
+ sha256 = "67fc28c3b9fede955d69bccbd92784e3f0c6d0dee3a71532cd3367c257feb178";
};
propagatedBuildInputs = [ notebook ];
diff --git a/pkgs/development/python-modules/ws4py/default.nix b/pkgs/development/python-modules/ws4py/default.nix
index 648ab1cff08..5e65940e846 100644
--- a/pkgs/development/python-modules/ws4py/default.nix
+++ b/pkgs/development/python-modules/ws4py/default.nix
@@ -4,11 +4,11 @@
buildPythonPackage rec {
name = "${pname}-${version}";
pname = "ws4py";
- version = "0.4.2";
+ version = "0.4.3";
src = fetchPypi {
inherit pname version;
- sha256 = "0zr3254ky6r7q15l3dhdczfa8i723055zdkqssjifsgcwvirriks";
+ sha256 = "ee12b58384bab8bfdcd1c76dcd6852047aec163af17175fc0f73e255d107dd7a";
};
checkInputs = [ pytest mock git ];
diff --git a/pkgs/development/python-modules/xarray/default.nix b/pkgs/development/python-modules/xarray/default.nix
index 1215e613f6f..afde3f3b45b 100644
--- a/pkgs/development/python-modules/xarray/default.nix
+++ b/pkgs/development/python-modules/xarray/default.nix
@@ -10,30 +10,23 @@
buildPythonPackage rec {
pname = "xarray";
- version = "0.9.6";
- name = "${pname}-${version}";
+ version = "0.10.0";
src = fetchPypi {
inherit pname version;
- sha256 = "f649a41d43b5a6c64bdcbd57e994932656b689f9593a86dd0be95778a2b47494";
+ sha256 = "af1449e8df84a6eb09eb1d56c1dc5ac7f24a9563d4f2b9391ff364dc0c62344c";
};
- # Temporary patch until next release (later than 0.9.6) to fix
- # a broken test case.
- patches = [
- (fetchurl {
- url = "https://github.com/pydata/xarray/commit/726c6a3638ecf95889c541d84e892a106c2f2f92.patch";
- sha256 = "1i2hsj5v5qlvqfj48vyn9931yndsf4k4wrk3qpqpywh32s7r007b";
- })
- ];
-
- buildInputs = [ pytest ];
+ checkInputs = [ pytest ];
propagatedBuildInputs = [numpy pandas];
checkPhase = ''
py.test $out/${python.sitePackages}
'';
+ # There always seem to be broken tests...
+ doCheck = false;
+
meta = {
description = "N-D labeled arrays and datasets in Python";
homepage = https://github.com/pydata/xarray;
diff --git a/pkgs/development/python-modules/xcffib/default.nix b/pkgs/development/python-modules/xcffib/default.nix
new file mode 100644
index 00000000000..9b136531a4b
--- /dev/null
+++ b/pkgs/development/python-modules/xcffib/default.nix
@@ -0,0 +1,31 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, xorg
+, cffi
+, six
+}:
+
+buildPythonPackage rec {
+ version = "0.5.1";
+ pname = "xcffib";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "09gbnmr5vn58mm8xi3fmd7fz6743cks6c46dphnxzwax6zsxmy60";
+ };
+
+ patchPhase = ''
+ # Hardcode cairo library path
+ sed -e 's,ffi\.dlopen(,&"${xorg.libxcb.out}/lib/" + ,' -i xcffib/__init__.py
+ '';
+
+ propagatedBuildInputs = [ cffi six ];
+
+ meta = with stdenv.lib; {
+ description = "A drop in replacement for xpyb, an XCB python binding";
+ homepage = "https://github.com/tych0/xcffib";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ kamilchm ];
+ };
+}
diff --git a/pkgs/development/python-modules/xvfbwrapper/default.nix b/pkgs/development/python-modules/xvfbwrapper/default.nix
new file mode 100644
index 00000000000..4ba9cd61d4c
--- /dev/null
+++ b/pkgs/development/python-modules/xvfbwrapper/default.nix
@@ -0,0 +1,26 @@
+{ stdenv
+, buildPythonPackage
+, fetchPypi
+, xorgserver
+, mock
+}:
+
+buildPythonPackage rec {
+ pname = "xvfbwrapper";
+ version = "0.2.9";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "097wxhvp01ikqpg1z3v8rqhss6f1vwr399zpz9a05d2135bsxx5w";
+ };
+ propagatedBuildInputs = [ xorgserver ];
+
+ checkInputs = [ mock ];
+
+ meta = with stdenv.lib; {
+ description = "Run headless display inside X virtual framebuffer (Xvfb)";
+ homepage = https://github.com/cgoldberg/xvfbwrapper;
+ license = licenses.mit;
+ maintainers = with maintainers; [ ashgillman ];
+ };
+}
diff --git a/pkgs/development/python-modules/yapf/default.nix b/pkgs/development/python-modules/yapf/default.nix
index 2ded73d5250..05913ab61c5 100644
--- a/pkgs/development/python-modules/yapf/default.nix
+++ b/pkgs/development/python-modules/yapf/default.nix
@@ -2,12 +2,12 @@
buildPythonPackage rec {
pname = "yapf";
- version = "0.19.0";
+ version = "0.20.1";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "701b076a4916e3cfbba345e0297dcd54a02fd0fdcae1f43346f8a043c3bbd052";
+ sha256 = "bd19f246be7193ad2acdc04702b92315f1ae28d49c82f6671afdeefe9d32f468";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/python-modules/yarl/default.nix b/pkgs/development/python-modules/yarl/default.nix
index 1275178d5d0..e40aa9d05f9 100644
--- a/pkgs/development/python-modules/yarl/default.nix
+++ b/pkgs/development/python-modules/yarl/default.nix
@@ -1,28 +1,28 @@
-{ lib
-, fetchurl
+{ stdenv
+, fetchPypi
, buildPythonPackage
, multidict
, pytestrunner
, pytest
+, idna
}:
-let
+buildPythonPackage rec {
pname = "yarl";
- version = "0.13.0";
-in buildPythonPackage rec {
- name = "${pname}-${version}";
- src = fetchurl {
- url = "mirror://pypi/${builtins.substring 0 1 pname}/${pname}/${name}.tar.gz";
- sha256 = "25fe681a982f2cec567df8abac7cbd2ac27016e4aec89193945cab0643bfdb42";
+ version = "1.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "162630v7f98l27h11msk9416lqwm2mpgxh4s636594nlbfs9by3a";
};
- buildInputs = [ pytest pytestrunner ];
- propagatedBuildInputs = [ multidict ];
+ checkInputs = [ pytest pytestrunner ];
+ propagatedBuildInputs = [ multidict idna ];
-
- meta = {
+ meta = with stdenv.lib; {
description = "Yet another URL library";
homepage = https://github.com/aio-libs/yarl/;
- license = lib.licenses.asl20;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ dotlambda ];
};
-}
\ No newline at end of file
+}
diff --git a/pkgs/development/python-modules/zeep/default.nix b/pkgs/development/python-modules/zeep/default.nix
index e00d6c7e24b..64b2874ef62 100644
--- a/pkgs/development/python-modules/zeep/default.nix
+++ b/pkgs/development/python-modules/zeep/default.nix
@@ -25,13 +25,13 @@
let
pname = "zeep";
- version = "2.4.0";
+ version = "2.5.0";
in buildPythonPackage {
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
- sha256 = "8631e2735c5f2219eb18ca4f0615ae482455628518508f69c3690dbfb8238aee";
+ sha256 = "4f9db52c7d269813fc6251da4cb050869158858aeea75a055b4550f19e52ac84";
};
propagatedBuildInputs = [
diff --git a/pkgs/development/python-modules/zope_copy/default.nix b/pkgs/development/python-modules/zope_copy/default.nix
new file mode 100644
index 00000000000..305928c1846
--- /dev/null
+++ b/pkgs/development/python-modules/zope_copy/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildPythonPackage
+, fetchPypi
+, zope_interface
+, zope_location
+, zope_schema
+}:
+
+
+buildPythonPackage rec {
+ pname = "zope_copy";
+ version = "4.0.2";
+
+ src = fetchPypi {
+ inherit pname version;
+ extension = "zip";
+ sha256 = "eb2a95866df1377741876a3ee62d8600e80089e6246e1a235e86791b29534457";
+ };
+
+ propagatedBuildInputs = [ zope_interface ];
+
+ checkInputs = [ zope_location zope_schema ];
+
+ meta = {
+ maintainers = with lib.maintainers; [ domenkozar ];
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix
index 76c0e522777..4510308d3e5 100644
--- a/pkgs/development/r-modules/default.nix
+++ b/pkgs/development/r-modules/default.nix
@@ -3,7 +3,7 @@
{ R, pkgs, overrides }:
let
- inherit (pkgs) fetchurl stdenv lib;
+ inherit (pkgs) cacert fetchurl stdenv lib;
buildRPackage = pkgs.callPackage ./generic-builder.nix {
inherit R;
@@ -246,6 +246,7 @@ let
ChemmineOB = [ pkgs.openbabel pkgs.pkgconfig ];
cit = [ pkgs.gsl_1 ];
curl = [ pkgs.curl.dev ];
+ data_table = lib.optional stdenv.isDarwin pkgs.llvmPackages.openmp;
devEMF = [ pkgs.xorg.libXft.dev pkgs.x11 ];
diversitree = [ pkgs.gsl_1 pkgs.fftw ];
EMCluster = [ pkgs.liblapack ];
@@ -320,7 +321,7 @@ let
rmatio = [ pkgs.zlib.dev ];
Rmpfr = [ pkgs.gmp pkgs.mpfr.dev ];
Rmpi = [ pkgs.openmpi ];
- RMySQL = [ pkgs.zlib pkgs.mysql.lib pkgs.mariadb pkgs.openssl.dev ];
+ RMySQL = [ pkgs.zlib pkgs.mysql.connector-c pkgs.openssl.dev ];
RNetCDF = [ pkgs.netcdf pkgs.udunits ];
RODBCext = [ pkgs.libiodbc ];
RODBC = [ pkgs.libiodbc ];
@@ -744,6 +745,11 @@ let
patchPhase = "patchShebangs configure";
});
+ data_table = old.data_table.overrideDerivation (attrs: {
+ NIX_CFLAGS_COMPILE = attrs.NIX_CFLAGS_COMPILE
+ + lib.optionalString stdenv.isDarwin " -fopenmp";
+ });
+
rpf = old.rpf.overrideDerivation (attrs: {
patchPhase = "patchShebangs configure";
});
@@ -798,10 +804,10 @@ let
});
RMySQL = old.RMySQL.overrideDerivation (attrs: {
- MYSQL_DIR="${pkgs.mysql.lib}";
+ MYSQL_DIR="${pkgs.mysql.connector-c}";
preConfigure = ''
patchShebangs configure
- '';
+ '';
});
devEMF = old.devEMF.overrideDerivation (attrs: {
@@ -912,9 +918,7 @@ let
});
geojsonio = old.geojsonio.overrideDerivation (attrs: {
- preConfigure = ''
- export SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt
- '';
+ buildInputs = [ cacert ] ++ attrs.buildInputs;
});
rstan = old.rstan.overrideDerivation (attrs: {
diff --git a/pkgs/development/ruby-modules/bundled-common/default.nix b/pkgs/development/ruby-modules/bundled-common/default.nix
index 64a88d8f7b8..1f31aec886a 100644
--- a/pkgs/development/ruby-modules/bundled-common/default.nix
+++ b/pkgs/development/ruby-modules/bundled-common/default.nix
@@ -29,7 +29,9 @@ with import ./functions.nix { inherit lib gemConfig; };
let
gemFiles = bundlerFiles args;
- importedGemset = import gemFiles.gemset;
+ importedGemset = if builtins.typeOf gemFiles.gemset == "path"
+ then import gemFiles.gemset
+ else gemFiles.gemset;
filteredGemset = filterGemset { inherit ruby groups; } importedGemset;
diff --git a/pkgs/development/ruby-modules/bundled-common/functions.nix b/pkgs/development/ruby-modules/bundled-common/functions.nix
index b17a4639e77..85e93959e4b 100644
--- a/pkgs/development/ruby-modules/bundled-common/functions.nix
+++ b/pkgs/development/ruby-modules/bundled-common/functions.nix
@@ -67,8 +67,10 @@ rec {
};
in res;
- composeGemAttrs = ruby: gems: name: attrs: ((removeAttrs attrs ["source" "platforms"]) // attrs.source // {
+ composeGemAttrs = ruby: gems: name: attrs: ((removeAttrs attrs ["platforms"]) // {
inherit ruby;
+ inherit (attrs.source) type;
+ source = removeAttrs attrs.source ["type"];
gemName = name;
gemPath = map (gemName: gems."${gemName}") (attrs.dependencies or []);
});
diff --git a/pkgs/development/ruby-modules/bundler-env/default.nix b/pkgs/development/ruby-modules/bundler-env/default.nix
index 2e2653621a7..5d1489ba200 100644
--- a/pkgs/development/ruby-modules/bundler-env/default.nix
+++ b/pkgs/development/ruby-modules/bundler-env/default.nix
@@ -1,7 +1,4 @@
-{ stdenv, runCommand, writeText, writeScript, writeScriptBin, ruby, lib
-, callPackage, defaultGemConfig, fetchurl, fetchgit, buildRubyGem, buildEnv
-, linkFarm, git, makeWrapper, bundler, tree
-}@defs:
+{ ruby, lib, callPackage, defaultGemConfig, buildEnv, bundler }@defs:
{ name ? null
, pname ? null
diff --git a/pkgs/development/ruby-modules/bundler/default.nix b/pkgs/development/ruby-modules/bundler/default.nix
index 9251c4d2a41..6ba1d5f10ec 100644
--- a/pkgs/development/ruby-modules/bundler/default.nix
+++ b/pkgs/development/ruby-modules/bundler/default.nix
@@ -5,7 +5,7 @@ buildRubyGem rec {
name = "${gemName}-${version}";
gemName = "bundler";
version = "1.14.6";
- sha256 = "0h3x2csvlz99v2ryj1w72vn6kixf7rl35lhdryvh7s49brnj0cgl";
+ source.sha256 = "0h3x2csvlz99v2ryj1w72vn6kixf7rl35lhdryvh7s49brnj0cgl";
dontPatchShebangs = true;
postFixup = ''
diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix
index 05415b88968..5361c3ce65e 100644
--- a/pkgs/development/ruby-modules/gem-config/default.nix
+++ b/pkgs/development/ruby-modules/gem-config/default.nix
@@ -31,8 +31,7 @@ let
rainbow_rake = buildRubyGem {
name = "rake";
gemName = "rake";
- remotes = ["https://rubygems.org"];
- sha256 = "01j8fc9bqjnrsxbppncai05h43315vmz9fwg28qdsgcjw9ck1d7n";
+ source.sha256 = "01j8fc9bqjnrsxbppncai05h43315vmz9fwg28qdsgcjw9ck1d7n";
type = "gem";
version = "12.0.0";
};
@@ -109,7 +108,7 @@ in
gio2 = attrs: {
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ gtk2 pcre ];
+ buildInputs = [ gtk2 pcre gobjectIntrospection ];
};
gitlab-markup = attrs: { meta.priority = 1; };
@@ -167,11 +166,11 @@ in
};
mysql = attrs: {
- buildInputs = [ mysql.lib zlib openssl ];
+ buildInputs = [ mysql.connector-c zlib openssl ];
};
mysql2 = attrs: {
- buildInputs = [ mysql.lib zlib openssl ];
+ buildInputs = [ mysql.connector-c zlib openssl ];
};
ncursesw = attrs: {
diff --git a/pkgs/development/ruby-modules/gem/default.nix b/pkgs/development/ruby-modules/gem/default.nix
index 62a9d60686f..5bde59eab04 100644
--- a/pkgs/development/ruby-modules/gem/default.nix
+++ b/pkgs/development/ruby-modules/gem/default.nix
@@ -41,7 +41,6 @@ lib.makeOverridable (
, patches ? []
, gemPath ? []
, dontStrip ? true
-, remotes ? ["https://rubygems.org"]
# Assume we don't have to build unless strictly necessary (e.g. the source is a
# git checkout).
# If you need to apply patches, make sure to set `dontBuild = false`;
@@ -56,14 +55,18 @@ let
src = attrs.src or (
if type == "gem" then
fetchurl {
- urls = map (remote: "${remote}/gems/${gemName}-${version}.gem") remotes;
- inherit (attrs) sha256;
+ urls = map (
+ remote: "${remote}/gems/${gemName}-${version}.gem"
+ ) (attrs.source.remotes or [ "https://rubygems.org" ]);
+ inherit (attrs.source) sha256;
}
else if type == "git" then
fetchgit {
- inherit (attrs) url rev sha256 fetchSubmodules;
+ inherit (attrs.source) url rev sha256 fetchSubmodules;
leaveDotGit = true;
}
+ else if type == "url" then
+ fetchurl attrs.source
else
throw "buildRubyGem: don't know how to build a gem of type \"${type}\""
);
@@ -74,7 +77,7 @@ let
in
-stdenv.mkDerivation (attrs // {
+stdenv.mkDerivation ((builtins.removeAttrs attrs ["source"]) // {
inherit ruby;
inherit doCheck;
inherit dontBuild;
@@ -83,7 +86,8 @@ stdenv.mkDerivation (attrs // {
buildInputs = [
ruby makeWrapper
- ] ++ lib.optionals (type == "git") [ git bundler ]
+ ] ++ lib.optionals (type == "git") [ git ]
+ ++ lib.optionals (type != "gem") [ bundler ]
++ lib.optional stdenv.isDarwin darwin.libobjc
++ buildInputs;
@@ -158,14 +162,22 @@ stdenv.mkDerivation (attrs // {
echo "buildFlags: $buildFlags"
+ ${lib.optionalString (type == "url") ''
+ ruby ${./nix-bundle-install.rb} \
+ "path" \
+ '${gemName}' \
+ '${version}' \
+ '${lib.escapeShellArgs buildFlags}'
+ ''}
${lib.optionalString (type == "git") ''
ruby ${./nix-bundle-install.rb} \
- ${gemName} \
- ${attrs.url} \
- ${src} \
- ${attrs.rev} \
- ${version} \
- ${lib.escapeShellArgs buildFlags}
+ "git" \
+ '${gemName}' \
+ '${version}' \
+ '${lib.escapeShellArgs buildFlags}' \
+ '${attrs.source.url}' \
+ '${src}' \
+ '${attrs.source.rev}'
''}
${lib.optionalString (type == "gem") ''
diff --git a/pkgs/development/ruby-modules/gem/nix-bundle-install.rb b/pkgs/development/ruby-modules/gem/nix-bundle-install.rb
index 8eac766554e..142d2da9bee 100644
--- a/pkgs/development/ruby-modules/gem/nix-bundle-install.rb
+++ b/pkgs/development/ruby-modules/gem/nix-bundle-install.rb
@@ -13,31 +13,46 @@ end
# Options:
#
+# type - installation type, either "git" or "path"
# name - the gem name
+# version - gem version
+# build-flags - build arguments
+#
+# Git-only options:
+#
# uri - git repo uri
# repo - path to local checkout
# ref - the commit hash
-# version - gem version
-# build-flags - build arguments
ruby = File.join(ENV["ruby"], "bin", RbConfig::CONFIG['ruby_install_name'])
out = ENV["out"]
bin_dir = File.join(ENV["out"], "bin")
-name = ARGV[0]
-uri = ARGV[1]
-REPO = ARGV[2]
-ref = ARGV[3]
-version = ARGV[4]
-build_flags = ARGV[5]
+type = ARGV[0]
+name = ARGV[1]
+version = ARGV[2]
+build_flags = ARGV[3]
+if type == "git"
+ uri = ARGV[4]
+ REPO = ARGV[5]
+ ref = ARGV[6]
+end
# options to pass to bundler
options = {
- "name" => name,
- "uri" => uri,
- "ref" => ref,
+ "name" => name,
"version" => version,
}
+if type == "path"
+ options.merge!({
+ "path" => Dir.pwd,
+ })
+elsif type == "git"
+ options.merge!({
+ "uri" => uri,
+ "ref" => ref,
+ })
+end
# Monkey-patch Bundler to use our local checkout.
# I wish we didn't have to do this, but bundler does not expose an API to do
@@ -63,26 +78,28 @@ Bundler.module_eval do
end
end
-Bundler::Source::Git.class_eval do
- def allow_git_ops?
- true
- end
-end
-
-Bundler::Source::Git::GitProxy.class_eval do
- def checkout
- unless path.exist?
- FileUtils.mkdir_p(path.dirname)
- FileUtils.cp_r(File.join(REPO, ".git"), path)
- system("chmod -R +w #{path}")
+if type == "git"
+ Bundler::Source::Git.class_eval do
+ def allow_git_ops?
+ true
end
end
- def copy_to(destination, submodules=false)
- unless File.exist?(destination.join(".git"))
- FileUtils.mkdir_p(destination.dirname)
- FileUtils.cp_r(REPO, destination)
- system("chmod -R +w #{destination}")
+ Bundler::Source::Git::GitProxy.class_eval do
+ def checkout
+ unless path.exist?
+ FileUtils.mkdir_p(path.dirname)
+ FileUtils.cp_r(File.join(REPO, ".git"), path)
+ system("chmod -R +w #{path}")
+ end
+ end
+
+ def copy_to(destination, submodules=false)
+ unless File.exist?(destination.join(".git"))
+ FileUtils.mkdir_p(destination.dirname)
+ FileUtils.cp_r(REPO, destination)
+ system("chmod -R +w #{destination}")
+ end
end
end
end
@@ -94,7 +111,11 @@ Bundler.ui = Bundler::UI::Shell.new({"no-color" => no_color})
Bundler.ui.level = "debug" if verbose
# Install
-source = Bundler::Source::Git.new(options)
+if type == "git"
+ source = Bundler::Source::Git.new(options)
+else
+ source = Bundler::Source::Path.new(options)
+end
spec = source.specs.search_all(name).first
Bundler.rubygems.with_build_args [build_flags] do
source.install(spec)
@@ -139,8 +160,10 @@ FileUtils.ln_s(spec.loaded_from.to_s, "#{meta}/spec")
File.open("#{meta}/name", "w") do |f|
f.write spec.name
end
-File.open("#{meta}/install-path", "w") do |f|
- f.write source.install_path.to_s
+if type == "git"
+ File.open("#{meta}/install-path", "w") do |f|
+ f.write source.install_path.to_s
+ end
end
File.open("#{meta}/require-paths", "w") do |f|
f.write spec.require_paths.join(" ")
@@ -150,8 +173,10 @@ File.open("#{meta}/executables", "w") do |f|
end
# make the lib available during bundler/git installs
-File.open("#{out}/nix-support/setup-hook", "a") do |f|
- spec.require_paths.each do |dir|
- f.puts("addToSearchPath RUBYLIB #{source.install_path}/#{dir}")
+if type == "git"
+ File.open("#{out}/nix-support/setup-hook", "a") do |f|
+ spec.require_paths.each do |dir|
+ f.puts("addToSearchPath RUBYLIB #{source.install_path}/#{dir}")
+ end
end
end
diff --git a/pkgs/development/stm32/betaflight/default.nix b/pkgs/development/stm32/betaflight/default.nix
new file mode 100644
index 00000000000..8d4d0d7f4a2
--- /dev/null
+++ b/pkgs/development/stm32/betaflight/default.nix
@@ -0,0 +1,65 @@
+{ stdenv, fetchFromGitHub
+, gcc-arm-embedded, python2
+, skipTargets ? [
+ # These targets do not build for various unexplored reasons
+ # TODO ... fix them
+ "AFROMINI"
+ "ALIENWHOOP"
+ "BEEBRAIN"
+ "CJMCU"
+ "FRSKYF3"
+]}:
+
+let
+
+ version = "3.2.3";
+
+in stdenv.mkDerivation rec {
+
+ name = "betaflight-${version}";
+
+ src = fetchFromGitHub {
+ owner = "betaflight";
+ repo = "betaflight";
+ rev = "v${version}";
+ sha256 = "0vbjyxfjxgpaiiwvj5bscrlfikzp3wnxpmc4sxcz5yw5mwb9g428";
+ };
+
+ buildInputs = [
+ gcc-arm-embedded
+ python2
+ ];
+
+ postPatch = ''
+ sed -ri "s/REVISION.*=.*git log.*/REVISION = ${builtins.substring 0 9 src.rev}/" Makefile # Let's not require git in shell
+ sed -ri "s/binary hex/hex/" Makefile # No need for anything besides .hex
+ '';
+
+ enableParallelBuilding = true;
+
+ preBuild = ''
+ buildFlagsArray=(
+ "SKIP_TARGETS=${toString skipTargets}"
+ "GCC_REQUIRED_VERSION=$(arm-none-eabi-gcc -dumpversion)"
+ all
+ )
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ mkdir -p $out
+ cp obj/*.hex $out
+
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Flight controller software (firmware) used to fly multi-rotor craft and fixed wing craft";
+ homepage = https://github.com/betaflight/betaflight;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ elitak ];
+ platforms = platforms.linux;
+ };
+
+}
diff --git a/pkgs/development/tools/alloy/default.nix b/pkgs/development/tools/alloy/default.nix
index fbf784db0cc..c965e5a937a 100644
--- a/pkgs/development/tools/alloy/default.nix
+++ b/pkgs/development/tools/alloy/default.nix
@@ -54,6 +54,5 @@ stdenv.mkDerivation rec {
downloadPage = http://alloy.mit.edu/alloy/download.html;
license = licenses.mit;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/analysis/coan/default.nix b/pkgs/development/tools/analysis/coan/default.nix
index 3ce5f23f645..2b4a87ffcb8 100644
--- a/pkgs/development/tools/analysis/coan/default.nix
+++ b/pkgs/development/tools/analysis/coan/default.nix
@@ -29,6 +29,5 @@ stdenv.mkDerivation rec {
homepage = http://coan2.sourceforge.net/;
license = licenses.bsd3;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/analysis/egypt/default.nix b/pkgs/development/tools/analysis/egypt/default.nix
index 572e2f74471..a7f29017fbe 100644
--- a/pkgs/development/tools/analysis/egypt/default.nix
+++ b/pkgs/development/tools/analysis/egypt/default.nix
@@ -28,6 +28,5 @@ buildPerlPackage rec {
homepage = http://www.gson.org/egypt/;
license = with licenses; [ artistic1 gpl1Plus ];
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix
index 539a8ef59b7..f90893ee79d 100644
--- a/pkgs/development/tools/analysis/flow/default.nix
+++ b/pkgs/development/tools/analysis/flow/default.nix
@@ -1,16 +1,17 @@
-{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices, findlib, camlp4, sedlex, ocamlbuild, ocaml_lwt }:
+{ stdenv, fetchFromGitHub, lib, ocaml, libelf, cf-private, CoreServices,
+ findlib, camlp4, sedlex, ocamlbuild, ocaml_lwt, wtf8, dtoa }:
with lib;
stdenv.mkDerivation rec {
- version = "0.61.0";
+ version = "0.64.0";
name = "flow-${version}";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "v${version}";
- sha256 = "0742hcg97gw6zsvm5j30rfyj71n71pfag3vcmjdh7yamn8gpn8ga";
+ sha256 = "1jvx2vx1d3n5z689zqm0gylmmjxim176avinwn3q8xla3gz3srp8";
};
installPhase = ''
@@ -18,8 +19,9 @@ stdenv.mkDerivation rec {
cp bin/flow $out/bin/
'';
- buildInputs = [ ocaml libelf findlib camlp4 sedlex ocamlbuild ocaml_lwt ]
- ++ optionals stdenv.isDarwin [ cf-private CoreServices ];
+ buildInputs = [
+ ocaml libelf findlib camlp4 sedlex ocamlbuild ocaml_lwt wtf8 dtoa
+ ] ++ optionals stdenv.isDarwin [ cf-private CoreServices ];
meta = with stdenv.lib; {
description = "A static type checker for JavaScript";
diff --git a/pkgs/development/tools/analysis/include-what-you-use/default.nix b/pkgs/development/tools/analysis/include-what-you-use/default.nix
index 7f34ec0fd63..f2481013fbb 100644
--- a/pkgs/development/tools/analysis/include-what-you-use/default.nix
+++ b/pkgs/development/tools/analysis/include-what-you-use/default.nix
@@ -30,6 +30,5 @@ stdenv.mkDerivation rec {
homepage = http://include-what-you-use.org;
license = licenses.bsd3;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/analysis/lcov/default.nix b/pkgs/development/tools/analysis/lcov/default.nix
index ad887baf23e..000e5e3393b 100644
--- a/pkgs/development/tools/analysis/lcov/default.nix
+++ b/pkgs/development/tools/analysis/lcov/default.nix
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
homepage = http://ltp.sourceforge.net/coverage/lcov.php;
license = stdenv.lib.licenses.gpl2Plus;
- maintainers = with maintainers; [ dezgeg mornfall ];
+ maintainers = with maintainers; [ dezgeg ];
platforms = platforms.all;
};
}
diff --git a/pkgs/development/tools/analysis/qcachegrind/default.nix b/pkgs/development/tools/analysis/qcachegrind/default.nix
index 395f720906c..8db532d2feb 100644
--- a/pkgs/development/tools/analysis/qcachegrind/default.nix
+++ b/pkgs/development/tools/analysis/qcachegrind/default.nix
@@ -1,13 +1,12 @@
-{ stdenv, fetchurl, cmake, qmake, qtbase, perl, python, php }:
+{ stdenv, fetchurl, cmake, qmake, qtbase, perl, python, php, kcachegrind }:
-stdenv.mkDerivation rec {
- name = "qcachegrind-${version}";
- version = "16.12.3";
+let
+ name = stdenv.lib.replaceStrings ["kcachegrind"] ["qcachegrind"] kcachegrind.name;
- src = fetchurl {
- url = "http://download.kde.org/stable/applications/${version}/src/kcachegrind-${version}.tar.xz";
- sha256 = "109y94nz96izzsjjdpj9c6g344rcr86srp5w0433mssbyvym4x7q";
- };
+in stdenv.mkDerivation rec {
+ inherit name;
+
+ src = kcachegrind.src;
buildInputs = [ qtbase perl python php ];
@@ -28,8 +27,8 @@ stdenv.mkDerivation rec {
'' else ''
install qcachegrind/qcachegrind cgview/cgview -t "$out/bin"
install -Dm644 qcachegrind/qcachegrind.desktop -t "$out/share/applications"
- install -Dm644 kcachegrind/hi32-app-kcachegrind.png "$out/share/icons/hicolor/32x32/apps/kcachegrind.png"
- install -Dm644 kcachegrind/hi48-app-kcachegrind.png "$out/share/icons/hicolor/48x48/apps/kcachegrind.png"
+ install -Dm644 kcachegrind/32-apps-kcachegrind.png "$out/share/icons/hicolor/32x32/apps/kcachegrind.png"
+ install -Dm644 kcachegrind/48-apps-kcachegrind.png "$out/share/icons/hicolor/48x48/apps/kcachegrind.png"
'');
meta = with stdenv.lib; {
diff --git a/pkgs/development/tools/analysis/radare2/default.nix b/pkgs/development/tools/analysis/radare2/default.nix
index c7338212bdb..49f6aeb7279 100644
--- a/pkgs/development/tools/analysis/radare2/default.nix
+++ b/pkgs/development/tools/analysis/radare2/default.nix
@@ -13,14 +13,14 @@ let
inherit (stdenv.lib) optional;
in
stdenv.mkDerivation rec {
- version = "2.1.0";
+ version = "2.2.0";
name = "radare2-${version}";
src = fetchFromGitHub {
owner = "radare";
repo = "radare2";
rev = version;
- sha256 = "1mny0iw2dgszvvx0yb0z5vlygz4f3jblzi9byybczm8wdqs1vhb1";
+ sha256 = "0rd1dfgwdpn3x1pzi67sw040vxywbg5h6yw0mj317p0p1cvlyihl";
};
postPatch = let
@@ -36,6 +36,8 @@ stdenv.mkDerivation rec {
'';
+ enableParallelBuilding = true;
+
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ readline libusb libewf perl zlib openssl]
++ optional useX11 [gtkdialog vte gtk2]
diff --git a/pkgs/development/tools/analysis/rr/default.nix b/pkgs/development/tools/analysis/rr/default.nix
index b993a22ccd4..84bcac18b0f 100644
--- a/pkgs/development/tools/analysis/rr/default.nix
+++ b/pkgs/development/tools/analysis/rr/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, cmake, libpfm, zlib, pkgconfig, python2Packages, which, procps, gdb, capnproto }:
stdenv.mkDerivation rec {
- version = "5.0.0";
+ version = "5.1.0";
name = "rr-${version}";
src = fetchFromGitHub {
owner = "mozilla";
repo = "rr";
rev = version;
- sha256 = "1cc1dbq129qlmrysk7cmaihcd9c93csi79dv3kqsnnprbz480z9i";
+ sha256 = "16v08irycb295jjw5yrcjdagvkgcgg4hl5qz215hrw1ff4g7sazy";
};
postPatch = ''
diff --git a/pkgs/development/tools/analysis/snowman/default.nix b/pkgs/development/tools/analysis/snowman/default.nix
index 2caadfc6266..fba7d3d5cd4 100644
--- a/pkgs/development/tools/analysis/snowman/default.nix
+++ b/pkgs/development/tools/analysis/snowman/default.nix
@@ -1,23 +1,19 @@
-{ stdenv, fetchFromGitHub, cmake, boost, qt4 ? null, qtbase ? null }:
-
-# Only one qt
-assert qt4 != null -> qtbase == null;
-assert qtbase != null -> qt4 == null;
+{ stdenv, fetchFromGitHub, cmake, boost, qtbase }:
stdenv.mkDerivation rec {
name = "snowman-${version}";
- version = "2017-08-13";
+ version = "2017-11-19";
src = fetchFromGitHub {
owner = "yegord";
repo = "snowman";
- rev = "cd9edcddf873fc40d7bcb1bb1eae815faedd3a03";
- sha256 = "10f3kd5m5xw7hqh92ba7dcczwbznxvk1qxg0yycqz7y9mfr2282n";
+ rev = "d03c2d6ffbf262c0011584df59d6bd69c020e08e";
+ sha256 = "0bzqp3zc100dzvybf57bj4dvnybvds0lmn1w2xjb19wkzm9liskn";
};
nativeBuildInputs = [ cmake ];
- buildInputs = [ boost qt4 qtbase ];
+ buildInputs = [ boost qtbase ];
postUnpack = ''
export sourceRoot=$sourceRoot/src
diff --git a/pkgs/development/tools/analysis/spin/default.nix b/pkgs/development/tools/analysis/spin/default.nix
index 9d361aced32..284bf26782f 100644
--- a/pkgs/development/tools/analysis/spin/default.nix
+++ b/pkgs/development/tools/analysis/spin/default.nix
@@ -35,6 +35,6 @@ in stdenv.mkDerivation rec {
homepage = http://spinroot.com/;
license = licenses.free;
platforms = platforms.linux;
- maintainers = with maintainers; [ mornfall pSub ];
+ maintainers = with maintainers; [ pSub ];
};
}
diff --git a/pkgs/development/tools/build-managers/bazel/0.4.nix b/pkgs/development/tools/build-managers/bazel/0.4.nix
index f8c1f01d446..d131232e96d 100644
--- a/pkgs/development/tools/build-managers/bazel/0.4.nix
+++ b/pkgs/development/tools/build-managers/bazel/0.4.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
'';
sourceRoot = ".";
- patches = lib.optional enableNixHacks ./nix-hacks.patch;
+ patches = lib.optional enableNixHacks ./nix-hacks-0.4.patch;
postPatch = ''
for f in $(grep -l -r '/bin/bash'); do
diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix
index 41861a6142e..67d186c5a25 100644
--- a/pkgs/development/tools/build-managers/bazel/default.nix
+++ b/pkgs/development/tools/build-managers/bazel/default.nix
@@ -6,7 +6,7 @@
stdenv.mkDerivation rec {
- version = "0.8.0";
+ version = "0.9.0";
meta = with stdenv.lib; {
homepage = "https://github.com/bazelbuild/bazel/";
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://github.com/bazelbuild/bazel/releases/download/${version}/bazel-${version}-dist.zip";
- sha256 = "0y50fhwh135fim39ra4szwzzgyb4ibls3i0hpv3d7asns0hh715a";
+ sha256 = "0aiifrp6g1d3ilhg8111wdhsrjy41x8gcmq67rjyxypw9znqzcpg";
};
sourceRoot = ".";
diff --git a/pkgs/development/tools/build-managers/bazel/nix-hacks-0.4.patch b/pkgs/development/tools/build-managers/bazel/nix-hacks-0.4.patch
new file mode 100644
index 00000000000..563fe635e6b
--- /dev/null
+++ b/pkgs/development/tools/build-managers/bazel/nix-hacks-0.4.patch
@@ -0,0 +1,51 @@
+diff --git a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java
+index eafa09fb5..d2d5e40e8 100644
+--- a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java
++++ b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java
+@@ -287,21 +287,8 @@ public final class RepositoryDelegatorFunction implements SkyFunction {
+ markerData.put(key, value);
+ }
+ }
+- boolean result = false;
+- if (markerRuleKey.equals(ruleKey)) {
+- result = handler.verifyMarkerData(rule, markerData, env);
+- if (env.valuesMissing()) {
+- return null;
+- }
+- }
+
+- if (result) {
+- return new Fingerprint().addString(content).digestAndReset();
+- } else {
+- // So that we are in a consistent state if something happens while fetching the repository
+- markerPath.delete();
+- return null;
+- }
++ return new Fingerprint().addString(content).digestAndReset();
+
+ } catch (IOException e) {
+ throw new RepositoryFunctionException(e, Transience.TRANSIENT);
+diff --git a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java
+index a7ebc8f7a..40f2049fa 100644
+--- a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java
++++ b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java
+@@ -129,7 +129,6 @@ public class JavaSubprocessFactory implements SubprocessFactory {
+ ProcessBuilder builder = new ProcessBuilder();
+ builder.command(params.getArgv());
+ if (params.getEnv() != null) {
+- builder.environment().clear();
+ builder.environment().putAll(params.getEnv());
+ }
+
+diff --git a/src/main/java/com/google/devtools/build/lib/worker/Worker.java b/src/main/java/com/google/devtools/build/lib/worker/Worker.java
+index 0268d1b2b..637364657 100644
+--- a/src/main/java/com/google/devtools/build/lib/worker/Worker.java
++++ b/src/main/java/com/google/devtools/build/lib/worker/Worker.java
+@@ -77,7 +77,6 @@ class Worker {
+ new ProcessBuilder(command)
+ .directory(workDir.getPathFile())
+ .redirectError(Redirect.appendTo(logFile.getPathFile()));
+- processBuilder.environment().clear();
+ processBuilder.environment().putAll(workerKey.getEnv());
+
+ this.process = processBuilder.start();
diff --git a/pkgs/development/tools/build-managers/bazel/nix-hacks.patch b/pkgs/development/tools/build-managers/bazel/nix-hacks.patch
index 563fe635e6b..da3f6248f22 100644
--- a/pkgs/development/tools/build-managers/bazel/nix-hacks.patch
+++ b/pkgs/development/tools/build-managers/bazel/nix-hacks.patch
@@ -1,8 +1,7 @@
-diff --git a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java
-index eafa09fb5..d2d5e40e8 100644
---- a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java
-+++ b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java
-@@ -287,21 +287,8 @@ public final class RepositoryDelegatorFunction implements SkyFunction {
+diff -Naur a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java
+--- a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java 1980-01-01 00:00:00.000000000 -0500
++++ b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java 2018-01-18 08:17:22.420459162 -0500
+@@ -287,21 +287,8 @@
markerData.put(key, value);
}
}
@@ -25,11 +24,10 @@ index eafa09fb5..d2d5e40e8 100644
} catch (IOException e) {
throw new RepositoryFunctionException(e, Transience.TRANSIENT);
-diff --git a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java
-index a7ebc8f7a..40f2049fa 100644
---- a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java
-+++ b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java
-@@ -129,7 +129,6 @@ public class JavaSubprocessFactory implements SubprocessFactory {
+diff -Naur a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java
+--- a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java 1980-01-01 00:00:00.000000000 -0500
++++ b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java 2018-01-18 08:17:53.274877980 -0500
+@@ -129,7 +129,6 @@
ProcessBuilder builder = new ProcessBuilder();
builder.command(params.getArgv());
if (params.getEnv() != null) {
@@ -37,15 +35,3 @@ index a7ebc8f7a..40f2049fa 100644
builder.environment().putAll(params.getEnv());
}
-diff --git a/src/main/java/com/google/devtools/build/lib/worker/Worker.java b/src/main/java/com/google/devtools/build/lib/worker/Worker.java
-index 0268d1b2b..637364657 100644
---- a/src/main/java/com/google/devtools/build/lib/worker/Worker.java
-+++ b/src/main/java/com/google/devtools/build/lib/worker/Worker.java
-@@ -77,7 +77,6 @@ class Worker {
- new ProcessBuilder(command)
- .directory(workDir.getPathFile())
- .redirectError(Redirect.appendTo(logFile.getPathFile()));
-- processBuilder.environment().clear();
- processBuilder.environment().putAll(workerKey.getEnv());
-
- this.process = processBuilder.start();
diff --git a/pkgs/development/tools/build-managers/buildbot/default.nix b/pkgs/development/tools/build-managers/buildbot/default.nix
index a2d77f0321a..d62ccd0c9fd 100644
--- a/pkgs/development/tools/build-managers/buildbot/default.nix
+++ b/pkgs/development/tools/build-managers/buildbot/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, openssh, buildbot-worker, pythonPackages, runCommand, makeWrapper }:
+{ stdenv, lib, openssh, buildbot-worker, buildbot-pkg, pythonPackages, runCommand, makeWrapper }:
let
withPlugins = plugins: runCommand "wrapped-${package.name}" {
@@ -14,11 +14,11 @@ let
package = pythonPackages.buildPythonApplication rec {
name = "${pname}-${version}";
pname = "buildbot";
- version = "0.9.11";
+ version = "0.9.15.post1";
src = pythonPackages.fetchPypi {
inherit pname version;
- sha256 = "1s3y218wry7502xp4zxccf3z996xm8cnp3dcxl7m5ldmmb055qwv";
+ sha256 = "01m5x4lpz90lqf8j0s2c26gqb5yzan6x9d1ffgmrklwf0bljkwni";
};
buildInputs = with pythonPackages; [
@@ -36,6 +36,7 @@ let
pyflakes
openssh
buildbot-worker
+ buildbot-pkg
treq
];
diff --git a/pkgs/development/tools/build-managers/buildbot/pkg.nix b/pkgs/development/tools/build-managers/buildbot/pkg.nix
new file mode 100644
index 00000000000..8b23f8a2488
--- /dev/null
+++ b/pkgs/development/tools/build-managers/buildbot/pkg.nix
@@ -0,0 +1,27 @@
+{ stdenv, buildPythonPackage, fetchPypi, setuptools }:
+
+buildPythonPackage rec {
+ name = "${pname}-${version}";
+ pname = "buildbot-pkg";
+ version = "0.9.15.post1";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0gsa5fi1gkwnz8dsrl2s5kzcfawnj3nl8g8h6z1winz627l9n8sh";
+ };
+
+ propagatedBuildInputs = [ setuptools ];
+
+ postPatch = ''
+ # Their listdir function filters out `node_modules` folders.
+ # Do we have to care about that with Nix...?
+ substituteInPlace buildbot_pkg.py --replace "os.listdir = listdir" ""
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://buildbot.net/;
+ description = "Buildbot Packaging Helper";
+ maintainers = with maintainers; [ nand0p ryansydnor ];
+ license = licenses.gpl2;
+ };
+}
diff --git a/pkgs/development/tools/build-managers/buildbot/plugins.nix b/pkgs/development/tools/build-managers/buildbot/plugins.nix
index ec4bf161562..40aaad2efd2 100644
--- a/pkgs/development/tools/build-managers/buildbot/plugins.nix
+++ b/pkgs/development/tools/build-managers/buildbot/plugins.nix
@@ -1,27 +1,6 @@
-{ stdenv, pythonPackages }:
+{ stdenv, pythonPackages, buildbot-pkg }:
-let
- buildbot-pkg = pythonPackages.buildPythonPackage rec {
- name = "${pname}-${version}";
- pname = "buildbot-pkg";
- version = "0.9.11";
-
- src = pythonPackages.fetchPypi {
- inherit pname version;
- sha256 = "1gh7wj9z7n7yfs219jbv9pdd2w8dwj6qpa090ffjkfpgd3xana33";
- };
-
- propagatedBuildInputs = with pythonPackages; [ setuptools ];
-
- meta = with stdenv.lib; {
- homepage = http://buildbot.net/;
- description = "Buildbot Packaging Helper";
- maintainers = with maintainers; [ nand0p ryansydnor ];
- license = licenses.gpl2;
- };
- };
-
-in {
+{
www = pythonPackages.buildPythonPackage rec {
name = "${pname}-${version}";
pname = "buildbot_www";
@@ -32,7 +11,7 @@ in {
src = pythonPackages.fetchPypi {
inherit pname version format;
- sha256 = "0fk1swdncg4nha744mzkf6jqh1zv1cfhnqvd19669kjcyjx9i68d";
+ sha256 = "19cnzp5prima3jrk525xspw7vqc5pjln2nihj4kc3w90dhzllj8x";
};
meta = with stdenv.lib; {
@@ -50,7 +29,7 @@ in {
src = pythonPackages.fetchPypi {
inherit pname version;
- sha256 = "16wxgnh35916c2gw34971ynx319lnm9addhqvii885vid44pqim0";
+ sha256 = "1j6aw2j2sl7ix8rb67pbs6nfvv8v3smgkvqzsjsyh5sdfr2663cg";
};
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
@@ -70,7 +49,7 @@ in {
src = pythonPackages.fetchPypi {
inherit pname version;
- sha256 = "1hcr8xsc0ajfg2vz2h8g5s8ypsp32kdplgqp21jh8z5y0a6nzqsl";
+ sha256 = "0k0wd4rq034bij2flfjv60h8czkfn836bnaa7hwsrl58gxds39m4";
};
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
@@ -90,7 +69,7 @@ in {
src = pythonPackages.fetchPypi {
inherit pname version;
- sha256 = "0aw1073xq549q5jkjk31zhqpasp8jiy4gch0fjyw8qy0dax8hc7r";
+ sha256 = "08ng56jmy50s3zyn6wxizji1zhgzhi65z7w3wljg02qrbd5688gj";
};
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
@@ -110,7 +89,7 @@ in {
src = pythonPackages.fetchPypi {
inherit pname version;
- sha256 = "0x99mdmn1ngcnmkxr40hwqafsq48jybdz45y5kpc0yw68n0bfwmv";
+ sha256 = "15fm72yymv873n3vsw9kprypcf6jzln18v4lb062n8lqw9pykwb1";
};
propagatedBuildInputs = with pythonPackages; [ buildbot-pkg ];
diff --git a/pkgs/development/tools/build-managers/buildbot/worker.nix b/pkgs/development/tools/build-managers/buildbot/worker.nix
index 4fe728b9ce6..51d6a5b5695 100644
--- a/pkgs/development/tools/build-managers/buildbot/worker.nix
+++ b/pkgs/development/tools/build-managers/buildbot/worker.nix
@@ -3,11 +3,11 @@
pythonPackages.buildPythonApplication (rec {
name = "${pname}-${version}";
pname = "buildbot-worker";
- version = "0.9.11";
+ version = "0.9.15.post1";
src = pythonPackages.fetchPypi {
inherit pname version;
- sha256 = "0lb8kwg3m9jgrww929d5nrjs4rj489mb4dnsdxcbdb358jbbym22";
+ sha256 = "12zscqb218w88y9fd1jwfn4cr2sw35j998d0jlgd22bch020sy65";
};
buildInputs = with pythonPackages; [ setuptoolsTrial mock ];
diff --git a/pkgs/development/tools/build-managers/cmake/2.8.nix b/pkgs/development/tools/build-managers/cmake/2.8.nix
index fb38e52811c..b4b2a4210d2 100644
--- a/pkgs/development/tools/build-managers/cmake/2.8.nix
+++ b/pkgs/development/tools/build-managers/cmake/2.8.nix
@@ -77,6 +77,6 @@ stdenv.mkDerivation rec {
homepage = http://www.cmake.org/;
description = "Cross-Platform Makefile Generator";
platforms = if useQt4 then qt4.meta.platforms else stdenv.lib.platforms.linux;
- maintainers = with stdenv.lib.maintainers; [ mornfall ];
+ maintainers = with stdenv.lib.maintainers; [ ];
};
}
diff --git a/pkgs/development/tools/build-managers/cmake/default.nix b/pkgs/development/tools/build-managers/cmake/default.nix
index b04b38e3048..a2f5ee0325b 100644
--- a/pkgs/development/tools/build-managers/cmake/default.nix
+++ b/pkgs/development/tools/build-managers/cmake/default.nix
@@ -78,6 +78,6 @@ stdenv.mkDerivation rec {
homepage = http://www.cmake.org/;
description = "Cross-Platform Makefile Generator";
platforms = if useQt4 then qt4.meta.platforms else platforms.all;
- maintainers = with maintainers; [ mornfall ttuegel lnl7 ];
+ maintainers = with maintainers; [ ttuegel lnl7 ];
};
}
diff --git a/pkgs/development/tools/build-managers/cmake/setup-hook.sh b/pkgs/development/tools/build-managers/cmake/setup-hook.sh
index 614e0031421..a0f1cf00814 100755
--- a/pkgs/development/tools/build-managers/cmake/setup-hook.sh
+++ b/pkgs/development/tools/build-managers/cmake/setup-hook.sh
@@ -43,7 +43,7 @@ cmakeConfigurePhase() {
# libraries are in a system path or in the same directory as the
# executable. This flag makes the shared library accessible from its
# nix/store directory.
- cmakeFlags="-DCMAKE_INSTALL_NAME_DIR=$prefix/lib $cmakeFlags"
+ cmakeFlags="-DCMAKE_INSTALL_NAME_DIR=${!outputLib}/lib $cmakeFlags"
cmakeFlags="-DCMAKE_INSTALL_LIBDIR=${!outputLib}/lib $cmakeFlags"
cmakeFlags="-DCMAKE_INSTALL_INCLUDEDIR=${!outputDev}/include $cmakeFlags"
@@ -72,11 +72,7 @@ if [ -z "$dontUseCmakeConfigure" -a -z "$configurePhase" ]; then
configurePhase=cmakeConfigurePhase
fi
-if [ -n "$crossConfig" ]; then
- crossEnvHooks+=(addCMakeParams)
-else
- envHooks+=(addCMakeParams)
-fi
+addEnvHooks "$targetOffset" addCMakeParams
makeCmakeFindLibs(){
isystem_seen=
diff --git a/pkgs/development/tools/build-managers/dub/default.nix b/pkgs/development/tools/build-managers/dub/default.nix
index 15e801c1dff..8af11f05738 100644
--- a/pkgs/development/tools/build-managers/dub/default.nix
+++ b/pkgs/development/tools/build-managers/dub/default.nix
@@ -1,10 +1,10 @@
-{ stdenv, fetchFromGitHub, curl, dmd, libevent, rsync }:
+{ stdenv, fetchFromGitHub, fetchpatch, curl, dmd, libevent, rsync }:
let
dubBuild = stdenv.mkDerivation rec {
name = "dubBuild-${version}";
- version = "1.6.0";
+ version = "1.7.1";
enableParallelBuilding = true;
@@ -12,9 +12,17 @@ let
owner = "dlang";
repo = "dub";
rev = "v${version}";
- sha256 = "1xjr5pp263lbcd4harxy1ybh7q0kzj9iyy63ji6pn66fizrgm7zk";
+ sha256 = "09bcc9bq2z1rbm8sdip1l81y5p8q13r30k02lzifyasiplrnpvlv";
};
+ patches = [
+ # TODO Remove with next release which contains https://github.com/dlang/dub/pull/1354
+ (fetchpatch {
+ url = "https://patch-diff.githubusercontent.com/raw/dlang/dub/pull/1354.patch";
+ sha256 = "01alky8a91qwjmlnfjbrn8kiivwr69f3j4c84cjlxrzfp1ph20ah";
+ })
+ ];
+
postPatch = ''
# Avoid that the version file is overwritten
substituteInPlace build.sh \
@@ -59,6 +67,8 @@ let
outputHash = builtins.hashString "sha256" inputString;
src = dubBuild.src;
+
+ patches = dubBuild.patches;
postPatch = dubBuild.postPatch;
diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix
index 77f2e561317..bdf446d4d12 100644
--- a/pkgs/development/tools/build-managers/gradle/default.nix
+++ b/pkgs/development/tools/build-managers/gradle/default.nix
@@ -52,12 +52,12 @@ rec {
};
gradle_latest = gradleGen rec {
- name = "gradle-4.4";
+ name = "gradle-4.5";
nativeVersion = "0.14";
src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
- sha256 = "0bqaksrxrshqjwba0wj72gbcxvcchjavlj39xh18qpkz5jp76j7s";
+ sha256 = "1qxmb4mki2gjhfwmy7lwak283l86iq3nivw57a2gpw2g64xa9wh3";
};
};
diff --git a/pkgs/development/tools/build-managers/icmake/default.nix b/pkgs/development/tools/build-managers/icmake/default.nix
index 11caff8ddab..2744dac2500 100644
--- a/pkgs/development/tools/build-managers/icmake/default.nix
+++ b/pkgs/development/tools/build-managers/icmake/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "icmake-${version}";
- version = "9.02.03";
+ version = "9.02.04";
src = fetchFromGitHub {
- sha256 = "1g3pdcd2i8n29rqwrdg6bd7qnsii55hi0rnma86hy0pm5cshpwi5";
+ sha256 = "0dkqdm7nc3l9kgwkkf545hfbxj7ibkxl7n49wz9m1rcq9pvpmrw3";
rev = version;
repo = "icmake";
owner = "fbb-git";
@@ -36,7 +36,7 @@ stdenv.mkDerivation rec {
description = "A program maintenance (make) utility using a C-like grammar";
homepage = https://fbb-git.github.io/icmake/;
license = licenses.gpl3;
- maintainers = with maintainers; [ nckx pSub ];
+ maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/tools/build-managers/leiningen/default.nix b/pkgs/development/tools/build-managers/leiningen/default.nix
index 05bf8e76db7..30531c980b0 100644
--- a/pkgs/development/tools/build-managers/leiningen/default.nix
+++ b/pkgs/development/tools/build-managers/leiningen/default.nix
@@ -3,18 +3,18 @@
stdenv.mkDerivation rec {
pname = "leiningen";
- version = "2.7.1";
+ version = "2.8.1";
name = "${pname}-${version}";
src = fetchurl {
url = "https://raw.github.com/technomancy/leiningen/${version}/bin/lein-pkg";
- sha256 = "0rmshl4xchf3blwvar4q9dpxm9xznn3yzas4vwxqiq3yhapgqkn0";
+ sha256 = "0wk4m7m66xxx7i3nis08mc8qna7acgcmpim562vdyyrpbxdhj24i";
};
jarsrc = fetchurl {
# NOTE: This is actually a .jar, Github has issues
url = "https://github.com/technomancy/leiningen/releases/download/${version}/${name}-standalone.zip";
- sha256 = "0ivwb1qlxs1hyical0fjgavm9wfkw3f10sk67p5g2p5lpf4pxp1d";
+ sha256 = "0n3wkb0a9g25r1xq93lskay2lw210qymz2qakjnl5vr5zz3vnjgw";
};
JARNAME = "${name}-standalone.jar";
diff --git a/pkgs/development/tools/build-managers/meson/setup-hook.sh b/pkgs/development/tools/build-managers/meson/setup-hook.sh
index 25e2e69ef31..8f96e6146be 100644
--- a/pkgs/development/tools/build-managers/meson/setup-hook.sh
+++ b/pkgs/development/tools/build-managers/meson/setup-hook.sh
@@ -25,3 +25,15 @@ if [ -z "$dontUseMesonConfigure" -a -z "$configurePhase" ]; then
setOutputFlags=
configurePhase=mesonConfigurePhase
fi
+
+mesonCheckPhase() {
+ runHook preCheck
+
+ meson test
+
+ runHook postCheck
+}
+
+if [ -z "$dontUseMesonCheck" -a -z "$checkPhase" ]; then
+ checkPhase=mesonCheckPhase
+fi
diff --git a/pkgs/development/tools/build-managers/pants/default.nix b/pkgs/development/tools/build-managers/pants/default.nix
index 8ce495557e7..abb32f25760 100644
--- a/pkgs/development/tools/build-managers/pants/default.nix
+++ b/pkgs/development/tools/build-managers/pants/default.nix
@@ -32,7 +32,7 @@ in buildPythonApplication rec {
meta = {
description = "A build system for software projects in a variety of languages";
- homepage = "http://www.pantsbuild.org/";
+ homepage = "https://www.pantsbuild.org/";
license = licenses.asl20;
maintainers = with maintainers; [ copumpkin ];
platforms = platforms.unix;
diff --git a/pkgs/development/tools/build-managers/sbt-extras/default.nix b/pkgs/development/tools/build-managers/sbt-extras/default.nix
index bea20863e7f..d501a795384 100644
--- a/pkgs/development/tools/build-managers/sbt-extras/default.nix
+++ b/pkgs/development/tools/build-managers/sbt-extras/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, which, curl, makeWrapper, jdk }:
let
- rev = "77686b3dfa20a34270cc52377c8e37c3a461e484";
+ rev = "3c8fcadc3376edfd8e4b08b35f174935bf97bbac";
version = stdenv.lib.strings.substring 0 7 rev;
in
stdenv.mkDerivation {
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
owner = "paulp";
repo = "sbt-extras";
inherit rev;
- sha256 = "1bhqigm0clv3i1gvn4gsllywcnwfsa73xvqp8m7pbvn8g7i2ws6x";
+ sha256 = "0r79w4kgdrsdnm4ma9rmb9k115rvidpaha7sr9rsxv68jpagwgrj";
};
dontBuild = true;
diff --git a/pkgs/development/tools/build-managers/sbt/default.nix b/pkgs/development/tools/build-managers/sbt/default.nix
index abfa578f387..4ea85eca213 100644
--- a/pkgs/development/tools/build-managers/sbt/default.nix
+++ b/pkgs/development/tools/build-managers/sbt/default.nix
@@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
name = "sbt-${version}";
- version = "1.0.4";
+ version = "1.1.0";
src = fetchurl {
urls = [
@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
"https://github.com/sbt/sbt/releases/download/v${version}/sbt-${version}.tgz"
"https://cocl.us/sbt-${version}.tgz"
];
- sha256 = "0gz2akifi842y8av2hh7w2z6fd6z400nvk8ip87rkyhx3gw7cdw1";
+ sha256 = "1mz2aiwb3ha8dnx9fzbykz1y5ax01l2x6xml956fs1vm555v534x";
};
patchPhase = ''
diff --git a/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix b/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
index 46cee51e0e6..ab090e6dc12 100644
--- a/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
+++ b/pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
@@ -44,6 +44,6 @@ buildGoPackage {
homepage = https://buildkite.com/docs/agent;
license = licenses.mit;
maintainers = with maintainers; [ pawelpacana zimbatm ];
- platforms = platforms.linux;
+ platforms = platforms.linux ++ platforms.darwin;
};
}
diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
index 369f2f86bee..e7c2509ce77 100644
--- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
@@ -1,16 +1,16 @@
{ lib, buildGoPackage, fetchFromGitLab, fetchurl, go-bindata }:
let
- version = "10.2.0";
+ version = "10.4.0";
# Gitlab runner embeds some docker images these are prebuilt for arm and x86_64
docker_x86_64 = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-x86_64.tar.xz";
- sha256 = "191yzh9k6ivj7mdfi5mv7wgbdcclb5q99rcbry70h064vzwfgkp6";
+ sha256 = "0fcddi1mwgj831abn628zcpwsah3mmvrbdi851pjf8vraynwr2xa";
};
docker_arm = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/docker/prebuilt-arm.tar.xz";
- sha256 = "1xvfsffwks5z74kxba6f4cilbabcsxhr0kskbxwczi90pn0rxsnn";
+ sha256 = "1zlk3i9jzmsqz5r3kzg08z9hyhidw9dpv5ji46bnbjis8q3dlw54";
};
in
buildGoPackage rec {
@@ -29,7 +29,7 @@ buildGoPackage rec {
owner = "gitlab-org";
repo = "gitlab-runner";
rev = "v${version}";
- sha256 = "1psnajn4b3ym2fpvn6rizxqb093s78lvxcs3bysgrmf9q1ivf3a6";
+ sha256 = "0kp6h53d1q652i4wp94hydy1ixlgmqh92sjsc6pqicnfc7nvwgfq";
};
patches = [ ./fix-shell-path.patch ];
diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix
index f44187a0ac1..642a6a97bc0 100644
--- a/pkgs/development/tools/continuous-integration/jenkins/default.nix
+++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "jenkins-${version}";
- version = "2.95";
+ version = "2.103";
src = fetchurl {
url = "http://mirrors.jenkins-ci.org/war/${version}/jenkins.war";
- sha256 = "08pmsxsk5qbs7h3m1ya7xbik95n58ak8m4p01y97l49kc70bj2hv";
+ sha256 = "1d771q4xjjji7ydh6xjz3j6hz2mszxh0m3zqjh4khlzqhnvydlha";
};
buildCommand = ''
diff --git a/pkgs/development/tools/coursier/default.nix b/pkgs/development/tools/coursier/default.nix
index 2f220001070..79a077f4a75 100644
--- a/pkgs/development/tools/coursier/default.nix
+++ b/pkgs/development/tools/coursier/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "coursier-${version}";
- version = "1.0.0-RC13";
+ version = "1.0.0";
src = fetchurl {
url = "https://github.com/coursier/coursier/raw/v${version}/coursier";
- sha256 = "18i7imd6lqkvpzhx1m72g6jwsqq7h6aisfny5aiccgnyg6jpag6i";
+ sha256 = "0167cgp3kqx336p8dmlxx57bi3lhzyp6ncly28v1s7r2sjxj9krj";
};
nativeBuildInputs = [ makeWrapper ];
diff --git a/pkgs/development/tools/database/pg_tmp/default.nix b/pkgs/development/tools/database/pg_tmp/default.nix
new file mode 100644
index 00000000000..b7d960d5af4
--- /dev/null
+++ b/pkgs/development/tools/database/pg_tmp/default.nix
@@ -0,0 +1,25 @@
+{ fetchFromBitbucket, stdenv }:
+
+stdenv.mkDerivation rec {
+ name = "pg_tmp-${version}";
+ version = "2.3";
+
+ src = fetchFromBitbucket {
+ owner = "eradman";
+ repo = "ephemeralpg";
+ rev = "ephemeralpg-${version}";
+ sha256 = "0j0va9pch2xhwwx4li3qx3lkgrd79c0hcy5w5y1cqax571hv89wa";
+ };
+
+ installPhase = ''
+ PREFIX=$out make install
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://ephemeralpg.org;
+ description = "Run tests on an isolated, temporary PostgreSQL database";
+ license = licenses.isc;
+ platforms = platforms.all;
+ maintainers = with maintainers; [ hrdinka ];
+ };
+}
diff --git a/pkgs/development/tools/database/pgcli/default.nix b/pkgs/development/tools/database/pgcli/default.nix
index bcb0cf1d5e4..4ea3589476b 100644
--- a/pkgs/development/tools/database/pgcli/default.nix
+++ b/pkgs/development/tools/database/pgcli/default.nix
@@ -35,6 +35,5 @@ pythonPackages.buildPythonApplication rec {
'';
homepage = https://pgcli.com;
license = licenses.bsd3;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/database/pyrseas/default.nix b/pkgs/development/tools/database/pyrseas/default.nix
new file mode 100644
index 00000000000..20123a0600e
--- /dev/null
+++ b/pkgs/development/tools/database/pyrseas/default.nix
@@ -0,0 +1,45 @@
+{ stdenv, pythonPackages, fetchFromGitHub }:
+
+let
+ pgdbconn = pythonPackages.buildPythonPackage rec {
+ pname = "pgdbconn";
+ version = "0.8.0";
+ src = fetchFromGitHub {
+ owner = "perseas";
+ repo = "pgdbconn";
+ rev = "26c1490e4f32e4b5b925e5b82014ad106ba5b057";
+ sha256 = "09r4idk5kmqi3yig7ip61r6js8blnmac5n4q32cdcbp1rcwzdn6z";
+ };
+ # The tests are impure (they try to access a PostgreSQL server)
+ doCheck = false;
+ propagatedBuildInputs = [
+ pythonPackages.psycopg2
+ pythonPackages.pytest
+ ];
+ };
+in
+
+pythonPackages.buildPythonApplication rec {
+ pname = "pyrseas";
+ version = "0.8.0";
+ src = fetchFromGitHub {
+ owner = "perseas";
+ repo = "Pyrseas";
+ rev = "2e9be763e61168cf20d28bd69010dc5875bd7b97";
+ sha256 = "1h9vahplqh0rzqjsdq64qqar6hj1bpbc6nl1pqwwgca56385br8r";
+ };
+ # The tests are impure (they try to access a PostgreSQL server)
+ doCheck = false;
+ propagatedBuildInputs = [
+ pythonPackages.psycopg2
+ pythonPackages.pytest
+ pythonPackages.pyyaml
+ pgdbconn
+ ];
+ meta = {
+ description = "A declarative language to describe PostgreSQL databases";
+ homepage = http://perseas.github.io/;
+ license = stdenv.lib.licenses.bsd3;
+ maintainers = with stdenv.lib.maintainers; [ pmeunier ];
+ };
+}
diff --git a/pkgs/development/tools/database/shmig/default.nix b/pkgs/development/tools/database/shmig/default.nix
index a397ba69697..49e90ce64c8 100644
--- a/pkgs/development/tools/database/shmig/default.nix
+++ b/pkgs/development/tools/database/shmig/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub
, withMySQL ? false, withPSQL ? false, withSQLite ? false
-, mariadb, postgresql, sqlite, gawk, which
+, mysql, postgresql, sqlite, gawk, which
, lib
}:
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
patchShebangs .
substituteInPlace shmig \
- --replace "\`which mysql\`" "${lib.optionalString withMySQL "${mariadb}/bin/mysql"}" \
+ --replace "\`which mysql\`" "${lib.optionalString withMySQL "${mysql.client}/bin/mysql"}" \
--replace "\`which psql\`" "${lib.optionalString withPSQL "${postgresql}/bin/psql"}" \
--replace "\`which sqlite3\`" "${lib.optionalString withSQLite "${sqlite}/bin/sqlite3"}" \
--replace "awk" "${gawk}/bin/awk" \
diff --git a/pkgs/development/tools/database/sqldeveloper/default.nix b/pkgs/development/tools/database/sqldeveloper/default.nix
index d5acd487e6b..72c0aaabf85 100644
--- a/pkgs/development/tools/database/sqldeveloper/default.nix
+++ b/pkgs/development/tools/database/sqldeveloper/default.nix
@@ -1,7 +1,7 @@
{ stdenv, makeWrapper, requireFile, unzip, openjdk }:
stdenv.mkDerivation rec {
- version = "17.3.0.271.2323";
+ version = "17.4.0.355.2349";
name = "sqldeveloper-${version}";
src = requireFile rec {
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
obtain it you need to
- navigate to ${url}
- - make sure that it says "Version ${version}" above the list of downloads
+ - make sure that it says "Version ${version}" above the list of downloads
- if it does not, click on the "Previous Version" link below the downloads
and repeat until the version is correct. This is necessarry because as the
time of this writing there exists no permanent link for the current version
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
nix-prefetch-url --type sha256 file:///path/to/${name}
'';
# obtained by `sha256sum sqldeveloper-${version}-no-jre.zip`
- sha256 = "06ba5920544bacbea83425548b1b8f69ab3e9bb279076321aece2c0c6d415dad";
+ sha256 = "70add9b5c998583416e3d127aeb63dde8e3d0489036982026b930c85496c7850";
};
buildInputs = [ makeWrapper unzip ];
diff --git a/pkgs/development/tools/deis/default.nix b/pkgs/development/tools/deis/default.nix
index fe4ec06322f..91037e6dfaa 100644
--- a/pkgs/development/tools/deis/default.nix
+++ b/pkgs/development/tools/deis/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "deis-${version}";
- version = "1.13.3";
+ version = "1.13.4";
rev = "v${version}";
goPackagePath = "github.com/deis/deis";
@@ -18,7 +18,7 @@ buildGoPackage rec {
inherit rev;
owner = "deis";
repo = "deis";
- sha256 = "15q44jyjms8fdmly0z4sn4ymf1dx6cmdavgixjixdj2wbjw0yi2p";
+ sha256 = "0hndzvlgpfm83c4i1c88byv8j9clagswa79nny8wrw33dx90dym1";
};
preBuild = ''
diff --git a/pkgs/development/tools/delve/default.nix b/pkgs/development/tools/delve/default.nix
index 06b6a0993be..3671a3dcca9 100644
--- a/pkgs/development/tools/delve/default.nix
+++ b/pkgs/development/tools/delve/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "delve-${version}";
- version = "0.12.1";
+ version = "0.12.2";
goPackagePath = "github.com/derekparker/delve";
excludedPackages = "\\(_fixtures\\|scripts\\|service/test\\)";
@@ -11,14 +11,14 @@ buildGoPackage rec {
owner = "derekparker";
repo = "delve";
rev = "v${version}";
- sha256 = "0vkyx9sd66yrqz9sa4pysmpjv6gdgpfk1icrbjk93h2ry15ma8d6";
+ sha256 = "1241zqyimgqil4qd72f0yiw935lkdmfr88kvqbkn9n05k7xhdg30";
};
- meta = {
+ meta = with stdenv.lib; {
description = "debugger for the Go programming language";
homepage = https://github.com/derekparker/delve;
- maintainers = with stdenv.lib.maintainers; [ vdemeester ];
- license = stdenv.lib.licenses.mit;
- platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ vdemeester ];
+ license = licenses.mit;
+ platforms = [ "x86_64-linux" ] ++ platforms.darwin;
};
}
diff --git a/pkgs/development/tools/dep/default.nix b/pkgs/development/tools/dep/default.nix
index e22be524f02..477c874af01 100644
--- a/pkgs/development/tools/dep/default.nix
+++ b/pkgs/development/tools/dep/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "dep-${version}";
- version = "0.3.1";
+ version = "0.4.1";
rev = "v${version}";
goPackagePath = "github.com/golang/dep";
@@ -12,7 +12,7 @@ buildGoPackage rec {
inherit rev;
owner = "golang";
repo = "dep";
- sha256 = "0dsiaqfrp7ihhx10qapkl6zm3dw3rwdgcr9rkvmq8zprcp7njz90";
+ sha256 = "0183xq5l4sinnclynv6xi85vmk69mqpy5wjfsgh8bxwziq3vkd7y";
};
buildFlagsArray = ("-ldflags=-s -w -X main.commitHash=${rev} -X main.version=${version}");
diff --git a/pkgs/development/tools/dtools/default.nix b/pkgs/development/tools/dtools/default.nix
index 0d639875da5..daa25de9508 100644
--- a/pkgs/development/tools/dtools/default.nix
+++ b/pkgs/development/tools/dtools/default.nix
@@ -2,14 +2,31 @@
stdenv.mkDerivation rec {
name = "dtools-${version}";
- version = "2.075.1";
+ version = "2.078.1";
- src = fetchFromGitHub {
- owner = "dlang";
- repo = "tools";
- rev = "v${version}";
- sha256 = "0lxn400s9las9hq6h9vj4mis2jr662k2yw0zcrvqcm1yg9pd245d";
- };
+ srcs = [
+ (fetchFromGitHub {
+ owner = "dlang";
+ repo = "dmd";
+ rev = "v${version}";
+ sha256 = "0b9lphh4g3r9cyzv4wcfppv9j3w952vvwv615za23acgwav3mqg2";
+ name = "dmd";
+ })
+ (fetchFromGitHub {
+ owner = "dlang";
+ repo = "tools";
+ rev = "v${version}";
+ sha256 = "1cydhn8g0h9i9mygzi80fb5fz3z1f6m8b9gypdvmyhkkzg63kf12";
+ name = "dtools";
+ })
+ ];
+
+ sourceRoot = ".";
+
+ postUnpack = ''
+ mv dmd dtools
+ cd dtools
+ '';
postPatch = ''
substituteInPlace posix.mak \
@@ -26,27 +43,22 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ dmd ];
buildInputs = [ curl ];
+ makeCmd = ''
+ make -f posix.mak DMD=${dmd.out}/bin/dmd DMD_DIR=dmd
+ '';
+
buildPhase = ''
- make -f posix.mak DMD=${dmd.out}/bin/dmd INSTALL_DIR=$out
+ $makeCmd
'';
doCheck = true;
checkPhase = ''
- export BITS=${builtins.toString stdenv.hostPlatform.parsed.cpu.bits}
- export OSNAME=${if stdenv.hostPlatform.isDarwin then "osx" else stdenv.hostPlatform.parsed.kernel.name}
- ./generated/$OSNAME/$BITS/rdmd -main -unittest rdmd.d
- ${dmd.out}/bin/dmd rdmd_test.d
- ./rdmd_test
+ $makeCmd test_rdmd
'';
installPhase = ''
- mkdir -p $out/bin
- ${
- let bits = builtins.toString stdenv.hostPlatform.parsed.cpu.bits;
- osname = if stdenv.hostPlatform.isDarwin then "osx" else stdenv.hostPlatform.parsed.kernel.name; in
- "find $PWD/generated/${osname}/${bits} -perm /a+x -type f -exec cp {} $out/bin \\;"
- }
+ $makeCmd INSTALL_DIR=$out install
'';
meta = with stdenv.lib; {
diff --git a/pkgs/development/tools/fac/default.nix b/pkgs/development/tools/fac/default.nix
new file mode 100644
index 00000000000..c587505600c
--- /dev/null
+++ b/pkgs/development/tools/fac/default.nix
@@ -0,0 +1,38 @@
+{ stdenv, buildGoPackage, fetchFromGitHub, fetchurl, makeWrapper, git }:
+
+let
+ # TODO: Remove this on next update, should be included
+ fac_1 = fetchurl {
+ url = https://raw.githubusercontent.com/mkchoi212/fac/0a500c2a2dba9017fe7c2a45f15c328755f561a6/doc/fac.1;
+ sha256 = "1fsyx9i20ryhpihdpvs2z7vccl13b9bnh5hcdxn7bvqjz78mbqhw";
+ };
+in buildGoPackage rec {
+ name = "fac-${version}";
+ version = "1.0.4";
+
+ goPackagePath = "github.com/mkchoi212/fac";
+
+ src = fetchFromGitHub {
+ owner = "mkchoi212";
+ repo = "fac";
+ rev = "v${version}";
+ sha256 = "0jhx80jbkxfxj95hmdpb9wwwya064xpfkaa218l1lwm3qwfbpk95";
+ };
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ postInstall = ''
+ wrapProgram $bin/bin/fac \
+ --prefix PATH : ${git}/bin
+
+ install -D ${fac_1} $out/share/man/man1/fac.1
+ '';
+
+ meta = with stdenv.lib; {
+ description = "CUI for fixing git conflicts";
+ inherit (src.meta) homepage;
+ license = licenses.mit;
+ maintainers = with maintainers; [ dtzWill ];
+ };
+}
+
diff --git a/pkgs/development/tools/flootty/default.nix b/pkgs/development/tools/flootty/default.nix
new file mode 100644
index 00000000000..9535ba86dd0
--- /dev/null
+++ b/pkgs/development/tools/flootty/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, python }:
+
+let
+ inherit (python.pkgs) buildPythonApplication fetchPypi;
+in
+
+buildPythonApplication rec {
+ pname = "Flootty";
+ version = "3.2.1";
+ name = "${pname}-${version}";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0vjwl6g1bwm6jwp9wjla663cm831zf0rc9361mvpn4imdsfz7hxs";
+ };
+
+ meta = with stdenv.lib; {
+ description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session";
+ homepage = "https://floobits.com/help/flootty";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ sellout ];
+ };
+}
diff --git a/pkgs/development/tools/gauge/default.nix b/pkgs/development/tools/gauge/default.nix
new file mode 100644
index 00000000000..f1533f551b2
--- /dev/null
+++ b/pkgs/development/tools/gauge/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "gauge-${version}";
+ version = "0.9.6";
+
+ goPackagePath = "github.com/getgauge/gauge";
+
+ src = fetchFromGitHub {
+ owner = "getgauge";
+ repo = "gauge";
+ rev = "v${version}";
+ sha256 = "0p2bnrzgx616jbyr9h4h9azaq7ry63z4qkwgy0ivwrpmhfqfqwmh";
+ };
+
+ meta = with stdenv.lib; {
+ description = "Light weight cross-platform test automation";
+ homepage = http://gauge.org;
+ license = licenses.gpl3;
+ maintainers = [ maintainers.vdemeester ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/tools/go-protobuf/default.nix b/pkgs/development/tools/go-protobuf/default.nix
new file mode 100644
index 00000000000..361fc74c729
--- /dev/null
+++ b/pkgs/development/tools/go-protobuf/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "go-protobuf-${version}";
+ version = "2018-01-04";
+ rev = "1e59b77b52bf8e4b449a57e6f79f21226d571845";
+
+ goPackagePath = "github.com/golang/protobuf";
+
+ src = fetchFromGitHub {
+ inherit rev;
+ owner = "golang";
+ repo = "protobuf";
+ sha256 = "19bkh81wnp6njg3931wky6hsnnl2d1ig20vfjxpv450sd3k6yys8";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/golang/protobuf";
+ description = " Go bindings for protocol buffer";
+ maintainers = with maintainers; [ lewo ];
+ license = licenses.bsd3;
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/development/tools/goconvey/default.nix b/pkgs/development/tools/goconvey/default.nix
new file mode 100644
index 00000000000..e4ef9d26da2
--- /dev/null
+++ b/pkgs/development/tools/goconvey/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ name = "goconvey-${version}";
+ version = "1.6.3";
+
+ goPackagePath = "github.com/smartystreets/goconvey";
+ excludedPackages = "web/server/watch/integration_testing";
+
+ goDeps = ./deps.nix;
+
+ src = fetchFromGitHub {
+ owner = "smartystreets";
+ repo = "goconvey";
+ rev = "${version}";
+ sha256 = "1ph18rkl3ns3fgin5i4j54w5a69grrmf3apcsmnpdn1wlrbs3dxh";
+ };
+
+ meta = {
+ description = "Go testing in the browser. Integrates with `go test`. Write behavioral tests in Go.";
+ homepage = https://github.com/smartystreets/goconvey;
+ maintainers = with stdenv.lib.maintainers; [ vdemeester ];
+ license = stdenv.lib.licenses.mit;
+ };
+}
diff --git a/pkgs/development/tools/goconvey/deps.nix b/pkgs/development/tools/goconvey/deps.nix
new file mode 100644
index 00000000000..d329359da70
--- /dev/null
+++ b/pkgs/development/tools/goconvey/deps.nix
@@ -0,0 +1,20 @@
+[
+ {
+ goPackagePath = "github.com/jtolds/gls";
+ fetch = {
+ type = "git";
+ url = "https://github.com/jtolds/gls";
+ rev = "77f18212c9c7edc9bd6a33d383a7b545ce62f064";
+ sha256 = "1vm37pvn0k4r6d3m620swwgama63laz8hhj3pyisdhxwam4m2g1h";
+ };
+ }
+ {
+ goPackagePath = "github.com/smartystreets/assertions";
+ fetch = {
+ type = "git";
+ url = "https://github.com/smartystreets/assertions";
+ rev = "0b37b35ec7434b77e77a4bb29b79677cced992ea";
+ sha256 = "1j0adgbykl55rf2945g0n5bmqdsnjcqlx5dcmpfh4chki43hiwg9";
+ };
+ }
+]
diff --git a/pkgs/development/tools/godef/default.nix b/pkgs/development/tools/godef/default.nix
index fdb53dd288f..6644c8fcfc4 100644
--- a/pkgs/development/tools/godef/default.nix
+++ b/pkgs/development/tools/godef/default.nix
@@ -2,8 +2,8 @@
buildGoPackage rec {
name = "godef-${version}";
- version = "20160620-${stdenv.lib.strings.substring 0 7 rev}";
- rev = "ee532b944160bb27b6f23e4f5ef38b8fdaa2a6bd";
+ version = "20170920-${stdenv.lib.strings.substring 0 7 rev}";
+ rev = "b692db1de5229d4248e23c41736b431eb665615d";
goPackagePath = "github.com/rogpeppe/godef";
excludedPackages = "go/printer/testdata";
@@ -11,7 +11,7 @@ buildGoPackage rec {
src = fetchgit {
inherit rev;
url = "https://github.com/rogpeppe/godef";
- sha256 = "1r8c4ijjnwvb9pci4wasmq88yj0ginwly2542kw4hyg2c87j613l";
+ sha256 = "0xqp9smfyznm8v2iy4wyy3kd24mga12fx0y0896qimac4hj2al15";
};
meta = {
diff --git a/pkgs/development/tools/gpp/default.nix b/pkgs/development/tools/gpp/default.nix
new file mode 100644
index 00000000000..461110b63d7
--- /dev/null
+++ b/pkgs/development/tools/gpp/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+ name = "gpp-${version}";
+ version = "2.25";
+
+ src = fetchFromGitHub {
+ owner = "logological";
+ repo = "gpp";
+ rev = "96c5dd8905384ea188f380f51d24cbd7fd58f642";
+ sha256 = "0bvhnx3yfhbfiqqhhz6k2a596ls5rval7ykbp3jl5b6062xj861b";
+ };
+
+ nativeBuildInputs = [ autoreconfHook ];
+
+ installCheckPhase = "$out/bin/gpp --help";
+ doInstallCheck = true;
+
+ meta = with stdenv.lib; {
+ description = "General-purpose preprocessor with customizable syntax";
+ homepage = "https://logological.org/gpp";
+ license = licenses.lgpl3;
+ maintainers = with maintainers; [ nmattia ];
+ platforms = with platforms; linux ++ darwin;
+ };
+}
diff --git a/pkgs/development/tools/haskell/intero-nix-shim/default.nix b/pkgs/development/tools/haskell/intero-nix-shim/default.nix
deleted file mode 100644
index a7ea5b9d577..00000000000
--- a/pkgs/development/tools/haskell/intero-nix-shim/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ mkDerivation, base, cabal-install, directory, fetchFromGitHub
-, filepath, intero, optparse-applicative, posix-escape, split
-, stdenv, unix
-}:
-mkDerivation {
- pname = "intero-nix-shim";
- version = "0.1.2";
- src = fetchFromGitHub {
- owner = "michalrus";
- repo = "intero-nix-shim";
- rev = "0.1.2";
- sha256 = "0p1h3w15bgvsbzi7f1n2dxxxz9yq7vmbxmww5igc5d3dm76skgzg";
- };
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- base directory filepath optparse-applicative posix-escape split
- unix
- ];
- postInstall = ''
- mkdir -p $out/libexec
- ln -s ${cabal-install}/bin/cabal $out/libexec
- ln -s ${intero }/bin/intero $out/libexec
- '';
- homepage = https://github.com/michalrus/intero-nix-shim;
- license = stdenv.lib.licenses.asl20;
-}
diff --git a/pkgs/development/tools/haskell/multi-ghc-travis/default.nix b/pkgs/development/tools/haskell/multi-ghc-travis/default.nix
index 8f9095fae13..c21d5595708 100644
--- a/pkgs/development/tools/haskell/multi-ghc-travis/default.nix
+++ b/pkgs/development/tools/haskell/multi-ghc-travis/default.nix
@@ -1,29 +1,28 @@
-{ stdenv, ghc, fetchFromGitHub }:
-
-stdenv.mkDerivation rec {
- name = "multi-ghc-travis-${version}";
- version = "20170728-git";
-
- buildInputs = [ ghc ];
-
+{ mkDerivation, base, bytestring, Cabal, containers, deepseq, Diff
+, directory, filepath, ShellCheck, stdenv, tasty, tasty-golden
+, transformers, fetchFromGitHub
+}:
+mkDerivation {
+ pname = "make-travis-yml";
+ version = "0";
src = fetchFromGitHub {
owner = "hvr";
repo = "multi-ghc-travis";
- rev = "437739986fc81ca8c010e5d889348ba74171e680";
- sha256 = "05fbc7ab9c25k19xj0iax72gv62l89dw2m4bci7h76y9hcajs5v4";
- };
-
- installPhase = ''
- mkdir -p $out/bin
- ghc -O --make make_travis_yml.hs -o $out/bin/make-travis-yml
- ghc -O --make make_travis_yml_2.hs -o $out/bin/make-travis-yml-2
- '';
-
- meta = with stdenv.lib; {
- description = "Generate .travis.yml for multiple ghc versions";
- homepage = https://github.com/hvr/multi-ghc-travis;
- license = licenses.bsd3;
- platforms = ghc.meta.platforms;
- maintainers = with maintainers; [ jb55 peti ];
+ rev = "0d1b4089f6829659149747c9551712d24fd0b124";
+ sha256 = "00dbg8hbncv74c2baskyhg4h0yv8wrz0fnkvw2bzcn0cjrz7xqwr";
};
+ isLibrary = true;
+ isExecutable = true;
+ libraryHaskellDepends = [
+ base Cabal containers deepseq directory filepath ShellCheck
+ transformers
+ ];
+ executableHaskellDepends = [ base ];
+ testHaskellDepends = [
+ base bytestring Diff directory filepath tasty tasty-golden
+ transformers
+ ];
+ homepage = "https://github.com/hvr/multi-ghc-travis";
+ description = "Script generator for Travis-CI";
+ license = stdenv.lib.licenses.bsd3;
}
diff --git a/pkgs/development/tools/haskell/tinc/default.nix b/pkgs/development/tools/haskell/tinc/default.nix
deleted file mode 100644
index 5a69b887588..00000000000
--- a/pkgs/development/tools/haskell/tinc/default.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{ mkDerivation, aeson, base, bytestring, Cabal, containers
-, directory, exceptions, filelock, filepath, gitrev, graph-wrapper
-, hpack, hspec, HUnit, language-dot, mockery, parsec, process
-, QuickCheck, safe, stdenv, temporary, time, transformers, unix
-, unix-compat, with-location, yaml, fetchFromGitHub
-, cabal2nix, cabal-install, makeWrapper
-}:
-mkDerivation {
- pname = "tinc";
- version = "20170624";
- src = fetchFromGitHub {
- owner = "sol";
- repo = "tinc";
- rev = "70881515693fd83d381fe045ae76d5257774f5e3";
- sha256 = "0c6sx3vbcnq69dhqhpi01a4p4qss24rwxiz6jmw65rj73adhj4mw";
- };
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [
- aeson base bytestring Cabal containers directory exceptions
- filelock filepath gitrev graph-wrapper hpack language-dot parsec
- process temporary time transformers unix-compat with-location yaml
- ];
- testHaskellDepends = [
- aeson base bytestring Cabal containers directory exceptions
- filelock filepath gitrev graph-wrapper hpack hspec HUnit
- language-dot mockery parsec process QuickCheck safe temporary time
- transformers unix unix-compat with-location yaml
- ];
- postInstall = ''
- source ${makeWrapper}/nix-support/setup-hook
- wrapProgram $out/bin/tinc \
- --prefix PATH : '${cabal2nix}/bin' \
- --prefix PATH : '${cabal-install}/bin'
- '';
- description = "A dependency manager for Haskell";
- homepage = "https://github.com/sol/tinc#readme";
- license = stdenv.lib.licenses.mit;
- hydraPlatforms = [ "x86_64-linux" ];
- maintainers = [ stdenv.lib.maintainers.robbinch ];
- broken = true;
-}
diff --git a/pkgs/development/tools/haskell/vaultenv/default.nix b/pkgs/development/tools/haskell/vaultenv/default.nix
index 9b5a19700ff..b607cc5604c 100644
--- a/pkgs/development/tools/haskell/vaultenv/default.nix
+++ b/pkgs/development/tools/haskell/vaultenv/default.nix
@@ -1,17 +1,20 @@
-{ mkDerivation, fetchurl, async, base, bytestring, http-conduit, lens
-, lens-aeson, optparse-applicative, retry, stdenv, text, unix
+{ mkDerivation, fetchzip, async, base, bytestring, hpack, http-conduit
+, lens, lens-aeson, optparse-applicative, retry, stdenv, text, unix
, unordered-containers, utf8-string
}:
mkDerivation rec {
pname = "vaultenv";
- version = "0.5.0";
+ version = "0.5.3";
- src = fetchurl {
+ src = fetchzip {
url = "https://github.com/channable/vaultenv/archive/v${version}.tar.gz";
- sha256 = "0hdcxq88cf3ygnikkppyg3fcf7xmwm9zif7274j3n34p9vd8xci3";
+ sha256 = "1kxq2pp8l8xf7xwjyd9cwyi7z192013s6psq5fk8jrkkhrk8z3li";
};
+ buildTools = [ hpack ];
+ preConfigure = "hpack .";
+
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
diff --git a/pkgs/development/tools/icestorm/default.nix b/pkgs/development/tools/icestorm/default.nix
index 20f5f8d17e8..efd4265443b 100644
--- a/pkgs/development/tools/icestorm/default.nix
+++ b/pkgs/development/tools/icestorm/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "icestorm-${version}";
- version = "2017.12.06";
+ version = "2018.01.10";
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
- rev = "14b44ca866665352e7146778bb932e45b5fdedbd";
- sha256 = "18qy7gylnydgzmqry1b4r0ilm6lkjdcyn0wj03syxdig9dbjiacm";
+ rev = "bca8c3c88f5707213a6cc55ec7b06b576ab98809";
+ sha256 = "00g1xd70dlgvyfyk5ivj71dpk0vzx3xka60f6x3hm4frl9ahyhj7";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/tools/irony-server/default.nix b/pkgs/development/tools/irony-server/default.nix
index b52cbf21168..e2aa27a96eb 100644
--- a/pkgs/development/tools/irony-server/default.nix
+++ b/pkgs/development/tools/irony-server/default.nix
@@ -5,13 +5,14 @@ stdenv.mkDerivation rec {
inherit (irony) version;
nativeBuildInputs = [ cmake ];
+ buildInputs = [ llvmPackages.libclang ];
dontUseCmakeBuildDir = true;
cmakeDir = "server";
cmakeFlags = [
- ''-DCMAKE_PREFIX_PATH=${llvmPackages.clang.cc}''
+ "-DCMAKE_PREFIX_PATH=${llvmPackages.clang-unwrapped}"
];
src = irony.src;
diff --git a/pkgs/development/tools/java/cfr/default.nix b/pkgs/development/tools/java/cfr/default.nix
index 46170341437..bfb37fc5f03 100644
--- a/pkgs/development/tools/java/cfr/default.nix
+++ b/pkgs/development/tools/java/cfr/default.nix
@@ -35,6 +35,5 @@ stdenv.mkDerivation rec {
homepage = http://www.benf.org/other/cfr/;
license = licenses.mit;
platforms = platforms.all;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/jbake/default.nix b/pkgs/development/tools/jbake/default.nix
new file mode 100644
index 00000000000..9762926ddf5
--- /dev/null
+++ b/pkgs/development/tools/jbake/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchzip, jre }:
+
+stdenv.mkDerivation rec {
+ version = "2.5.1";
+ name = "jbake-${version}";
+
+ src = fetchzip {
+ url = "http://jbake.org/files/jbake-${version}-bin.zip";
+ sha256 = "1ib5gvz6sl7k0ywx22anhz69i40wc6jj5lxjxj2aa14qf4lrw912";
+ };
+
+ buildInputs = [ jre ];
+
+ installPhase = ''
+ substituteInPlace bin/jbake --replace "java" "${jre}/bin/java"
+ mkdir -p $out
+ cp -vr * $out
+ '';
+
+ meta = with stdenv.lib; {
+ description = "JBake is a Java based, open source, static site/blog generator for developers & designers";
+ homepage = "http://jbake.org/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ moaxcp ];
+ };
+}
diff --git a/pkgs/development/tools/literate-programming/Literate/default.nix b/pkgs/development/tools/literate-programming/Literate/default.nix
new file mode 100644
index 00000000000..4bc3e77dbaa
--- /dev/null
+++ b/pkgs/development/tools/literate-programming/Literate/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchgit, dmd, dub }:
+
+stdenv.mkDerivation {
+ name = "Literate-2017-05-28";
+
+ src = fetchgit {
+ url = "https://github.com/zyedidia/Literate.git";
+ rev = "23928d64bb19b5101dbcc794da6119beaf59f679";
+ sha256 = "094lramvacarzj8443ns18zyv7dxnivwi7kdk5xi5r2z4gx338iq";
+ };
+
+ buildInputs = [ dmd dub ];
+
+ installPhase = "install -D bin/lit $out/bin/lit";
+
+ meta = with stdenv.lib; {
+ description = "A literate programming tool for any language";
+ homepage = http://literate.zbyedidia.webfactional.com/;
+ license = licenses.mit;
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/tools/misc/arcanist/default.nix b/pkgs/development/tools/misc/arcanist/default.nix
index 760ad521cef..15b8f82d0ab 100644
--- a/pkgs/development/tools/misc/arcanist/default.nix
+++ b/pkgs/development/tools/misc/arcanist/default.nix
@@ -21,11 +21,18 @@ stdenv.mkDerivation rec {
src = [ arcanist libphutil ];
buildInputs = [ php makeWrapper flex ];
- unpackPhase = "true";
- buildPhase = ''
+ unpackPhase = ''
cp -R ${libphutil} libphutil
cp -R ${arcanist} arcanist
chmod +w -R libphutil arcanist
+ '';
+
+ postPatch = stdenv.lib.optionalString stdenv.isAarch64 ''
+ substituteInPlace libphutil/support/xhpast/Makefile \
+ --replace "-minline-all-stringops" ""
+ '';
+
+ buildPhase = ''
(
cd libphutil/support/xhpast
make clean all install
diff --git a/pkgs/development/tools/misc/automake/setup-hook.sh b/pkgs/development/tools/misc/automake/setup-hook.sh
index 5cd8c6229f6..292632b7cbc 100644
--- a/pkgs/development/tools/misc/automake/setup-hook.sh
+++ b/pkgs/development/tools/misc/automake/setup-hook.sh
@@ -2,4 +2,4 @@ addAclocals () {
addToSearchPathWithCustomDelimiter : ACLOCAL_PATH $1/share/aclocal
}
-envHooks+=(addAclocals)
+addEnvHooks "$hostOffset" addAclocals
diff --git a/pkgs/development/tools/misc/bin_replace_string/default.nix b/pkgs/development/tools/misc/bin_replace_string/default.nix
index fda527ee905..ac7eb557f2e 100644
--- a/pkgs/development/tools/misc/bin_replace_string/default.nix
+++ b/pkgs/development/tools/misc/bin_replace_string/default.nix
@@ -27,6 +27,5 @@ stdenv.mkDerivation rec {
downloadPage = ftp://ohnopub.net/mirror/;
license = licenses.gpl3Plus;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/misc/binutils/always-search-rpath.patch b/pkgs/development/tools/misc/binutils/always-search-rpath.patch
new file mode 100644
index 00000000000..2e9956e6b6e
--- /dev/null
+++ b/pkgs/development/tools/misc/binutils/always-search-rpath.patch
@@ -0,0 +1,14 @@
+diff --git a/ld/genscripts.sh b/ld/genscripts.sh
+index b6940d376d..0feb1adfd0 100755
+--- a/ld/genscripts.sh
++++ b/ld/genscripts.sh
+@@ -125,6 +125,9 @@ if test "x$NATIVE" = "xyes" ; then
+ USE_LIBPATH=yes
+ fi
+
++# TODO: why is this needed?
++USE_LIBPATH=yes
++
+ # Set the library search path, for libraries named by -lfoo.
+ # If LIB_PATH is defined (e.g., by Makefile) and non-empty, it is used.
+ # Otherwise, the default is set here.
diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix
index 7628e37ae1c..05d0d21a179 100644
--- a/pkgs/development/tools/misc/binutils/default.nix
+++ b/pkgs/development/tools/misc/binutils/default.nix
@@ -53,11 +53,20 @@ stdenv.mkDerivation rec {
# elf32-littlearm-vxworks in favor of the first.
# https://github.com/NixOS/nixpkgs/pull/30484#issuecomment-345472766
./disambiguate-arm-targets.patch
+
+ # For some reason bfd ld doesn't search DT_RPATH when cross-compiling. It's
+ # not clear why this behavior was decided upon but it has the unfortunate
+ # consequence that the linker will fail to find transitive dependencies of
+ # shared objects when cross-compiling. Consequently, we are forced to
+ # override this behavior, forcing ld to search DT_RPATH even when
+ # cross-compiling.
+ ./always-search-rpath.patch
];
outputs = [ "out" "info" "man" ];
- nativeBuildInputs = [ bison buildPackages.stdenv.cc ];
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
+ nativeBuildInputs = [ bison ];
buildInputs = [ zlib ];
inherit noSysDirs;
@@ -84,7 +93,7 @@ stdenv.mkDerivation rec {
# TODO(@Ericson2314): Always pass "--target" and always targetPrefix.
configurePlatforms =
# TODO(@Ericson2314): Figure out what's going wrong with Arm
- if hostPlatform == targetPlatform && targetPlatform.isArm
+ if buildPlatform == hostPlatform && hostPlatform == targetPlatform && targetPlatform.isArm
then []
else [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix
index 65c7e633f8e..ff4ad83b642 100644
--- a/pkgs/development/tools/misc/ccache/default.nix
+++ b/pkgs/development/tools/misc/ccache/default.nix
@@ -2,10 +2,10 @@
let ccache = stdenv.mkDerivation rec {
name = "ccache-${version}";
- version = "3.3.4";
+ version = "3.3.5";
src = fetchurl {
- sha256 = "0ks0vk408mdppfbk8v38p46fqx3p30r9a9cwiia43373i7rmpw94";
+ sha256 = "1iih5d171rq29366c1z90dri2h8173yyc8rm2740wxiqx6k7c18r";
url = "mirror://samba/ccache/${name}.tar.xz";
};
@@ -69,7 +69,6 @@ let ccache = stdenv.mkDerivation rec {
homepage = http://ccache.samba.org/;
downloadPage = https://ccache.samba.org/download.html;
license = licenses.gpl3Plus;
- maintainers = with maintainers; [ nckx ];
platforms = platforms.unix;
};
};
diff --git a/pkgs/development/tools/misc/ccache/skip-fs-dependent-test.patch b/pkgs/development/tools/misc/ccache/skip-fs-dependent-test.patch
index ecd3c4c9a74..3bc3a95e420 100644
--- a/pkgs/development/tools/misc/ccache/skip-fs-dependent-test.patch
+++ b/pkgs/development/tools/misc/ccache/skip-fs-dependent-test.patch
@@ -1,9 +1,9 @@
---- ccache-3.3.4.org/test.sh 2017-02-17 21:28:53.000000000 +0000
-+++ ccache-3.3.4/test.sh 2017-07-01 18:38:00.523403023 +0100
-@@ -2631,23 +2631,23 @@
+--- a/test.sh
++++ b/test.sh
+@@ -2669,23 +2669,6 @@ SUITE_cleanup() {
+
$CCACHE -F 0 -M 256K >/dev/null
- $CCACHE -c >/dev/null
- # floor(0.8 * 4) = 3
+ CCACHE_LOGFILE=/tmp/foo $CCACHE -c >/dev/null
- expect_file_count 3 '*.o' $CCACHE_DIR
- expect_file_count 3 '*.d' $CCACHE_DIR
- expect_file_count 3 '*.stderr' $CCACHE_DIR
@@ -21,23 +21,6 @@
- test_failed "File $file not removed when it should"
- fi
- done
-+ #expect_file_count 3 '*.o' $CCACHE_DIR
-+ #expect_file_count 3 '*.d' $CCACHE_DIR
-+ #expect_file_count 3 '*.stderr' $CCACHE_DIR
-+ #expect_stat 'files in cache' 9
-+ #expect_stat 'cleanups performed' 1
-+ #for i in 3 4 5; do
-+ # file=$CCACHE_DIR/a/result$i-4017.o
-+ # if [ ! -f $file ]; then
-+ # test_failed "File $file removed when it shouldn't"
-+ # fi
-+ #done
-+ #for i in 0 1 2 6 7 8 9; do
-+ # file=$CCACHE_DIR/a/result$i-4017.o
-+ # if [ -f $file ]; then
-+ # test_failed "File $file not removed when it should"
-+ # fi
-+ #done
-
+
# -------------------------------------------------------------------------
- TEST "Automatic cache cleanup"
+ TEST "Automatic cache cleanup, limit_multiple 0.9"
diff --git a/pkgs/development/tools/misc/d-feet/default.nix b/pkgs/development/tools/misc/d-feet/default.nix
index 6006c83c0cd..b20f63e2625 100644
--- a/pkgs/development/tools/misc/d-feet/default.nix
+++ b/pkgs/development/tools/misc/d-feet/default.nix
@@ -1,5 +1,5 @@
{ stdenv, pkgconfig, fetchurl, itstool, intltool, libxml2, glib, gtk3
-, python3Packages, wrapGAppsHook, gnome3, libwnck3 }:
+, python3Packages, wrapGAppsHook, gnome3, libwnck3, gobjectIntrospection }:
let
version = "${major}.13";
@@ -14,7 +14,7 @@ in python3Packages.buildPythonApplication rec {
};
nativeBuildInputs = [ pkgconfig itstool intltool wrapGAppsHook libxml2 ];
- buildInputs = [ glib gtk3 gnome3.defaultIconTheme libwnck3 ];
+ buildInputs = [ glib gtk3 gnome3.defaultIconTheme libwnck3 gobjectIntrospection ];
propagatedBuildInputs = with python3Packages; [ pygobject3 pep8 ];
diff --git a/pkgs/development/tools/misc/dialog/default.nix b/pkgs/development/tools/misc/dialog/default.nix
index 76d34bfd564..8c236597484 100644
--- a/pkgs/development/tools/misc/dialog/default.nix
+++ b/pkgs/development/tools/misc/dialog/default.nix
@@ -13,11 +13,14 @@ assert unicodeSupport -> ncurses.unicode && ncurses != null;
stdenv.mkDerivation rec {
name = "dialog-${version}";
- version = "1.3-20160209";
+ version = "1.3-20171209";
src = fetchurl {
- url = "ftp://invisible-island.net/dialog/${name}.tgz";
- sha256 = "11rzh14xy9s99gxdi5i7fgmgihjqsv0ls0ksavkmip2y37rgf503";
+ urls = [
+ "ftp://ftp.invisible-island.net/dialog/${name}.tgz"
+ "https://invisible-mirror.net/archives/dialog/${name}.tgz"
+ ];
+ sha256 = "1rk72as52f5br3wcr74d00wib41w65g8wvi36mfgybly251984r0";
};
buildInputs = [ ncurses ];
diff --git a/pkgs/development/tools/misc/gdb/default.nix b/pkgs/development/tools/misc/gdb/default.nix
index d1148ad48d8..e068b908caf 100644
--- a/pkgs/development/tools/misc/gdb/default.nix
+++ b/pkgs/development/tools/misc/gdb/default.nix
@@ -18,7 +18,7 @@
let
basename = "gdb-${version}";
- version = "8.0.1";
+ version = "8.1";
in
assert targetPlatform.isHurd -> mig != null && hurd != null;
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "mirror://gnu/gdb/${basename}.tar.xz";
- sha256 = "1qwmcbaxf0jc7yjl0fimgcfj2yqcrl6h7azgs1d838kbwf9mzg9x";
+ sha256 = "0d2bpqk58fqlx21rbnk8mbcjlggzc9kb5sjirrfrrrjq70ka0qdg";
};
patches = [ ./debug-info-from-env.patch ];
diff --git a/pkgs/development/tools/misc/gdbgui/default.nix b/pkgs/development/tools/misc/gdbgui/default.nix
index 3562af7a6b8..64b87300cbe 100644
--- a/pkgs/development/tools/misc/gdbgui/default.nix
+++ b/pkgs/development/tools/misc/gdbgui/default.nix
@@ -5,14 +5,14 @@ in
python27Packages.buildPythonApplication rec {
name = "${pname}-${version}";
pname = "gdbgui";
- version = "0.9.1.0";
+ version = "0.10.1.0";
buildInputs = [ gdb ];
propagatedBuildInputs = builtins.attrValues deps.packages;
src = python27Packages.fetchPypi {
inherit pname version;
- sha256 = "0ybgkk4h9zwhbx5d0j0fmfzxxgg8f6apm8v7djavm0ldpr6f5z26";
+ sha256 = "1585vjbrc8r0a7069aism66c0kkj91yklpdblb9c34570zbpabvs";
};
postPatch = ''
diff --git a/pkgs/development/tools/misc/gdbgui/requirements.nix b/pkgs/development/tools/misc/gdbgui/requirements.nix
index d3c7f31eaeb..13978645c29 100644
--- a/pkgs/development/tools/misc/gdbgui/requirements.nix
+++ b/pkgs/development/tools/misc/gdbgui/requirements.nix
@@ -113,13 +113,12 @@ let
"Flask-SocketIO" = python.mkDerivation {
- name = "Flask-SocketIO-2.9.2";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/e7/e0/c50a1b47498897b228764667cd006ca7d45374b79a8e5e2fa3e03ba4717c/Flask-SocketIO-2.9.2.tar.gz"; sha256 = "0fb686f9d85f4f34dc6609f62fa96fe15176a6ea7e6179149d319fabc54c543b"; };
+ name = "Flask-SocketIO-2.9.3";
+ src = pkgs.fetchurl { url = "https://pypi.python.org/packages/a0/ac/4024b73e071d5a000a998d6f26ba0a090011d5abdc7aa41f2774173c3276/Flask-SocketIO-2.9.3.tar.gz"; sha256 = "df23f790db8529c543bd0b54165215c342cf6955a4a1f605650e759197a46d59"; };
doCheck = commonDoCheck;
buildInputs = commonBuildInputs;
propagatedBuildInputs = [
self."Flask"
- self."python-engineio"
self."python-socketio"
];
meta = with pkgs.stdenv.lib; {
@@ -179,15 +178,15 @@ let
"Werkzeug" = python.mkDerivation {
- name = "Werkzeug-0.12.2";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/56/41/c095a77eb2dd69bf278dd664a97d3416af04e9ba1a00b8c138f772741d31/Werkzeug-0.12.2.tar.gz"; sha256 = "903a7b87b74635244548b30d30db4c8947fe64c5198f58899ddcd3a13c23bb26"; };
+ name = "Werkzeug-0.14.1";
+ src = pkgs.fetchurl { url = "https://pypi.python.org/packages/9f/08/a3bb1c045ec602dc680906fc0261c267bed6b3bb4609430aff92c3888ec8/Werkzeug-0.14.1.tar.gz"; sha256 = "c3fd7a7d41976d9f44db327260e263132466836cef6f91512889ed60ad26557c"; };
doCheck = commonDoCheck;
buildInputs = commonBuildInputs;
propagatedBuildInputs = [ ];
meta = with pkgs.stdenv.lib; {
- homepage = "http://werkzeug.pocoo.org/";
+ homepage = "https://www.palletsprojects.org/p/werkzeug/";
license = licenses.bsdOriginal;
- description = "The Swiss Army knife of Python web development";
+ description = "The comprehensive WSGI web application library.";
};
};
@@ -208,56 +207,6 @@ let
- "enum-compat" = python.mkDerivation {
- name = "enum-compat-0.0.2";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/95/6e/26bdcba28b66126f66cf3e4cd03bcd63f7ae330d29ee68b1f6b623550bfa/enum-compat-0.0.2.tar.gz"; sha256 = "939ceff18186a5762ae4db9fa7bfe017edbd03b66526b798dd8245394c8a4192"; };
- doCheck = commonDoCheck;
- buildInputs = commonBuildInputs;
- propagatedBuildInputs = [
- self."enum34"
- ];
- meta = with pkgs.stdenv.lib; {
- homepage = "https://github.com/jstasiak/enum-compat";
- license = licenses.mit;
- description = "enum/enum34 compatibility package";
- };
- };
-
-
-
- "enum34" = python.mkDerivation {
- name = "enum34-1.1.6";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876/enum34-1.1.6.tar.gz"; sha256 = "8ad8c4783bf61ded74527bffb48ed9b54166685e4230386a9ed9b1279e2df5b1"; };
- doCheck = commonDoCheck;
- buildInputs = commonBuildInputs;
- propagatedBuildInputs = [ ];
- meta = with pkgs.stdenv.lib; {
- homepage = "https://bitbucket.org/stoneleaf/enum34";
- license = licenses.bsdOriginal;
- description = "Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4";
- };
- };
-
-
-
- "eventlet" = python.mkDerivation {
- name = "eventlet-0.21.0";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/cb/ec/eae487c106a7e38f86ac4cadafb3eec77d29996f64ca0c7015067538069b/eventlet-0.21.0.tar.gz"; sha256 = "08faffab88c1b08bd53ea28bf084a572c89f7e7648bd9d71e6116ac17a51a15d"; };
- doCheck = commonDoCheck;
- buildInputs = commonBuildInputs;
- propagatedBuildInputs = [
- self."enum-compat"
- self."greenlet"
- ];
- meta = with pkgs.stdenv.lib; {
- homepage = "http://eventlet.net";
- license = licenses.mit;
- description = "Highly concurrent networking library";
- };
- };
-
-
-
"gevent" = python.mkDerivation {
name = "gevent-1.2.2";
src = pkgs.fetchurl { url = "https://pypi.python.org/packages/1b/92/b111f76e54d2be11375b47b213b56687214f258fd9dae703546d30b837be/gevent-1.2.2.tar.gz"; sha256 = "4791c8ae9c57d6f153354736e1ccab1e2baf6c8d9ae5a77a9ac90f41e2966b2d"; };
@@ -306,8 +255,8 @@ let
"pygdbmi" = python.mkDerivation {
- name = "pygdbmi-0.7.4.4";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/bb/1c/8c8cbd0bb5cf513a905e3ca461cfad578e708a74417182f2a00943136f83/pygdbmi-0.7.4.4.tar.gz"; sha256 = "34cd00925ca98aed87decb6a0451fa094cf31386dc457b47a62bcbf8d905a3d3"; };
+ name = "pygdbmi-0.8.2.0";
+ src = pkgs.fetchurl { url = "https://pypi.python.org/packages/4e/34/a8c86d85e0d3d8df2c289657a55c19408dbdbf0b1468859e7f1a745ae8ff/pygdbmi-0.8.2.0.tar.gz"; sha256 = "47cece65808ca42edf6966ac48e2aedca7ae1c675c4d2f0d001c7f3a7fa245fe"; };
doCheck = commonDoCheck;
buildInputs = commonBuildInputs;
propagatedBuildInputs = [ ];
@@ -320,26 +269,9 @@ let
- "pypugjs" = python.mkDerivation {
- name = "pypugjs-4.2.2";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/21/bb/d541110bd5a5c1ecd9dab2778dc9a39ca5a5e9962845e9d3e598962ee3ca/pypugjs-4.2.2.tar.gz"; sha256 = "c99a72a78766d9462d94379a6b489f9864ecdeeeeaf8d0f34b2ce04963f6ec8c"; };
- doCheck = commonDoCheck;
- buildInputs = commonBuildInputs;
- propagatedBuildInputs = [
- self."six"
- ];
- meta = with pkgs.stdenv.lib; {
- homepage = "http://github.com/matannoam/pypugjs";
- license = licenses.mit;
- description = "PugJS syntax template adapter for Django, Jinja2, Mako and Tornado templates - copy of PyJade with the name changed";
- };
- };
-
-
-
"python-engineio" = python.mkDerivation {
- name = "python-engineio-2.0.1";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/ae/61/199d5693cb077d12fb82baa9505215e0654e50e3cd4d5f3331029312b55f/python-engineio-2.0.1.tar.gz"; sha256 = "266fca0c4ed4576c873458ef06fdc7ae20942210f5e9c5f9bd039debcc672c30"; };
+ name = "python-engineio-2.0.2";
+ src = pkgs.fetchurl { url = "https://pypi.python.org/packages/e5/91/f6fd80298e68b4ca22a1a9cc3091116e2fef22fd8fb017ad9e5c6ec6ddcc/python-engineio-2.0.2.tar.gz"; sha256 = "46c710a72c3b2a8511b0d7963c46e200010f8ea3eb0721ce15603d0f23e993c4"; };
doCheck = commonDoCheck;
buildInputs = commonBuildInputs;
propagatedBuildInputs = [
@@ -355,8 +287,8 @@ let
"python-socketio" = python.mkDerivation {
- name = "python-socketio-1.8.3";
- src = pkgs.fetchurl { url = "https://pypi.python.org/packages/39/23/b0955fe05bed6d6621754d3b5043e5478cf57646e1e4c1cf55a6fc3f2acb/python-socketio-1.8.3.tar.gz"; sha256 = "822433bcda86924367bccfc64083bae60bd64c89c8fc07f79530458ce5a6dcea"; };
+ name = "python-socketio-1.8.4";
+ src = pkgs.fetchurl { url = "https://pypi.python.org/packages/58/a9/52af6a7ad0805977afc838ed394f8d26d078ef61e8c1bdd632801c58ef3a/python-socketio-1.8.4.tar.gz"; sha256 = "13807ce17e85371d15b31295a43b1fac1c0dba1eb5fc233353a3efd53aa122cc"; };
doCheck = commonDoCheck;
buildInputs = commonBuildInputs;
propagatedBuildInputs = [
diff --git a/pkgs/development/tools/misc/inotify-tools/default.nix b/pkgs/development/tools/misc/inotify-tools/default.nix
index 4c1cd5bd7bd..8bc35ba01a6 100644
--- a/pkgs/development/tools/misc/inotify-tools/default.nix
+++ b/pkgs/development/tools/misc/inotify-tools/default.nix
@@ -1,14 +1,18 @@
-{ stdenv, fetchurl }:
+{ stdenv, autoreconfHook, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "inotify-tools-${version}";
- version = "3.14";
+ version = "3.20.1";
- src = fetchurl {
- url = "http://github.com/downloads/rvoicilas/inotify-tools/inotify-tools-${version}.tar.gz";
- sha256 = "0by9frv1k59f76cx08sn06sk6lmdxsfb6zr0rshzhyrxi6lcqar2";
+ src = fetchFromGitHub {
+ repo = "inotify-tools";
+ owner = "rvoicilas";
+ rev = version;
+ sha256 = "14dci1i4mhsd5sa33k8h3ayphk19kizynh5ql9ryibdpmcanfiyq";
};
+ nativeBuildInputs = [ autoreconfHook ];
+
meta = with stdenv.lib; {
homepage = https://github.com/rvoicilas/inotify-tools/wiki;
license = licenses.gpl2;
diff --git a/pkgs/development/tools/misc/kibana/5.x.nix b/pkgs/development/tools/misc/kibana/5.x.nix
index 735f85f7456..78b5df21fde 100644
--- a/pkgs/development/tools/misc/kibana/5.x.nix
+++ b/pkgs/development/tools/misc/kibana/5.x.nix
@@ -11,9 +11,9 @@ let
elasticArch = archOverrides."${arch}" or arch;
plat = elemAt info 1;
shas = {
- "x86_64-linux" = "02dhhp16pmkrpi2dfrca9qzz1q7jrxhaw6l3cfflgxx77hz0hlnw";
- "i686-linux" = "1h1zr342dq7nngvzpf9pn9mvwsi7aksa3qjyqpcc4yvbmmyrlk0m";
- "x86_64-darwin" = "0van8cnir6s520crc20bf2clbkf822c3ylpk7iiq7da8hwvsypp9";
+ "x86_64-linux" = "1a9n7s9r0klqvpyr5d3a410cchbsb0syx6cqwbhhnihqyw8dcx1i";
+ "i686-linux" = "0snnm5jwynvk6ahgl42yzl2jhld0ykn79rlcq9dsv2gpqnjb2mmv";
+ "x86_64-darwin" = "0qw3xkj3n3aja8s8n9r4hbr65jm9m6dgfjhhnrln434648rx7z4v";
};
in stdenv.mkDerivation rec {
name = "kibana-${version}";
diff --git a/pkgs/development/tools/misc/kibana/6.x.nix b/pkgs/development/tools/misc/kibana/6.x.nix
new file mode 100644
index 00000000000..d7013ef46eb
--- /dev/null
+++ b/pkgs/development/tools/misc/kibana/6.x.nix
@@ -0,0 +1,40 @@
+{ stdenv, makeWrapper, fetchurl, elk6Version, nodejs, coreutils, which }:
+
+with stdenv.lib;
+let
+ inherit (builtins) elemAt;
+ info = splitString "-" stdenv.system;
+ arch = elemAt info 0;
+ plat = elemAt info 1;
+ shas = {
+ "x86_64-linux" = "0kgsafjn8wzrmiklfc8jg0h3cx25lhlkby8yz35wgpx4wbk3vfjx";
+ "x86_64-darwin" = "0i2kq9vyjv151kk7h3dl3hjrqqgxsg0qqxdqwjwlz9ja5axzlxhd";
+ };
+in stdenv.mkDerivation rec {
+ name = "kibana-${version}";
+ version = elk6Version;
+
+ src = fetchurl {
+ url = "https://artifacts.elastic.co/downloads/kibana/${name}-${plat}-${arch}.tar.gz";
+ sha256 = shas."${stdenv.system}" or (throw "Unknown architecture");
+ };
+
+ buildInputs = [ makeWrapper ];
+
+ installPhase = ''
+ mkdir -p $out/libexec/kibana $out/bin
+ mv * $out/libexec/kibana/
+ rm -r $out/libexec/kibana/node
+ makeWrapper $out/libexec/kibana/bin/kibana $out/bin/kibana \
+ --prefix PATH : "${stdenv.lib.makeBinPath [ nodejs coreutils which ]}"
+ sed -i 's@NODE=.*@NODE=${nodejs}/bin/node@' $out/libexec/kibana/bin/kibana
+ '';
+
+ meta = {
+ description = "Visualize logs and time-stamped data";
+ homepage = http://www.elasticsearch.org/overview/kibana;
+ license = licenses.asl20;
+ maintainers = with maintainers; [ offline rickynils basvandijk ];
+ platforms = with platforms; unix;
+ };
+}
diff --git a/pkgs/development/tools/misc/lit/default.nix b/pkgs/development/tools/misc/lit/default.nix
index af792c0c6b9..05229e4be7b 100644
--- a/pkgs/development/tools/misc/lit/default.nix
+++ b/pkgs/development/tools/misc/lit/default.nix
@@ -2,12 +2,12 @@
python2.pkgs.buildPythonApplication rec {
pname = "lit";
- version = "0.5.0";
+ version = "0.5.1";
name = "${pname}-${version}";
src = python2.pkgs.fetchPypi {
inherit pname version;
- sha256 = "3ea4251e78ebeb2e07be2feb33243d1f8931d956efc96ccc2b0846ced212b58c";
+ sha256 = "0z651m3vkbk85y41larnsjxrszkbi58x9gzml3lb6ga7qwcrsg97";
};
# Non-standard test suite. Needs custom checkPhase.
diff --git a/pkgs/development/tools/misc/lsof/default.nix b/pkgs/development/tools/misc/lsof/default.nix
index 774734a895c..76c83e2dbeb 100644
--- a/pkgs/development/tools/misc/lsof/default.nix
+++ b/pkgs/development/tools/misc/lsof/default.nix
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
socket (IPv6/IPv4/UNIX local), or partition (by opening a file
from it).
'';
- maintainers = [ stdenv.lib.maintainers.mornfall ];
+ maintainers = [ ];
platforms = stdenv.lib.platforms.unix;
};
}
diff --git a/pkgs/development/tools/misc/opengrok/default.nix b/pkgs/development/tools/misc/opengrok/default.nix
index c2268ba8da2..cdfa51d6f2b 100644
--- a/pkgs/development/tools/misc/opengrok/default.nix
+++ b/pkgs/development/tools/misc/opengrok/default.nix
@@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Source code search and cross reference engine";
- homepage = http://opengrok.github.io/OpenGrok/;
+ homepage = https://opengrok.github.io/OpenGrok/;
license = licenses.cddl;
maintainers = [ maintainers.lethalman ];
};
diff --git a/pkgs/development/tools/misc/patchelf/unstable.nix b/pkgs/development/tools/misc/patchelf/unstable.nix
index cde8eae0f7f..62647879865 100644
--- a/pkgs/development/tools/misc/patchelf/unstable.nix
+++ b/pkgs/development/tools/misc/patchelf/unstable.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
- name = "patchelf-0.10-pre-20160920";
+ name = "patchelf-0.10-pre-20180108";
src = fetchFromGitHub {
owner = "NixOS";
repo = "patchelf";
- rev = "327d80443672c397970738f9e216a7e86cbf3ad7";
- sha256 = "0nghzywda4jrj70gvn4dnrzasafgdp0basj04wfir1smvsi047zr";
+ rev = "48452cf6b4ccba1c1f47a09f4284a253634ab7d1";
+ sha256 = "1f1s8q3as3nrhcc1a8qc2z7imm644jfz44msn9sfv4mdynp2m2yb";
};
setupHook = [ ./setup-hook.sh ];
diff --git a/pkgs/development/tools/misc/pkgconfig/default.nix b/pkgs/development/tools/misc/pkgconfig/default.nix
index 5be42855a9c..7cfd78a39a2 100644
--- a/pkgs/development/tools/misc/pkgconfig/default.nix
+++ b/pkgs/development/tools/misc/pkgconfig/default.nix
@@ -24,7 +24,15 @@ stdenv.mkDerivation rec {
buildInputs = optional (stdenv.isCygwin || stdenv.isDarwin || stdenv.isSunOS) libiconv;
configureFlags = [ "--with-internal-glib" ]
- ++ optional (stdenv.isSunOS) [ "--with-libiconv=gnu" "--with-system-library-path" "--with-system-include-path" "CFLAGS=-DENABLE_NLS" ];
+ ++ optional (stdenv.isSunOS) [ "--with-libiconv=gnu" "--with-system-library-path" "--with-system-include-path" "CFLAGS=-DENABLE_NLS" ]
+ # Can't run these tests while cross-compiling
+ ++ optional (stdenv.hostPlatform != stdenv.buildPlatform)
+ [ "glib_cv_stack_grows=no"
+ "glib_cv_uscore=no"
+ "ac_cv_func_posix_getpwuid_r=yes"
+ "ac_cv_func_posix_getgrgid_r=yes"
+ ];
+
postInstall = ''rm -f "$out"/bin/*-pkg-config''; # clean the duplicate file
diff --git a/pkgs/development/tools/misc/pkgconfig/setup-hook.sh b/pkgs/development/tools/misc/pkgconfig/setup-hook.sh
index 1c153976a34..34a9b9f1173 100644
--- a/pkgs/development/tools/misc/pkgconfig/setup-hook.sh
+++ b/pkgs/development/tools/misc/pkgconfig/setup-hook.sh
@@ -3,8 +3,4 @@ addPkgConfigPath () {
addToSearchPath PKG_CONFIG_PATH $1/share/pkgconfig
}
-if test -n "$crossConfig"; then
- crossEnvHooks+=(addPkgConfigPath)
-else
- envHooks+=(addPkgConfigPath)
-fi
+addEnvHooks "$targetOffset" addPkgConfigPath
diff --git a/pkgs/development/tools/misc/sloccount/default.nix b/pkgs/development/tools/misc/sloccount/default.nix
index cf143f7d9e9..28500ee08ee 100644
--- a/pkgs/development/tools/misc/sloccount/default.nix
+++ b/pkgs/development/tools/misc/sloccount/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
name = "sloccount-2.26";
src = fetchurl {
- url = "http://www.dwheeler.com/sloccount/${name}.tar.gz";
+ url = "https://www.dwheeler.com/sloccount/${name}.tar.gz";
sha256 = "0ayiwfjdh1946asah861ah9269s5xkc8p5fv1wnxs9znyaxs4zzs";
};
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl2Plus;
- homepage = http://www.dwheeler.com/sloccount/;
+ homepage = https://www.dwheeler.com/sloccount/;
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix
index eff849744ac..4c02b4daf1e 100644
--- a/pkgs/development/tools/misc/strace/default.nix
+++ b/pkgs/development/tools/misc/strace/default.nix
@@ -18,6 +18,6 @@ stdenv.mkDerivation rec {
description = "A system call tracer for Linux";
license = licenses.bsd3;
platforms = platforms.linux;
- maintainers = with maintainers; [ mornfall jgeerds globin ];
+ maintainers = with maintainers; [ jgeerds globin ];
};
}
diff --git a/pkgs/development/tools/misc/sysbench/default.nix b/pkgs/development/tools/misc/sysbench/default.nix
index 45a31ad66f2..612df55471b 100644
--- a/pkgs/development/tools/misc/sysbench/default.nix
+++ b/pkgs/development/tools/misc/sysbench/default.nix
@@ -1,11 +1,11 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, vim, libmysql,
- libaio }:
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, vim, mysql
+, libaio }:
stdenv.mkDerivation rec {
name = "sysbench-1.0.6";
nativeBuildInputs = [ autoreconfHook pkgconfig ];
- buildInputs = [ vim libmysql libaio ];
+ buildInputs = [ vim mysql.connector-c libaio ];
src = fetchFromGitHub {
owner = "akopytov";
diff --git a/pkgs/development/tools/misc/teensy-loader-cli/default.nix b/pkgs/development/tools/misc/teensy-loader-cli/default.nix
index 7b360655c4f..4263b80789a 100644
--- a/pkgs/development/tools/misc/teensy-loader-cli/default.nix
+++ b/pkgs/development/tools/misc/teensy-loader-cli/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; {
license = licenses.gpl3;
description = "Firmware uploader for the Teensy microcontroller boards";
- homepage = http://www.pjrc.com/teensy/;
+ homepage = https://www.pjrc.com/teensy/;
maintainers = with maintainers; [ the-kenny ];
platforms = platforms.linux;
};
diff --git a/pkgs/development/tools/misc/tokei/default.nix b/pkgs/development/tools/misc/tokei/default.nix
index 2759b18e35c..d1f6cc4ea29 100644
--- a/pkgs/development/tools/misc/tokei/default.nix
+++ b/pkgs/development/tools/misc/tokei/default.nix
@@ -2,26 +2,21 @@
rustPlatform.buildRustPackage rec {
name = "tokei-${version}";
- version = "6.1.2";
+ version = "7.0.0";
src = fetchFromGitHub {
owner = "Aaronepower";
repo = "tokei";
rev = "v${version}";
- sha256 = "1bzs3mr6f9bna39b9ddwwq0raas07nbn106mnq3widxg59i0gxhd";
+ sha256 = "1c8m2arhy58ky8pzj0dp3w9gpacia9jwmayi0il640l4fm8nr734";
};
- cargoSha256 = "0y0rkxhkv31v5sa0425dwskd80i6srwbqhqkrw1g1kbmbs9y0vxz";
-
- buildPhase = ''
- # do not pass --frozen since Cargo.lock has the wrong tokei version
- cargo build --release
- '';
+ cargoSha256 = "1cl4fjbvrw7zhpb8rxj566ddlxbj9vdsb1cp7mh6llmvaia2vgks";
meta = with stdenv.lib; {
description = "Count code, quickly";
homepage = https://github.com/Aaronepower/tokei;
- license = licenses.mit;
+ license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ gebner ];
platforms = platforms.all;
};
diff --git a/pkgs/development/tools/misc/universal-ctags/default.nix b/pkgs/development/tools/misc/universal-ctags/default.nix
index 2a77fc42602..eb51abe0321 100644
--- a/pkgs/development/tools/misc/universal-ctags/default.nix
+++ b/pkgs/development/tools/misc/universal-ctags/default.nix
@@ -2,22 +2,25 @@
stdenv.mkDerivation rec {
name = "universal-ctags-${version}";
- version = "2017-09-22";
+ version = "2018-01-05";
src = fetchFromGitHub {
owner = "universal-ctags";
repo = "ctags";
- rev = "b9537289952cc7b26526aaff3094599d714d1729";
- sha256 = "1kbw9ycl2ddzpfs1v4rbqa4gdhw4inrisf4awyaxb7zxfxmbzk1g";
+ rev = "c66bdfb4db99977c1bd0568e33e60853a48dca65";
+ sha256 = "0fdzhr0704cj84ym00plkl5l9w83haal6i6w70lx6f4968pcliyi";
};
nativeBuildInputs = [ autoreconfHook pkgconfig pythonPackages.docutils ];
buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv;
+ # to generate makefile.in
autoreconfPhase = ''
- ./autogen.sh --tmpdir
+ ./autogen.sh
'';
+ configureFlags = [ "--enable-tmpdir=/tmp" ];
+
postConfigure = ''
sed -i 's|/usr/bin/env perl|${perl}/bin/perl|' misc/optlib2c
'';
diff --git a/pkgs/development/tools/misc/xxdiff/tip.nix b/pkgs/development/tools/misc/xxdiff/tip.nix
index d3b69901ed8..844758c0f06 100644
--- a/pkgs/development/tools/misc/xxdiff/tip.nix
+++ b/pkgs/development/tools/misc/xxdiff/tip.nix
@@ -14,6 +14,9 @@ stdenv.mkDerivation rec {
buildInputs = [ qtbase ];
+ # Fixes build with Qt 5.9
+ NIX_CFLAGS_COMPILE = [ "-std=c++11" ];
+
preConfigure = ''
cd src
make -f Makefile.bootstrap
diff --git a/pkgs/development/tools/misc/ycmd/default.nix b/pkgs/development/tools/misc/ycmd/default.nix
index 4c60067c48e..5f90525feca 100644
--- a/pkgs/development/tools/misc/ycmd/default.nix
+++ b/pkgs/development/tools/misc/ycmd/default.nix
@@ -15,12 +15,13 @@ stdenv.mkDerivation rec {
sha256 = "0bs94iv521ac2n53n3k8mw3s6v0hi3hhxhjsr0ips3n99al8wndi";
};
- buildInputs = [ cmake boost ]
+ nativeBuildInputs = [ cmake ];
+ buildInputs = [ boost llvmPackages.libclang ]
++ stdenv.lib.optional stdenv.isDarwin [ fixDarwinDylibNames Cocoa ];
buildPhase = ''
export EXTRA_CMAKE_ARGS=-DPATH_TO_LLVM_ROOT=${llvmPackages.clang-unwrapped}
- ${python.interpreter} build.py --clang-completer --system-boost
+ ${python.interpreter} build.py --system-libclang --clang-completer --system-boost
'';
patches = [ ./dont-symlink-clang.patch ];
diff --git a/pkgs/development/tools/misc/yodl/default.nix b/pkgs/development/tools/misc/yodl/default.nix
index e0bf9eac696..06588e60a5e 100644
--- a/pkgs/development/tools/misc/yodl/default.nix
+++ b/pkgs/development/tools/misc/yodl/default.nix
@@ -43,7 +43,7 @@ stdenv.mkDerivation rec {
description = "A package that implements a pre-document language and tools to process it";
homepage = https://fbb-git.github.io/yodl/;
license = licenses.gpl3;
- maintainers = with maintainers; [ nckx pSub ];
+ maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}
diff --git a/pkgs/development/tools/mypy/default.nix b/pkgs/development/tools/mypy/default.nix
index 6dc57afb51e..f06f9c6828c 100644
--- a/pkgs/development/tools/mypy/default.nix
+++ b/pkgs/development/tools/mypy/default.nix
@@ -1,19 +1,18 @@
-{ stdenv, fetchPypi, buildPythonApplication, lxml, typed-ast }:
+{ stdenv, fetchPypi, buildPythonApplication, lxml, typed-ast, psutil }:
buildPythonApplication rec {
- name = "${pname}-${version}";
pname = "mypy";
- version = "0.540";
+ version = "0.560";
# Tests not included in pip package.
doCheck = false;
src = fetchPypi {
inherit pname version;
- sha256 = "5d82f51e228a88e5de6ac1d6699dd09e250ce7de217a5ff1256e317266e738ec";
+ sha256 = "1jja0xlwqajxzab8sabiycax8060zikg89dnl9a7lkqcrwprl35x";
};
- propagatedBuildInputs = [ lxml typed-ast ];
+ propagatedBuildInputs = [ lxml typed-ast psutil ];
meta = with stdenv.lib; {
description = "Optional static typing for Python";
diff --git a/pkgs/development/tools/ocaml/findlib/default.nix b/pkgs/development/tools/ocaml/findlib/default.nix
index 846546ae769..186b78ce3f3 100644
--- a/pkgs/development/tools/ocaml/findlib/default.nix
+++ b/pkgs/development/tools/ocaml/findlib/default.nix
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
fi
}
- envHooks+=(addOCamlPath)
+ addEnvHooks "$targetOffset" addOCamlPath
'';
meta = {
diff --git a/pkgs/development/tools/ocaml/ocaml-top/default.nix b/pkgs/development/tools/ocaml/ocaml-top/default.nix
index e9331d078cf..3cf70d66ddb 100644
--- a/pkgs/development/tools/ocaml/ocaml-top/default.nix
+++ b/pkgs/development/tools/ocaml/ocaml-top/default.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
inherit (jbuilder) installPhase;
meta = {
- homepage = http://www.typerex.org/ocaml-top.html;
+ homepage = https://www.typerex.org/ocaml-top.html;
license = stdenv.lib.licenses.gpl3;
description = "A simple cross-platform OCaml code editor built for top-level evaluation";
platforms = ocamlPackages.ocaml.meta.platforms or [];
diff --git a/pkgs/development/tools/ocaml/ocp-build/default.nix b/pkgs/development/tools/ocaml/ocp-build/default.nix
index 2a9a634d0a4..8da0f781a8b 100644
--- a/pkgs/development/tools/ocaml/ocp-build/default.nix
+++ b/pkgs/development/tools/ocaml/ocp-build/default.nix
@@ -22,7 +22,7 @@ buildOcaml {
'';
meta = with stdenv.lib; {
- homepage = http://www.typerex.org/ocp-build.html;
+ homepage = https://www.typerex.org/ocp-build.html;
description = "A build tool for OCaml";
longDescription = ''
ocp-build is a build system for OCaml application, based on simple
diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix
index f8dc96c2394..d97d67c9851 100644
--- a/pkgs/development/tools/packer/default.nix
+++ b/pkgs/development/tools/packer/default.nix
@@ -1,7 +1,7 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "packer-${version}";
- version = "1.1.0";
+ version = "1.1.3";
goPackagePath = "github.com/hashicorp/packer";
@@ -11,7 +11,7 @@ buildGoPackage rec {
owner = "hashicorp";
repo = "packer";
rev = "v${version}";
- sha256 = "09hwq6dxyzhpl97akwbb02bjrisz9rf296avg5zj2p5qdsf4y777";
+ sha256 = "0bfjv4sqci10jzy11qg6q1xyik36v98vd6ck91sarawvgbaprsp2";
};
meta = with stdenv.lib; {
diff --git a/pkgs/development/tools/parsing/byacc/default.nix b/pkgs/development/tools/parsing/byacc/default.nix
index c34eb9fc708..612196cba77 100644
--- a/pkgs/development/tools/parsing/byacc/default.nix
+++ b/pkgs/development/tools/parsing/byacc/default.nix
@@ -2,14 +2,14 @@
stdenv.mkDerivation rec {
name = "byacc-${version}";
- version = "20170201";
+ version = "20170709";
src = fetchurl {
urls = [
- "ftp://invisible-island.net/byacc/${name}.tgz"
- "http://invisible-mirror.net/archives/byacc/${name}.tgz"
+ "ftp://ftp.invisible-island.net/byacc/${name}.tgz"
+ "https://invisible-mirror.net/archives/byacc/${name}.tgz"
];
- sha256 = "90b768d177f91204e6e7cef226ae1dc7cac831b625774cebd3e233a917754f91";
+ sha256 = "1syrg1nwh2qmlr5mh7c4vz9psdv4gf55h8i5ffw84q6whlcq1kr7";
};
doCheck = true;
diff --git a/pkgs/development/tools/parsing/flexc++/default.nix b/pkgs/development/tools/parsing/flexc++/default.nix
index c782df50758..681f90bbe5a 100644
--- a/pkgs/development/tools/parsing/flexc++/default.nix
+++ b/pkgs/development/tools/parsing/flexc++/default.nix
@@ -43,6 +43,5 @@ stdenv.mkDerivation rec {
homepage = https://fbb-git.github.io/flexcpp/;
license = licenses.gpl3;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/parsing/lemon/default.nix b/pkgs/development/tools/parsing/lemon/default.nix
index 480ee5b88f6..108576d0b11 100644
--- a/pkgs/development/tools/parsing/lemon/default.nix
+++ b/pkgs/development/tools/parsing/lemon/default.nix
@@ -41,6 +41,5 @@ in stdenv.mkDerivation rec {
homepage = http://www.hwaci.com/sw/lemon/;
license = licenses.publicDomain;
platforms = platforms.unix;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/development/tools/phantomjs2/default.nix b/pkgs/development/tools/phantomjs2/default.nix
index 1a6a4ca890c..3c062dbe1ab 100644
--- a/pkgs/development/tools/phantomjs2/default.nix
+++ b/pkgs/development/tools/phantomjs2/default.nix
@@ -74,6 +74,10 @@ in stdenv.mkDerivation rec {
url = "https://anonscm.debian.org/cgit/collab-maint/phantomjs.git/plain/debian/patches/build-qt55-print.patch?id=9b5c1ce95a7044ebffc634f773edf7d4eb9b6cd3";
sha256 = "1fydmdjxnplglpbd3ypaih5l237jkxjirpdhzz92mcpy29yla6jw";
})
+ (fetchpatch {
+ url = "https://anonscm.debian.org/cgit/collab-maint/phantomjs.git/plain/debian/patches/unlock-qt.patch";
+ sha256 = "13bwz4iw17d6hq5pwkbpcckqyw7fhc6648lvs26m39pp31zwyp03";
+ })
./system-qtbase.patch
];
@@ -101,6 +105,7 @@ in stdenv.mkDerivation rec {
$out/bin/phantomjs
'' + ''
wrapProgram $out/bin/phantomjs \
+ --set QT_QPA_PLATFORM offscreen \
--prefix PATH : ${stdenv.lib.makeBinPath [ qtbase ]}
'';
diff --git a/pkgs/development/tools/pipenv/default.nix b/pkgs/development/tools/pipenv/default.nix
index 01433a6ce4d..b017b1dc24b 100644
--- a/pkgs/development/tools/pipenv/default.nix
+++ b/pkgs/development/tools/pipenv/default.nix
@@ -2,11 +2,11 @@
with python3Packages; buildPythonApplication rec {
name = "${pname}-${version}";
pname = "pipenv";
- version = "8.2.7";
+ version = "9.0.1";
src = fetchPypi {
inherit pname version;
- sha256 = "08wkxs6qqgzxamym523bjv7zahg8p9v18x0yi9vwclij5k91iyzm";
+ sha256 = "16k77iy1apbc1s5j78aimhjrcw89vbkq5irs80dmm70wayi0myz1";
};
LC_ALL = "en_US.UTF-8";
diff --git a/pkgs/development/tools/profiling/pyprof2calltree/default.nix b/pkgs/development/tools/profiling/pyprof2calltree/default.nix
new file mode 100644
index 00000000000..b2497633a68
--- /dev/null
+++ b/pkgs/development/tools/profiling/pyprof2calltree/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildPythonApplication, fetchFromGitHub }:
+
+buildPythonApplication rec {
+ pname = "pyprof2calltree";
+ version = "1.4.3";
+
+ # Fetch from GitHub because the PyPi packaged version does not
+ # include all test files.
+ src = fetchFromGitHub {
+ owner = "pwaller";
+ repo = "pyprof2calltree";
+ rev = "v" + version;
+ sha256 = "0i0a895zal193cpvzbv68fch606g4ik27rvzbby3vxk61zlxfqy5";
+ };
+
+ meta = with lib; {
+ description = "Help visualize profiling data from cProfile with kcachegrind and qcachegrind";
+ homepage = https://pypi.python.org/pypi/pyprof2calltree/;
+ license = licenses.mit;
+ maintainers = with maintainers; [ sfrijters ];
+ };
+}
diff --git a/pkgs/development/tools/remarshal/default.nix b/pkgs/development/tools/remarshal/default.nix
index ac4a39f0692..baba4fd75ea 100644
--- a/pkgs/development/tools/remarshal/default.nix
+++ b/pkgs/development/tools/remarshal/default.nix
@@ -2,13 +2,13 @@
pythonPackages.buildPythonApplication rec {
name = "remarshal-${version}";
- version = "0.6.0";
+ version = "0.7.0";
src = fetchFromGitHub {
owner = "dbohdan";
repo = "remarshal";
rev = "v${version}";
- sha256 = "0jslawpzghv3chamrfddnyn5p5068kjxy8d38fxvi5h06qgfb4wp";
+ sha256 = "1wsgvzfp40lvly7nyyhv9prip4vi32rfc8kdji587jpw28zc1dfb";
};
propagatedBuildInputs = with pythonPackages; [
diff --git a/pkgs/development/tools/remarshal/deps.nix b/pkgs/development/tools/remarshal/deps.nix
deleted file mode 100644
index 32f9f6eb0bb..00000000000
--- a/pkgs/development/tools/remarshal/deps.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-[
- {
- goPackagePath = "gopkg.in/yaml.v2";
- fetch = {
- type = "git";
- url = "https://gopkg.in/yaml.v2";
- rev = "a83829b6f1293c91addabc89d0571c246397bbf4";
- sha256 = "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh";
- };
- }
- {
- goPackagePath = "github.com/BurntSushi/toml";
- fetch = {
- type = "git";
- url = "https://github.com/BurntSushi/toml";
- rev = "056c9bc7be7190eaa7715723883caffa5f8fa3e4";
- sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw";
- };
- }
-]
diff --git a/pkgs/development/tools/scalafmt/default.nix b/pkgs/development/tools/scalafmt/default.nix
index 6c30768d900..d50b1435b73 100644
--- a/pkgs/development/tools/scalafmt/default.nix
+++ b/pkgs/development/tools/scalafmt/default.nix
@@ -2,7 +2,7 @@
let
baseName = "scalafmt";
- version = "1.3.0";
+ version = "1.4.0";
deps = stdenv.mkDerivation {
name = "${baseName}-deps-${version}";
buildCommand = ''
@@ -13,7 +13,7 @@ let
'';
outputHashMode = "recursive";
outputHashAlgo = "sha256";
- outputHash = "0q1vw6drpdrfifbm3266igpml0phdk6pl0gd3b5amysigx83m251";
+ outputHash = "12hsix3b7qnyr9x2v7i6jgqljdqxpfj4bfvhjdl99ijr793g3lnp";
};
in
stdenv.mkDerivation rec {
diff --git a/pkgs/development/tools/skopeo/default.nix b/pkgs/development/tools/skopeo/default.nix
index d05706a7fad..0f720f1f7e3 100644
--- a/pkgs/development/tools/skopeo/default.nix
+++ b/pkgs/development/tools/skopeo/default.nix
@@ -4,7 +4,7 @@ with stdenv.lib;
buildGoPackage rec {
name = "skopeo-${version}";
- version = "0.1.23";
+ version = "0.1.27";
rev = "v${version}";
goPackagePath = "github.com/projectatomic/skopeo";
@@ -17,7 +17,7 @@ buildGoPackage rec {
inherit rev;
owner = "projectatomic";
repo = "skopeo";
- sha256 = "1axxnm87fpsd7q28v951ilhmzd42k8wyh741gdfdcajjwglfj0nn";
+ sha256 = "1xwwzxjczz8qdk1rf0h78qd3vk9mxxb8yi6f8kfqvcdcsvkajd5g";
};
patches = [
diff --git a/pkgs/development/tools/skopeo/path.patch b/pkgs/development/tools/skopeo/path.patch
index eb3c54ae66c..fe456b58e54 100644
--- a/pkgs/development/tools/skopeo/path.patch
+++ b/pkgs/development/tools/skopeo/path.patch
@@ -22,17 +22,4 @@ index 50e29b2..7108df5 100644
if c.GlobalBool("insecure-policy") {
policy = &signature.Policy{Default: []signature.PolicyRequirement{signature.NewPRInsecureAcceptAnything()}}
} else if policyPath == "" {
-diff --git a/vendor/github.com/containers/image/docker/docker_client.go b/vendor/github.com/containers/image/docker/docker_client.go
-index b989770..697d2ee 100644
---- a/vendor/github.com/containers/image/docker/docker_client.go
-+++ b/vendor/github.com/containers/image/docker/docker_client.go
-@@ -154,6 +154,9 @@ func setupCertificates(dir string, tlsc *tls.Config) error {
- if os.IsNotExist(err) {
- return nil
- }
-+ if os.IsPermission(err) {
-+ return nil
-+ }
- return err
- }
diff --git a/pkgs/development/tools/tora/default.nix b/pkgs/development/tools/tora/default.nix
index 578e759548a..5b46b975cf7 100644
--- a/pkgs/development/tools/tora/default.nix
+++ b/pkgs/development/tools/tora/default.nix
@@ -17,7 +17,7 @@ in mkDerivation rec {
nativeBuildInputs = [ cmake extra-cmake-modules makeWrapper ];
buildInputs = [
- boost doxygen graphviz loki mysql openssl postgresql qscintillaLib qtbase
+ boost doxygen graphviz loki mysql.connector-c openssl postgresql qscintillaLib qtbase
];
preConfigure = ''
@@ -51,6 +51,8 @@ in mkDerivation rec {
"-lssl"
];
+ NIX_CFLAGS_COMPILE = [ "-L${mysql.connector-c}/lib/mysql" "-I${mysql.connector-c}/include/mysql" ];
+
postFixup = ''
wrapProgram $out/bin/tora \
--prefix PATH : ${lib.getBin graphviz}/bin
diff --git a/pkgs/development/tools/vagrant/Gemfile b/pkgs/development/tools/vagrant/Gemfile
new file mode 100644
index 00000000000..d32951f1c05
--- /dev/null
+++ b/pkgs/development/tools/vagrant/Gemfile
@@ -0,0 +1,2 @@
+source "https://rubygems.org"
+gem 'vagrant'
diff --git a/pkgs/development/tools/vagrant/Gemfile.lock b/pkgs/development/tools/vagrant/Gemfile.lock
new file mode 100644
index 00000000000..208aab0a207
--- /dev/null
+++ b/pkgs/development/tools/vagrant/Gemfile.lock
@@ -0,0 +1,149 @@
+GIT
+ remote: https://github.com/mitchellh/vagrant-spec.git
+ revision: 7ac8b4191de578e345b29acaf62ecc72c8e73be1
+ specs:
+ vagrant-spec (0.0.1)
+ childprocess (~> 0.6.0)
+ log4r (~> 1.1.9)
+ rspec (~> 3.5.0)
+ thor (~> 0.18.1)
+
+PATH
+ remote: .
+ specs:
+ vagrant (2.0.1)
+ childprocess (~> 0.6.0)
+ erubis (~> 2.7.0)
+ hashicorp-checkpoint (~> 0.1.1)
+ i18n (>= 0.6.0, <= 0.8.0)
+ listen (~> 3.1.5)
+ log4r (~> 1.1.9, < 1.1.11)
+ net-scp (~> 1.2.0)
+ net-sftp (~> 2.1)
+ net-ssh (~> 4.1.0)
+ rb-kqueue (~> 0.2.0)
+ rest-client (>= 1.6.0, < 3.0)
+ ruby_dep (<= 1.3.1)
+ wdm (~> 0.1.0)
+ winrm (~> 2.1)
+ winrm-elevated (~> 1.1)
+ winrm-fs (~> 1.0)
+
+GEM
+ remote: https://rubygems.org/
+ specs:
+ addressable (2.5.2)
+ public_suffix (>= 2.0.2, < 4.0)
+ builder (3.2.3)
+ childprocess (0.6.3)
+ ffi (~> 1.0, >= 1.0.11)
+ crack (0.4.3)
+ safe_yaml (~> 1.0.0)
+ diff-lcs (1.3)
+ domain_name (0.5.20170404)
+ unf (>= 0.0.5, < 1.0.0)
+ erubis (2.7.0)
+ fake_ftp (0.1.1)
+ ffi (1.9.18)
+ gssapi (1.2.0)
+ ffi (>= 1.0.1)
+ gyoku (1.3.1)
+ builder (>= 2.1.2)
+ hashdiff (0.3.7)
+ hashicorp-checkpoint (0.1.4)
+ http-cookie (1.0.3)
+ domain_name (~> 0.5)
+ httpclient (2.8.3)
+ i18n (0.8.0)
+ listen (3.1.5)
+ rb-fsevent (~> 0.9, >= 0.9.4)
+ rb-inotify (~> 0.9, >= 0.9.7)
+ ruby_dep (~> 1.2)
+ little-plugger (1.1.4)
+ log4r (1.1.10)
+ logging (2.2.2)
+ little-plugger (~> 1.1)
+ multi_json (~> 1.10)
+ mime-types (3.1)
+ mime-types-data (~> 3.2015)
+ mime-types-data (3.2016.0521)
+ multi_json (1.12.2)
+ net-scp (1.2.1)
+ net-ssh (>= 2.6.5)
+ net-sftp (2.1.2)
+ net-ssh (>= 2.6.5)
+ net-ssh (4.1.0)
+ netrc (0.11.0)
+ nori (2.6.0)
+ public_suffix (3.0.1)
+ rake (12.0.0)
+ rb-fsevent (0.10.2)
+ rb-inotify (0.9.10)
+ ffi (>= 0.5.0, < 2)
+ rb-kqueue (0.2.5)
+ ffi (>= 0.5.0)
+ rest-client (2.0.2)
+ http-cookie (>= 1.0.2, < 2.0)
+ mime-types (>= 1.16, < 4.0)
+ netrc (~> 0.8)
+ rspec (3.5.0)
+ rspec-core (~> 3.5.0)
+ rspec-expectations (~> 3.5.0)
+ rspec-mocks (~> 3.5.0)
+ rspec-core (3.5.4)
+ rspec-support (~> 3.5.0)
+ rspec-expectations (3.5.0)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.5.0)
+ rspec-its (1.2.0)
+ rspec-core (>= 3.0.0)
+ rspec-expectations (>= 3.0.0)
+ rspec-mocks (3.5.0)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.5.0)
+ rspec-support (3.5.0)
+ ruby_dep (1.3.1)
+ rubyntlm (0.6.2)
+ rubyzip (1.2.1)
+ safe_yaml (1.0.4)
+ thor (0.18.1)
+ unf (0.1.4)
+ unf_ext
+ unf_ext (0.0.7.4)
+ wdm (0.1.1)
+ webmock (2.3.2)
+ addressable (>= 2.3.6)
+ crack (>= 0.3.2)
+ hashdiff
+ winrm (2.2.3)
+ builder (>= 2.1.2)
+ erubis (~> 2.7)
+ gssapi (~> 1.2)
+ gyoku (~> 1.0)
+ httpclient (~> 2.2, >= 2.2.0.2)
+ logging (>= 1.6.1, < 3.0)
+ nori (~> 2.0)
+ rubyntlm (~> 0.6.0, >= 0.6.1)
+ winrm-elevated (1.1.0)
+ winrm (~> 2.0)
+ winrm-fs (~> 1.0)
+ winrm-fs (1.1.1)
+ erubis (~> 2.7)
+ logging (>= 1.6.1, < 3.0)
+ rubyzip (~> 1.1)
+ winrm (~> 2.0)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ fake_ftp (~> 0.1.1)
+ rake (~> 12.0.0)
+ rspec (~> 3.5.0)
+ rspec-its (~> 1.2.0)
+ vagrant!
+ vagrant-spec!
+ webmock (~> 2.3.1)
+
+BUNDLED WITH
+ 1.14.6
diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix
index e72520d61b3..5d967ba8127 100644
--- a/pkgs/development/tools/vagrant/default.nix
+++ b/pkgs/development/tools/vagrant/default.nix
@@ -1,141 +1,58 @@
-{ stdenv, fetchurl, fetchpatch, dpkg, curl, libarchive, openssl, rake, ruby, buildRubyGem, libiconv
-, libxml2, libxslt, libffi, makeWrapper, p7zip, xar, gzip, cpio }:
+{ lib, fetchurl, buildRubyGem, bundlerEnv, ruby, libarchive }:
let
version = "2.0.1";
+ url = "https://github.com/hashicorp/vagrant/archive/v${version}.tar.gz";
+ sha256 = "1fjfl00n4rsq6khypm56g0vq6l153q128r35zky2ba30bz292ar1";
- url = if stdenv.isLinux
- then "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_${arch}.deb"
- else if stdenv.isDarwin
- then "https://releases.hashicorp.com/vagrant/${version}/vagrant_${version}_${arch}.dmg"
- else "system ${stdenv.system} not supported";
+ deps = bundlerEnv rec {
+ name = "${pname}-${version}";
+ pname = "vagrant";
+ inherit version;
- sha256 = {
- "x86_64-linux" = "0kyqchjsy747vbvhqiynz81kik8g0xqpkv70rz7hyr9x7fl9i51g";
- "i686-linux" = "0p3xhxy6shkd0393wjyj8qycdn3zqv60vnyz1b6zclz0kfah07zs";
- "x86_64-darwin" = "01hr5j9k31hsdlcwv3srzk0lphd8w0n9z95jvfkschdyjm9clpwm";
- }."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
+ inherit ruby;
+ gemdir = ./.;
+ gemset = lib.recursiveUpdate (import ./gemset.nix) {
+ vagrant = {
+ source = {
+ type = "url";
+ inherit url sha256;
+ };
+ inherit version;
+ };
+ };
+ };
- arch = builtins.replaceStrings ["-linux" "-darwin"] ["" ""] stdenv.system;
-
-in stdenv.mkDerivation rec {
- name = "vagrant-${version}";
+in buildRubyGem rec {
+ name = "${gemName}-${version}";
+ gemName = "vagrant";
inherit version;
- src = fetchurl {
- inherit url sha256;
+ doCheck = true;
+ dontBuild = false;
+ src = fetchurl { inherit url sha256; };
+
+ patches = [
+ ./unofficial-installation-nowarn.patch
+ ];
+
+ # PATH additions:
+ # - libarchive: Make `bsdtar` available for extracting downloaded boxes
+ postInstall = ''
+ wrapProgram "$out/bin/vagrant" \
+ --set GEM_PATH "${deps}/lib/ruby/gems/${ruby.version.libDir}" \
+ --prefix PATH ':' "${lib.getBin libarchive}/bin"
+ '';
+
+ passthru = {
+ inherit ruby deps;
};
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "A tool for building complete development environments";
- homepage = http://vagrantup.com;
- license = licenses.mit;
- maintainers = with maintainers; [ lovek323 globin jgeerds kamilchm ];
- platforms = with platforms; linux ++ darwin;
+ homepage = https://www.vagrantup.com/;
+ license = licenses.mit;
+ maintainers = with maintainers; [ aneeshusa ];
+ platforms = with platforms; linux ++ darwin;
};
-
- buildInputs = [ makeWrapper ]
- ++ stdenv.lib.optional stdenv.isDarwin [ p7zip xar gzip cpio ];
-
- unpackPhase = if stdenv.isLinux
- then ''
- ${dpkg}/bin/dpkg-deb -x "$src" .
- ''
- else ''
- 7z x $src
- cd Vagrant/
- xar -xf Vagrant.pkg
- cd core.pkg/
- cat Payload | gzip -d - | cpio -id
-
- # move unpacked directories to match unpacked .deb from linux,
- # so installPhase can be shared
- mkdir -p opt/vagrant/ usr/
- mv embedded opt/vagrant/embedded
- mv bin usr/bin
- '';
-
- buildPhase = "";
-
- installPhase = ''
- sed -i "s|/opt|$out/opt|" usr/bin/vagrant
-
- # overwrite embedded binaries
-
- # curl: curl, curl-config
- rm opt/vagrant/embedded/bin/{curl,curl-config}
- ln -s ${curl.bin}/bin/curl opt/vagrant/embedded/bin
- ln -s ${curl.dev}/bin/curl-config opt/vagrant/embedded/bin
-
- # libarchive: bsdtar, bsdcpio
- rm opt/vagrant/embedded/lib/libarchive*
- ln -s ${libarchive}/lib/libarchive.so opt/vagrant/embedded/lib/libarchive.so
- rm opt/vagrant/embedded/bin/{bsdtar,bsdcpio}
- ln -s ${libarchive}/bin/bsdtar opt/vagrant/embedded/bin
- ln -s ${libarchive}/bin/bsdcpio opt/vagrant/embedded/bin
-
- # openssl: c_rehash, openssl
- rm opt/vagrant/embedded/bin/{c_rehash,openssl}
- ln -s ${openssl.bin}/bin/c_rehash opt/vagrant/embedded/bin
- ln -s ${openssl.bin}/bin/openssl opt/vagrant/embedded/bin
-
- # libiconv: iconv
- rm opt/vagrant/embedded/bin/iconv
- ln -s ${libiconv}/bin/iconv opt/vagrant/embedded/bin
-
- # libxml: xml2-config, xmlcatalog, xmllint
- rm opt/vagrant/embedded/bin/{xml2-config,xmlcatalog,xmllint}
- ln -s ${libxml2.dev}/bin/xml2-config opt/vagrant/embedded/bin
- ln -s ${libxml2.bin}/bin/xmlcatalog opt/vagrant/embedded/bin
- ln -s ${libxml2.bin}/bin/xmllint opt/vagrant/embedded/bin
-
- # libxslt: xslt-config, xsltproc
- rm opt/vagrant/embedded/bin/{xslt-config,xsltproc}
- ln -s ${libxslt.dev}/bin/xslt-config opt/vagrant/embedded/bin
- ln -s ${libxslt.bin}/bin/xsltproc opt/vagrant/embedded/bin
-
- '' + (stdenv.lib.optionalString (! stdenv.isDarwin) ''
- # ruby: erb, gem, irb, rake, rdoc, ri, ruby
- rm opt/vagrant/embedded/bin/{erb,gem,irb,rake,rdoc,ri,ruby}
- ln -s ${ruby}/bin/erb opt/vagrant/embedded/bin
- ln -s ${ruby}/bin/gem opt/vagrant/embedded/bin
- ln -s ${ruby}/bin/irb opt/vagrant/embedded/bin
- ln -s ${rake}/bin/rake opt/vagrant/embedded/bin
- ln -s ${ruby}/bin/rdoc opt/vagrant/embedded/bin
- ln -s ${ruby}/bin/ri opt/vagrant/embedded/bin
- ln -s ${ruby}/bin/ruby opt/vagrant/embedded/bin
-
- # ruby libs
- rm -rf opt/vagrant/embedded/lib/*
- for lib in ${ruby}/lib/*; do
- ln -s $lib opt/vagrant/embedded/lib/''${lib##*/}
- done
-
- # libffi
- ln -s ${libffi}/lib/libffi.so.6 opt/vagrant/embedded/lib/libffi.so.6
-
- '') + ''
- mkdir -p "$out"
- cp -r opt "$out"
- cp -r usr/bin "$out"
- wrapProgram "$out/bin/vagrant" --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ libxml2 libxslt ]}" \
- --prefix LD_LIBRARY_PATH : "$out/opt/vagrant/embedded/lib"
-
- install -D "opt/vagrant/embedded/gems/gems/vagrant-$version/contrib/bash/completion.sh" \
- "$out/share/bash-completion/completions/vagrant"
- '';
-
- preFixup = ''
- # 'hide' the template file from shebang-patching
- chmod -x "$out/opt/vagrant/embedded/gems/gems/vagrant-$version/plugins/provisioners/salt/bootstrap-salt.sh"
- '';
-
- postFixup = ''
- chmod +x "$out/opt/vagrant/embedded/gems/gems/vagrant-$version/plugins/provisioners/salt/bootstrap-salt.sh"
- '' +
- (stdenv.lib.optionalString stdenv.isDarwin ''
- # undo the directory movement done in unpackPhase
- mv $out/opt/vagrant/embedded $out/
- rm -r $out/opt
- '');
}
diff --git a/pkgs/development/tools/vagrant/gemset.nix b/pkgs/development/tools/vagrant/gemset.nix
new file mode 100644
index 00000000000..3dd517388d2
--- /dev/null
+++ b/pkgs/development/tools/vagrant/gemset.nix
@@ -0,0 +1,457 @@
+{
+ addressable = {
+ dependencies = ["public_suffix"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk";
+ type = "gem";
+ };
+ version = "2.5.2";
+ };
+ builder = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0qibi5s67lpdv1wgcj66wcymcr04q6j4mzws6a479n0mlrmh5wr1";
+ type = "gem";
+ };
+ version = "3.2.3";
+ };
+ childprocess = {
+ dependencies = ["ffi"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1p3f43scdzx9zxmy2kw5zsc3az6v46nq4brwcxmnscjy4w4racbv";
+ type = "gem";
+ };
+ version = "0.6.3";
+ };
+ crack = {
+ dependencies = ["safe_yaml"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k";
+ type = "gem";
+ };
+ version = "0.4.3";
+ };
+ diff-lcs = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "18w22bjz424gzafv6nzv98h0aqkwz3d9xhm7cbr1wfbyas8zayza";
+ type = "gem";
+ };
+ version = "1.3";
+ };
+ domain_name = {
+ dependencies = ["unf"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "12hs8yijhak7p2hf1xkh98g0mnp5phq3mrrhywzaxpwz1gw5r3kf";
+ type = "gem";
+ };
+ version = "0.5.20170404";
+ };
+ erubis = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3";
+ type = "gem";
+ };
+ version = "2.7.0";
+ };
+ fake_ftp = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0rn7lxdk3sqc2i4v2c5k25b9ca1qnkdf32nv04y760aml9mszwf7";
+ type = "gem";
+ };
+ version = "0.1.1";
+ };
+ ffi = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "034f52xf7zcqgbvwbl20jwdyjwznvqnwpbaps9nk18v9lgb1dpx0";
+ type = "gem";
+ };
+ version = "1.9.18";
+ };
+ gssapi = {
+ dependencies = ["ffi"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0j93nsf9j57p7x4aafalvjg8hia2mmqv3aky7fmw2ck5yci343ix";
+ type = "gem";
+ };
+ version = "1.2.0";
+ };
+ gyoku = {
+ dependencies = ["builder"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1wn0sl14396g5lyvp8sjmcb1hw9rbyi89gxng91r7w4df4jwiidh";
+ type = "gem";
+ };
+ version = "1.3.1";
+ };
+ hashdiff = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0yj5l2rw8i8jc725hbcpc4wks0qlaaimr3dpaqamfjkjkxl0hjp9";
+ type = "gem";
+ };
+ version = "0.3.7";
+ };
+ hashicorp-checkpoint = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "15shgckjnxqpz1n9z6y4ax1dcnn5vdqcva29gdg2l7ny0g1w7c7m";
+ type = "gem";
+ };
+ version = "0.1.4";
+ };
+ http-cookie = {
+ dependencies = ["domain_name"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "004cgs4xg5n6byjs7qld0xhsjq3n6ydfh897myr2mibvh6fjc49g";
+ type = "gem";
+ };
+ version = "1.0.3";
+ };
+ httpclient = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "19mxmvghp7ki3klsxwrlwr431li7hm1lczhhj8z4qihl2acy8l99";
+ type = "gem";
+ };
+ version = "2.8.3";
+ };
+ i18n = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "00nsll7q89ab6k43dl3apxjhy4zidlgjmgb9mpk42bj3wk5zdyzf";
+ type = "gem";
+ };
+ version = "0.8.0";
+ };
+ listen = {
+ dependencies = ["rb-fsevent" "rb-inotify" "ruby_dep"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "01v5mrnfqm6sgm8xn2v5swxsn1wlmq7rzh2i48d4jzjsc7qvb6mx";
+ type = "gem";
+ };
+ version = "3.1.5";
+ };
+ little-plugger = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1frilv82dyxnlg8k1jhrvyd73l6k17mxc5vwxx080r4x1p04gwym";
+ type = "gem";
+ };
+ version = "1.1.4";
+ };
+ log4r = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0ri90q0frfmigkirqv5ihyrj59xm8pq5zcmf156cbdv4r4l2jicv";
+ type = "gem";
+ };
+ version = "1.1.10";
+ };
+ logging = {
+ dependencies = ["little-plugger" "multi_json"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "06j6iaj89h9jhkx1x3hlswqrfnqds8br05xb1qra69dpvbdmjcwn";
+ type = "gem";
+ };
+ version = "2.2.2";
+ };
+ mime-types = {
+ dependencies = ["mime-types-data"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0087z9kbnlqhci7fxh9f6il63hj1k02icq2rs0c6cppmqchr753m";
+ type = "gem";
+ };
+ version = "3.1";
+ };
+ mime-types-data = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "04my3746hwa4yvbx1ranhfaqkgf6vavi1kyijjnw8w3dy37vqhkm";
+ type = "gem";
+ };
+ version = "3.2016.0521";
+ };
+ multi_json = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1raim9ddjh672m32psaa9niw67ywzjbxbdb8iijx3wv9k5b0pk2x";
+ type = "gem";
+ };
+ version = "1.12.2";
+ };
+ net-scp = {
+ dependencies = ["net-ssh"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0b0jqrcsp4bbi4n4mzyf70cp2ysyp6x07j8k8cqgxnvb4i3a134j";
+ type = "gem";
+ };
+ version = "1.2.1";
+ };
+ net-sftp = {
+ dependencies = ["net-ssh"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "04674g4n6mryjajlcd82af8g8k95la4b1bj712dh71hw1c9vhw1y";
+ type = "gem";
+ };
+ version = "2.1.2";
+ };
+ net-ssh = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "013p5jb4wy0cq7x7036piw2a3s1i9p752ki1srx2m289mpz4ml3q";
+ type = "gem";
+ };
+ version = "4.1.0";
+ };
+ netrc = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0gzfmcywp1da8nzfqsql2zqi648mfnx6qwkig3cv36n9m0yy676y";
+ type = "gem";
+ };
+ version = "0.11.0";
+ };
+ nori = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "066wc774a2zp4vrq3k7k8p0fhv30ymqmxma1jj7yg5735zls8agn";
+ type = "gem";
+ };
+ version = "2.6.0";
+ };
+ public_suffix = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0mvzd9ycjw8ydb9qy3daq3kdzqs2vpqvac4dqss6ckk4rfcjc637";
+ type = "gem";
+ };
+ version = "3.0.1";
+ };
+ rake = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "01j8fc9bqjnrsxbppncai05h43315vmz9fwg28qdsgcjw9ck1d7n";
+ type = "gem";
+ };
+ version = "12.0.0";
+ };
+ rb-fsevent = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1fbpmjypwxkb8r7y1kmhmyp6gawa4byw0yb3jc3dn9ly4ld9lizf";
+ type = "gem";
+ };
+ version = "0.10.2";
+ };
+ rb-inotify = {
+ dependencies = ["ffi"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0yfsgw5n7pkpyky6a9wkf1g9jafxb0ja7gz0qw0y14fd2jnzfh71";
+ type = "gem";
+ };
+ version = "0.9.10";
+ };
+ rb-kqueue = {
+ dependencies = ["ffi"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "14mhzrhs2j43vj36i1qq4z29nd860shrslfik015f4kf1jiaqcrw";
+ type = "gem";
+ };
+ version = "0.2.5";
+ };
+ rest-client = {
+ dependencies = ["http-cookie" "mime-types" "netrc"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1hzcs2r7b5bjkf2x2z3n8z6082maz0j8vqjiciwgg3hzb63f958j";
+ type = "gem";
+ };
+ version = "2.0.2";
+ };
+ rspec = {
+ dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "16g3mmih999f0b6vcz2c3qsc7ks5zy4lj1rzjh8hf6wk531nvc6s";
+ type = "gem";
+ };
+ version = "3.5.0";
+ };
+ rspec-core = {
+ dependencies = ["rspec-support"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1nacs062qbr98fx6czf1vwppn1js956nv2c8vfwj6i65axdfs46i";
+ type = "gem";
+ };
+ version = "3.5.4";
+ };
+ rspec-expectations = {
+ dependencies = ["diff-lcs" "rspec-support"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0bbqfrb1x8gmwf8x2xhhwvvlhwbbafq4isbvlibxi6jk602f09gs";
+ type = "gem";
+ };
+ version = "3.5.0";
+ };
+ rspec-its = {
+ dependencies = ["rspec-core" "rspec-expectations"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1pwphny5jawcm1hda3vs9pjv1cybaxy17dc1s75qd7drrvx697p3";
+ type = "gem";
+ };
+ version = "1.2.0";
+ };
+ rspec-mocks = {
+ dependencies = ["diff-lcs" "rspec-support"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0nl3ksivh9wwrjjd47z5dggrwx40v6gpb3a0gzbp1gs06a5dmk24";
+ type = "gem";
+ };
+ version = "3.5.0";
+ };
+ rspec-support = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "10vf3k3d472y573mag2kzfsfrf6rv355s13kadnpryk8d36yq5r0";
+ type = "gem";
+ };
+ version = "3.5.0";
+ };
+ ruby_dep = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0v0qznxz999lx4vs76mr590r90i0cm5m76wwvgis7sq4y21l308l";
+ type = "gem";
+ };
+ version = "1.3.1";
+ };
+ rubyntlm = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1p6bxsklkbcqni4bcq6jajc2n57g0w5rzn4r49c3lb04wz5xg0dy";
+ type = "gem";
+ };
+ version = "0.6.2";
+ };
+ rubyzip = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "06js4gznzgh8ac2ldvmjcmg9v1vg9llm357yckkpylaj6z456zqz";
+ type = "gem";
+ };
+ version = "1.2.1";
+ };
+ safe_yaml = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094";
+ type = "gem";
+ };
+ version = "1.0.4";
+ };
+ thor = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0d1g37j6sc7fkidf8rqlm3wh9zgyg3g7y8h2x1y34hmil5ywa8c3";
+ type = "gem";
+ };
+ version = "0.18.1";
+ };
+ unf = {
+ dependencies = ["unf_ext"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0bh2cf73i2ffh4fcpdn9ir4mhq8zi50ik0zqa1braahzadx536a9";
+ type = "gem";
+ };
+ version = "0.1.4";
+ };
+ unf_ext = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "14hr2dzqh33kqc0xchs8l05pf3kjcayvad4z1ip5rdjxrkfk8glb";
+ type = "gem";
+ };
+ version = "0.0.7.4";
+ };
+ vagrant = {
+ dependencies = ["childprocess" "erubis" "hashicorp-checkpoint" "i18n" "listen" "log4r" "net-scp" "net-sftp" "net-ssh" "rb-kqueue" "rest-client" "ruby_dep" "wdm" "winrm" "winrm-elevated" "winrm-fs"];
+ };
+ vagrant-spec = {
+ dependencies = ["childprocess" "log4r" "rspec" "thor"];
+ source = {
+ fetchSubmodules = false;
+ rev = "7ac8b4191de578e345b29acaf62ecc72c8e73be1";
+ sha256 = "03bpxlliyiny062p8a8vxyb1hymxpgfwliky4vlqn7lbm6z7n6kr";
+ type = "git";
+ url = "https://github.com/mitchellh/vagrant-spec.git";
+ };
+ version = "0.0.1";
+ };
+ wdm = {
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0x5l2pn4x92734k6i2wcjbn2klmwgkiqaajvxadh35k74dgnyh18";
+ type = "gem";
+ };
+ version = "0.1.1";
+ };
+ webmock = {
+ dependencies = ["addressable" "crack" "hashdiff"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "04hkcqsmbfnp8g237pisnc834vpgildklicbjbyikqg0bg1rwcy5";
+ type = "gem";
+ };
+ version = "2.3.2";
+ };
+ winrm = {
+ dependencies = ["builder" "erubis" "gssapi" "gyoku" "httpclient" "logging" "nori" "rubyntlm"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "02lzbixdbjvhmb0byqx9rl9x4xx9pqc8jwm7y6mmp7w7mri72zh6";
+ type = "gem";
+ };
+ version = "2.2.3";
+ };
+ winrm-elevated = {
+ dependencies = ["winrm" "winrm-fs"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "04krbwnj4cw7jy42w3n2y5kp2fbcp3v9mbf59pdhfk1py18bswcr";
+ type = "gem";
+ };
+ version = "1.1.0";
+ };
+ winrm-fs = {
+ dependencies = ["erubis" "logging" "rubyzip" "winrm"];
+ source = {
+ remotes = ["https://rubygems.org"];
+ sha256 = "0vax34qbr3n6jifxyzr4nngaz8vrmzw6ydw21cnnrhidfkqgh7ja";
+ type = "gem";
+ };
+ version = "1.1.1";
+ };
+}
\ No newline at end of file
diff --git a/pkgs/development/tools/vagrant/unofficial-installation-nowarn.patch b/pkgs/development/tools/vagrant/unofficial-installation-nowarn.patch
new file mode 100644
index 00000000000..88595942895
--- /dev/null
+++ b/pkgs/development/tools/vagrant/unofficial-installation-nowarn.patch
@@ -0,0 +1,16 @@
+diff --git i/bin/vagrant w/bin/vagrant
+index 19df75033..682fae226 100755
+--- i/bin/vagrant
++++ w/bin/vagrant
+@@ -128,11 +128,6 @@ begin
+ end
+ end
+
+- if !Vagrant.in_installer? && !Vagrant.very_quiet?
+- # If we're not in the installer, warn.
+- env.ui.warn(I18n.t("vagrant.general.not_in_installer") + "\n", prefix: false)
+- end
+-
+ begin
+ # Execute the CLI interface, and exit with the proper error code
+ exit_status = env.cli(argv)
diff --git a/pkgs/development/tools/vndr/default.nix b/pkgs/development/tools/vndr/default.nix
index 66fdb1841e4..2a4ddaf8039 100644
--- a/pkgs/development/tools/vndr/default.nix
+++ b/pkgs/development/tools/vndr/default.nix
@@ -2,8 +2,8 @@
buildGoPackage rec {
name = "vndr-${version}";
- version = "20170511-${lib.strings.substring 0 7 rev}";
- rev = "0cb33a0eb64c8ca73b8e2939a3430b22fbb8d3e3";
+ version = "20171005-${lib.strings.substring 0 7 rev}";
+ rev = "b57c5799efd5ed743f347a025482babf01ba963e";
goPackagePath = "github.com/LK4D4/vndr";
excludedPackages = "test";
@@ -12,7 +12,7 @@ buildGoPackage rec {
inherit rev;
owner = "LK4D4";
repo = "vndr";
- sha256 = "02vdr59xn79hffayfcxg29nf62rdc33a60i104fgj746kcswgy5n";
+ sha256 = "15mmy4a06jgzvlbjbmd89f0xx695x8wg7jqi76kiz495i6figk2v";
};
meta = {
diff --git a/pkgs/development/tools/vogl/default.nix b/pkgs/development/tools/vogl/default.nix
index e351a75db4b..9230d99efcc 100644
--- a/pkgs/development/tools/vogl/default.nix
+++ b/pkgs/development/tools/vogl/default.nix
@@ -4,6 +4,7 @@
, libdwarf, libjpeg_turbo, libunwind, lzma, tinyxml, libX11
, SDL2, SDL2_gfx, SDL2_image, SDL2_ttf
, freeglut, mesa_glu
+, fetchpatch
}:
mkDerivation rec {
@@ -17,6 +18,14 @@ mkDerivation rec {
sha256 = "17gwd73x3lnqv6ccqs48pzqwbzjhbn41c0x0l5zzirhiirb3yh0n";
};
+ patches = [
+ (fetchpatch {
+ name = "fix-qt59.patch";
+ url = "https://github.com/ValveSoftware/vogl/commit/be3d85f.patch";
+ sha256 = "1yh4jd35mds337waqxdw3w22w7ghn05b5jm7fb4iihl39mhq6qyv";
+ })
+ ];
+
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [
diff --git a/pkgs/development/tools/vultr/default.nix b/pkgs/development/tools/vultr/default.nix
index 29fedde9080..8e17c531547 100644
--- a/pkgs/development/tools/vultr/default.nix
+++ b/pkgs/development/tools/vultr/default.nix
@@ -2,14 +2,14 @@
buildGoPackage rec {
name = "vultr-${version}";
- version = "1.13.0";
+ version = "1.15.0";
goPackagePath = "github.com/JamesClonk/vultr";
src = fetchFromGitHub {
owner = "JamesClonk";
repo = "vultr";
rev = "${version}";
- sha256 = "0xjalxl2yncrhbh4m2gyg3cahv3wvq782qd668vim6qks676d9nx";
+ sha256 = "1bx2x17aa6wfn4qy9lxk8sh7shs3x5ppz2z49s0xm8qq0rs1qi92";
};
meta = {
diff --git a/pkgs/development/tools/wp-cli/default.nix b/pkgs/development/tools/wp-cli/default.nix
index 9dfd3b7e728..674b172b371 100644
--- a/pkgs/development/tools/wp-cli/default.nix
+++ b/pkgs/development/tools/wp-cli/default.nix
@@ -25,6 +25,9 @@ let
'';
ini = writeText "wp-cli.ini" ''
+ [PHP]
+ memory_limit = -1 ; composer uses a lot of memory
+
[Phar]
phar.readonly = Off
'';
@@ -37,6 +40,9 @@ in stdenv.mkDerivation rec {
ln -s ${bin} $out/bin/wp
install -Dm644 ${completion} $out/share/bash-completion/completions/wp
+
+ # this is a very basic run test
+ $out/bin/wp --info
'';
meta = with stdenv.lib; {
diff --git a/pkgs/development/tools/ws/default.nix b/pkgs/development/tools/ws/default.nix
new file mode 100644
index 00000000000..b99780d4138
--- /dev/null
+++ b/pkgs/development/tools/ws/default.nix
@@ -0,0 +1,26 @@
+# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
+{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
+
+buildGoPackage rec {
+ name = "ws-${version}";
+ version = "0.2.1";
+ rev = "e9404cb37e339333088b36f6a7909ff3be76931d";
+
+ goPackagePath = "github.com/hashrocket/ws";
+
+ src = fetchgit {
+ inherit rev;
+ url = "https://github.com/hashrocket/ws";
+ sha256 = "192slrz1cj1chzmfrl0d9ai8bq6s4w0iwpvxkhxb9krga7mkp9xb";
+ };
+
+ goDeps = ./deps.nix;
+
+ meta = with stdenv.lib; {
+ description = "websocket command line tool";
+ homepage = https://github.com/hashrocket/ws;
+ license = licenses.mit;
+ maintainers = [ maintainers.the-kenny ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/tools/ws/deps.nix b/pkgs/development/tools/ws/deps.nix
new file mode 100644
index 00000000000..82988437145
--- /dev/null
+++ b/pkgs/development/tools/ws/deps.nix
@@ -0,0 +1,12 @@
+# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
+[
+ {
+ goPackagePath = "github.com/fatih/color";
+ fetch = {
+ type = "git";
+ url = "https://github.com/fatih/color";
+ rev = "5df930a27be2502f99b292b7cc09ebad4d0891f4";
+ sha256 = "1xqwvpn5jkp1xqvv9hx4h7cxrsnamryhy2pszcqpbm28dpd3airb";
+ };
+ }
+]
diff --git a/pkgs/development/tools/xcbuild/sdk.nix b/pkgs/development/tools/xcbuild/sdk.nix
index 169fd5f6ec6..87bbedd5788 100644
--- a/pkgs/development/tools/xcbuild/sdk.nix
+++ b/pkgs/development/tools/xcbuild/sdk.nix
@@ -1,26 +1,30 @@
{ stdenv, writeText, toolchainName, sdkName, xcbuild }:
let
+ # TODO: expose MACOSX_DEPLOYMENT_TARGET in nix so we can use it here.
+ version = "10.10";
SDKSettings = {
CanonicalName = sdkName;
DisplayName = sdkName;
Toolchains = [ toolchainName ];
- Version = "10.10";
- MaximumDeploymentTarget = "10.10";
+ Version = version;
+ MaximumDeploymentTarget = version;
isBaseSDK = "YES";
};
SystemVersion = {
ProductName = "Mac OS X";
- ProductVersion = "10.10";
+ ProductVersion = version;
};
-
in
stdenv.mkDerivation {
- name = "MacOSX.sdk";
+ name = "MacOSX${version}.sdk";
+ inherit version;
+
buildInputs = [ xcbuild ];
+
buildCommand = ''
mkdir -p $out/
plutil -convert xml1 -o $out/SDKSettings.plist ${writeText "SDKSettings.json" (builtins.toJSON SDKSettings)}
diff --git a/pkgs/development/tools/xcbuild/wrapper.nix b/pkgs/development/tools/xcbuild/wrapper.nix
index 2f6b42e7a00..3a1547440fd 100644
--- a/pkgs/development/tools/xcbuild/wrapper.nix
+++ b/pkgs/development/tools/xcbuild/wrapper.nix
@@ -30,7 +30,7 @@ let
in
stdenv.mkDerivation {
- name = "xcbuild-wrapper";
+ name = "xcbuild-wrapper-${xcbuild.version}";
buildInputs = [ xcbuild makeWrapper ];
diff --git a/pkgs/development/tools/yq/default.nix b/pkgs/development/tools/yq/default.nix
index 6ddea86f1a7..6fb7f8440ef 100644
--- a/pkgs/development/tools/yq/default.nix
+++ b/pkgs/development/tools/yq/default.nix
@@ -2,9 +2,8 @@
buildPythonApplication rec {
- name = "${pname}-${version}";
pname = "yq";
- version = "2.3.3";
+ version = "2.3.4";
propagatedBuildInputs = [ pyyaml jq ];
@@ -13,7 +12,7 @@ buildPythonApplication rec {
src = fetchPypi {
inherit pname version;
- sha256 = "14ywdi464z68qclsqzb8r50rzmypknaz74zmpppkahjigfcfppm3";
+ sha256 = "04ckrlmin8m176iicyfhddp4r0yry5hx306vhfglf8mcp1jkga78";
};
meta = with lib; {
diff --git a/pkgs/development/web/nodejs/setup-hook.sh b/pkgs/development/web/nodejs/setup-hook.sh
index e1f4d9089f3..18368588c2a 100644
--- a/pkgs/development/web/nodejs/setup-hook.sh
+++ b/pkgs/development/web/nodejs/setup-hook.sh
@@ -2,4 +2,4 @@ addNodePath () {
addToSearchPath NODE_PATH $1/lib/node_modules
}
-envHooks+=(addNodePath)
+addEnvHooks "$hostOffset" addNodePath
diff --git a/pkgs/development/web/nodejs/v4.nix b/pkgs/development/web/nodejs/v4.nix
index 08fd91aaf8d..64674066b29 100644
--- a/pkgs/development/web/nodejs/v4.nix
+++ b/pkgs/development/web/nodejs/v4.nix
@@ -5,7 +5,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "4.8.5";
- sha256 = "0lqdnnihmc2wpl1v1shj60i49wka2354b00a86k0xbjg5gyfx2m4";
+ version = "4.8.7";
+ sha256 = "1y21wq092d3gmccm2zldbflbbbx7a71wi9l0bpkxvzmgws69liq3";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
}
diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix
index c703377d5a0..3688ee0b7ef 100644
--- a/pkgs/development/web/nodejs/v6.nix
+++ b/pkgs/development/web/nodejs/v6.nix
@@ -5,7 +5,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "6.11.5";
- sha256 = "1bwakrvy0if5spbymwpb05qwrb47xwzlnc42rapgp6b744ay8v8w";
+ version = "6.12.2";
+ sha256 = "1z6sn4b973sxw0h9hd38rjq6cqdkzl5gsd48f793abvarwgpqrrk";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode.patch ];
}
diff --git a/pkgs/development/web/nodejs/v8.nix b/pkgs/development/web/nodejs/v8.nix
index 14dfb8164f4..fa5f10e8f7b 100644
--- a/pkgs/development/web/nodejs/v8.nix
+++ b/pkgs/development/web/nodejs/v8.nix
@@ -5,7 +5,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "8.9.1";
- sha256 = "1q0p9zl260pd8038yvn13lw5whs480dy11ar2ijcm2hgyqhhq5pg";
+ version = "8.9.4";
+ sha256 = "0vy8rlg58kg75j4sw3xadmbrwxfa56iaykmjl18g9a8wkjfdxp3c";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
}
diff --git a/pkgs/development/web/nodejs/v9.nix b/pkgs/development/web/nodejs/v9.nix
index 1a2184d4cb9..f93dba1aec4 100644
--- a/pkgs/development/web/nodejs/v9.nix
+++ b/pkgs/development/web/nodejs/v9.nix
@@ -5,7 +5,7 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "9.3.0";
- sha256 = "1kap1hi4am5advfp6yb3bd5nhd2wx2j72cjq8qqg7yh95xg0g25j";
+ version = "9.4.0";
+ sha256 = "035j44xkji9dxddlqws6ykkbyphbkhwhz700arpgz20jz3qf20vm";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
}
diff --git a/pkgs/development/web/woff2/default.nix b/pkgs/development/web/woff2/default.nix
new file mode 100644
index 00000000000..3480924370e
--- /dev/null
+++ b/pkgs/development/web/woff2/default.nix
@@ -0,0 +1,32 @@
+{ brotli, cmake, fetchFromGitHub, stdenv }:
+
+stdenv.mkDerivation rec {
+ name = "woff2-${version}";
+ version = "1.0.2";
+
+ src = fetchFromGitHub {
+ owner = "google";
+ repo = "woff2";
+ rev = "v${version}";
+ sha256 = "13l4g536h0pr84ww4wxs2za439s0xp1va55g6l478rfbb1spp44y";
+ };
+
+ outputs = [ "out" "dev" "lib" ];
+
+ nativeBuildInputs = [ cmake ];
+
+ buildInputs = [ brotli ];
+
+ # without this binaries only get built if shared libs are disable
+ patchPhase = ''
+ sed 's@^if (NOT BUILD_SHARED_LIBS)$@if (TRUE)@g' -i CMakeLists.txt
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Webfont compression reference code";
+ homepage = https://github.com/google/woff2;
+ license = licenses.mit;
+ maintainers = [ maintainers.hrdinka ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/games/2048-in-terminal/default.nix b/pkgs/games/2048-in-terminal/default.nix
index 30e930c294a..288c852b11e 100644
--- a/pkgs/games/2048-in-terminal/default.nix
+++ b/pkgs/games/2048-in-terminal/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "2048-in-terminal-${version}";
- version = "2015-01-15";
+ version = "2017-11-29";
src = fetchFromGitHub {
- sha256 = "1fdfmyhh60sz0xbilxkh2y09lvbcs9lamk2jkjkhxhlhxknmnfgs";
- rev = "3e4e44fd360dfe114e81e6332a5a058a4b287cb1";
+ sha256 = "1cqv5z1i5zcrvj0w6pdfnnff8m6kjndqxwkwsw5ma9jz503bmyc6";
+ rev = "4e525066b0ef3442e92d2ba8dd373bdc205ece28";
repo = "2048-in-terminal";
owner = "alewmoose";
};
@@ -18,13 +18,12 @@ stdenv.mkDerivation rec {
preInstall = ''
mkdir -p $out/bin
'';
- installFlags = [ "DESTDIR=$(out)" ];
+ installFlags = [ "DESTDIR=$(out)/bin" ];
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Animated console version of the 2048 game";
license = licenses.mit;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/games/bzflag/default.nix b/pkgs/games/bzflag/default.nix
index 1269b434634..9962e0e7105 100644
--- a/pkgs/games/bzflag/default.nix
+++ b/pkgs/games/bzflag/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "bzflag";
- version = "2.4.10";
+ version = "2.4.12";
src = fetchurl {
url = "https://download.bzflag.org/${pname}/source/${version}/${name}.tar.bz2";
- sha256 = "1ylyd5safpraaym9fvnrqj2506dqrraaaqhrb2aa9zmjwi54aiqa";
+ sha256 = "0380y47kgl97ld3dybjgjr2zwxqky8f938k9z7vad647cic3m8d8";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/games/cataclysm-dda/default.nix b/pkgs/games/cataclysm-dda/default.nix
index b46114ec62b..be6f3265430 100644
--- a/pkgs/games/cataclysm-dda/default.nix
+++ b/pkgs/games/cataclysm-dda/default.nix
@@ -1,5 +1,5 @@
-{ fetchFromGitHub, stdenv, makeWrapper, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf,
-SDL2_mixer, freetype, gettext }:
+{ fetchFromGitHub, stdenv, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf,
+SDL2_mixer, freetype, gettext, Cocoa, libicns }:
stdenv.mkDerivation rec {
version = "0.C";
@@ -12,25 +12,47 @@ stdenv.mkDerivation rec {
sha256 = "03sdzsk4qdq99qckq0axbsvg1apn6xizscd8pwp5w6kq2fyj5xkv";
};
- nativeBuildInputs = [ makeWrapper pkgconfig ];
+ nativeBuildInputs = [ pkgconfig ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ libicns ];
- buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ];
+ buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa ];
+
+ patches = [ ./patches/fix_locale_dir.patch ];
postPatch = ''
patchShebangs .
sed -i Makefile \
- -e 's,-Werror,,g' \
- -e 's,\(DATA_PREFIX=$(PREFIX)/share/\)cataclysm-dda/,\1,g'
+ -e 's,-Werror,,g'
sed '1i#include ' \
-i src/{crafting,skill,weather_data,melee,vehicle,overmap,iuse_actor}.cpp
'';
- makeFlags = "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1";
+ makeFlags = [
+ "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1"
+ # "LANGUAGES=all" # vanilla C:DDA installs all translations even without this flag!
+ ] ++ stdenv.lib.optionals stdenv.isDarwin [
+ "NATIVE=osx CLANG=1"
+ "OSX_MIN=10.6" # SDL for macOS only supports deploying on 10.6 and above
+ ];
- postInstall = ''
- wrapProgram $out/bin/cataclysm-tiles \
- --add-flags "--datadir $out/share/"
+ postBuild = stdenv.lib.optionalString stdenv.isDarwin ''
+ # iconutil on macOS is not available in nixpkgs
+ png2icns data/osx/AppIcon.icns data/osx/AppIcon.iconset/*
+ '';
+
+ postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
+ app=$out/Applications/Cataclysm.app
+ install -D -m 444 data/osx/Info.plist -t $app/Contents
+ install -D -m 444 data/osx/AppIcon.icns -t $app/Contents/Resources
+ mkdir $app/Contents/MacOS
+ launcher=$app/Contents/MacOS/Cataclysm.sh
+ cat << SCRIPT > $launcher
+ #!/bin/sh
+ $out/bin/cataclysm-tiles
+ SCRIPT
+ chmod 555 $launcher
'';
# Disable, possible problems with hydra
@@ -64,6 +86,6 @@ stdenv.mkDerivation rec {
homepage = http://en.cataclysmdda.com/;
license = licenses.cc-by-sa-30;
maintainers = [ maintainers.skeidel ];
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/games/cataclysm-dda/git.nix b/pkgs/games/cataclysm-dda/git.nix
index 0437a1b130f..3d8ec7d6844 100644
--- a/pkgs/games/cataclysm-dda/git.nix
+++ b/pkgs/games/cataclysm-dda/git.nix
@@ -1,5 +1,5 @@
-{ fetchFromGitHub, stdenv, makeWrapper, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf,
-SDL2_mixer, freetype, gettext }:
+{ fetchFromGitHub, stdenv, pkgconfig, ncurses, lua, SDL2, SDL2_image, SDL2_ttf,
+SDL2_mixer, freetype, gettext, CoreFoundation, Cocoa }:
stdenv.mkDerivation rec {
version = "2017-12-09";
@@ -12,25 +12,40 @@ stdenv.mkDerivation rec {
sha256 = "1a7kdmx76na4g65zra01qaq98lxp9j2dl9ddv09r0p5yxaizw68z";
};
- nativeBuildInputs = [ makeWrapper pkgconfig ];
+ nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ];
+ buildInputs = [ ncurses lua SDL2 SDL2_image SDL2_ttf SDL2_mixer freetype gettext ]
+ ++ stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Cocoa ];
+
+ patches = [ ./patches/fix_locale_dir_git.patch ];
postPatch = ''
patchShebangs .
sed -i Makefile \
- -e 's,-Werror,,g' \
- -e 's,\(DATA_PREFIX=$(PREFIX)/share/\)cataclysm-dda/,\1,g'
+ -e 's,-Werror,,g'
sed '1i#include ' \
-i src/{crafting,skill,weather_data,melee,vehicle,overmap,iuse_actor}.cpp
'';
- makeFlags = "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1";
+ makeFlags = [
+ "PREFIX=$(out) LUA=1 TILES=1 SOUND=1 RELEASE=1 USE_HOME_DIR=1"
+ "LANGUAGES=all"
+ ] ++ stdenv.lib.optionals stdenv.isDarwin [
+ "NATIVE=osx CLANG=1"
+ ];
- postInstall = ''
- wrapProgram $out/bin/cataclysm-tiles \
- --add-flags "--datadir $out/share/cataclysm-dda/"
+ postInstall = stdenv.lib.optionalString stdenv.isDarwin ''
+ app=$out/Applications/Cataclysm.app
+ install -D -m 444 data/osx/Info.plist -t $app/Contents
+ install -D -m 444 data/osx/AppIcon.icns -t $app/Contents/Resources
+ mkdir $app/Contents/MacOS
+ launcher=$app/Contents/MacOS/Cataclysm.sh
+ cat << SCRIPT > $launcher
+ #!/bin/sh
+ $out/bin/cataclysm-tiles
+ SCRIPT
+ chmod 555 $launcher
'';
# https://hydra.nixos.org/build/65193254
@@ -65,6 +80,6 @@ stdenv.mkDerivation rec {
'';
homepage = http://en.cataclysmdda.com/;
license = licenses.cc-by-sa-30;
- platforms = platforms.linux;
+ platforms = platforms.unix;
};
}
diff --git a/pkgs/games/cataclysm-dda/patches/fix_locale_dir.patch b/pkgs/games/cataclysm-dda/patches/fix_locale_dir.patch
new file mode 100644
index 00000000000..775a8ec6007
--- /dev/null
+++ b/pkgs/games/cataclysm-dda/patches/fix_locale_dir.patch
@@ -0,0 +1,20 @@
+diff --git a/src/translations.cpp b/src/translations.cpp
+index 6520cfe..49f7b2c 100644
+--- a/src/translations.cpp
++++ b/src/translations.cpp
+@@ -72,15 +72,11 @@ void set_language(bool reload_options)
+
+ // Step 2. Bind to gettext domain.
+ const char *locale_dir;
+-#ifdef __linux__
+ if (!FILENAMES["base_path"].empty()) {
+ locale_dir = std::string(FILENAMES["base_path"] + "share/locale").c_str();
+ } else {
+ locale_dir = "lang/mo";
+ }
+-#else
+- locale_dir = "lang/mo";
+-#endif // __linux__
+
+ bindtextdomain("cataclysm-dda", locale_dir);
+ bind_textdomain_codeset("cataclysm-dda", "UTF-8");
diff --git a/pkgs/games/cataclysm-dda/patches/fix_locale_dir_git.patch b/pkgs/games/cataclysm-dda/patches/fix_locale_dir_git.patch
new file mode 100644
index 00000000000..c3140af03c8
--- /dev/null
+++ b/pkgs/games/cataclysm-dda/patches/fix_locale_dir_git.patch
@@ -0,0 +1,20 @@
+diff --git a/src/translations.cpp b/src/translations.cpp
+index 3a86291..e6c5f84 100644
+--- a/src/translations.cpp
++++ b/src/translations.cpp
+@@ -176,15 +176,11 @@ void set_language()
+
+ // Step 2. Bind to gettext domain.
+ std::string locale_dir;
+-#if (defined __linux__ || (defined MACOSX && !defined TILES))
+ if( !FILENAMES["base_path"].empty() ) {
+ locale_dir = FILENAMES["base_path"] + "share/locale";
+ } else {
+ locale_dir = "lang/mo";
+ }
+-#else
+- locale_dir = "lang/mo";
+-#endif // __linux__
+
+ const char *locale_dir_char = locale_dir.c_str();
+ bindtextdomain( "cataclysm-dda", locale_dir_char );
diff --git a/pkgs/games/crrcsim/default.nix b/pkgs/games/crrcsim/default.nix
index 23980c5842b..5d387e19928 100644
--- a/pkgs/games/crrcsim/default.nix
+++ b/pkgs/games/crrcsim/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
meta = {
description = "A model-airplane flight simulator";
maintainers = with stdenv.lib.maintainers; [ raskin the-kenny ];
- platforms = stdenv.lib.platforms.linux;
+ platforms = [ "i686-linux" "x86_64-linux" ];
license = stdenv.lib.licenses.gpl2;
};
}
diff --git a/pkgs/games/cutemaze/default.nix b/pkgs/games/cutemaze/default.nix
index 19fcbb2443d..253a7fcbf30 100644
--- a/pkgs/games/cutemaze/default.nix
+++ b/pkgs/games/cutemaze/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "cutemaze-${version}";
- version = "1.2.1";
+ version = "1.2.2";
src = fetchurl {
url = "https://gottcode.org/cutemaze/${name}-src.tar.bz2";
- sha256 = "841f2a208770c9de6009fed64e24a059a878686c444c4b572c56b564e4cfa66e";
+ sha256 = "1a2jmkm7fjzdrvzgvbqfq20k0vvpwfcycagsm0haxb3fpv86950y";
};
nativeBuildInputs = [ qmake qttools ];
diff --git a/pkgs/games/d1x-rebirth/default.nix b/pkgs/games/d1x-rebirth/default.nix
deleted file mode 100644
index 52aec1b8a59..00000000000
--- a/pkgs/games/d1x-rebirth/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{stdenv, fetchurl, scons, pkgconfig, SDL, mesa, physfs, SDL_mixer }:
-
-stdenv.mkDerivation rec {
- name = "d1x-rebirth-0.58.1";
- src = fetchurl {
- url = "http://www.dxx-rebirth.com/download/dxx/d1x-rebirth_v0.58.1-src.tar.gz";
- sha256 = "13p3nfqaa78h6bl0k8mdsn90ai99wbqaj6qlsjsgsn8imficivsv";
- };
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ scons SDL mesa physfs SDL_mixer ];
-
- installPhase = ''
- scons prefix=$out install
- '';
-
- meta = {
- homepage = http://www.dxx-rebirth.com/;
- description = "Source Port of the Descent 1 engine";
- license = stdenv.lib.licenses.unfree;
- platforms = with stdenv.lib.platforms; linux;
- maintainers = with stdenv.lib.maintainers; [viric];
- };
-}
diff --git a/pkgs/games/d2x-rebirth/default.nix b/pkgs/games/d2x-rebirth/default.nix
deleted file mode 100644
index 566b6f8cc82..00000000000
--- a/pkgs/games/d2x-rebirth/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{stdenv, fetchurl, scons, pkgconfig, SDL, mesa, physfs, SDL_mixer }:
-
-stdenv.mkDerivation rec {
- name = "d2x-rebirth-0.58.1";
- src = fetchurl {
- url = "http://www.dxx-rebirth.com/download/dxx/d2x-rebirth_v0.58.1-src.tar.gz";
- sha256 = "08mg831afc1v068c0ds70lhmxk8a54494jls7s9hwf02ffhv3sx8";
- };
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ scons SDL mesa physfs SDL_mixer ];
-
- installPhase = ''
- scons prefix=$out install
- '';
-
- meta = {
- homepage = http://www.dxx-rebirth.com/;
- description = "Source Port of the Descent 2 engine";
- license = stdenv.lib.licenses.unfree;
- platforms = with stdenv.lib.platforms; linux;
- maintainers = with stdenv.lib.maintainers; [viric];
- };
-}
diff --git a/pkgs/games/dwarf-fortress/dfhack/default.nix b/pkgs/games/dwarf-fortress/dfhack/default.nix
index 698d2924bfe..71938874057 100644
--- a/pkgs/games/dwarf-fortress/dfhack/default.nix
+++ b/pkgs/games/dwarf-fortress/dfhack/default.nix
@@ -4,13 +4,13 @@
}:
let
- dfVersion = "0.44.02";
+ dfVersion = "0.44.05";
version = "${dfVersion}-alpha1";
rev = "refs/tags/${version}";
- sha256 = "1cdp2jwhxl54ym92jm58xyrz942ajp6idl31qrmzcqzawp2fl620";
+ sha256 = "1hr3qsx7rd36syw7dfp4lh8kpmz1pvva757za2yn34hj1jm4nh52";
# revision of library/xml submodule
- xmlRev = "e2e256066cc4a5c427172d9d27db25b7823e4e86";
+ xmlRev = "3a9f401d196ee8ebc53edb9e15a13bfcb0879b4e";
arch =
if stdenv.system == "x86_64-linux" then "64"
diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
index c330471f430..20f7502f27d 100644
--- a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
+++ b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "dwarf-therapist-original-${version}";
- version = "39.0.0";
+ version = "39.2.0";
src = fetchFromGitHub {
owner = "Dwarf-Therapist";
repo = "Dwarf-Therapist";
- rev = "8ae293a6b45333bbf30644d11d1987651e53a307";
- sha256 = "0p1127agr2a97gp5chgdkaa0wf02hqgx82yid1cvqpyj8amal6yg";
+ rev = "v${version}";
+ sha256 = "1ddy9b9ly1231pnjs43gj7pvc77wjvs4j2rlympal81vyabaphmy";
};
outputs = [ "out" "layouts" ];
diff --git a/pkgs/games/dwarf-fortress/game.nix b/pkgs/games/dwarf-fortress/game.nix
index 54666e86cc1..8a85578172a 100644
--- a/pkgs/games/dwarf-fortress/game.nix
+++ b/pkgs/games/dwarf-fortress/game.nix
@@ -4,7 +4,7 @@
let
baseVersion = "44";
- patchVersion = "02";
+ patchVersion = "05";
dfVersion = "0.${baseVersion}.${patchVersion}";
libpath = lib.makeLibraryPath [ stdenv.cc.cc stdenv.glibc dwarf-fortress-unfuck SDL ];
platform =
@@ -12,8 +12,8 @@ let
else if stdenv.system == "i686-linux" then "linux32"
else throw "Unsupported platform";
sha256 =
- if stdenv.system == "x86_64-linux" then "1w2b6sxjxb5cvmv15fxmzfkxvby4kdcf4kj4w35687filyg0skah"
- else if stdenv.system == "i686-linux" then "1yqzkgyl1adwysqskc2v4wlp1nkgxc7w6m37nwllghgwfzaiqwnh"
+ if stdenv.system == "x86_64-linux" then "18bjyhjp5458bfbizm8vq4s00pqpfs097qp6pv76m84kgbc4ghg3"
+ else if stdenv.system == "i686-linux" then "1b9i4kf4c8s6bhqwn8jx100mg7fqp8nmswrai5w8dsma01py4amr"
else throw "Unsupported platform";
in
diff --git a/pkgs/games/dwarf-fortress/soundsense.nix b/pkgs/games/dwarf-fortress/soundsense.nix
index 17448d87f40..def3a09a4ba 100644
--- a/pkgs/games/dwarf-fortress/soundsense.nix
+++ b/pkgs/games/dwarf-fortress/soundsense.nix
@@ -12,7 +12,7 @@
stdenv.mkDerivation rec {
version = "2016-1_196";
- dfVersion = "0.44.02";
+ dfVersion = "0.44.05";
inherit soundPack;
name = "soundsense-${version}";
src = fetchzip {
diff --git a/pkgs/games/dwarf-fortress/themes/cla.nix b/pkgs/games/dwarf-fortress/themes/cla.nix
index 78ebd430727..7c3eb0b63e3 100644
--- a/pkgs/games/dwarf-fortress/themes/cla.nix
+++ b/pkgs/games/dwarf-fortress/themes/cla.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
name = "cla-theme-${version}";
- version = "44.01-v24";
+ version = "44.xx-v25";
src = fetchFromGitHub {
owner = "DFgraphics";
repo = "CLA";
rev = version;
- sha256 = "1lyazrls2vr8z58vfk5nvaffyv048j5xkr4wjvp6vrqxxvrxyrfd";
+ sha256 = "1h8nwa939qzqklbi8vwsq9p2brvv7sc0pbzzrdjnb221lr9p58zk";
};
installPhase = ''
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
cp -r data raw $out
'';
- passthru.dfVersion = "0.44.02";
+ passthru.dfVersion = "0.44.05";
preferLocalBuild = true;
diff --git a/pkgs/games/dwarf-fortress/themes/phoebus.nix b/pkgs/games/dwarf-fortress/themes/phoebus.nix
index 57881686eaa..d9490271920 100644
--- a/pkgs/games/dwarf-fortress/themes/phoebus.nix
+++ b/pkgs/games/dwarf-fortress/themes/phoebus.nix
@@ -5,13 +5,13 @@
stdenv.mkDerivation rec {
name = "phoebus-theme-${version}";
- version = "44.02a";
+ version = "44.05";
src = fetchFromGitHub {
owner = "DFgraphics";
repo = "Phoebus";
rev = version;
- sha256 = "10qd8fbn75fvhkyxqljn4w52kbhfp9xh1ybanjzc57bz79sdzvfp";
+ sha256 = "06mhr6dpbvwp9dxn70kyr6dwyql2k6x5zba2zf6awjah7idys0xr";
};
installPhase = ''
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
cp -r data raw $out
'';
- passthru.dfVersion = "0.44.02";
+ passthru.dfVersion = "0.44.05";
preferLocalBuild = true;
diff --git a/pkgs/games/dwarf-fortress/unfuck.nix b/pkgs/games/dwarf-fortress/unfuck.nix
index 3b0df3ce28c..8d7a5a0d1a9 100644
--- a/pkgs/games/dwarf-fortress/unfuck.nix
+++ b/pkgs/games/dwarf-fortress/unfuck.nix
@@ -3,7 +3,7 @@
, ncurses, glib, gtk2, libsndfile, zlib
}:
-let dfVersion = "0.44.02"; in
+let dfVersion = "0.44.05"; in
stdenv.mkDerivation {
name = "dwarf_fortress_unfuck-${dfVersion}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation {
owner = "svenstaro";
repo = "dwarf_fortress_unfuck";
rev = dfVersion;
- sha256 = "0gfchfqrzx0h59mdv01hik8q2a2yx170q578agfck0nv39yhi6i5";
+ sha256 = "00yj4l4gazxg4i6fj9rwri6vm17i6bviy2mpkx0z5c0mvsr7s14b";
};
cmakeFlags = [
diff --git a/pkgs/games/dxx-rebirth/default.nix b/pkgs/games/dxx-rebirth/default.nix
new file mode 100644
index 00000000000..9645a89b3b2
--- /dev/null
+++ b/pkgs/games/dxx-rebirth/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, fetchurl, scons, pkgconfig
+, SDL, SDL_mixer, mesa, physfs
+}:
+
+let
+ music = fetchurl {
+ url = "http://www.dxx-rebirth.com/download/dxx/res/d2xr-sc55-music.dxa";
+ sha256 = "05mz77vml396mff43dbs50524rlm4fyds6widypagfbh5hc55qdc";
+ };
+
+in stdenv.mkDerivation rec {
+ name = "dxx-rebirth-${version}";
+ version = "0.59.100";
+
+ src = fetchurl {
+ url = "http://www.dxx-rebirth.com/download/dxx/dxx-rebirth_v${version}-src.tar.gz";
+ sha256 = "0m9k34zyr8bbni9szip407mffdpwbqszgfggavgqjwq0k9c1w7ka";
+ };
+
+ nativeBuildInputs = [ pkgconfig scons ];
+
+ buildInputs = [ mesa physfs SDL SDL_mixer ];
+
+ enableParallelBuilding = true;
+
+ installPhase = ''
+ runHook preInstall
+
+ scons prefix=$out install
+ install -Dm644 ${music} $out/share/games/dxx-rebirth/d2xr-sc55-music.dxa
+ install -Dm644 -t $out/share/doc/dxx-rebirth *.txt
+
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Source Port of the Descent 1 and 2 engines";
+ homepage = http://www.dxx-rebirth.com/;
+ license = licenses.free;
+ maintainers = with maintainers; [ viric ];
+ platforms = with platforms; linux;
+ };
+}
diff --git a/pkgs/games/easyrpg-player/default.nix b/pkgs/games/easyrpg-player/default.nix
new file mode 100644
index 00000000000..be45866a7dd
--- /dev/null
+++ b/pkgs/games/easyrpg-player/default.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, harfbuzz ? null
+, liblcf, libpng, libsndfile ? null, libxmp ? null, libvorbis ? null, mpg123 ? null
+, opusfile ? null, pixman, SDL2, speexdsp ? null, wildmidi ? null, zlib }:
+
+stdenv.mkDerivation rec {
+ name = "easyrpg-player-${version}";
+ version = "0.5.3";
+
+ src = fetchFromGitHub {
+ owner = "EasyRPG";
+ repo = "Player";
+ rev = version;
+ sha256 = "1cn3g08ap6cf812s8p3ilf31q7y7y4knp1s0gk45mqcz215cpd8q";
+ };
+
+ nativeBuildInputs = [ cmake doxygen pkgconfig ];
+
+ buildInputs = [
+ freetype
+ harfbuzz
+ liblcf
+ libpng
+ libsndfile
+ libxmp
+ libvorbis
+ mpg123
+ opusfile
+ SDL2
+ pixman
+ speexdsp
+ wildmidi
+ zlib
+ ];
+
+ meta = with stdenv.lib; {
+ homepage = https://easyrpg.org/;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ yegortimoshenko ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/games/eduke32/default.nix b/pkgs/games/eduke32/default.nix
index 185295a20b6..42a3339594a 100644
--- a/pkgs/games/eduke32/default.nix
+++ b/pkgs/games/eduke32/default.nix
@@ -70,7 +70,7 @@ in stdenv.mkDerivation rec {
description = "Enhanched port of Duke Nukem 3D for various platforms";
license = licenses.gpl2Plus;
homepage = http://eduke32.com;
- maintainers = with maintainers; [ nckx sander ];
+ maintainers = with maintainers; [ sander ];
platforms = with platforms; linux;
};
}
diff --git a/pkgs/games/factorio/fetch.nix b/pkgs/games/factorio/fetch.nix
index 439f2478a66..7dbe2064a5c 100644
--- a/pkgs/games/factorio/fetch.nix
+++ b/pkgs/games/factorio/fetch.nix
@@ -18,7 +18,7 @@
}:
stdenv.mkDerivation {
- buildInputs = [ curl xidel ];
+ nativeBuildInputs = [ curl xidel ];
inherit name url loginUrl username password cacert;
diff --git a/pkgs/games/freeciv/default.nix b/pkgs/games/freeciv/default.nix
index d60c4c7d0de..82d573e47a2 100644
--- a/pkgs/games/freeciv/default.nix
+++ b/pkgs/games/freeciv/default.nix
@@ -12,7 +12,7 @@ let
gtkName = if gtkClient then "-gtk" else "";
name = "freeciv";
- version = "2.5.9";
+ version = "2.5.10";
in
stdenv.mkDerivation {
name = "${name}${sdlName}${gtkName}-${version}";
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "mirror://sourceforge/freeciv/${name}-${version}.tar.bz2";
- sha256 = "0a2rjw6065psh14bkk6ar4i19dcicn9lz63rffr9h278b9c76g5q";
+ sha256 = "00mkzhfcbc27d8m7hj644h8lyc9mb8nhqfcngc52zkidarb438f8";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/games/lincity/ng.nix b/pkgs/games/lincity/ng.nix
index 28fd6fe6e50..8004aa9931d 100644
--- a/pkgs/games/lincity/ng.nix
+++ b/pkgs/games/lincity/ng.nix
@@ -1,41 +1,55 @@
-{stdenv, fetchgit
-, zlib, jam, pkgconfig, gettext, libxml2, libxslt, xproto, libX11, mesa, SDL
-, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, physfs, autoconf, automake, libtool
+{ stdenv, fetchFromGitHub, autoreconfHook, jam, pkgconfig
+, zlib, libxml2, libxslt, xproto, libX11, mesa, SDL
+, SDL_mixer, SDL_image, SDL_ttf, SDL_gfx, physfs
}:
+
stdenv.mkDerivation rec {
name = "lincity-ng-${version}";
version = "2.9beta.20170715";
- src = fetchgit {
- url = "https://github.com/lincity-ng/lincity-ng";
- rev = "0c19714b811225238f310633e59f428934185e6b";
+ src = fetchFromGitHub {
+ owner = "lincity-ng";
+ repo = "lincity-ng";
+ rev = "0c19714b811225238f310633e59f428934185e6b";
sha256 = "1gaj9fq97zmb0jsdw4rzrw34pimkmkwbfqps0glpqij4w3srz5f3";
};
hardeningDisable = [ "format" ];
nativeBuildInputs = [
- jam autoconf automake libtool pkgconfig
+ autoreconfHook jam pkgconfig
];
buildInputs = [
- zlib gettext libxml2 libxslt xproto libX11 mesa SDL SDL_mixer SDL_image
+ zlib libxml2 libxslt xproto libX11 mesa SDL SDL_mixer SDL_image
SDL_ttf SDL_gfx physfs
];
- preConfigure = ''
- ./autogen.sh
- '';
+ autoreconfPhase = ''
+ ./autogen.sh
+ '';
- installPhase = ''
- touch CREDITS
- AR='ar r' jam install
- '';
+ buildPhase = ''
+ runHook preBuild
- meta = {
- description = ''City building game'';
- license = stdenv.lib.licenses.gpl2;
- platforms = stdenv.lib.platforms.linux;
- maintainers = [stdenv.lib.maintainers.raskin];
+ AR='ar r' jam -j $NIX_BUILD_CORES
+
+ runHook postBuild
+ '';
+
+ installPhase = ''
+ runHook preInstall
+
+ touch CREDITS
+ AR='ar r' jam install
+
+ runHook postInstall
+ '';
+
+ meta = with stdenv.lib; {
+ description = "City building game";
+ license = licenses.gpl2;
+ maintainers = with maintainers; [ raskin ];
+ platforms = platforms.linux;
};
}
diff --git a/pkgs/games/linux-steam-integration/default.nix b/pkgs/games/linux-steam-integration/default.nix
new file mode 100644
index 00000000000..3b0aca6df28
--- /dev/null
+++ b/pkgs/games/linux-steam-integration/default.nix
@@ -0,0 +1,82 @@
+{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, git, gtk, pkgs, gettext,
+ gcc_multi, libressl }:
+
+let
+ version = "0.7.2";
+ steamBinPath = "${stdenv.lib.makeBinPath (with pkgs; [ steam ])}/steam";
+ zenityBinPath = "${stdenv.lib.makeBinPath (with pkgs; [ gnome3.zenity ])}/zenity";
+
+in stdenv.mkDerivation rec {
+ name = "linux-steam-integration-${version}";
+
+ nativeBuildInputs = [ meson ninja pkgconfig git gettext gcc_multi ];
+ buildInputs = [ gtk libressl ];
+
+ src = fetchFromGitHub {
+ owner = "solus-project";
+ repo = "linux-steam-integration";
+ rev = "v${version}";
+ sha256 = "0yn71fvjqi63dxk04jsndb26pgipl0nla10sy94bi7q95pk3sdf6";
+ fetchSubmodules = true;
+ };
+
+ # Patch lib paths (AUDIT_PATH and REDIRECT_PATH) in shim.c
+ # Patch path to lsi-steam in lsi-steam.desktop
+ # Patch path to zenity in lsi.c
+ postPatch = ''
+ sed -i -e "s|/usr/|$out/|g" src/shim/shim.c
+ sed -i -e "s|/usr/|$out/|g" data/lsi-steam.desktop
+ sed -i -e "s|zenity|${zenityBinPath}|g" src/lsi/lsi.c
+ sed -i -e "s|Name=Linux Steam Integration|Name=Linux Steam Integration Settings|" data/lsi-settings.desktop.in
+
+ '';
+
+ configurePhase = ''
+ # Configure 64bit things
+ meson build \
+ -Dwith-shim=co-exist \
+ -Dwith-frontend=true \
+ -Dwith-steam-binary=${steamBinPath} \
+ -Dwith-new-libcxx-abi=true \
+ -Dwith-libressl-mode=native \
+ --prefix / \
+ --libexecdir lib \
+ --libdir lib \
+ --bindir bin
+
+ # Configure 32bit things
+ CC="gcc -m32" CXX="g++ -m32" meson build32 \
+ -Dwith-shim=none \
+ -Dwith-libressl-mode=native \
+ --prefix / \
+ --libexecdir lib32 \
+ --libdir lib32
+ '';
+
+ buildPhase = ''
+ # Build 64bit things
+ ninja -C build
+
+ # Build 32bit things
+ ninja -C build32
+ '';
+
+ installPhase = ''
+ DESTDIR="$out" ninja -C build install
+ DESTDIR="$out" ninja -C build32 install
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Steam wrapper to improve compability and performance";
+ longDescription = ''
+ Linux Steam Integration is a helper system to make the Steam Client and
+ Steam games run better on Linux. In a nutshell, LSI automatically applies
+ various workarounds to get games working, and fixes long standing bugs in
+ both games and the client
+ '';
+ homepage = https://github.com/solus-project/linux-steam-integration;
+ license = licenses.lgpl21;
+ maintainers = [ maintainers.etu ];
+ platforms = [ "x86_64-linux" ];
+ };
+}
diff --git a/pkgs/games/megaglest/default.nix b/pkgs/games/megaglest/default.nix
index 3fafcfddcbf..d43904bca6c 100644
--- a/pkgs/games/megaglest/default.nix
+++ b/pkgs/games/megaglest/default.nix
@@ -1,12 +1,13 @@
-{ stdenv, fetchgit, cmake, pkgconfig, git, curl, SDL, xercesc, openal, lua, vlc
+{ stdenv, cmake, pkgconfig, git, curl, SDL2, xercesc, openal, lua, vlc
, libjpeg, wxGTK, cppunit, ftgl, glew, libogg, libvorbis, buildEnv, libpng
, fontconfig, freetype, xorg, makeWrapper, bash, which, gnome3, mesa_glu, glib
+, fetchFromGitHub
}:
let
- version = "3.9.2";
+ version = "3.13.0";
lib-env = buildEnv {
name = "megaglest-lib-env";
- paths = [ SDL xorg.libSM xorg.libICE xorg.libX11 xorg.libXext
+ paths = [ SDL2 xorg.libSM xorg.libICE xorg.libX11 xorg.libXext
xercesc openal libvorbis lua libjpeg libpng curl fontconfig ftgl freetype
stdenv.cc.cc glew mesa_glu wxGTK ];
};
@@ -18,18 +19,24 @@ in
stdenv.mkDerivation {
name = "megaglest-${version}";
- src = fetchgit {
- url = "git://github.com/MegaGlest/megaglest-source";
- rev = "refs/tags/${version}";
- sha256 = "1406ns1533x5678d91s2xxxv19q7r238zsaxr37c6mv5jrx7s5jv";
+ src = fetchFromGitHub {
+ owner = "MegaGlest";
+ repo = "megaglest-source";
+ rev = "${version}";
+ fetchSubmodules = true;
+ sha256 = "0fb58a706nic14ss89zrigphvdiwy5s9dwvhscvvgrfvjpahpcws";
};
nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ cmake git curl SDL xercesc openal lua libpng libjpeg vlc wxGTK
+ buildInputs = [ cmake git curl SDL2 xercesc openal lua libpng libjpeg vlc wxGTK
glib cppunit fontconfig freetype ftgl glew libogg libvorbis makeWrapper mesa_glu ];
configurePhase = ''
- cmake -DCMAKE_INSTALL_PREFIX=$out -DBUILD_MEGAGLEST_TESTS=ON
+ cmake -DCMAKE_INSTALL_PREFIX=$out \
+ -DBUILD_MEGAGLEST=On \
+ -DBUILD_MEGAGLEST_MAP_EDITOR=On \
+ -DBUILD_MEGAGLEST_MODEL_IMPORT_EXPORT_TOOLS=On \
+ -DBUILD_MEGAGLEST_MODEL_VIEWER=On
'';
postInstall = ''
diff --git a/pkgs/games/minetest/default.nix b/pkgs/games/minetest/default.nix
index b40083bedba..49750997a90 100644
--- a/pkgs/games/minetest/default.nix
+++ b/pkgs/games/minetest/default.nix
@@ -4,19 +4,19 @@
}:
let
- version = "0.4.15";
+ version = "0.4.16";
sources = {
src = fetchFromGitHub {
owner = "minetest";
repo = "minetest";
rev = "${version}";
- sha256 = "0bn4102d0hq774bn6hqhrs6qzl4sancrs4j15w4318bqdndk4676";
+ sha256 = "048m8as01bw4pnwfxx04wfnyljxq7ivk88l214zi18prrrkfamj3";
};
data = fetchFromGitHub {
owner = "minetest";
repo = "minetest_game";
rev = "${version}";
- sha256 = "1mjj40slfiw0khg9nrq8yfmnay237z5jm1cg9hrsiq2fkjrr8w2m";
+ sha256 = "0alikzyjvj9hd8s3dd6ghpz0y982w2j0yd2zgd7a047mxw21hrcn";
};
};
in stdenv.mkDerivation {
diff --git a/pkgs/games/mnemosyne/default.nix b/pkgs/games/mnemosyne/default.nix
index 03052c52f7f..02bd0ba78d1 100644
--- a/pkgs/games/mnemosyne/default.nix
+++ b/pkgs/games/mnemosyne/default.nix
@@ -26,7 +26,7 @@ in pythonPackages.buildPythonApplication rec {
rm -r $out/lib/python2.7/site-packages/nix
'';
meta = {
- homepage = http://mnemosyne-proj.org/;
+ homepage = https://mnemosyne-proj.org/;
description = "Spaced-repetition software";
longDescription = ''
The Mnemosyne Project has two aspects:
diff --git a/pkgs/games/moon-buggy/default.nix b/pkgs/games/moon-buggy/default.nix
index 8ea8dfccb16..d0c07b71e2e 100644
--- a/pkgs/games/moon-buggy/default.nix
+++ b/pkgs/games/moon-buggy/default.nix
@@ -19,6 +19,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl2;
maintainers = [stdenv.lib.maintainers.rybern];
platforms = stdenv.lib.platforms.linux;
- homepage = http://www.seehuhn.de/pages/moon-buggy;
+ homepage = https://www.seehuhn.de/pages/moon-buggy;
};
}
diff --git a/pkgs/games/neverball/default.nix b/pkgs/games/neverball/default.nix
index 0006f895809..62d89c7c31e 100644
--- a/pkgs/games/neverball/default.nix
+++ b/pkgs/games/neverball/default.nix
@@ -4,7 +4,7 @@
stdenv.mkDerivation rec {
name = "neverball-1.6.0";
src = fetchurl {
- url = "http://neverball.org/${name}.tar.gz";
+ url = "https://neverball.org/${name}.tar.gz";
sha256 = "184gm36c6p6vaa6gwrfzmfh86klhnb03pl40ahsjsvprlk667zkk";
};
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = {
- homepage = http://neverball.org/;
+ homepage = https://neverball.org/;
description = "Tilt the floor to roll a ball";
license = "GPL";
maintainers = with stdenv.lib.maintainers; [viric];
diff --git a/pkgs/games/openttd/default.nix b/pkgs/games/openttd/default.nix
index 2ecff1c835e..d0a8469dd1d 100644
--- a/pkgs/games/openttd/default.nix
+++ b/pkgs/games/openttd/default.nix
@@ -29,11 +29,11 @@ let
in
stdenv.mkDerivation rec {
name = "openttd-${version}";
- version = "1.7.1";
+ version = "1.7.2";
src = fetchurl {
url = "http://binaries.openttd.org/releases/${version}/${name}-source.tar.xz";
- sha256 = "0dhv5bbbg1dmmq7fi3xss0a9jq2rqgb5sf9fsqzlsjcdm590j6b1";
+ sha256 = "1m29s6shnp7c9qh7pzdbvhy7i5awyzn1hr39xkinrpwgvsxa0lgy";
};
nativeBuildInputs = [ pkgconfig makeWrapper ];
diff --git a/pkgs/games/qgo/default.nix b/pkgs/games/qgo/default.nix
index 4848d1a3e21..924101c2d4a 100644
--- a/pkgs/games/qgo/default.nix
+++ b/pkgs/games/qgo/default.nix
@@ -1,8 +1,15 @@
-{ stdenv, fetchFromGitHub, makeWrapper, qmake, qt56 }:
+{ stdenv
+, fetchFromGitHub
+, makeWrapper
+, qmake
+, qtbase
+, qtmultimedia
+, qttranslations
+}:
stdenv.mkDerivation rec {
name = "qgo-${version}";
- version = "unstable-2016-06-23";
+ version = "unstable-2017-12-18";
meta = with stdenv.lib; {
description = "A Go client based on Qt5";
@@ -26,7 +33,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "pzorin";
repo = "qgo";
- rev = "1e65b0c74914e534ea4d040f8f0ef8908383e374";
+ rev = "bef526dda4c79686edd95c88cc68de24f716703c";
sha256 = "1xzkayclmhsi07p9mnbf8185jw8n5ikxp2mik3x8qz1i6rmrfl5b";
};
@@ -35,14 +42,7 @@ stdenv.mkDerivation rec {
sed -i 's|@out@|'"''${out}"'|g' src/src.pro src/defines.h
'';
nativeBuildInputs = [ makeWrapper qmake ];
- # qt58 does not provide platform plugins
- # We need lib/qt*/plugins/platforms/libqxcb.so
- buildInputs = with qt56; [ qtbase.out qtmultimedia qttranslations ];
+ buildInputs = [ qtbase qtmultimedia qttranslations ];
enableParallelBuilding = true;
- postFixup = ''
- # libQt5XcbQpa is a platform plugin dependency and doesn't get linked
- patchelf --add-needed libQt5XcbQpa.so.5 $out/bin/qgo
- wrapProgram $out/bin/qgo \
- --set QT_QPA_PLATFORM_PLUGIN_PATH "${stdenv.lib.getBin qt56.qtbase}/lib/qt-5.6/plugins/platforms/"
- '';
+
}
diff --git a/pkgs/games/scid-vs-pc/0001-put-fonts-in-out.patch b/pkgs/games/scid-vs-pc/0001-put-fonts-in-out.patch
new file mode 100644
index 00000000000..63f31d7ef9e
--- /dev/null
+++ b/pkgs/games/scid-vs-pc/0001-put-fonts-in-out.patch
@@ -0,0 +1,77 @@
+From 7e99cf4ae3f38406133a4abf962527cd02416f8e Mon Sep 17 00:00:00 2001
+From: Sebastian Galkin
+Date: Wed, 20 Dec 2017 18:23:03 -0200
+Subject: [PATCH] put fonts in $out
+
+---
+ Makefile.conf | 22 ++++------------------
+ configure | 12 ------------
+ 2 files changed, 4 insertions(+), 30 deletions(-)
+
+diff --git a/Makefile.conf b/Makefile.conf
+index e7f8de9..87f3fff 100644
+--- a/Makefile.conf
++++ b/Makefile.conf
+@@ -226,19 +226,11 @@ install_scid: all_scid
+ fi
+ install -m 755 -d $(SHAREDIR)/bitmaps
+ cp -r ./bitmaps/* $(SHAREDIR)/bitmaps/
+- @if [ "`id -u`" -eq 0 ]; then \
+- install -m 755 -d $(FONTDIR); \
+- install -m 644 -p fonts/*.ttf $(FONTDIR); \
+- else \
+- install -m 755 -d ~/.fonts; \
+- install -m 644 -p fonts/*.ttf ~/.fonts; \
+- fi
++ install -m 755 -d $(FONTDIR); \
++ install -m 644 -p fonts/*.ttf $(FONTDIR); \
++
+ @if [ ! -z "`which fc-cache`" ]; then \
+- if [ "`id -u`" -eq 0 ]; then \
+- fc-cache -fv $(FONTDIR); \
+- else \
+- fc-cache -fv ~/.fonts; \
+- fi; \
++ fc-cache -fv $(FONTDIR); \
+ else \
+ echo "Don't know how to setup truetype fonts (fc-cache not available)."; \
+ echo "Please contact your system administrator."; \
+@@ -292,12 +284,6 @@ uninstall:
+ for f in `ls fonts/*.ttf`; do \
+ rm -f ~/.$$f; \
+ done; \
+- if [ ! -z "`which fc-cache`" ]; then \
+- fc-cache -fv ~/.fonts; \
+- fi; \
+- if [ "`find ~/.fonts -type d -empty`" = "`ls -d ~/.fonts`" ]; then \
+- rmdir ~/.fonts; \
+- fi; \
+ fi
+
+ clean:
+diff --git a/configure b/configure
+index 4599c77..8b09678 100755
+--- a/configure
++++ b/configure
+@@ -473,18 +473,6 @@ proc writeMakefile {{type ""}} {
+ exit 1
+ }
+
+- if {[isDarwin]} {
+- set var(FONTDIR) /Library/Fonts/
+- } else {
+- # Just install fonts in to /usr irrespective of system prefix. /usr/local may not be active
+- set prefix /usr
+- if {![file isdirectory $prefix/share/fonts]} {
+- set var(FONTDIR) "~/.fonts"
+- } else {
+- set var(FONTDIR) $prefix/share/fonts/truetype/Scid
+- }
+- }
+-
+ set line [gets $from]
+ while {1} {
+ set line [gets $from]
+--
+2.15.1
+
diff --git a/pkgs/games/scid-vs-pc/default.nix b/pkgs/games/scid-vs-pc/default.nix
new file mode 100644
index 00000000000..db32cb70d41
--- /dev/null
+++ b/pkgs/games/scid-vs-pc/default.nix
@@ -0,0 +1,71 @@
+{ stdenv, fetchurl, tcl, tk, libX11, zlib, makeWrapper }:
+
+stdenv.mkDerivation rec {
+ name = "scid-vs-pc-${version}";
+ version = "4.18.1";
+
+ src = fetchurl {
+ url = "mirror://sourceforge/scidvspc/scid_vs_pc-4.18.1.tgz";
+ sha256 = "01nd88g3wh3avz1yk9fka9zf20ij8dlnpwzz8gnx78i5b06cp459";
+ };
+
+ buildInputs = [ tcl tk libX11 zlib makeWrapper ];
+
+ prePatch = ''
+ sed -i -e '/^ *set headerPath *{/a ${tcl}/include ${tk}/include' \
+ -e '/^ *set libraryPath *{/a ${tcl}/lib ${tk}/lib' \
+ -e '/^ *set x11Path *{/a ${libX11}/lib/' \
+ configure
+
+ sed -i -e '/^ *set scidShareDir/s|\[file.*|"'"$out/share"'"|' \
+ tcl/config.tcl
+ '';
+
+ # configureFlags = [
+ # "BINDIR=$(out)/bin"
+ # "SHAREDIR=$(out)/share"
+ # "FONTDIR=$(out)/fonts"
+ # ];
+
+ preConfigure = ''configureFlags="
+ BINDIR=$out/bin
+ SHAREDIR=$out/share
+ FONTDIR=$out/fonts"
+ '';
+
+ patches = [
+ ./0001-put-fonts-in-out.patch
+ ];
+
+ hardeningDisable = [ "format" ];
+
+ dontPatchShebangs = true;
+
+ postFixup = ''
+ for cmd in sc_addmove sc_eco sc_epgn scidpgn \
+ sc_import sc_spell sc_tree spliteco
+ do
+ sed -i -e '1c#!'"$out"'/bin/tcscid' "$out/bin/$cmd"
+ done
+
+ sed -i -e '1c#!${tk}/bin/wish' "$out/bin/sc_remote"
+ sed -i -e '1c#!'"$out"'/bin/tkscid' "$out/bin/scid"
+
+ for cmd in $out/bin/*
+ do
+ wrapProgram "$cmd" \
+ --set TCLLIBPATH "${tcl}/${tcl.libdir}" \
+ --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}"
+ done
+ '';
+
+
+ meta = with stdenv.lib; {
+ description = "Chess database with play and training functionality";
+ homepage = http://scidvspc.sourceforge.net/;
+ license = stdenv.lib.licenses.gpl2;
+ maintainers = [ maintainers.paraseba ];
+ platforms = stdenv.lib.platforms.linux;
+ };
+}
+
diff --git a/pkgs/games/scummvm/default.nix b/pkgs/games/scummvm/default.nix
index 893055fa6e9..29b44f9d857 100644
--- a/pkgs/games/scummvm/default.nix
+++ b/pkgs/games/scummvm/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, nasm
-, fetchurl, SDL2, SDL2_net, freetype, zlib, libmpeg2, libjpeg, libmad, libogg, libvorbis, flac, alsaLib, mesa
+{ stdenv, fetchurl, nasm
+, alsaLib, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, mesa, SDL2, zlib
, hostPlatform
}:
@@ -15,8 +15,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ nasm ];
buildInputs = [
- SDL2 SDL2_net
- freetype libjpeg libmpeg2 libmad libogg libvorbis flac alsaLib mesa zlib
+ alsaLib freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libvorbis mesa SDL2 zlib
];
enableParallelBuilding = true;
diff --git a/pkgs/games/simutrans/default.nix b/pkgs/games/simutrans/default.nix
index 9ea23423673..ada2520a097 100644
--- a/pkgs/games/simutrans/default.nix
+++ b/pkgs/games/simutrans/default.nix
@@ -163,7 +163,7 @@ let
homepage = http://www.simutrans.com/;
license = with licenses; [ artistic1 gpl1Plus ];
maintainers = with maintainers; [ kkallio vcunat phile314 ];
- platforms = with platforms; linux ++ darwin;
+ platforms = with platforms; linux; # TODO: ++ darwin;
};
};
diff --git a/pkgs/games/soi/default.nix b/pkgs/games/soi/default.nix
index 9fcab8b1ec9..96a38a10c6c 100644
--- a/pkgs/games/soi/default.nix
+++ b/pkgs/games/soi/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "A physics-based puzzle game";
- maintainers = with maintainers; [ raskin nckx ];
+ maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.free;
downloadPage = http://sourceforge.net/projects/soi/files/;
diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix
index a7392bbc34e..49d786284da 100644
--- a/pkgs/games/steam/chrootenv.nix
+++ b/pkgs/games/steam/chrootenv.nix
@@ -69,6 +69,9 @@ in buildFHSUserEnv rec {
xlibs.libX11
xlibs.libXfixes
+ # Needed to properly check for libGL.so.1 in steam-wrapper.sh
+ pkgsi686Linux.glxinfo
+
# Not formally in runtime but needed by some games
gst_all_1.gstreamer
gst_all_1.gst-plugins-ugly
@@ -103,7 +106,26 @@ in buildFHSUserEnv rec {
export TZDIR=/etc/zoneinfo
'';
- runScript = "steam";
+ runScript = writeScript "steam-wrapper.sh" ''
+ #!${stdenv.shell}
+ if [ -f /host/etc/NIXOS ]; then # Check only useful on NixOS
+ glxinfo >/dev/null 2>&1
+ # If there was an error running glxinfo, we know something is wrong with the configuration
+ if [ $? -ne 0 ]; then
+ cat < /dev/stderr
+ **
+ WARNING: Steam is not set up. Add the following options to /etc/nixos/configuration.nix
+ and then run \`sudo nixos-rebuild switch\`:
+ {
+ hardware.opengl.driSupport32Bit = true;
+ hardware.pulseaudio.support32Bit = true;
+ }
+ **
+ EOF
+ fi
+ fi
+ steam
+ '';
passthru.run = buildFHSUserEnv {
name = "steam-run";
diff --git a/pkgs/games/stepmania/default.nix b/pkgs/games/stepmania/default.nix
index 5ca0de6a773..d51d1bb154d 100644
--- a/pkgs/games/stepmania/default.nix
+++ b/pkgs/games/stepmania/default.nix
@@ -39,6 +39,6 @@ stdenv.mkDerivation rec {
description = "Free dance and rhythm game for Windows, Mac, and Linux";
platforms = platforms.linux;
license = licenses.mit; # expat version
- maintainers = [ maintainers.mornfall ];
+ maintainers = [ ];
};
}
diff --git a/pkgs/games/super-tux-kart/default.nix b/pkgs/games/super-tux-kart/default.nix
index e05f5a92a33..df5d7e7b4fa 100644
--- a/pkgs/games/super-tux-kart/default.nix
+++ b/pkgs/games/super-tux-kart/default.nix
@@ -8,33 +8,39 @@ let
in stdenv.mkDerivation rec {
name = "supertuxkart-${version}";
- version = "0.9.2";
+ version = "0.9.3";
+
srcs = [
(fetchFromGitHub {
owner = "supertuxkart";
repo = "stk-code";
rev = version;
- sha256 = "1zsc5nw8il8xwppk624jampfk6qhqzjnni8zicrhqix0xg07nxca";
+ sha256 = "1smnanjjaj4yq2ywikv0l6xysh6n2h1cm549plbg5xdk9mx2sfia";
name = dir;
})
(fetchsvn {
url = "https://svn.code.sf.net/p/supertuxkart/code/stk-assets";
- rev = "16503"; # 0.9.2 crashes with 16937. Refer to stk-code/doc/assets_version
- sha256 = "0j1dy27gxm4hx26xddr2ak6vw0lim0nqmjnszfb4c61y92j12cqp";
+ rev = "17448";
+ sha256 = "0lxbb4k57gv4gj12l5hnvhwdycpzcxjwg7qdfwglj2bdvaxf9f21";
name = "stk-assets";
})
];
- nativeBuildInputs = [ pkgconfig ];
+ nativeBuildInputs = [ cmake gettext libtool pkgconfig ];
+
buildInputs = [
- cmake libtool
libX11 libXrandr
- openal freealut mesa libvorbis libogg gettext zlib freetype
+ openal freealut mesa libvorbis libogg zlib freetype
curl fribidi bluez libjpeg libpng
];
enableParallelBuilding = true;
+ cmakeFlags = [
+ "-DBUILD_RECORDER=OFF" # libopenglrecorder is not in nixpkgs
+ "-DUSE_SYSTEM_ANGELSCRIPT=OFF" # doesn't work with 2.31.2 or 2.32.0
+ ];
+
sourceRoot = dir;
meta = with stdenv.lib; {
diff --git a/pkgs/games/teeworlds/default.nix b/pkgs/games/teeworlds/default.nix
index 504353afebe..bd37ba0f01f 100644
--- a/pkgs/games/teeworlds/default.nix
+++ b/pkgs/games/teeworlds/default.nix
@@ -61,7 +61,7 @@ stdenv.mkDerivation rec {
Flag. You can even design your own maps!
'';
- homepage = http://teeworlds.com/;
+ homepage = https://teeworlds.com/;
license = "BSD-style, see `license.txt'";
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
platforms = with stdenv.lib.platforms; linux;
diff --git a/pkgs/games/tome4/default.nix b/pkgs/games/tome4/default.nix
index ad9b5f7dc6c..f07fd88fbaf 100644
--- a/pkgs/games/tome4/default.nix
+++ b/pkgs/games/tome4/default.nix
@@ -4,7 +4,7 @@ stdenv.mkDerivation rec {
version = "1.4.9";
name = "tome4-${version}";
src = fetchurl {
- url = "http://te4.org/dl/t-engine/t-engine4-src-${version}.tar.bz2";
+ url = "https://te4.org/dl/t-engine/t-engine4-src-${version}.tar.bz2";
sha256 = "0c82m0g1ps64zghgdrp78m6bvfngcb75whhknqiailld7kz1g9xl";
};
nativeBuildInputs = [ premake4 ];
@@ -34,7 +34,7 @@ EOF
cp -r game $out/opt/tome4
'';
meta = with stdenv.lib; {
- homepage = http://te4.org/;
+ homepage = https://te4.org/;
description = "Tales of Maj'eyal (rogue-like game)";
maintainers = [ maintainers.chattered ];
license = licenses.gpl3;
diff --git a/pkgs/games/unnethack/default.nix b/pkgs/games/unnethack/default.nix
index 57749c4f228..a1a8272fd0f 100644
--- a/pkgs/games/unnethack/default.nix
+++ b/pkgs/games/unnethack/default.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Fork of NetHack";
- homepage = http://unnethack.wordpress.com/;
+ homepage = https://unnethack.wordpress.com/;
license = "nethack";
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
diff --git a/pkgs/games/vdrift/0001-Ignore-missing-data-for-installation.patch b/pkgs/games/vdrift/0001-Ignore-missing-data-for-installation.patch
new file mode 100644
index 00000000000..6794e8018af
--- /dev/null
+++ b/pkgs/games/vdrift/0001-Ignore-missing-data-for-installation.patch
@@ -0,0 +1,27 @@
+From 7ebe252a8488a63675d1c50c0faa1bdc5ff97889 Mon Sep 17 00:00:00 2001
+From: Linus Heckemann
+Date: Fri, 5 Jan 2018 21:27:28 +0100
+Subject: [PATCH] Ignore missing data for installation
+
+This is for packaging vdrift separately from its data in nixpkgs.
+---
+ SConstruct | 3 ---
+ 1 file changed, 3 deletions(-)
+
+diff --git a/SConstruct b/SConstruct
+index 4394de0b..beef29a4 100644
+--- a/SConstruct
++++ b/SConstruct
+@@ -511,9 +511,6 @@ env.Alias(target = 'bin-package', source = bin_archive)
+ #----------------#
+ Export(['env', 'version', 'src_dir', 'bin_dir'])
+ if 'install' in COMMAND_LINE_TARGETS:
+- if not os.path.isfile('data/SConscript'):
+- raise 'VDrift data not found. Please make sure data is placed in vdrift directory. See README.md and http://wiki.vdrift.net.'
+- SConscript('data/SConscript')
+ # desktop appdata installation
+ install_desktop = env.Install(env['destdir'] + env['prefix'] + '/share/applications', 'vdrift.desktop')
+ install_appdata = env.Install(env['destdir'] + env['prefix'] + '/share/appdata', 'vdrift.appdata.xml')
+--
+2.15.0
+
diff --git a/pkgs/games/vdrift/default.nix b/pkgs/games/vdrift/default.nix
index 27eef261426..81b95ddb9e1 100644
--- a/pkgs/games/vdrift/default.nix
+++ b/pkgs/games/vdrift/default.nix
@@ -1,41 +1,60 @@
-{ stdenv, fetchFromGitHub, fetchsvn, pkgconfig, scons, mesa, SDL2, SDL2_image, libvorbis,
- bullet, curl, gettext }:
+{ stdenv, fetchFromGitHub, fetchsvn, pkgconfig, scons, mesa, SDL2, SDL2_image
+, libvorbis, bullet, curl, gettext, writeTextFile, writeShellScriptBin
-stdenv.mkDerivation rec {
- version = "2014-10-20";
- name = "vdrift-${version}";
-
- src = fetchFromGitHub {
- owner = "VDrift";
- repo = "vdrift";
- rev = version;
- sha256 = "09yny5qzdrpffq3xhqwfymsracwsxwmdd5xa8bxx9a56hhxbak2l";
- };
-
- data = fetchsvn {
+, data ? fetchsvn {
url = "svn://svn.code.sf.net/p/vdrift/code/vdrift-data";
rev = 1386;
sha256 = "0ka6zir9hg0md5p03dl461jkvbk05ywyw233hnc3ka6shz3vazi1";
+ }
+}:
+let
+ version = "git";
+ bin = stdenv.mkDerivation {
+ name = "vdrift-${version}";
+
+ src = fetchFromGitHub {
+ owner = "vdrift";
+ repo = "vdrift";
+ rev = "12d444ed18395be8827a21b96cc7974252fce6d1";
+ sha256 = "001wq3c4n9wzxqfpq40b1jcl16sxbqv2zbkpy9rq2wf9h417q6hg";
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ scons mesa SDL2 SDL2_image libvorbis bullet curl gettext ];
+
+ patches = [ ./0001-Ignore-missing-data-for-installation.patch ];
+
+ buildPhase = ''
+ sed -i -e s,/usr/local,$out, SConstruct
+ export CXXFLAGS="$(pkg-config --cflags SDL2_image)"
+ scons -j$NIX_BUILD_CORES
+ '';
+ installPhase = "scons install";
+
+ meta = {
+ description = "Car racing game";
+ homepage = http://vdrift.net/;
+ license = stdenv.lib.licenses.gpl2Plus;
+ maintainers = with stdenv.lib.maintainers; [viric];
+ platforms = stdenv.lib.platforms.linux;
+ };
};
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ scons mesa SDL2 SDL2_image libvorbis bullet curl gettext ];
-
- buildPhase = ''
- cp -r --reflink=auto $data data
- chmod -R +w data
- sed -i -e s,/usr/local,$out, SConstruct
- export CXXFLAGS="$(pkg-config --cflags SDL2_image)"
- scons
+ wrappedName = "vdrift-${version}-with-data-${toString data.rev}";
+in writeTextFile {
+ name = wrappedName;
+ text = ''
+ export VDRIFT_DATA_DIRECTORY="${data}"
+ exec ${bin}/bin/vdrift "$@"
'';
- installPhase = "scons install";
-
- meta = {
- description = "Car racing game";
- homepage = http://vdrift.net/;
- license = stdenv.lib.licenses.gpl2Plus;
- maintainers = with stdenv.lib.maintainers; [viric];
- platforms = stdenv.lib.platforms.linux;
+ destination = "/bin/vdrift";
+ executable = true;
+ checkPhase = ''
+ ${stdenv.shell} -n $out/bin/vdrift
+ '';
+} // {
+ meta = bin.meta // {
hydraPlatforms = [];
};
+ unwrapped = bin;
+ inherit bin data;
}
diff --git a/pkgs/games/zod/default.nix b/pkgs/games/zod/default.nix
index f795a2ea3a2..da2f256aeb7 100644
--- a/pkgs/games/zod/default.nix
+++ b/pkgs/games/zod/default.nix
@@ -1,5 +1,5 @@
{ fetchurl, stdenv, unrar, unzip, SDL, SDL_image, SDL_ttf, SDL_mixer
-, libmysql, makeWrapper }:
+, mysql, makeWrapper }:
stdenv.mkDerivation rec {
name = "zod-engine-2011-03-18";
@@ -24,9 +24,9 @@ stdenv.mkDerivation rec {
sourceRoot=`pwd`/src
'';
- buildInputs = [ unrar unzip SDL SDL_image SDL_ttf SDL_mixer libmysql makeWrapper ];
+ buildInputs = [ unrar unzip SDL SDL_image SDL_ttf SDL_mixer mysql.connector-c makeWrapper ];
- NIX_LDFLAGS = "-L${stdenv.lib.getLib libmysql}/lib/mysql";
+ NIX_LDFLAGS = "-L${mysql.connector-c}/lib/mysql";
installPhase = ''
mkdir -p $out/bin $out/share/zod
diff --git a/pkgs/misc/cups/drivers/samsung/4.00.39/default.nix b/pkgs/misc/cups/drivers/samsung/4.00.39/default.nix
index 16b40798a5d..18dd6c14822 100644
--- a/pkgs/misc/cups/drivers/samsung/4.00.39/default.nix
+++ b/pkgs/misc/cups/drivers/samsung/4.00.39/default.nix
@@ -38,6 +38,5 @@ in stdenv.mkDerivation rec {
homepage = http://www.samsung.com/;
license = licenses.unfree;
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/misc/cups/drivers/samsung/default.nix b/pkgs/misc/cups/drivers/samsung/default.nix
index 556c408012d..e8da0541f6c 100644
--- a/pkgs/misc/cups/drivers/samsung/default.nix
+++ b/pkgs/misc/cups/drivers/samsung/default.nix
@@ -94,6 +94,5 @@ in stdenv.mkDerivation rec {
# Tested on linux-x86_64. Might work on linux-i386.
# Probably won't work on anything else.
platforms = platforms.linux;
- maintainers = with maintainers; [ nckx ];
};
}
diff --git a/pkgs/misc/cups/filters.nix b/pkgs/misc/cups/filters.nix
index be788f9add4..f80f2ddf03e 100644
--- a/pkgs/misc/cups/filters.nix
+++ b/pkgs/misc/cups/filters.nix
@@ -9,11 +9,11 @@ let
in stdenv.mkDerivation rec {
name = "cups-filters-${version}";
- version = "1.16.0";
+ version = "1.20.0";
src = fetchurl {
url = "http://openprinting.org/download/cups-filters/${name}.tar.xz";
- sha256 = "1kcndzpbbcaxafnz1wa6acy3p3r5likfqmf057i5q0q6i176lz5k";
+ sha256 = "0g6npicm1cwmxqi6ymfvf9wkplp4z2rzvjjl9v4yfvqdjq85gxnp";
};
nativeBuildInputs = [ pkgconfig makeWrapper ];
diff --git a/pkgs/misc/drivers/epkowa/default.nix b/pkgs/misc/drivers/epkowa/default.nix
index 114568fdd52..1c79be712b0 100644
--- a/pkgs/misc/drivers/epkowa/default.nix
+++ b/pkgs/misc/drivers/epkowa/default.nix
@@ -103,7 +103,7 @@ stdenv.mkDerivation rec {
patches = [
(fetchpatch {
- url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-gfx/iscan/files/iscan-2.28.1.3+libpng-1.5.patch";
+ url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/media-gfx/iscan/files/iscan-2.28.1.3+libpng-1.5.patch?h=b6e4c805d53b49da79a0f64ef16bb82d6d800fcf";
sha256 = "04y70qjd220dpyh771fiq50lha16pms98mfigwjczdfmx6kpj1jd";
})
./firmware_location.patch
@@ -138,5 +138,6 @@ stdenv.mkDerivation rec {
Supported hardware: at least :
'' +
stdenv.lib.concatStringsSep ", " (stdenv.lib.mapAttrsToList (name: value: value.passthru.hw) plugins);
+ maintainers = with stdenv.lib.maintainers; [ symphorien ];
};
}
diff --git a/pkgs/misc/drivers/hplip/3.16.11.nix b/pkgs/misc/drivers/hplip/3.16.11.nix
index f538066e75c..37f2361b45e 100644
--- a/pkgs/misc/drivers/hplip/3.16.11.nix
+++ b/pkgs/misc/drivers/hplip/3.16.11.nix
@@ -73,7 +73,7 @@ pythonPackages.buildPythonApplication {
pyqt4
];
- makeWrapperArgs = [ ''--prefix PATH : "${nettools}/bin"'' ];
+ makeWrapperArgs = [ "--prefix" "PATH" ":" "${nettools}/bin" ];
prePatch = ''
# HPLIP hardcodes absolute paths everywhere. Nuke from orbit.
diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix
index 66ed1d44adc..f8f8d16d142 100644
--- a/pkgs/misc/drivers/hplip/default.nix
+++ b/pkgs/misc/drivers/hplip/default.nix
@@ -73,17 +73,17 @@ pythonPackages.buildPythonApplication {
pyqt5
];
- makeWrapperArgs = [ ''--prefix PATH : "${nettools}/bin"'' ];
+ makeWrapperArgs = [ "--prefix" "PATH" ":" "${nettools}/bin" ];
prePatch = ''
# HPLIP hardcodes absolute paths everywhere. Nuke from orbit.
find . -type f -exec sed -i \
- -e s,/etc/hp,$out/etc/hp, \
- -e s,/etc/sane.d,$out/etc/sane.d, \
- -e s,/usr/include/libusb-1.0,${libusb1.dev}/include/libusb-1.0, \
- -e s,/usr/share/hal/fdi/preprobe/10osvendor,$out/share/hal/fdi/preprobe/10osvendor, \
- -e s,/usr/lib/systemd/system,$out/lib/systemd/system, \
- -e s,/var/lib/hp,$out/var/lib/hp, \
+ -e s,/etc/hp,$out/etc/hp,g \
+ -e s,/etc/sane.d,$out/etc/sane.d,g \
+ -e s,/usr/include/libusb-1.0,${libusb1.dev}/include/libusb-1.0,g \
+ -e s,/usr/share/hal/fdi/preprobe/10osvendor,$out/share/hal/fdi/preprobe/10osvendor,g \
+ -e s,/usr/lib/systemd/system,$out/lib/systemd/system,g \
+ -e s,/var/lib/hp,$out/var/lib/hp,g \
{} +
'';
@@ -96,6 +96,8 @@ pythonPackages.buildPythonApplication {
--with-systraydir=$out/xdg/autostart
--with-mimedir=$out/etc/cups
--enable-policykit
+ --disable-qt4
+ ${stdenv.lib.optionals withQt5 "--enable-qt5"}
"
export makeFlags="
@@ -140,9 +142,6 @@ pythonPackages.buildPythonApplication {
mkdir -p $out/var/lib/hp
cp ${hplipState} $out/var/lib/hp/hplip.state
- mkdir -p $out/etc/sane.d/dll.d
- mv $out/etc/sane.d/dll.conf $out/etc/sane.d/dll.d/hpaio.conf
-
rm $out/etc/udev/rules.d/56-hpmud.rules
'';
diff --git a/pkgs/misc/drivers/sc-controller/default.nix b/pkgs/misc/drivers/sc-controller/default.nix
new file mode 100644
index 00000000000..bbb0d1523df
--- /dev/null
+++ b/pkgs/misc/drivers/sc-controller/default.nix
@@ -0,0 +1,62 @@
+{ lib, buildPythonApplication, fetchFromGitHub, wrapGAppsHook
+, gtk3, gobjectIntrospection, libappindicator-gtk3, librsvg
+, evdev, pygobject3, pylibacl, pytest
+, linuxHeaders
+, libX11, libXext, libXfixes, libusb1
+}:
+
+buildPythonApplication rec {
+ pname = "sc-controller";
+ version = "0.4.0.1";
+
+ src = fetchFromGitHub {
+ owner = "kozec";
+ repo = "sc-controller";
+ rev = "v${version}";
+ sha256 = "0vhgiqg4r4bnn004ql80rvi23y05wlax80sj8qsr91pvqsxwv3yl";
+ };
+
+ nativeBuildInputs = [ wrapGAppsHook ];
+
+ buildInputs = [ gtk3 gobjectIntrospection libappindicator-gtk3 librsvg ];
+
+ propagatedBuildInputs = [ evdev pygobject3 pylibacl ];
+
+ checkInputs = [ pytest ];
+
+ postPatch = ''
+ substituteInPlace scc/paths.py --replace sys.prefix "'$out'"
+ substituteInPlace scc/uinput.py --replace /usr/include ${linuxHeaders}/include
+ '';
+
+ LD_LIBRARY_PATH = lib.makeLibraryPath [ libX11 libXext libXfixes libusb1 ];
+
+ preFixup = ''
+ gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH")
+ # gdk-pixbuf setup hook can not choose between propagated librsvg
+ # and our librsvg with GObject introspection.
+ GDK_PIXBUF_MODULE_FILE=$(echo ${librsvg}/lib/gdk-pixbuf-2.0/*/loaders.cache)
+ '';
+
+ postFixup = ''
+ (
+ # scc runs these scripts as programs. (See find_binary() in scc/tools.py.)
+ cd $out/lib/python*/site-packages/scc/x11
+ patchPythonScript scc-autoswitch-daemon.py
+ patchPythonScript scc-osd-daemon.py
+ )
+ '';
+
+ checkPhase = ''
+ PYTHONPATH=. py.test
+ '';
+
+ meta = with lib; {
+ homepage = https://github.com/kozec/sc-controller;
+ # donations: https://www.patreon.com/kozec
+ description = "User-mode driver and GUI for Steam Controller and other controllers";
+ license = licenses.gpl2;
+ platforms = platforms.linux;
+ maintainers = [ maintainers.orivej ];
+ };
+}
diff --git a/pkgs/misc/drivers/steamcontroller/default.nix b/pkgs/misc/drivers/steamcontroller/default.nix
new file mode 100644
index 00000000000..d44c90d198a
--- /dev/null
+++ b/pkgs/misc/drivers/steamcontroller/default.nix
@@ -0,0 +1,35 @@
+{ stdenv, lib, fetchFromGitHub, python3Packages, libusb1, linuxHeaders
+, GyroplotSupport ? false
+}:
+
+with python3Packages;
+
+buildPythonApplication rec {
+ name = "steamcontroller-${version}";
+ version = "2017-08-11";
+
+ src = fetchFromGitHub {
+ owner = "ynsta";
+ repo = "steamcontroller";
+ rev = "80928ce237925e0d0d7a65a45b481435ba6b931e";
+ sha256 = "0lv9j2zv8fmkmc0x9r7fa8zac2xrwfczms35qz1nfa1hr84wniid";
+ };
+
+ postPatch = ''
+ substituteInPlace src/uinput.py --replace \
+ "/usr/include" "${linuxHeaders}/include"
+ '';
+
+ buildInputs = [ libusb1 ];
+ propagatedBuildInputs =
+ [ psutil python3Packages.libusb1 ]
+ ++ lib.optionals GyroplotSupport [ pyqtgraph pyside ];
+
+ meta = with stdenv.lib; {
+ description = "A standalone Steam controller driver";
+ homepage = https://github.com/ynsta/steamcontroller;
+ license = licenses.mit;
+ maintainers = with maintainers; [ rnhmjoj ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/misc/drivers/xboxdrv/default.nix b/pkgs/misc/drivers/xboxdrv/default.nix
index ffb2052ca0c..8262eea48b4 100644
--- a/pkgs/misc/drivers/xboxdrv/default.nix
+++ b/pkgs/misc/drivers/xboxdrv/default.nix
@@ -19,7 +19,7 @@ in stdenv.mkDerivation {
buildInputs = [ scons libX11 libusb1 boost glib dbus_glib];
meta = with stdenv.lib; {
- homepage = http://pingus.seul.org/~grumbel/xboxdrv/;
+ homepage = https://pingus.seul.org/~grumbel/xboxdrv/;
description = "Xbox/Xbox360 (and more) gamepad driver for Linux that works in userspace";
license = licenses.gpl3Plus;
maintainers = [ maintainers.fuuzetsu ];
diff --git a/pkgs/misc/emulators/cdemu/vhba.nix b/pkgs/misc/emulators/cdemu/vhba.nix
index 56f63e74734..081846f78e3 100644
--- a/pkgs/misc/emulators/cdemu/vhba.nix
+++ b/pkgs/misc/emulators/cdemu/vhba.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, kernel }:
+{ stdenv, fetchurl, kernel, libelf }:
stdenv.mkDerivation rec {
name = "vhba-${version}";
@@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
};
makeFlags = [ "KDIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build" "INSTALL_MOD_PATH=$(out)" ];
+ nativeBuildInputs = kernel.moduleBuildDependencies;
hardeningDisable = [ "pic" ];
diff --git a/pkgs/misc/emulators/citra/default.nix b/pkgs/misc/emulators/citra/default.nix
index 97f61e452ff..2eebe089de3 100644
--- a/pkgs/misc/emulators/citra/default.nix
+++ b/pkgs/misc/emulators/citra/default.nix
@@ -1,13 +1,13 @@
{ stdenv, fetchgit, cmake, SDL2, qtbase, boost, curl, gtest }:
stdenv.mkDerivation rec {
- name = "citra-2017-07-26";
+ name = "citra-2018-01-24";
# Submodules
src = fetchgit {
url = "https://github.com/citra-emu/citra";
- rev = "a724fb365787718f9e44adedc14e59d0854905a6";
- sha256 = "0lkrwhxvq85c0smix27xvj8m463bxa67qhy8m8r43g39n0h8d5sf";
+ rev = "33b0b5163fdb08bc8aa1d7eb83e0931a14ed3046";
+ sha256 = "07z32d8lj84yy3l5iqpk37mnmvzjmppqhyqr64kbx14dh5hb6cbj";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/misc/emulators/gens-gs/default.nix b/pkgs/misc/emulators/gens-gs/default.nix
index bfe43403bc6..74aa29e84ef 100644
--- a/pkgs/misc/emulators/gens-gs/default.nix
+++ b/pkgs/misc/emulators/gens-gs/default.nix
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
NIX_CFLAGS_COMPILE = "-UGTK_DISABLE_DEPRECATED -UGSEAL_ENABLE";
meta = {
- homepage = http://segaretro.org/Gens/GS;
+ homepage = https://segaretro.org/Gens/GS;
description = "A Genesis/Mega Drive emulator";
platforms = [ "i686-linux" ];
maintainers = [ stdenv.lib.maintainers.eelco ];
diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix
index f14608fd93e..64e29f59a18 100644
--- a/pkgs/misc/emulators/mgba/default.nix
+++ b/pkgs/misc/emulators/mgba/default.nix
@@ -1,21 +1,34 @@
-{ stdenv, fetchFromGitHub
+{ stdenv, fetchFromGitHub, fetchpatch
, pkgconfig, cmake, libzip, epoxy, ffmpeg, imagemagick, SDL2
, qtbase, qtmultimedia }:
stdenv.mkDerivation rec {
name = "mgba-${version}";
- version = "0.6.0";
+ version = "0.6.1";
src = fetchFromGitHub {
owner = "mgba-emu";
repo = "mgba";
rev = version;
- sha256 = "1kzb6zj2lxfaiyfq9h7q26fh7xh1ggybmh5pin5rcgs7jyygrsjb";
+ sha256 = "1fgxn3j6wc5mcgb81sc6fzy5m4saz02jz4zlms51dgycvy0flbz7";
};
nativeBuildInputs = [ pkgconfig cmake ];
+
buildInputs = [ libzip epoxy ffmpeg imagemagick SDL2 qtbase qtmultimedia ];
+ patches = [
+ (fetchpatch {
+ url = "https://github.com/mgba-emu/mgba/commit/e31373560535203d826687044290a4994706c2dd.patch";
+ sha256 = "07582vj0fqgsgryx28pnshiwri9dn88l1rr4vkraib7bzx7cs4f9";
+ })
+
+ (fetchpatch {
+ url = "https://github.com/mgba-emu/mgba/commit/baabe0090bb1fd5997e531fd9568c2de09b5fc21.patch";
+ sha256 = "1kv9dxxna35s050q9af9nzskplz2x1aq8avg0ihbznhxjl8vmxz9";
+ })
+ ];
+
meta = with stdenv.lib; {
homepage = https://mgba.io;
description = "A modern GBA emulator with a focus on accuracy";
diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix
index 64bb8b4e356..82e2384cf0b 100644
--- a/pkgs/misc/emulators/wine/base.nix
+++ b/pkgs/misc/emulators/wine/base.nix
@@ -92,7 +92,7 @@ stdenv.mkDerivation ((lib.optionalAttrs (! isNull buildScript) {
((map (links "share/wine/gecko") geckos)
++ (map (links "share/wine/mono") monos))}
'' + lib.optionalString supportFlags.gstreamerSupport ''
- for i in wine wine64; do
+ for i in wine ; do
if [ -e "$out/bin/$i" ]; then
wrapProgram "$out/bin/$i" \
--argv0 "" \
diff --git a/pkgs/misc/emulators/wine/default.nix b/pkgs/misc/emulators/wine/default.nix
index 91fb0da82d8..928e692df6b 100644
--- a/pkgs/misc/emulators/wine/default.nix
+++ b/pkgs/misc/emulators/wine/default.nix
@@ -56,9 +56,12 @@ let wine-build = build: release:
});
in if wineRelease == "staging" then
- callPackage ./staging.nix {
- inherit libtxc_dxtn_Name;
- wineUnstable = wine-build wineBuild "unstable";
- }
+ let wineUnstable = wine-build wineBuild "unstable"; in
+ # wine staging is not yet at 3.0, using unstable
+ # FIXME update winestaging sources
+ wineUnstable
+ # callPackage ./staging.nix {
+ # inherit libtxc_dxtn_Name wineUnstable;
+ # }
else
wine-build wineBuild wineRelease
diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix
index 39bd26714e7..c276a24b183 100644
--- a/pkgs/misc/emulators/wine/sources.nix
+++ b/pkgs/misc/emulators/wine/sources.nix
@@ -1,4 +1,11 @@
{ pkgs ? import {} }:
+## we default to importing